diff --git a/RainMaker_Lights-Switch/.devcontainer/Dockerfile b/RainMaker_Lights-Switch/.devcontainer/Dockerfile deleted file mode 100644 index dafb8adbb..000000000 --- a/RainMaker_Lights-Switch/.devcontainer/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -ARG DOCKER_TAG=latest -FROM espressif/idf:${DOCKER_TAG} - -ENV LC_ALL=C.UTF-8 -ENV LANG=C.UTF-8 - -RUN apt-get update -y && apt-get install udev -y - -RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc - -ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] - -CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/RainMaker_Lights-Switch/.devcontainer/devcontainer.json b/RainMaker_Lights-Switch/.devcontainer/devcontainer.json deleted file mode 100644 index b80178618..000000000 --- a/RainMaker_Lights-Switch/.devcontainer/devcontainer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "ESP-IDF QEMU", - "build": { - "dockerfile": "Dockerfile" - }, - "customizations": { - "vscode": { - "settings": { - "terminal.integrated.defaultProfile.linux": "bash", - "idf.espIdfPath": "/opt/esp/idf", - "idf.toolsPath": "/opt/esp", - "idf.gitPath": "/usr/bin/git" - }, - "extensions": [ - "espressif.esp-idf-extension", - "espressif.esp-idf-web" - ] - } - }, - "runArgs": ["--privileged"] -} \ No newline at end of file diff --git a/RainMaker_Lights-Switch/CMakeLists.txt b/RainMaker_Lights-Switch/CMakeLists.txt deleted file mode 100644 index 0be5878c6..000000000 --- a/RainMaker_Lights-Switch/CMakeLists.txt +++ /dev/null @@ -1,55 +0,0 @@ -# The following lines of boilerplate have to be in your project's -# CMakeLists in this exact order for cmake to work correctly -cmake_minimum_required(VERSION 3.5) - -if(DEFINED ENV{RMAKER_PATH}) - set(RMAKER_PATH $ENV{RMAKER_PATH}) -else() - set(RMAKER_PATH ${CMAKE_CURRENT_LIST_DIR}/../../..) -endif(DEFINED ENV{RMAKER_PATH}) - -if(NOT DEFINED ENV{ESP_MATTER_PATH}) - message(FATAL_ERROR "Please set ESP_MATTER_PATH to the path of esp-matter repo") -endif(NOT DEFINED ENV{ESP_MATTER_PATH}) - -if(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH}) - if("${IDF_TARGET}" STREQUAL "esp32" OR "${IDF_TARGET}" STREQUAL "") - set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32_devkit_c) - elseif("${IDF_TARGET}" STREQUAL "esp32c3") - set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c3_devkit_m) - elseif("${IDF_TARGET}" STREQUAL "esp32s3") - set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32s3_devkit_c) - elseif("${IDF_TARGET}" STREQUAL "esp32c6") - set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c6_devkit_c) - elseif("${IDF_TARGET}" STREQUAL "esp32c2") - set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c2_devkit_m) - else() - message(FATAL_ERROR "Unsupported IDF_TARGET") - endif() -endif(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH}) - -set(ESP_MATTER_PATH $ENV{ESP_MATTER_PATH}) -set(MATTER_SDK_PATH ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip) - -# This should be done before using the IDF_TARGET variable. -include($ENV{IDF_PATH}/tools/cmake/project.cmake) -include($ENV{ESP_MATTER_DEVICE_PATH}/esp_matter_device.cmake) - -idf_build_set_property(RAINMAKER_ENABLED 1) - -set(EXTRA_COMPONENT_DIRS - "${MATTER_SDK_PATH}/config/esp32/components" - "${ESP_MATTER_PATH}/components" - "${ESP_MATTER_PATH}/device_hal/device" - "${ESP_MATTER_PATH}/examples/common" - "${RMAKER_PATH}/examples/common/app_insights" - "${RMAKER_PATH}/examples/matter/common" - ${extra_components_dirs_append}) - -project(RainMaker_Lights-Switch) - -idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++17;-Os;-DCHIP_HAVE_CONFIG_H" APPEND) -idf_build_set_property(C_COMPILE_OPTIONS "-Os" APPEND) -# For RISCV chips, project_include.cmake sets -Wno-format, but does not clear various -# flags that depend on -Wformat -idf_build_set_property(COMPILE_OPTIONS "-Wno-format-nonliteral;-Wno-format-security" APPEND) diff --git a/RainMaker_Lights-Switch/README.md b/RainMaker_Lights-Switch/README.md deleted file mode 100644 index 20511a182..000000000 --- a/RainMaker_Lights-Switch/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# Matter + Rainmaker Switch Example - -## What to expect in this example? - -- This demonstrates a Matter + RainMaker Switch. Matter is used for commissioning (also known as Wi-Fi provisioning) and local control, whereas RainMaker is used for remote control and OTA upgrades. -- This example uses the BOOT button and RGB LED on the ESP32-C3-DevKitC board to demonstrate a switch. -- To commission the device, scan the QR Code generated by the mfg_tool script using ESP RainMaker app. -- Pressing the BOOT button will send a toggle the power state of switch and send an on/off command to the remote device. This will also reflect on the phone app. -- Toggling the button on the phone app should toggle the LED on your board. -- To test remote control, change the network connection of the mobile. - -> Please refer to the [README in the parent folder](../README.md) for instructions. - -#### Optimization - -TO optimize the DRAM usage, this example uses the following optimizations: - -- Disables the chip shell, `CONFIG_ENABLE_CHIP_SHELL=n`, it adds approx 10KB or RAM. -- As this example has two endpoints (Endpoint 0: Root endpoint, Endpoint 1: Extended Color Light), the default dynamic endpoint count is set to 2. This is done by setting `CONFIG_ESP_MATTER_MAX_ENDPOINT_COUNT=2` in the menuconfig. - -For more optimizations please refer [esp-matter’s RAM Flash optimization guide](https://docs.espressif.com/projects/esp-matter/en/latest/esp32/optimizations.html) diff --git a/RainMaker_Lights-Switch/main/CMakeLists.txt b/RainMaker_Lights-Switch/main/CMakeLists.txt deleted file mode 100644 index c29ec2357..000000000 --- a/RainMaker_Lights-Switch/main/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -set(PRIV_REQUIRES_LIST device esp_matter esp_matter_console esp_matter_rainmaker app_reset - esp_rainmaker app_insights app_matter) - -idf_component_register(SRCS ./app_main.cpp ./app_matter_switch.cpp ./app_driver.cpp - PRIV_INCLUDE_DIRS "." - PRIV_REQUIRES ${PRIV_REQUIRES_LIST}) - -set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 17) -target_compile_options(${COMPONENT_LIB} PRIVATE "-DCHIP_HAVE_CONFIG_H") diff --git a/RainMaker_Lights-Switch/main/app_driver.cpp b/RainMaker_Lights-Switch/main/app_driver.cpp deleted file mode 100644 index 2ce1319f5..000000000 --- a/RainMaker_Lights-Switch/main/app_driver.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -static const char *TAG = "app_driver"; -extern uint16_t switch_endpoint_id; -static bool g_power = DEFAULT_POWER; - -/* Do any conversions/remapping for the actual value here */ -esp_err_t app_driver_switch_set_power(led_driver_handle_t handle, bool val) -{ - g_power = val; - return led_driver_set_power(handle, val); -} - -static void app_driver_button_toggle_cb(void *handle, void *usr_data) -{ - ESP_LOGI(TAG, "Toggle button pressed"); - app_matter_send_command_binding(!g_power); -} - -esp_err_t app_driver_light_set_defaults() -{ - return app_driver_switch_set_power((led_driver_handle_t)esp_matter::endpoint::get_priv_data(switch_endpoint_id), - DEFAULT_POWER); -} - -app_driver_handle_t app_driver_light_init() -{ - /* Initialize led */ - led_driver_config_t config = led_driver_get_config(); - led_driver_handle_t handle = led_driver_init(&config); - return (app_driver_handle_t)handle; -} - -app_driver_handle_t app_driver_button_init(void *user_data) -{ - /* Initialize button */ - button_handle_t handle = NULL; - const button_config_t btn_cfg = {0}; - const button_gpio_config_t btn_gpio_cfg = button_driver_get_config(); - - if (iot_button_new_gpio_device(&btn_cfg, &btn_gpio_cfg, &handle) != ESP_OK) { - ESP_LOGE(TAG, "Failed to create button device"); - return NULL; - } - - iot_button_register_cb(handle, BUTTON_PRESS_DOWN, NULL, app_driver_button_toggle_cb, user_data); - return (app_driver_handle_t)handle; -} diff --git a/RainMaker_Lights-Switch/main/app_main.cpp b/RainMaker_Lights-Switch/main/app_main.cpp deleted file mode 100644 index 6c368451e..000000000 --- a/RainMaker_Lights-Switch/main/app_main.cpp +++ /dev/null @@ -1,119 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -static const char *TAG = "app_main"; - -static app_driver_handle_t switch_handle; - -/* Callback to handle commands received from the RainMaker cloud */ -static esp_err_t write_cb(const esp_rmaker_device_t *device, const esp_rmaker_param_t *param, - const esp_rmaker_param_val_t val, void *priv_data, esp_rmaker_write_ctx_t *ctx) -{ - if (ctx) { - ESP_LOGI(TAG, "Received write request via : %s", esp_rmaker_device_cb_src_to_str(ctx->src)); - } - - const char *param_name = esp_rmaker_param_get_name(param); - if (strcmp(param_name, ESP_RMAKER_DEF_POWER_NAME) == 0) { - app_matter_send_command_binding(val.val.b); - } - return ESP_OK; -} - -extern "C" void app_main() -{ - /* Initialize NVS. */ - esp_err_t err = nvs_flash_init(); - if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { - ESP_ERROR_CHECK(nvs_flash_erase()); - err = nvs_flash_init(); - } - ESP_ERROR_CHECK(err); - - /* Initialize drivers for light and button */ - switch_handle = app_driver_light_init(); - app_driver_switch_set_power(switch_handle, DEFAULT_POWER); - app_driver_handle_t button_handle = app_driver_button_init(switch_handle); - app_reset_button_register(button_handle); - - /* Initialize Matter */ - app_matter_init(app_attribute_update_cb,app_identification_cb); - app_matter_rmaker_init(); - - /* Create Data Model for esp-matter */ - app_matter_switch_create(switch_handle); - - /* Matter start */ - esp_matter::client::set_request_callback(app_matter_client_command_callback, NULL, NULL); - app_matter_start(app_event_cb); - app_matter_send_command_binding(DEFAULT_POWER); - - /* Initialize the ESP RainMaker Agent. - * Create Lightbulb device and its parameters. - * */ - esp_rmaker_config_t rainmaker_cfg = { - .enable_time_sync = false, - }; - esp_rmaker_node_t *node = esp_rmaker_node_init(&rainmaker_cfg, "ESP RainMaker Device", "Switch"); - if (!node) { - ESP_LOGE(TAG, "Could not initialise node."); - vTaskDelay(5000 / portTICK_PERIOD_MS); - abort(); - } - esp_rmaker_device_t *switch_device = esp_rmaker_switch_device_create(SWITCH_DEVICE_NAME, NULL, DEFAULT_POWER); - esp_rmaker_device_add_cb(switch_device, write_cb, NULL); - - esp_rmaker_node_add_device(node, switch_device); - - /* Enable OTA */ - esp_rmaker_ota_config_t ota_config = { - .server_cert = ESP_RMAKER_OTA_DEFAULT_SERVER_CERT, - }; - esp_rmaker_ota_enable(&ota_config, OTA_USING_PARAMS); - - /* Enable timezone service which will be require for setting appropriate timezone - * from the phone apps for scheduling to work correctly. - * For more information on the various ways of setting timezone, please check - * https://rainmaker.espressif.com/docs/time-service.html. - */ - esp_rmaker_timezone_service_enable(); - - /* Enable scheduling. */ - esp_rmaker_schedule_enable(); - - /* Enable Scenes */ - esp_rmaker_scenes_enable(); - - /* Enable Insights. Requires CONFIG_ESP_INSIGHTS_ENABLED=y */ - app_insights_enable(); - - /* Pre start */ - ESP_ERROR_CHECK(app_matter_rmaker_start()); - - /* Enable Matter diagnostics console*/ - app_matter_enable_matter_console(); - - // RainMaker start is deferred after Matter commissioning is complete - // and BLE memory is reclaimed, so that MQTT connect doesnt fail. -} diff --git a/RainMaker_Lights-Switch/main/app_matter_switch.cpp b/RainMaker_Lights-Switch/main/app_matter_switch.cpp deleted file mode 100644 index 5a54d9755..000000000 --- a/RainMaker_Lights-Switch/main/app_matter_switch.cpp +++ /dev/null @@ -1,167 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -using namespace esp_matter; -using namespace esp_matter::attribute; -using namespace esp_matter::cluster; -using namespace esp_matter::endpoint; -using namespace chip::app::Clusters; - -static const char *TAG = "app_matter"; -uint16_t switch_endpoint_id; - -esp_err_t app_matter_send_command_binding(bool power) -{ - client::request_handle_t req_handle; - req_handle.type = esp_matter::client::INVOKE_CMD; - req_handle.command_path.mClusterId = OnOff::Id; - if (power == true) { - req_handle.command_path.mCommandId = OnOff::Commands::On::Id; - } else { - req_handle.command_path.mCommandId = OnOff::Commands::Off::Id; - } - - lock::chip_stack_lock(portMAX_DELAY); - esp_err_t err = client::cluster_update(switch_endpoint_id, &req_handle); - lock::chip_stack_unlock(); - return err; -} - -esp_err_t app_identification_cb(identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, - uint8_t effect_variant, void *priv_data) -{ - ESP_LOGI(TAG, "Identification callback: type: %d, effect: %d", type, effect_id); - return ESP_OK; -} - -esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16_t endpoint_id, uint32_t cluster_id, - uint32_t attribute_id, esp_matter_attr_val_t *val, void *priv_data) -{ - return ESP_OK; -} - -void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) -{ - switch (event->Type) { - case chip::DeviceLayer::DeviceEventType::PublicEventTypes::kCommissioningComplete: - ESP_LOGI(TAG, "Commissioning complete"); - break; - - case chip::DeviceLayer::DeviceEventType::PublicEventTypes::kBLEDeinitialized: - ESP_LOGI(TAG, "BLE deinitialized and memory reclaimed"); - // Starting RainMaker after Matter commissioning is complete - // and BLE memory is reclaimed, so that MQTT connect doesn't fail. - esp_rmaker_start(); - break; - - default: - break; - } -} - - -static void send_command_success_callback(void *context, const ConcreteCommandPath &command_path, - const chip::app::StatusIB &status, TLVReader *response_data) -{ - ESP_LOGI(TAG, "Send command success"); -} - -static void send_command_failure_callback(void *context, CHIP_ERROR error) -{ - ESP_LOGI(TAG, "Send command failure: err :%" CHIP_ERROR_FORMAT, error.Format()); -} - -void app_matter_client_command_callback(client::peer_device_t *peer_device, client::request_handle_t *req_handle, - void *priv_data) -{ - - if (req_handle->type != esp_matter::client::INVOKE_CMD) { - return; - } - char command_data_str[32]; - if (req_handle->command_path.mClusterId == OnOff::Id) { - /* RainMaker update */ - strcpy(command_data_str, "{}"); - const esp_rmaker_node_t *node = esp_rmaker_get_node(); - esp_rmaker_device_t *device = esp_rmaker_node_get_device_by_name(node, SWITCH_DEVICE_NAME); - esp_rmaker_param_t *param = esp_rmaker_device_get_param_by_name(device, ESP_RMAKER_DEF_POWER_NAME); - - if (req_handle->command_path.mCommandId == OnOff::Commands::Off::Id) { - app_driver_switch_set_power((app_driver_handle_t)priv_data, false); - esp_rmaker_param_update_and_report(param, esp_rmaker_bool(false)); - } else if (req_handle->command_path.mCommandId == OnOff::Commands::On::Id) { - app_driver_switch_set_power((app_driver_handle_t)priv_data, true); - esp_rmaker_param_update_and_report(param, esp_rmaker_bool(true)); - } else if (req_handle->command_path.mCommandId == OnOff::Commands::Toggle::Id) { - esp_rmaker_param_val_t *param_val = esp_rmaker_param_get_val(param); - app_driver_switch_set_power((app_driver_handle_t)priv_data, !param_val->val.b); - esp_rmaker_param_update_and_report(param, esp_rmaker_bool(!param_val->val.b)); - } - - } else if (req_handle->command_path.mClusterId == Identify::Id) { - if (req_handle->command_path.mCommandId == Identify::Commands::Identify::Id) { - if (((char *)req_handle->request_data)[0] != 1) { - ESP_LOGE(TAG, "Number of parameters error"); - return; - } - sprintf(command_data_str, "{\"0:U16\": %ld}", - strtoul((const char *)(req_handle->request_data) + 1, NULL, 16)); - }else { - ESP_LOGE(TAG, "Unsupported command"); - return; - } - }else { - ESP_LOGE(TAG, "Unsupported cluster"); - return; - } - - client::interaction::invoke::send_request(NULL, peer_device, req_handle->command_path, command_data_str, - send_command_success_callback, send_command_failure_callback, - chip::NullOptional); - -} - -esp_err_t app_matter_switch_create(app_driver_handle_t driver_handle) -{ - node_t *node = node::get(); - if (!node) { - ESP_LOGE(TAG, "Matter node not found"); - return ESP_FAIL; - } - - on_off_switch::config_t switch_config; - endpoint_t *endpoint = on_off_switch::create(node, &switch_config, ENDPOINT_FLAG_NONE, driver_handle); - if (!endpoint) { - ESP_LOGE(TAG, "Matter endpoint creation failed"); - return ESP_FAIL; - } - cluster::groups::config_t groups_config; - cluster::groups::create(endpoint, &groups_config, CLUSTER_FLAG_SERVER | CLUSTER_FLAG_CLIENT); - - switch_endpoint_id = endpoint::get_id(endpoint); - ESP_LOGI(TAG, "Switch created with endpoint_id %d", switch_endpoint_id); - return ESP_OK; -} diff --git a/RainMaker_Lights-Switch/main/app_matter_switch.h b/RainMaker_Lights-Switch/main/app_matter_switch.h deleted file mode 100644 index d5866b66e..000000000 --- a/RainMaker_Lights-Switch/main/app_matter_switch.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#pragma once - -#include -#include - -esp_err_t app_matter_switch_create(app_driver_handle_t driver_handle); -esp_err_t app_matter_send_command_binding(bool power); -void app_matter_client_command_callback(esp_matter::client::peer_device_t *peer_device, esp_matter::client::request_handle_t *req_handle, - void *priv_data); diff --git a/RainMaker_Lights-Switch/main/app_priv.h b/RainMaker_Lights-Switch/main/app_priv.h deleted file mode 100644 index 709de5032..000000000 --- a/RainMaker_Lights-Switch/main/app_priv.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#pragma once - -#include -#include - -/** Default attribute values used by Rainmaker during initialization */ -#define SWITCH_DEVICE_NAME "Matter Switch" -#define DEFAULT_POWER true - -typedef void *app_driver_handle_t; - -/** Initialize the light driver - * - * This initializes the light driver associated with the selected board. - * - * @return Handle on success. - * @return NULL in case of failure. - */ -app_driver_handle_t app_driver_light_init(); - -/** Initialize the button driver - * - * This initializes the button driver associated with the selected board. - * - * @param[in] user_data Custom user data that will be used in button toggle callback. - * - * @return Handle on success. - * @return NULL in case of failure. - */ -app_driver_handle_t app_driver_button_init(void *user_data); - -/** Set LED Power - * - * @param[in] handle Pointer to switch driver handle. - * @param[in] power LED power state. - * - * @return ESP_OK on success. - * @return error in case of failure. - */ -esp_err_t app_driver_switch_set_power(app_driver_handle_t handle, bool power); - - -esp_err_t app_attribute_update_cb(esp_matter::attribute::callback_type_t type, uint16_t endpoint_id, uint32_t cluster_id, - uint32_t attribute_id, esp_matter_attr_val_t *val, void *priv_data); - -esp_err_t app_identification_cb(esp_matter::identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, - uint8_t effect_variant, void *priv_data); - -void app_event_cb(const ChipDeviceEvent *event, intptr_t arg); diff --git a/RainMaker_Lights-Switch/main/idf_component.yml b/RainMaker_Lights-Switch/main/idf_component.yml deleted file mode 100644 index 0153ba480..000000000 --- a/RainMaker_Lights-Switch/main/idf_component.yml +++ /dev/null @@ -1,7 +0,0 @@ -## IDF Component Manager Manifest File -dependencies: - ## Required IDF version - idf: - version: ">=5.0.0" - espressif/esp_rainmaker: - version: ">=1.0" diff --git a/RainMaker_Lights-Switch/partitions.csv b/RainMaker_Lights-Switch/partitions.csv deleted file mode 100644 index ed666d027..000000000 --- a/RainMaker_Lights-Switch/partitions.csv +++ /dev/null @@ -1,10 +0,0 @@ -# Name, Type, SubType, Offset, Size, Flags -# Note: Firmware partition offset needs to be 64K aligned, initial 36K (9 sectors) are reserved for bootloader and partition table -esp_secure_cert, 0x3F, ,0xd000, 0x2000, encrypted -nvs, data, nvs, 0x10000, 0xC000, -nvs_keys, data, nvs_keys,, 0x1000, encrypted -otadata, data, ota, , 0x2000 -phy_init, data, phy, , 0x1000, -ota_0, app, ota_0, 0x20000, 0x1E0000, -ota_1, app, ota_1, 0x200000, 0x1E0000, -fctry, data, nvs, , 0x6000, diff --git a/RainMaker_Lights-Switch/partitions_4mb_optimised.csv b/RainMaker_Lights-Switch/partitions_4mb_optimised.csv deleted file mode 100644 index c53f54eb1..000000000 --- a/RainMaker_Lights-Switch/partitions_4mb_optimised.csv +++ /dev/null @@ -1,11 +0,0 @@ -# Name, Type, SubType, Offset, Size, Flags -# Note: Firmware partition offset needs to be 64K aligned, initial 36K (9 sectors) are reserved for bootloader and partition table -esp_secure_cert, 0x3F, ,0xd000, 0x2000, encrypted -nvs, data, nvs, 0x10000, 0xc000, -nvs_keys, data, nvs_keys,, 0x1000, encrypted -otadata, data, ota, , 0x2000 -phy_init, data, phy, , 0x1000, -ota_0, app, ota_0, 0x20000, 0x1E9000, -reserved, 0x06, , 0x209000, 0x7000, -ota_1, app, ota_1, 0x210000, 0x1E9000, -fctry, data, nvs, 0x3F9000, 0x6000 diff --git a/RainMaker_Lights-Switch/sdkconfig.defaults b/RainMaker_Lights-Switch/sdkconfig.defaults deleted file mode 100644 index ecd3fb2a6..000000000 --- a/RainMaker_Lights-Switch/sdkconfig.defaults +++ /dev/null @@ -1,87 +0,0 @@ -# Default to 921600 baud when flashing and monitoring device -CONFIG_ESPTOOLPY_BAUD_921600B=y -CONFIG_ESPTOOLPY_BAUD=921600 -CONFIG_ESPTOOLPY_COMPRESSED=y -CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B=y -CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 -CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y - -# Enable BT -CONFIG_BT_ENABLED=y -CONFIG_BT_NIMBLE_ENABLED=y - -# Disable BT connection re-attempts -CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT=n -CONFIG_BTDM_CTRL_MODE_BLE_ONLY=y - -# Enable lwip ipv6 autoconfig -CONFIG_LWIP_IPV6_AUTOCONFIG=y - -# Use a custom partition table -CONFIG_PARTITION_TABLE_CUSTOM=y -CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" -CONFIG_PARTITION_TABLE_OFFSET=0xC000 -CONFIG_PARTITION_TABLE_MD5=y - -# Enable chip shell -CONFIG_ENABLE_CHIP_SHELL=y - -# mbedtls -CONFIG_MBEDTLS_DYNAMIC_BUFFER=y -CONFIG_MBEDTLS_DYNAMIC_FREE_PEER_CERT=y -CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA=y - -# Temporary Fix for Timer Overflows -CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=3120 - -# Enable lwIP route hooks -CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y -CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y - -# Button -CONFIG_BUTTON_PERIOD_TIME_MS=20 -CONFIG_BUTTON_LONG_PRESS_TIME_MS=5000 - -# Disable softap by default -CONFIG_ESP_WIFI_SOFTAP_SUPPORT=n - -# ESP RainMaker -CONFIG_ESP_RMAKER_USER_ID_CHECK=y -CONFIG_ESP_RMAKER_NO_CLAIM=y -CONFIG_ESP_RMAKER_USE_ESP_SECURE_CERT_MGR=y -CONFIG_ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN=y -CONFIG_ESP_RMAKER_DISABLE_USER_MAPPING_PROV=y - -# ESP Matter -CONFIG_CHIP_FACTORY_NAMESPACE_PARTITION_LABEL="fctry" -CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER=y -CONFIG_ENABLE_ESP32_DEVICE_INSTANCE_INFO_PROVIDER=y -CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER=y -CONFIG_SEC_CERT_DAC_PROVIDER=y -CONFIG_DEVICE_VENDOR_ID=0x131B -CONFIG_DEVICE_PRODUCT_ID=0x2 - -CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL=n - -# Enable HKDF in mbedtls -CONFIG_MBEDTLS_HKDF_C=y - -# Use compact attribute storage mode -CONFIG_ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE=y - -# Increase LwIP IPv6 address number to 6 (MAX_FABRIC + 1) -# unique local addresses for fabrics(MAX_FABRIC), a link local address(1) -CONFIG_LWIP_IPV6_NUM_ADDRESSES=6 - -# If ESP-Insights is enabled, we need MQTT transport selected -# Takes out manual efforts to enable this option -CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT=y - -# Flash optimization -CONFIG_COMPILER_OPTIMIZATION_SIZE=y -CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y -CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT=y - -# DRAM optimization -CONFIG_ENABLE_CHIP_SHELL=n -CONFIG_ESP_MATTER_MAX_DYNAMIC_ENDPOINT_COUNT=2 \ No newline at end of file diff --git a/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c2 b/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c2 deleted file mode 100644 index e1cc0d985..000000000 --- a/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c2 +++ /dev/null @@ -1,121 +0,0 @@ -# Bluetooth -CONFIG_BT_ENABLED=y -CONFIG_BT_RELEASE_IRAM=y -CONFIG_BT_NIMBLE_ENABLED=y - -## NimBLE Options -CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 -CONFIG_BT_NIMBLE_MAX_BONDS=2 -CONFIG_BT_NIMBLE_MAX_CCCDS=2 -CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE=3072 -CONFIG_BT_NIMBLE_ROLE_CENTRAL=n -CONFIG_BT_NIMBLE_ROLE_OBSERVER=n -CONFIG_BT_NIMBLE_MSYS_1_BLOCK_COUNT=10 -CONFIG_BT_NIMBLE_MSYS_1_BLOCK_SIZE=100 -CONFIG_BT_NIMBLE_MSYS_2_BLOCK_COUNT=4 -CONFIG_BT_NIMBLE_ACL_BUF_COUNT=5 -CONFIG_BT_NIMBLE_HCI_EVT_HI_BUF_COUNT=5 -CONFIG_BT_NIMBLE_HCI_EVT_LO_BUF_COUNT=3 -CONFIG_BT_NIMBLE_GATT_MAX_PROCS=1 -CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT=n -CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT=n -CONFIG_BT_NIMBLE_WHITELIST_SIZE=1 -## Controller Options -CONFIG_BT_LE_CONTROLLER_TASK_STACK_SIZE=3072 -CONFIG_BT_LE_LL_RESOLV_LIST_SIZE=1 -CONFIG_BT_LE_LL_DUP_SCAN_LIST_COUNT=1 - -# SPI Configuration -CONFIG_SPI_MASTER_ISR_IN_IRAM=n -CONFIG_SPI_SLAVE_ISR_IN_IRAM=n - -# Ethernet -CONFIG_ETH_USE_SPI_ETHERNET=n - -# Event Loop Library -CONFIG_ESP_EVENT_POST_FROM_ISR=n - -# Chip revision -CONFIG_ESP32C2_REV2_DEVELOPMENT=y - -# ESP Ringbuf -CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH=y -CONFIG_RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH=y - -# ESP System Settings -CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=16 -CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2048 -CONFIG_ESP_MAIN_TASK_STACK_SIZE=3072 - -# Bypass a bug. Use 26M XTAL Freq -CONFIG_XTAL_FREQ_26=y - -## Memory protection -CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT=n - -# High resolution timer (esp_timer) -CONFIG_ESP_TIMER_TASK_STACK_SIZE=2048 - -# Wi-Fi -CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE=n -CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=3 -CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=6 -CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=6 -CONFIG_ESP32_WIFI_IRAM_OPT=n -CONFIG_ESP32_WIFI_RX_IRAM_OPT=n -CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=n -CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=n -CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=n - -# FreeRTOS -## Kernel -CONFIG_FREERTOS_HZ=1000 -CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y -## Port -CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=n -CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y -CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y - -# Hardware Abstraction Layer (HAL) and Low Level (LL) -CONFIG_HAL_ASSERTION_DISABLE=y - -# LWIP -CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=16 -CONFIG_LWIP_DHCPS=n -CONFIG_LWIP_IPV6_AUTOCONFIG=y -CONFIG_LWIP_MAX_ACTIVE_TCP=5 -CONFIG_LWIP_MAX_LISTENING_TCP=5 -CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=n -CONFIG_LWIP_TCP_SYNMAXRTX=12 -CONFIG_LWIP_TCP_MSL=40000 -CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=16000 -CONFIG_LWIP_TCP_SND_BUF_DEFAULT=4096 -CONFIG_LWIP_TCP_WND_DEFAULT=2440 -CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS=y -CONFIG_LWIP_TCP_RTO_TIME=1500 -CONFIG_LWIP_MAX_UDP_PCBS=8 -CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=2560 -CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y -CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y - -# mbedTLS -CONFIG_MBEDTLS_DYNAMIC_BUFFER=y -CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA=y -CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT=y -CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=n -CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN=y - -# SPI Flash driver -CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=n -CONFIG_SPI_FLASH_ROM_IMPL=y - -# Websocket -CONFIG_WS_TRANSPORT=n - -# Virtual file system -CONFIG_VFS_SUPPORT_DIR=n -CONFIG_VFS_SUPPORT_SELECT=n -CONFIG_VFS_SUPPORT_TERMIOS=n - -# Wear Levelling -CONFIG_WL_SECTOR_SIZE_512=y diff --git a/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c6 b/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c6 deleted file mode 100644 index 0caf64ced..000000000 --- a/RainMaker_Lights-Switch/sdkconfig.defaults.esp32c6 +++ /dev/null @@ -1,10 +0,0 @@ -# -# Use partition table which makes use of flash to the fullest -# Can be used for other platforms as well. But please keep in mind that fctry partition address is -# different than default, and the new address needs to be specified to `rainmaker.py claim` -# -CONFIG_PARTITION_TABLE_CUSTOM=y -CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_4mb_optimised.csv" - -# To accomodate security features -CONFIG_PARTITION_TABLE_OFFSET=0xc000 diff --git a/RainMaker_Table-Lights/.devcontainer/Dockerfile b/RainMaker_Table-Lights/.devcontainer/Dockerfile deleted file mode 100644 index dafb8adbb..000000000 --- a/RainMaker_Table-Lights/.devcontainer/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -ARG DOCKER_TAG=latest -FROM espressif/idf:${DOCKER_TAG} - -ENV LC_ALL=C.UTF-8 -ENV LANG=C.UTF-8 - -RUN apt-get update -y && apt-get install udev -y - -RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc - -ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] - -CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/RainMaker_Table-Lights/.devcontainer/devcontainer.json b/RainMaker_Table-Lights/.devcontainer/devcontainer.json deleted file mode 100644 index b80178618..000000000 --- a/RainMaker_Table-Lights/.devcontainer/devcontainer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "ESP-IDF QEMU", - "build": { - "dockerfile": "Dockerfile" - }, - "customizations": { - "vscode": { - "settings": { - "terminal.integrated.defaultProfile.linux": "bash", - "idf.espIdfPath": "/opt/esp/idf", - "idf.toolsPath": "/opt/esp", - "idf.gitPath": "/usr/bin/git" - }, - "extensions": [ - "espressif.esp-idf-extension", - "espressif.esp-idf-web" - ] - } - }, - "runArgs": ["--privileged"] -} \ No newline at end of file diff --git a/RainMaker_Table-Lights/CMakeLists.txt b/RainMaker_Table-Lights/CMakeLists.txt deleted file mode 100644 index e2aa6401d..000000000 --- a/RainMaker_Table-Lights/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# The following lines of boilerplate have to be in your project's CMakeLists -# in this exact order for cmake to work correctly -cmake_minimum_required(VERSION 3.5) - -if(DEFINED ENV{RMAKER_PATH}) - set(RMAKER_PATH $ENV{RMAKER_PATH}) -else() - set(RMAKER_PATH ${CMAKE_CURRENT_LIST_DIR}/../..) -endif(DEFINED ENV{RMAKER_PATH}) - -# Add RainMaker components and other common application components -set(EXTRA_COMPONENT_DIRS ${RMAKER_PATH}/examples/common) - -set(PROJECT_VER "1.0") -include($ENV{IDF_PATH}/tools/cmake/project.cmake) -project(RainMaker_Table-Lights) diff --git a/RainMaker_Table-Lights/Makefile b/RainMaker_Table-Lights/Makefile deleted file mode 100644 index a65c6568d..000000000 --- a/RainMaker_Table-Lights/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# -# This is a project Makefile. It is assumed the directory this Makefile resides in is a -# project subdirectory. -# - -PROJECT_NAME := switch -PROJECT_VER := 1.0 - -# Add RainMaker components and other common application components -EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/../../components $(PROJECT_PATH)/../common - -include $(IDF_PATH)/make/project.mk diff --git a/RainMaker_Table-Lights/README.md b/RainMaker_Table-Lights/README.md deleted file mode 100644 index 800861971..000000000 --- a/RainMaker_Table-Lights/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# Switch Example - -## Build and Flash firmware - -Follow the ESP RainMaker Documentation [Get Started](https://rainmaker.espressif.com/docs/get-started.html) section to build and flash this firmware. Just note the path of this example. - -## What to expect in this example? - -- This example uses the BOOT button and RGB LED on the ESP32-S2-Saola-1/ESP32-C3-DevKitC board to demonstrate a switch. -- The LED state (green color) indicates the state of the switch. -- Pressing the BOOT button will toggle the state of the switch and hence the LED. This will also reflect on the phone app. -- Toggling the button on the phone app should toggle the LED on your board, and also print messages like these on the ESP32-S2 monitor: - -``` -I (16073) app_main: Received value = true for Switch - power -``` - -### LED not working? - -The ESP32-S2-Saola-1 board has the RGB LED connected to GPIO 18. However, a few earlier boards may have it on GPIO 17. Please use `CONFIG_WS2812_LED_GPIO` to set the appropriate value. - -### Reset to Factory - -Press and hold the BOOT button for more than 3 seconds to reset the board to factory defaults. You will have to provision the board again to use it. diff --git a/RainMaker_Table-Lights/build/.bin_timestamp b/RainMaker_Table-Lights/build/.bin_timestamp deleted file mode 100644 index b446db4b8..000000000 --- a/RainMaker_Table-Lights/build/.bin_timestamp +++ /dev/null @@ -1 +0,0 @@ -3d56a26e2998c9ff8562bbe65425e331 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin diff --git a/RainMaker_Table-Lights/build/.ninja_deps b/RainMaker_Table-Lights/build/.ninja_deps deleted file mode 100644 index e17d499e9..000000000 Binary files a/RainMaker_Table-Lights/build/.ninja_deps and /dev/null differ diff --git a/RainMaker_Table-Lights/build/.ninja_log b/RainMaker_Table-Lights/build/.ninja_log deleted file mode 100644 index 61d7c65b3..000000000 --- a/RainMaker_Table-Lights/build/.ninja_log +++ /dev/null @@ -1,1256 +0,0 @@ -# ninja log v6 -66725 67002 1751100318428169174 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj 612ae93168558741 -66722 66924 1751100318425567247 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj 8cd5b375afe0e378 -44414 44583 1751100296117022296 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 84bebfdcee94ad9 -15947 16711 1751100267650834910 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj e87b1f2d467cbf6e -66601 66811 1751100318304168358 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 9fa2455e45d0fafa -78031 78049 1751100329750243712 bootloader-prefix/src/bootloader-stamp/bootloader-done 7a626262de7b9248 -66785 66808 1751100318508766278 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S 9ecc7680e5f50f4a -66659 66725 1751100318362168739 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a 3e4deb4e3bce6789 -65426 66659 1751100317129160622 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj 9ce150f2a88a438 -66468 66598 1751100318172094073 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj 15f3d141c63fa373 -66447 66468 1751100318150167344 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a d7008c066758865f -66101 66449 1751100317804165066 esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj bd1aaa141ce5ea -37106 37209 1751100288808974187 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 479c94579302aaa9 -70702 70921 1751100322405195356 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj 746bc648fe9f4ece -66428 66448 1751100318131167219 esp-idf/espressif__json_generator/libespressif__json_generator.a 17b144af1e79a53b -61585 62087 1751100313288135336 esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj f1f6c442a6a2a5f9 -30973 31349 1751100282675933814 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 7ec2559ea6c535f6 -66421 66447 1751100318125137262 esp-idf/espressif__json_parser/libespressif__json_parser.a 3029e1a28a34a0b2 -66399 66421 1751100318102167028 esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a 1bd970e19b798c6f -66347 66399 1751100318050855471 esp-idf/wifi_provisioning/libwifi_provisioning.a 22ed3ab7006d1635 -66351 66383 1751100318054166712 esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a df1522814b149427 -52195 52363 1751100303898073519 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj 7a069137969bce57 -66320 66347 1751100318024166514 esp-idf/espcoredump/libespcoredump.a ff199f5918b2dae8 -66193 66319 1751100317896165672 esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj d04860d2d54cfad5 -70568 70702 1751100322271194474 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj a0dde9f07805cf5d -65957 66316 1751100317660164118 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj f11dc9c1871e92aa -65821 66193 1751100317524163223 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj a1dbaa9bdc65aa3f -65632 66101 1751100317335161978 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj 344ad20d88c76656 -65805 65957 1751100317508163117 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj ef3235d9bf80abd9 -35241 35406 1751100286943961910 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj aeb3ed9436585420 -65473 65821 1751100317176160932 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj 3f8cb376cd8eb44e -64679 65230 1751100316382155704 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj a41c430709d2196c -65139 65195 1751100316842158733 esp-idf/espressif__mdns/libespressif__mdns.a 1664e97c65fdc04 -64653 65063 1751100316356155533 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj c3859966da37c713 -64727 64926 1751100316430156020 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj bbe3828c0bc4deb6 -5644 5939 1751100257347767091 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 31e34254e72cb8b4 -64555 64679 1751100316258154888 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 135599b49a140868 -64328 64555 1751100316031153394 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj 49ff1a69e4c3f7b6 -64204 64519 1751100315907152577 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj 4eb9ce57e0aa1e46 -63928 64267 1751100315632551682 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj f3c7639c8548059b -63877 64170 1751100315580150425 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj 21a10aee350c6830 -54501 54745 1751100306204088700 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj 55f0b4780d4ef78e -63685 63948 1751100315388149160 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj 4b4e4a3427b383c3 -53042 54079 1751100304745079095 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj 322606121bbe373a -49887 49913 1751100301590058325 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj 2dfb3e103e908780 -67454 68044 1751100319157173973 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj ee86a1068977ec45 -63844 63876 1751100315547150207 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a 82348691a66edc1f -63423 63843 1751100315126147436 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 11d6c7fd663d6668 -55992 56566 1751100307695098515 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj b66e2801e5cea18e -63516 63684 1751100315219148048 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj 1b6b28a9e0d0beb6 -66448 66470 1751100318172094073 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S c396c1030cfdf727 -83707 83765 1751100335410280975 esp-idf/esptool_py/CMakeFiles/app_check_size f95b2b429e258b01 -63273 63631 1751100314976146448 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj d735cdaceb3e878c -63087 63323 1751100314791095545 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 363dc09f4b080828 -62864 63086 1751100314567143756 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj f4815c87d7f40e8e -62222 62952 1751100313926809611 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 4e561cb89e3b63aa -17750 18191 1751100269453846779 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 43b4ca620b874325 -62230 62894 1751100313933139582 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 1fb44143dd7b8171 -55195 56888 1751100306898093268 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj 88e5e5106a88a16c -62597 62864 1751100314300141998 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj a61bdd7b11a2d921 -62849 63091 1751100314552143657 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj e210dd2744aa1eaa -62691 62848 1751100314394142617 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj f2e08f065383b89f -62236 62529 1751100313939139621 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj db949cf79a7eeae9 -107 385 1751100251811691757 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 8808cc1ab8429bd8 -62087 62315 1751100313790138640 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj f209c0ef33f6b167 -62156 62222 1751100313859139095 esp-idf/protocomm/libprotocomm.a 7023c37ac18cf2c4 -61736 62135 1751100313439136330 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj f1f5975f7b4b6092 -61563 61975 1751100313266135191 esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj 54e800c5e086d99e -1327 1726 1751100253030738675 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 791812fd7dfa48ec -13973 14084 1751100265677163268 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj bb67e3001ced1126 -60427 61969 1751100312130127712 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 33dfac7e37eb6c54 -61801 61868 1751100313504136757 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj 16ee5903b5b12f9 -49202 49670 1751100300905053816 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 3a37b50b765815b5 -63048 63066 1751100314751144967 esp-idf/json/libjson.a 54445376ee98766a -61660 61801 1751100313363135829 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj 9ccc2e59d494fff0 -42968 43338 1751100294671012777 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj e8eddf71e836c8da -35173 35668 1751100286875961462 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj c90d0b0abbc89f1a -61135 61736 1751100312838132373 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj 9ef1867e9beec3f8 -60971 61660 1751100312674131293 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj 78b62e20a092cfa7 -61402 61585 1751100313106172617 esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj 60febce377d9930 -61227 61563 1751100312930132979 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj 962e480dcc864615 -40434 40661 1751100292136996095 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj 8631bfc58f74dd62 -61002 61302 1751100312705131497 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj 7fb600db56e1789e -14783 15215 1751100266486827249 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj 124a891d1e89ab30 -60801 61022 1751100312504130174 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj 158a64c36b667818 -48396 56448 1751100308150101511 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 1394562008e1d948 -60801 60970 1751100312505744265 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj c5e4115327f291b7 -60246 60801 1751100311953126547 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj 2f1a7a225730bae7 -62895 63034 1751100314598143960 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj 32d5ae4baf37a9fd -60713 60760 1751100312416129595 esp-idf/mqtt/libmqtt.a df32b6074091ae45 -66808 66835 1751100318533020011 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S 7e6877fdfdade34f -60080 60713 1751100311783125428 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b2f9e1c12e147624 -60154 60498 1751100311858062095 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 385672f70d1b6a04 -60760 61001 1751100312463129904 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj 5c0818dabacdfa97 -59987 60245 1751100311690124815 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj a930dc7576f8b409 -59973 60153 1751100311676124723 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj a41e559c7fd2c64e -59730 59984 1751100311433123123 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 7dc0238a3f85b9c5 -59949 59973 1751100311652124565 esp-idf/protobuf-c/libprotobuf-c.a d5db1061dd594e79 -73584 73623 1751100325287214330 esp-idf/ledc_driver/libledc_driver.a 11f27920206212fb -59589 59915 1751100311292122195 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj e27c1ac1131b11fd -59645 59730 1751100311348122564 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 1e4cb90765f81e06 -53590 53760 1751100305294540923 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj aff30c40764aca92 -59240 59530 1751100310943119898 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj e130154039fe50ef -49146 49191 1751100300892812332 x509_crt_bundle.S d039b303f57c1035 -35668 35893 1751100287370964721 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 5d28d125654cd8c2 -30894 30919 1751100282598400383 esp-idf/cxx/libcxx.a 9b9d9cfeab38708 -58710 59240 1751100310413116408 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 4e8ca1b80a08a9f5 -58649 59094 1751100310352116007 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj f219b097d777fd98 -58880 59031 1751100310583117528 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 5d7ef7ee89aef02b -58611 58880 1751100310315115763 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b04a3b75576517e6 -55459 56060 1751100307162095006 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj a9ba81fc35081634 -58678 58812 1751100310381116198 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj e548c3542e93a72c -58498 58790 1751100310201115013 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj dd1ff8c1251c30f7 -72772 72810 1751100324475208984 esp-idf/espressif__esp_insights/libespressif__esp_insights.a 73dd4d31a0ef5d0c -83419 83707 1751100335409280969 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/.bin_timestamp d8da76886bd29617 -58166 58709 1751100309869112827 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj d1fee74de38c9fe -63246 64328 1751100314949146270 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj e97e7b072bfe0629 -58423 58678 1751100310126114519 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj f7172991e1886f86 -58414 58498 1751100310117114460 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 1c34891674e4063e -30849 30894 1751100282551963027 esp-idf/esp_timer/libesp_timer.a 6fdb7263bb646980 -58272 58423 1751100309975113525 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 7dfd5dd6f02f4a52 -59530 59566 1751100311234453992 esp-idf/esp_eth/libesp_eth.a 10f29ce044eee4be -58231 58421 1751100309934113255 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj d909e73e5802f8 -45082 45407 1751100296785026693 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 8317e1986f68aba7 -57532 58231 1751100309235108653 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj ec299b3f6f28605e -41128 41198 1751100292831000664 esp-idf/efuse/libefuse.a ce018124b24c839b -57706 58165 1751100309409109799 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj 10ba579cf83b14db -5061 5405 1751100256765224927 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 2b6357a3f56c3b41 -57402 58099 1751100309121107903 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj b9dba5e9d0a2bc7f -57553 57842 1751100309256108792 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj bb78e2f1cf7f81ba -57458 57646 1751100309162023318 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj d7fbb7700dc4a777 -57032 57392 1751100308735105362 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj 92b58352ea452b03 -4872 5152 1751100256575762009 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 812c84239ce1dd55 -57109 57360 1751100308812105869 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj 3d7fc331feb5d65c -57366 57717 1751100309070486740 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj 70d496fd17240011 -34995 35138 1751100286697960290 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj dcc4a47b43c2e2b0 -56964 57332 1751100308667104914 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj 7d9533bfc6615a0a -57033 57109 1751100308736105368 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj 686257edee858779 -71979 72246 1751100323682203763 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj 36928c363bcf6a61 -56619 57032 1751100308322102643 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj aeb3caa2422531b7 -56889 56963 1751100308592104420 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj d3314711e18f787b -58008 58447 1751100309711111787 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj 8f0d32ede1cf3ff9 -61969 62376 1751100313672137864 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj 7ef8eddc61aa0177 -4210 4230 1751100255914185020 esp-idf/http_parser/libhttp_parser.a bc8382026e2920c -14459 14691 1751100266162825116 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj 246a3c11e71aa67c -37344 37591 1751100289046975754 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj de5f1b677e7c7a5f -9681 10131 1751100261384793664 esp-idf/wpa_supplicant/libwpa_supplicant.a 46bf1a1ccb77e2c9 -35758 35975 1751100287460965313 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj c9d5e9c8a21c662c -41300 41729 1751100293003985371 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 90834831ef4e3eda -38890 39239 1751100290592985931 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b53d66bc9a743bb1 -14756 15616 1751100266459827071 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj c394dfab600dd0de -30391 30487 1751100282093929983 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 4412ee1a04c274d8 -30031 30156 1751100281733927613 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj 8d71378461849620 -190 615 1751100251893731191 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj 8d2c5833ba7ddaf4 -2560 4209 1751100254263746791 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 446146733358d115 -44664 44912 1751100296367023941 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj 726959ff86e7751c -5939 6242 1751100257642769033 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj edbc5b0b63d3d1f1 -53760 53960 1751100305463083821 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj b736bf1b32dcd54c -14081 14230 1751100265784822627 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj af24dc79f560a96d -64402 64546 1751100316105153881 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj 6e6c6494b3aa6f32 -29807 30082 1751100281509926138 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj 801e979682832a1d -12540 12682 1751100264243812483 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 6c4499e434aa7889 -42934 43248 1751100294637012553 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 8052fe4796d908b5 -63287 63516 1751100314990146540 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj d4bd50bd5b84db4e -13445 13647 1751100265149818447 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj 4c2c99dd55357a7e -12796 13158 1751100264499814169 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 3018bf8e7cf89b8c -17931 17949 1751100269634847970 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 994f406011ef17d3 -74070 81712 1751100333344240674 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld cbc92b86105559f9 -7078 7580 1751100258783776543 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 34f51591fd8eabad -12785 13229 1751100264488814096 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b1a4dd5f0d8ca8bd -107 704 1751100251810730645 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 474b99fc9410bb45 -64170 64475 1751100315873152353 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj 42b55add08c55c7e -30669 30900 1751100282372089620 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 3a51150936f555af -37619 37786 1751100289321977564 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 832d9f4776e43efc -46630 46780 1751100298333036883 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 18c45d5e40d92448 -26725 27076 1751100278427905851 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj efc4aca7d2c90c61 -65195 65805 1751100316898159101 esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj db102225786fa026 -6243 6750 1751100257947175763 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1f7b21925094690e -49697 49943 1751100301400057074 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj ab8a01f9ac32ff2f -11098 11815 1751100262801802992 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj cf3d2ce1d112cd5f -5699 6263 1751100257402767453 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 368febbc9fdf3b82 -66592 66634 1751100318295168298 esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a 58f08372367a5b78 -73527 74042 1751100325230213954 esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj 40753116e20cd1a5 -2815 3246 1751100254518748470 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 4f1e45629c96f1c2 -59094 59518 1751100310797118936 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 9adc3fa0dfb3d21d -13821 14081 1751100265524820916 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 9ec1bd1ab1e4003a -41968 42179 1751100293671006194 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 698053fa5f984284 -14026 14210 1751100265730822272 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 9496ee6624af6e1d -2081 2238 1751100253784743638 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj 4687c78e28c79542 -40661 40782 1751100292363997590 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj dc6d50d6bc668a31 -75 104 1751100251805730612 esp-idf/esp_system/ld/sections.ld.in fc7b1202f87e0b18 -13158 13445 1751100264863816565 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj ec249335162db378 -40696 40918 1751100292398997820 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 6db090d7a28b1909 -63631 63928 1751100315334148805 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj d3abf83ee1aab418 -7582 8671 1751100259285779848 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj 691fc2d8fe7aa542 -2016 2340 1751100253719743210 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj aba5d9de2d37708b -4045 4234 1751100255748756566 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj 2fd2d91d6fc3b92b -67135 67267 1751100318838171873 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj d3a2b7d181a13216 -47965 48056 1751100299669146183 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj adaf4a38d3af24f1 -557 1585 1751100252260733607 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 3bced9fc3b1eb49a -1955 2081 1751100253659742815 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj a1d84ee63bdfee95 -73610 73645 1751100325313214501 esp-idf/app_network/libapp_network.a 23657239e4d35083 -13231 13347 1751100264934817032 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 44432a6c03681728 -32470 32592 1751100284172943669 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj aae3bcd77ef78437 -63674 64012 1751100315377149088 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 3cc61a097614fa1e -705 1327 1751100252408734581 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj baba2dadc15d1915 -40860 41221 1751100292563035390 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 6e43768cacc338d0 -38385 38472 1751100290087982607 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj 83b82194f68cb6bd -10915 11103 1751100262618801787 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 453efaa4f01f459b -7344 7851 1751100259047778281 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj adb298a0518c38d5 -59567 60067 1751100311270122050 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj bc88fdaf3e2517d2 -7383 7672 1751100259086778538 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 951dcbc616cb72a5 -11226 11502 1751100262929803834 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 3ae7ae0a41b5730e -73619 78025 1751100325322214560 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin b654efa67ae80a01 -11506 11883 1751100263210805684 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 1c75f9a0bccbe0f1 -32393 32501 1751100284095943162 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b23e9a6b03d0c5d1 -50201 50541 1751100301904060392 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj 2d240a19353dbcd0 -28952 29119 1751100280654920511 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 1b458bb4c6ed123c -847 897 1751100252550735515 esp-idf/esp_http_server/libesp_http_server.a a69da1dbfefd3756 -62315 62690 1751100314018140141 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj bfd636aba772642e -1585 1619 1751100253288740373 esp-idf/esp_http_client/libesp_http_client.a 10a4bd5fded9883b -18437 19002 1751100270140851301 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj cd98d89e103b490c -36025 36326 1751100287727967071 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj ce94ef13353714a3 -47452 47544 1751100299155807069 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj d62c90cf252ec2b9 -73619 78025 1751100325322214560 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-build b654efa67ae80a01 -5130 5440 1751100256833763708 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 40720b561fa33713 -16275 16448 1751100267978837070 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj e691557410ef2f24 -50331 50377 1751100302034061248 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 7d0bda5cd882a662 -3792 4135 1751100255495754900 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj 8aad859664e4d2f6 -11496 12540 1751100263199805612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj dd0ac995f65aae09 -2977 3181 1751100254680749536 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 4a1cb2edddf19480 -17845 17909 1751100269549847411 esp-idf/esp_driver_i2c/libesp_driver_i2c.a 80e81793cdfb28eb -31455 31530 1751100283157936987 esp-idf/newlib/libnewlib.a 6e696e2ff28c3a8f -12779 13101 1751100264482814057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 5bd790761b6386fb -1793 1955 1751100253496741742 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 58d9d2790149dc23 -1962 2673 1751100253665742855 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj d0d558e737fa3e61 -70614 70891 1751100322317194777 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj b567aa40d17e31b2 -48342 48367 1751100300069048312 bootloader-prefix/src/bootloader-stamp/bootloader-download 9418e9663d5226d3 -36225 36360 1751100287928968394 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj ec86338821fbd025 -82 190 1751100251877692947 ota_data_initial.bin d29e81e4836eaad6 -39509 39884 1751100291211990006 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 9dfa1674ca91c28 -78031 78049 1751100329750243712 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete 7a626262de7b9248 -51148 51521 1751100302852011760 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj cc7641396da30cf3 -70155 70346 1751100321858191755 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 3fe9b30663463231 -45173 45780 1751100296876027292 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b4da13ad0b90588a -3177 3281 1751100254880750852 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj 7daede043e3096f2 -30546 30707 1751100282249931010 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj 911f0ba02cd0b80e -7672 7784 1751100259375780440 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 2fe92ff348e844a2 -50773 51103 1751100302476064157 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj d4bce43cf4564756 -65238 65425 1751100316941159385 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj d177bff5071802b5 -29964 30180 1751100281666927172 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj eb872eafc19e9ded -44213 44614 1751100295916020973 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 8784501d8f651836 -3247 3513 1751100254950751313 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj 10e1e6f3d94642c2 -14691 15353 1751100266394826643 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj ed9d2db66b879d0a -36137 36585 1751100287841967822 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj 3df7619ea4ecfcb0 -71033 71435 1751100322736946761 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 70edb6ea1f69fdb6 -66785 66808 1751100318508766278 rmaker_claim_service_server.crt.S 9ecc7680e5f50f4a -9505 9659 1751100261208792506 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 409bdb881c9fe5fd -17498 17589 1751100269202637813 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj 50b7852cbf29a2e5 -26095 26358 1751100277797901704 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 8b980bdce5d40b21 -73619 78025 1751100325322214560 bootloader/bootloader.bin b654efa67ae80a01 -64546 64653 1751100316249154829 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj 2d0e8c8ded1a505f -72970 73245 1751100324673210287 esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj ed23fbbcc97a2cc1 -3147 3644 1751100254851422706 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 92180daab71f4101 -1663 1965 1751100253366740887 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj e2bb59899dec1c0b -66075 66138 1751100317778164895 esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a cf1f14b0bcee4b7c -47346 47572 1751100299049041597 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj 8f387a0f5ca9c5d6 -65063 65414 1751100316766158233 esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj f8370764b7b7856c -13311 13507 1751100265014817559 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 5b0e629305894e1 -30180 30271 1751100281882928594 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj 448f214d6f729403 -5440 5772 1751100257143765748 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 2c962c2d846c43ac -11737 12144 1751100263440807198 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj c1b8bcf2a929132a -44264 44453 1751100295968139459 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 522c74f3d603930b -58422 58611 1751100310125114512 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 137f643c916216d2 -54746 55299 1751100306450144980 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj 7132641c0b00bc89 -18815 19503 1751100270518853790 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 3667313f289ca3a5 -68342 68909 1751100320045179819 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj 896829b901976faa -14093 14354 1751100265796822706 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 433af8b41babcf7d -4914 5130 1751100256617762286 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj a8a26bd28872bab1 -46801 47065 1751100298504038009 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 1bcc3171fdcb626b -29804 30044 1751100281506926119 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj c434d1d37fa228c0 -32863 33023 1751100284565946256 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 8917987110bc5524 -13887 14093 1751100265590821350 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 9af16cb60b3fea9 -16948 17406 1751100268651841500 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 60d8dde6082a62d9 -73513 73619 1751100325216213862 esp-idf/spiffs/libspiffs.a 4352691b66a95ba8 -50588 51265 1751100302291062940 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj 5506d46d482db60a -25914 26724 1751100277616900513 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 9b92d005f4af9170 -34809 34922 1751100286511959066 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj 60f5d13dbf956a57 -15605 16948 1751100267308832659 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 1a0400c7b878f709 -3679 4060 1751100255382754157 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj f09f47437e15eccd -45897 46208 1751100297600032058 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj fc9d4bc9c0422ae -74 105 1751100251807730625 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld e496808630e3c6ec -57646 57799 1751100309349109404 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj 580eead9754ed5d4 -42699 43308 1751100294402011006 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj e4cfd84f1963dc5 -6708 7047 1751100258411774095 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 62707121f7dad78c -45407 45635 1751100297110028833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5f8c89bdaa0bfd20 -72951 73421 1751100324654210162 esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj a417837a45577649 -43110 43229 1751100294813013711 esp-idf/mbedtls/mbedtls/library/libmbedtls.a e6c4d25fa8b34624 -70271 70639 1751100321974192519 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 479827e5bb6ab334 -13101 13310 1751100264804816176 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj 3ac4c951dec635a5 -17909 17931 1751100269612847826 esp-idf/esp_driver_sdm/libesp_driver_sdm.a 63bb26b8f5c9f98f -9438 9835 1751100261141792065 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj d485354cd9a4009b -35795 36029 1751100287497965557 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 6ece4e9bad92ad52 -31305 31521 1751100283007936000 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj 4a7bf15826158a20 -4817 5060 1751100256520761647 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 6a2bebf45f419afb -51716 51933 1751100303420293824 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj bbfc02b601ca2868 -31852 32393 1751100283554939601 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj a1389bb03cc488e1 -10785 11070 1751100262488800931 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 2b2ad1ba14225a6 -10731 11047 1751100262434800576 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj a044d217b461761f -378 549 1751100252081732428 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj be43280b695296d -3338 3679 1751100255041751912 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 8b2f8cb8b30b6995 -67969 68615 1751100319672177364 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj 6cf32ed0fdf3834c -24326 29272 1751100276030890072 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 6dd57aa95272b73b -60391 61400 1751100312094127475 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj efd9bbc5a9d39e2e -4230 4274 1751100255933757784 esp-idf/esp_wifi/libesp_wifi.a ca7c798426822f23 -58447 58692 1751100310150114677 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj be6b1e5dbd9f9ea7 -40354 40440 1751100292056995569 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj 51117c983db9b985 -3960 4442 1751100255663756006 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj 454148ae743640fc -13282 13521 1751100264985817368 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 2615d52b25668b00 -13647 13832 1751100265350819771 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj efd5da5e816bc793 -5444 5686 1751100257148765781 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 8a98c60258114410 -37411 37694 1751100289113976195 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj d9b84d790604046 -6790 7118 1751100258493774634 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj e817e369fdbbd98a -64563 64875 1751100316266154941 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj d1924f6cca63199f -29489 29669 1751100281191924045 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b166633a8e551f31 -43202 43568 1751100294905014317 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 767bc8f7e292137c -6009 7139 1751100257715769513 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 419827d0865b3091 -4234 4682 1751100255937757810 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 92e689a2399d630f -31521 31851 1751100283224867935 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj e1e4141282e29497 -4274 4483 1751100255977758073 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj 816af3d10ffbba9c -12371 12571 1751100264074811371 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 495360735613f44b -2713 2831 1751100254416747798 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 62d33cde375da6f -4061 4914 1751100255764756671 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj f6c8dbd07ff7887f -57721 58413 1751100309424109898 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj c993e817b00d0e3d -30156 30326 1751100281858928436 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 3bf7e542af17068d -64519 65238 1751100316222154651 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj b2cd0b7decd006fe -4962 5104 1751100256665762602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 8ff1079c2f2a636a -33759 33973 1751100285461952154 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj 244366a80b38b541 -34313 34355 1751100286015955801 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj fd2d8e8147f45f14 -4743 4962 1751100256446761160 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 7364498071b7a095 -34845 34965 1751100286548286485 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 5337fa5413170aa1 -47171 47319 1751100298874040445 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj c496259488c0b32a -30284 30391 1751100281987929285 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 5cf5c93ccd4666f4 -74 105 1751100251807730625 esp-idf/esp_system/ld/memory.ld e496808630e3c6ec -33024 33372 1751100284727969879 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj f7b6d10eaeb90839 -62376 63273 1751100314079140543 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj a47e8d2e3e6a61bc -38022 38261 1751100289724980217 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b84ec506e117a46b -5104 5443 1751100256807763536 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b7951a9133f2a0f3 -34496 34523 1751100286198957006 esp-idf/esp_security/libesp_security.a 8a87028f1dc1e698 -48317 48341 1751100300042048134 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 2169c3c1d204b0e5 -1927 1962 1751100253630742624 esp-idf/tcp_transport/libtcp_transport.a fafd644cb5102b82 -6263 7383 1751100257969771185 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 3f36db5b181359c1 -33372 33532 1751100285074949607 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj 7569f1cad5080ac1 -47243 47637 1751100298946040919 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj e168306c41bcb33d -41286 41314 1751100292989001704 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 55a054d5f62e9af1 -32930 33184 1751100284632946697 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj a033163888a2c287 -75 377 1751100251898731224 partition_table/partition-table.bin b5cdc615c921bc36 -66316 66350 1751100318019166481 esp-idf/esp_local_ctrl/libesp_local_ctrl.a c1559c03ac65145c -44923 45025 1751100296626025646 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj ee991f13ee420af0 -5686 6034 1751100257389767367 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj e417b419185d0320 -35138 35458 1751100286840961232 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj 89b342e96d58f68b -67123 67525 1751100318826171794 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj 8b9db137663f875a -25729 25913 1751100277431899295 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 6500e5f3ed42f70e -13663 13926 1751100265367819882 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 3557dfaf3f00e24 -60498 60801 1751100312201128179 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj fbd899958f54b86a -12640 12825 1751100264344188370 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 11be1ee97343d613 -51462 51779 1751100303166224528 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj e58ebc5736dd09f5 -82 94 1751100251794730539 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c e5191f472c17dce0 -82 190 1751100251877692947 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/ota_data_initial.bin d29e81e4836eaad6 -29389 30030 1751100281091923387 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b04852ec3f0691e4 -59984 60347 1751100311687124796 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj e935db2b0feac7e2 -54167 54501 1751100305870086501 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj 6716ae410d3820ea -58926 59949 1751100310630117837 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj bd78fd4f2f3671d4 -43568 43682 1751100295271016726 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj f72f2fae4048e669 -33935 34162 1751100285637953313 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj 80b9af89ffe0a2f4 -7047 7343 1751100258750776326 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 8be3b0a908ca699d -73540 73561 1751100325243214040 esp-idf/app_insights/libapp_insights.a fee4dfd304d0e78d -34144 34273 1751100285846954688 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj 72e7a6ad67cedf35 -14653 14783 1751100266356826393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj f484e98c030369c -37128 37269 1751100288830974332 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj f83a5c214a82faf8 -62136 62156 1751100313840009160 esp-idf/esp_https_server/libesp_https_server.a 944facf5abf1b8a7 -64124 64303 1751100315827152051 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj e56be57323aced46 -24613 25270 1751100276315891948 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj e7c843bab2b74f67 -615 883 1751100252318733988 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj ec9d7c447fdfb994 -14714 15227 1751100266417826794 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 7ff406dfd870816b -70723 71122 1751100322426195495 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj c6df40d84987db8a -54080 54511 1751100305784579932 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj fecf9949d6ae9b42 -15134 15432 1751100266837829559 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 7607d4f2e0f9da25 -32502 32721 1751100284204943879 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 797eba9b92f060d1 -33180 33762 1751100284882948342 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj c2f0060cc8a667d9 -25476 25688 1751100277180741565 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj 26a4f2a6b519a6c2 -68045 68318 1751100319749193346 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj 2a45c2e32d0dc46 -43810 43930 1751100295513018320 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 691733b26845c9e0 -33542 33935 1751100285244950725 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj 9b75b59022b8f383 -33643 33897 1751100285345951390 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj 9d1ebf0ca5d4541a -71706 71978 1751100323409201966 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 50cf91a7e0236354 -41598 41968 1751100293301003758 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj c318ebd620dd6ea8 -29272 29434 1751100280975922623 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj f6cfafbae98b897d -7003 7261 1751100258706776036 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj cf1cee2603a50685 -35975 36123 1751100287677966742 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj 96d341edcddcaefb -33860 33957 1751100285564170345 esp-idf/freertos/libfreertos.a deb3132be28e20cd -69947 70003 1751100321650190386 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj 78e0e7d8571c2ea0 -17449 18403 1751100269152844798 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj feaf5f7233515d42 -38391 38560 1751100290093982646 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj 8ac57d8283c5af28 -31394 31764 1751100283096936585 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 5a4ffad8269bb32a -63093 63423 1751100314798145276 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj 43793f254bb15fc5 -9431 10477 1751100261134792019 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 83f07b9d4d9576b1 -34707 34762 1751100286409958395 esp-idf/soc/libsoc.a 39837cbfd9cab9c4 -42211 42492 1751100293914007793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj 79d2a76449171730 -44332 45312 1751100296035021756 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 9e95d48c9685d712 -21698 26095 1751100273404872787 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b2b39650732fbe0f -19268 21693 1751100270971856771 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 631254b256a487c8 -29607 29804 1751100281309924822 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 51072976dd841a42 -36585 36750 1751100288287970757 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 2aeb996efc5d8238 -35021 35174 1751100286723960462 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f3b67f425aefa7f1 -49195 49404 1751100300899053776 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 952721dfee8a4bb6 -14385 14687 1751100266088824629 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 38a49b81caf8c2c4 -35197 35240 1751100286900950569 esp-idf/heap/libheap.a 8f0473cbf5d0030 -40710 41128 1751100292412997912 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 9207ae9399994150 -19031 25445 1751100270734855212 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b0ac06f0b387c011 -35407 35530 1751100287109963003 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj 87d99842cad030c9 -32995 33100 1751100284697947125 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj 79a34b1ce06155e1 -55099 55576 1751100306803208547 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj f84524cf03286a44 -34348 34496 1751100286051956038 esp-idf/esp_hw_support/libesp_hw_support.a c4695bf8a5ebd963 -31487 31774 1751100283190937204 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 834cb480517dd3b2 -15062 15134 1751100266765829085 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 695ef4d0005426be -70891 71086 1751100322594196600 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 4b2135d809204b8d -1726 2054 1751100253429741301 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 271ad8fb04658f45 -35530 35876 1751100287232963812 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 234d4e54ca2674ef -35876 36025 1751100287579152381 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 364d0d211b4ab9e5 -9125 9301 1751100260828790004 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 7db2910ca43d3510 -32568 32852 1751100284270944314 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 8634a6ff19692ca2 -4682 4909 1751100256385760759 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 457b4d031f1364ec -16625 17809 1751100268328839373 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj d92441418b828f6a -46896 47204 1751100298600038641 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj c04cb1ca226e4577 -37531 37751 1751100289233976985 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 8cd6d1312070e44e -33957 34099 1751100285660953464 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 25591406cfaeeb89 -46247 46484 1751100297950034362 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj a98b93ba1e6ed917 -70476 70567 1751100322179193868 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 68233782059419a4 -36047 36137 1751100287749967216 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 3dcfcbd50866d5b1 -18404 18447 1751100270107851084 esp-idf/esp_driver_rmt/libesp_driver_rmt.a 78546bec4bf00554 -36506 36962 1751100288208970237 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 9bbcaa1c59fcd491 -34965 35173 1751100286669612136 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj e23d23f11e05c7e0 -18447 18476 1751100270150851367 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a 752169dc7d170eb0 -60716 60964 1751100312419129614 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj 7468a11ee8c95c23 -24519 25476 1751100276221891330 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 3972ba851e7e9839 -73619 78025 1751100325322214560 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf b654efa67ae80a01 -71483 71876 1751100323186200498 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 500a125dcc972b84 -30729 30760 1751100282432932214 esp-idf/esp_event/libesp_event.a 9edf3ef540600a4d -37046 37106 1751100288748973792 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 79f1522ce2fa5352 -67002 67113 1751100318705170997 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 53b5ce2a4dea6397 -66924 67123 1751100318627170484 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 1ee6676dd0d259be -66449 67133 1751100318152167357 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj f2df4ba0f6aff72b -67063 67234 1751100318767171406 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj 841ad707f5a31637 -42180 42699 1751100293883007589 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj 169e4b04de555f8a -66915 67454 1751100318618170425 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj ab68f2a6e137f7f5 -7141 7416 1751100258844776945 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 7ad241616236c7e2 -34508 35196 1751100286210957084 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 2d9954e637197c68 -28168 28679 1751100279872390760 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 64fb0b185ac25ccb -18111 18664 1751100269815849162 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj d39c3503c08acf54 -45636 45863 1751100297339030340 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 422ccd84a1b7780d -30823 30849 1751100282526142741 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 47d92dd7d35ffba2 -41057 41183 1751100292761000203 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 22c30c8ae85d02d9 -48396 56448 1751100308150101511 bootloader-prefix/src/bootloader-stamp/bootloader-configure 1394562008e1d948 -3281 3326 1751100254984751537 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj dd15ddc19f8bbcec -31775 32055 1751100283477939094 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 1c9a74b1b4e1e0b9 -8262 9114 1751100259965784324 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj df05654e71e05c16 -49194 49240 1751100300897053763 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 41320089ff4aedda -5307 5699 1751100257010764873 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj 4d9b10e219e5f0c7 -67586 68341 1751100319290174849 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj 43deeefcf02f6a26 -9584 9994 1751100261287793026 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 1f684aa082b330f4 -17380 17482 1751100269083844344 esp-idf/driver/libdriver.a 9a77ce466dd0de1e -71434 71705 1751100323137807828 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj d21e3ada8d1e9ab8 -68655 68787 1751100320359181887 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj 9cd5f0ce50f4bed3 -19505 24716 1751100271208858332 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj e61085ca66dcc60c -69832 70413 1751100321536189635 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj 233befd26b7cf08f -37751 37995 1751100289453978433 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj 38206ab2cbe74447 -72449 72740 1751100324152206858 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 6cb60d5bc8a9dba9 -33535 33643 1751100285237950679 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj 12e773d52263d53a -68881 69944 1751100320584183368 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj 85315d51bcb20770 -72487 73194 1751100324190906500 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 2593e78f17764954 -25688 25729 1751100277390899025 esp-idf/esp_driver_spi/libesp_driver_spi.a ac20f9a5ee172d8e -15802 15947 1751100267505833956 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 3c55b80ed8cbbdd8 -2673 2713 1751100254376747535 esp-idf/esp_adc/libesp_adc.a dbf2f1a5de6baeaf -68082 68511 1751100319785178108 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj 6d73be6199e07825 -64875 65139 1751100316578156995 esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj 38d84ae42a3ab96e -73194 73222 1751100324897211762 esp-idf/gpio_button/libgpio_button.a 28e0eddd90f2eec3 -72474 72970 1751100324177207022 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 9ec084e06f6fd8bd -17168 17498 1751100268871842948 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj e0cd41fcdaa1ce84 -67268 67421 1751100318971172749 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj 54f758921d25ebca -69343 69560 1751100321046186409 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj 3c021c0a32fed850 -7521 7962 1751100259224779446 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj a40608889401e77c -16694 17750 1751100268397839828 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 7c2e9ffc460eaf59 -8854 9160 1751100260557788220 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 9e7e7981489a6954 -66448 66470 1751100318172094073 mqtt_server.crt.S c396c1030cfdf727 -57799 58005 1751100309502110411 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj bf05030d7b55bbd9 -3326 3435 1751100255029751833 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj f20d083b2e91f327 -33897 34133 1751100285599953062 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 6162c5adf2247e99 -36360 36677 1751100288062969276 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 17238215c3854298 -68319 68655 1751100320022179668 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj 27d5eb84d7ad94a4 -35174 35521 1751100286876961469 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b945782bd0b0f9fb -74042 74069 1751100325745217345 esp-idf/main/libmain.a b9b20ec17e3a6b55 -73482 73540 1751100325185213658 esp-idf/fatfs/libfatfs.a ebeda1d25bf92f6c -53961 54291 1751100305665146292 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj 448b8f29820afeff -54739 55117 1751100306442090266 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj c7196284e4979efd -34441 34802 1751100286143956644 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj f5d7b8741c0a4030 -11070 11736 1751100262774802814 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj eeaa8d6a3f44a35 -68186 68575 1751100319890178799 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj 1514387bf9eb38ba -78031 78049 1751100329750243712 CMakeFiles/bootloader-complete 7a626262de7b9248 -41502 43109 1751100293205003126 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 251a759742b470db -69986 70270 1751100321689190642 esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj 750299111b074af8 -53432 53589 1751100305135081662 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj b395f273ff54bb8f -14972 15061 1751100266675828492 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj efdf87a2b7dc06e8 -35038 35188 1751100286740960574 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 130e029327ef9ac -30897 31059 1751100282600933320 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 77996ff36f2f1323 -73502 73523 1751100325205213790 esp-idf/nvs_sec_provider/libnvs_sec_provider.a 9637f46421e87672 -45014 45776 1751100296717026246 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 46063671faffcc2a -48342 48367 1751100300069048312 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 9418e9663d5226d3 -46405 46896 1751100298108035402 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj ee81c6a4e4693ffe -32019 32073 1751100283721940700 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj ec1249cd4241bb83 -31530 31802 1751100283232937481 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj eb6fc9708e3a90e1 -73445 73482 1751100325148213415 esp-idf/esp_driver_cam/libesp_driver_cam.a 2e57b651e6468d15 -32000 32195 1751100283702940575 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 8bc5e2059d81f0e1 -51595 51819 1751100303298069569 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj a4fdc92a44d30bbf -29053 29605 1751100280757770603 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj dea9ad09c52e0f93 -81739 83418 1751100333442268018 RainMaker_Table-Lights.elf 6e343ae176f69e64 -14231 14459 1751100265934823615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj c2fdbbb39fccfe7c -74070 81712 1751100333344240674 esp-idf/esp_system/ld/sections.ld cbc92b86105559f9 -16448 16694 1751100268151838208 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj 4d2c003a8a594b86 -73299 73504 1751100325002212454 esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj abf98738b982d063 -72107 72473 1751100323810204606 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj 460301bd53202db4 -68787 69121 1751100320491182755 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj 4152e2fb0904c9cd -9233 9438 1751100260936790715 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj eddd4f27ea449e0b -55299 55793 1751100307003093959 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj 88606acddf603639 -33973 34144 1751100285675953563 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 398b4bba2833427e -71063 71482 1751100322766197733 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj edad2ef23587a73e -33521 33859 1751100285223950587 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj b717e3bb0cf11466 -70684 71032 1751100322387195238 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 536c8b9999ed51d1 -17949 18543 1751100269652848089 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj d04abae7679b3c8c -69945 69986 1751100321648190372 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj 1cafe4937a5a523e -69711 70010 1751100321415372730 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj e463cd792a663a45 -39504 39663 1751100291206989973 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj 67afc3c983cbe1f7 -32195 32856 1751100283897941858 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 672979762de82478 -28679 28952 1751100280381918714 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj c6dd09dd9b1dddc5 -32346 32489 1751100284048942853 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 432ceb983ee2565c -68511 69141 1751100320214180932 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj 29b48eb9c9f3c547 -33360 33542 1751100285062949527 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj d877fc4e2213c0de -13507 13712 1751100265211818855 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj cad3d79a6abdba2 -33100 33360 1751100284802947816 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b7d59f45aaf6513d -58099 58272 1751100309802112386 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj 158a4d4b3ccf40e -49670 49697 1751100301373056896 esp-idf/esp_pm/libesp_pm.a d92286e489d65cab -72225 72444 1751100323928205383 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj 89ba57db936e3e0f -29434 29806 1751100281136923683 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 4cb118ffa0bd129f -12506 12785 1751100264210824586 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 8a7a735758e79dee -75 377 1751100251898731224 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/partition_table/partition-table.bin b5cdc615c921bc36 -31059 31708 1751100282761934380 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 93ebe1227234334f -70413 70684 1751100322116193454 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj fe8b42b71dc4661 -13229 13469 1751100264932817019 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 43a3531a213b283c -70468 70517 1751100322171193816 esp-idf/unity/libunity.a ec41cf0738e398c3 -71373 71947 1751100323076199774 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj ccbdefd1b543664c -30272 30546 1751100281976282095 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 51c20e3ad75113c8 -2330 2450 1751100254033745277 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 32d610ff5becaafb -63034 63246 1751100314737144875 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj 77bff838cde96ff5 -10500 10730 1751100262203799055 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 6db6c0c175bfa1c9 -11883 12506 1751100263586808159 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj d07abc62055a00c7 -71633 71749 1751100323336201485 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 42a02a75e2e2747a -41991 42133 1751100293694006345 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj a4df2a5f53f58173 -31229 31305 1751100282931935499 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj 2d4bc25fdd095501 -10817 11098 1751100262520801142 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj cad77960380d0776 -72925 72956 1751100324628222715 esp-idf/espressif__qrcode/libespressif__qrcode.a a3029172b6ac47f1 -14354 14653 1751100266057824424 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj faef071fb73d1cf -72444 72772 1751100324147206825 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj da3e99c5df2fd4d6 -70639 71388 1751100322342194941 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 391c4c933122bd4e -72810 72925 1751100324513209234 esp-idf/esp_rainmaker/libesp_rainmaker.a 3443ad2368a684a8 -72831 72948 1751100324537209392 esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj 186978a4bf320c -14085 14385 1751100265788954202 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 3d9b832bfd47d62 -43230 43326 1751100294933014501 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 6dabc5102b91b705 -66808 66835 1751100318533020011 rmaker_ota_server.crt.S 7e6877fdfdade34f -68283 68880 1751100319986179431 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj a2bbf1d2333c5b18 -71201 71633 1751100322904198641 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj 1fcfdc4550c387bf -31802 32000 1751100283504939271 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj df7ea380b8cb8a66 -34209 34347 1751100285913065596 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj 2c7b102b46dcd643 -4442 4817 1751100256145759179 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj a0c088e22fd25f2e -63949 64204 1751100315652150899 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj 32501e6bbc77431c -1619 1892 1751100253322740597 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj b229fd64ededa900 -73245 73419 1751100324948212098 esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj 2f75e8d7f164eb0a -71122 71560 1751100322825198121 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj 4b267e8cc14c4e6d -15660 15686 1751100267363833021 esp-idf/esp_vfs_console/libesp_vfs_console.a 80af856a58e151ca -65598 65773 1751100317301161754 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj 47b7679629312797 -33711 34348 1751100285413951838 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj 4274f56fa45c7eeb -30481 30649 1751100282184930582 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 42d09d68e7cf0fe7 -53008 53579 1751100304711078871 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj e0cbe33c93afbe57 -64926 65396 1751100316629157331 esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj 138ba013ecd69404 -71877 72449 1751100323580203092 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 63b585ff9297d75f -31708 31942 1751100283411938659 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj 1f90da1e61181c37 -18543 18792 1751100270246851999 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj f6b09bf292112834 -56049 56501 1751100307752098890 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj a2ab113a331d041f -36326 36506 1751100288028969053 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 5424c54562d92225 -63066 63287 1751100314769145085 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj c8b27481e74f839a -5408 6008 1751100257112765544 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 1f2747e2cf2a905f -67571 68283 1751100319274174743 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj 7b19f4366be40a33 -34373 34430 1751100286075956196 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj 7c1f040b564134a5 -25271 30589 1751100276975292419 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj fc0851e542c17336 -15556 16275 1751100267260854487 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 811fe5969f4c3ad0 -65396 65721 1751100317099160425 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj b394e49890d15905 -13347 13547 1751100265050817796 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 7f0d49223c400348 -69121 69343 1751100320824184948 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj 934089824cf86e0d -35932 36094 1751100287634966459 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 1c691211b333ae91 -71947 72487 1751100323650203553 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 92699c43db91df88 -36123 36387 1751100287825967716 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b20dd3c031e32490 -73475 73513 1751100325178213612 esp-idf/esp_lcd/libesp_lcd.a 7ee2e5127c40ab58 -69434 70077 1751100321137187008 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj c28dc53a88247bf4 -69908 69947 1751100321611190129 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj 46d9e72579850218 -69561 69711 1751100321265160438 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj 7cfa0b817b545e37 -14211 14410 1751100265916823496 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj aa1c6ccb4e5587c3 -68575 69518 1751100320278181353 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj 6f4929fcc58f75e3 -37786 38108 1751100289488978664 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 3284f14649fd1ac5 -38642 38875 1751100290344984299 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a2b1c264e828b2ad -18792 19455 1751100270495853638 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj 71ff45ee35e538cb -78026 78030 1751100329730186868 bootloader-prefix/src/bootloader-stamp/bootloader-install d3b8ef4dd9655cf1 -49335 49492 1751100301038054691 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj f7f513271ec5f3c9 -2450 2815 1751100254153746067 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 98dbf4e65053f1c7 -59518 59589 1751100311221121728 esp-idf/console/libconsole.a 96e95620bcaf25ef -69141 69433 1751100320844185079 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj 68afe318701b0a23 -31943 32209 1751100283645940200 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj bbe88c94a34ed289 -53646 54231 1751100305349902579 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj ed14b1f5437e9b92 -67765 68186 1751100319470176034 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj b4eed09a751d4381 -17406 18038 1751100269109844515 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj 542d3198b5b8e5fc -75 104 1751100251805730612 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in fc7b1202f87e0b18 -52610 53157 1751100304314165066 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj 9284fab9ac633e8f -73267 73605 1751100324970212243 esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj 1919273f4d4ee1c9 -2341 2721 1751100254044745349 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 29ed80f505f361c0 -12826 13603 1751100264529814366 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 51aa4cd4f0f146df -34802 34896 1751100286504959020 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 1183e6b582f177a1 -62952 63008 1751100314656144342 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj 662040fa892e411f -35274 35599 1751100286978158103 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 4b24fd6308aca4b5 -34989 35273 1751100286693509275 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj 58fd76e32174968d -32305 32568 1751100284007942583 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj e67d6f31710f5748 -73222 73474 1751100324925317751 esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj a11e858bd221b6da -71388 71434 1751100323091199873 esp-idf/wear_levelling/libwear_levelling.a d911c3d45715fb31 -53157 53644 1751100304860079852 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj e3d961a19391b050 -12682 13231 1751100264385813418 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 7fd2056f5ef5460b -30327 31077 1751100282029929562 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 7c8d99f2ea781e16 -5152 5591 1751100256855763852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj aff8a9a942ccec5c -72740 73299 1751100324443208773 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 92b3250415a512d5 -30245 30481 1751100281949929035 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 99adf3540c202b5f -17805 18110 1751100269508847141 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj 9d14106a6295166f -83707 83765 1751100335410280975 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/app_check_size f95b2b429e258b01 -39442 39524 1751100291145281932 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj e8d18afd2557d574 -83419 83707 1751100335409280969 .bin_timestamp d8da76886bd29617 -48773 48808 1751100300476050991 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a 309e3fcf843b9b71 -2636 2793 1751100254339747291 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 1fda32a0f7e1418b -34355 34439 1751100286057956078 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj 912359e22be262ff -34762 35038 1751100286464958757 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj d1dbdd75bde35761 -48386 48396 1751100300098048503 bootloader-prefix/src/bootloader-stamp/bootloader-patch 240d72e002908cdd -32720 33335 1751100284422945314 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 9cb9196538bd02f7 -32073 32304 1751100283775941055 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj a663d20d75f1c6c8 -18476 18815 1751100270179851558 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj 8e5b68b7664e60e9 -34467 34845 1751100286169956815 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj e744d71c01056d85 -38465 38640 1751100290168983140 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj 27a2c0b6a0cc24d3 -71435 71820 1751100323138200182 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj bc47bd5b80b2bbd7 -13603 13875 1751100265306819481 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 5717b9de651feddb -15215 15722 1751100266918830092 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj 385d8a427fb553c5 -30919 30972 1751100282622354490 esp-idf/pthread/libpthread.a c03b42bc1233a540 -30649 30897 1751100282352931688 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 132b7957f457cf1f -10289 10523 1751100261993797673 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 5cba6fac16254a7d -70010 70723 1751100321713190800 esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj 315bb705a5d2b00b -30591 30729 1751100282293931300 esp-idf/nvs_flash/libnvs_flash.a 89f46a5c75ae6d8d -30046 30284 1751100281748927712 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj f4d351461164edb7 -29119 30050 1751100280821921610 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 4b88e53c2fcd3f4f -30761 30805 1751100282463932419 esp-idf/esp_driver_uart/libesp_driver_uart.a e33e97d947574f7 -25638 28669 1751100277340898696 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj 4c19a211157c6120 -3644 4871 1751100255347753926 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj c23d425955618873 -48260 48418 1751100299963047614 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 947599038bb579bf -34221 34311 1751100285923955195 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj 5e641e2e8ab72a38 -33184 33521 1751100284886948369 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj 3b7ead0a7e8f47fe -36592 37204 1751100288294970803 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj cff09d6af374bd7a -18725 19505 1751100270429853204 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj 764a980c7675107e -5772 6546 1751100257475767934 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 5c2009aac3e1ae7d -72956 73610 1751100324659210195 esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj de473cfaabd26b08 -30082 30225 1751100281784927949 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj d4840e092724f55a -38560 38734 1751100290262983759 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj d65351e12ac616b7 -30707 30969 1751100282409932063 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj dbb4eac7e53eccb6 -32856 33180 1751100284558946210 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj ef990d7939c71574 -73619 78025 1751100325322214560 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.map b654efa67ae80a01 -6034 6790 1751100257737769658 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 1ceb9493c35972e0 -4948 5183 1751100256651762510 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj eb3e78caebade85a -36775 36899 1751100288478972015 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj a3faa08e7f522e2b -28837 29099 1751100280539919754 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 536aa3c81a58e5cf -4909 5247 1751100256612762253 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 941ba9ee1a479df5 -51393 51508 1751100303097844375 esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj 3327080e45a58836 -10931 11191 1751100262635801899 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 15d651ceab9746e4 -34402 34485 1751100286104956387 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj 614aeeab062b7cab -34228 34281 1751100285932448891 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj 4ca5ab90cbf71fb8 -34434 34611 1751100286139956617 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj 278261fda6df32ae -19034 24519 1751100270737855231 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 289a7919efc252c7 -28134 28472 1751100279838344403 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj 18d5662cd8c0224d -27078 28132 1751100278782760866 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 847f730d086fcdd2 -34901 34989 1751100286603959672 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj e6b31944d768e3aa -25447 25638 1751100277151231830 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj 189b8fbd86f007da -18825 19034 1751100270529853862 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj a4be4b08c8fbe2b1 -18348 18824 1751100270051850715 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj 122a6b851407ca90 -52281 52672 1751100303984754290 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj f65e6125245350e4 -37204 37344 1751100288906974833 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 9d3e53e45a435879 -11858 12531 1751100263561807994 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj df3078b4e00accc4 -18039 18437 1751100269743848688 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 281e90972bfcb2de -18150 18348 1751100269853849412 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj 49c730ce69d06187 -49199 49335 1751100300902053796 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 703dd374938335a3 -35599 35758 1751100287301964267 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 312794ab7a250e7d -64303 64727 1751100316006153229 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj 7dbb2d6ffa1226d2 -67234 67586 1751100318937172525 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj 91d9e2edadc82984 -15227 15326 1751100266930830171 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj 17a89d1e09dcb185 -44882 45183 1751100296585429518 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj bcb2af730482184e -42467 42698 1751100294170009479 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 41733fc277995bd9 -17482 17509 1751100269185845015 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a 647c7afb7db2fb2c -15722 17380 1751100267425833429 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj d880f74e7e0525a8 -70798 71062 1751100322501195988 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 3cb056eb6f43442f -14653 15401 1751100266357748741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 7633e5063893d45b -16712 16945 1751100268415839946 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 9647136064e7a7be -73523 73974 1751100325226213928 esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj 7c71e990fda05f68 -1384 1663 1751100253088318357 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj 2812944ac3c9f72a -81712 81739 1751100333415267841 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj a542f26428c8670c -38592 38701 1751100290295983976 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 53209e02ade688df -33945 34313 1751100285647953378 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj ce2e5643d7bd3404 -16238 16280 1751100267941836826 esp-idf/esp_phy/libesp_phy.a cc31829fb917ca4b -71749 72107 1751100323452202249 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 88b036e78f8ac61c -39997 40292 1751100291699993219 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj f4692b569f9ef923 -67555 67763 1751100319258174638 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj 7ec66207f9581854 -71561 72831 1751100323264201011 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 13925aaee2b33a3b -15327 15556 1751100267030830829 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj 345920215c738339 -40918 41057 1751100292620999282 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj df249d2f3be89e5b -2278 2330 1751100253981744935 esp-idf/esp_gdbstub/libesp_gdbstub.a f0e03d5040d9d503 -45025 45170 1751100296728026318 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj fadfdb2cfaa01a0a -61975 62086 1751100313678137903 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj bfe438fda8d52bc0 -7962 9204 1751100259666782356 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj f2428117ddf67465 -5247 5408 1751100256950764478 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj b09fc43d3250e43b -49192 49499 1751100300895053749 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b38e0bd5c40e5101 -29099 29489 1751100280801921478 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 3a9f293e1d96e722 -2407 2560 1751100254110745784 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj 7e87f10ec3a46c31 -2054 2407 1751100253757743460 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj 384d3f59bbef2319 -1092 1927 1751100252795737128 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 2d96938f44eb3b1c -13547 13663 1751100265250819112 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b3464adb0df03b04 -13927 14071 1751100265630821614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 156b44bb5637927d -16280 16625 1751100267983837103 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 773a7d6ea204834d -34163 34221 1751100285865954813 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj d47e6cf968f4c24b -110 557 1751100251813730664 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 35213d094a4c31e9 -3513 3960 1751100255216753064 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 2d5ca9b3dd5892fb -2238 2636 1751100253941744671 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj 88f8887c3a3dc799 -73504 73527 1751100325207213803 esp-idf/rt/librt.a fdf55e5c361f3352 -64476 64563 1751100316179154368 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj e24e71b5ff5057d9 -10145 10500 1751100261848796718 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj d6947a1223ff2e9d -69442 69907 1751100321145187061 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj a07191e8ac322f95 -65414 65598 1751100317117160543 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj 6925bce75b833b9d -47763 47964 1751100299466044342 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj e1d2ec6f8c516c44 -52637 53571 1751100304340076428 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj 995bfb06f3d41eaf -1544 1793 1751100253247740103 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 158d0efe52ff4f7b -48317 48341 1751100300042048134 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 2169c3c1d204b0e5 -2831 2977 1751100254534748575 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj cc903bcbcf94deeb -10523 10817 1751100262226799207 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 9e025a6b5725f467 -70119 70475 1751100321822191518 esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj b00d9c5530ecc028 -39842 39997 1751100291544992198 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 25a985e64f43ada1 -31349 31487 1751100283051936289 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj 34645afda9ccfeef -32652 32863 1751100284354944867 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj cbdef4f5322c3b90 -5591 6018 1751100257295766749 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 56d942095354ab01 -59350 59645 1751100311053120622 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 620e8ebb754cec1f -49714 49876 1751100301418296491 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj 34fedbdf46ca9d25 -11103 11601 1751100262806803025 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 930f440926288315 -35406 35932 1751100287108962996 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj a9d4a8d056daeb6 -35764 36047 1751100287466965353 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 9cb75cac51fb3a85 -15909 16237 1751100267612947894 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 6cc6163ea35f8cfa -13898 14025 1751100265601821423 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 748e98da2855b5ed -34923 35021 1751100286625959816 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj d2be2fe1df79519d -15401 15604 1751100267104831316 esp-idf/lwip/liblwip.a b0416660c68c06c4 -19503 24324 1751100271206858318 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj d8c1d2a43d1113e2 -17810 17845 1751100269514126479 esp-idf/esp_driver_ledc/libesp_driver_ledc.a 504c3534de0aa376 -38108 38228 1751100289810980783 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 95c8d6acc97291c8 -30906 32346 1751100282608933373 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 303f4467d90a60e7 -5406 5644 1751100257109765524 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj c718635b64f48ae9 -35188 35407 1751100286891961568 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 647341aa65b2f892 -1775 2016 1751100253478741624 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 70ecf12b857322d6 -1892 2278 1751100253595742394 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj 7ba18e609d4f1dea -68909 69442 1751100320612183552 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj a84da06e4860ffd4 -43873 44354 1751100295576018734 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b7e964ef7c2d3a85 -34311 34434 1751100286013955788 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj 3ab3be46447ea787 -50727 51173 1751100302432063868 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj 605deb909f18bc40 -1965 2287 1751100253668742875 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj 8889452e093afe07 -34281 34373 1751100285984117928 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj 79b7b1a37b223319 -743 776 1751100252446734831 esp-idf/esp_https_ota/libesp_https_ota.a 5080d20115b92769 -32852 33759 1751100284554946183 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj a066678261773bd4 -14071 14232 1751100265775187731 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj d392931cbdb6f4ab -36750 36974 1751100288452971844 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 9248b6bc116b27e3 -6764 7002 1751100258468774470 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj fb6720687bd2d86d -3842 4044 1751100255546755236 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj eefd282765ab9511 -59774 59987 1751100311479123426 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj ba4b0b74b98f5210 -38880 39059 1751100290582985865 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj bf802c9b30719e73 -72490 73267 1751100324193207128 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj 1ec4ba1ab544c194 -57974 58647 1751100309678240655 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj dec6a5e5f34d6fc0 -6018 6296 1751100257721769553 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 8133e3a44e5e9a57 -30900 31229 1751100282602933334 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj aa23bdee3bc67fbe -6750 7078 1751100258454774378 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 6105fff321d798df -36899 37127 1751100288601972824 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj adf049b455bebd35 -40500 40781 1751100292203996536 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 5f801b3bd1dfd0d4 -18960 19267 1751100270663854744 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj 68490ffcf92a737d -12271 12651 1751100263974810713 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b589babd5d8dd231 -34611 34707 1751100286313957763 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj 802960dac6c3d35b -46017 46405 1751100297720032848 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 974559db22ef25c8 -51838 52411 1751100303542624829 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj 426c398d1f4f3d58 -7262 7688 1751100258965777741 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 347bef8800c80d2 -28669 28836 1751100280371918648 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj 5319af2006d19563 -40440 40848 1751100292144996148 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj de1adb316ac3ee3a -10025 10143 1751100261730795942 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 957ce589eb4b1d0b -3446 3842 1751100255149752623 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj a5a5abe4d5b69010 -7416 7975 1751100259121778768 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 8f2e9f5868982d06 -53571 53747 1751100305274082577 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj 4badcb3bd69a3db7 -30970 31393 1751100282673933801 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 55ac0b14ed2e4298 -39059 39504 1751100290761987044 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 311001ae7e50ab -9835 10481 1751100261538794678 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b6057d02ecd4372 -37367 37411 1751100289069975905 esp-idf/esp_rom/libesp_rom.a f1a9da6157c33234 -46494 46630 1751100298198035995 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 34f9d400df3c305e -549 842 1751100252252733554 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 85df4aecb306c937 -2287 3127 1751100253990744994 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 1b876328c5bb7c17 -7688 8261 1751100259391780545 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj e3b4d7faa2462156 -18192 18960 1751100269896849695 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 848af28b76ff8456 -30805 30822 1751100282507932708 esp-idf/esp_ringbuf/libesp_ringbuf.a 797876615e3bc472 -8306 8594 1751100260009784613 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj 1e064455bc64735c -884 1775 1751100252587929740 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 3667525a535f195d -15432 15908 1751100267136831527 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 69e8ad6e14ed5769 -30354 30564 1751100282058661471 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 1537cb91eee71076 -8242 8838 1751100259945784192 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 8f0d0396b71ab6f5 -13712 13887 1751100265415820198 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b7d247e589bfaebb -38095 38284 1751100289798980704 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj e1615af7bbf6c7b1 -40173 40778 1751100291877203681 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 7a8b5001e8f10671 -36387 36479 1751100288089969454 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 430947709755466f -49492 49946 1751100301195055724 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj cba2d41d6e458c3a -8594 8854 1751100260297786509 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj f789d1b351d0282e -67422 67969 1751100319125173763 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj e72580445d052f95 -34485 34809 1751100286189124909 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 6fd85adb70e2046 -11502 12371 1751100263205805651 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 63d17dcd40ee6bf1 -8728 9125 1751100260431787391 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 3bdd9c64c3c51218 -36480 36878 1751100288182970066 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 35f7b405264a9f28 -8676 9171 1751100260379787049 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 840f7c4a02cba1dc -41729 41789 1751100293432004620 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj eed8ae5f735eed4e -34274 34325 1751100285976955544 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj e39363f686e80662 -39691 39966 1751100291393991204 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 53fc0f04e1c2c6f9 -905 1092 1751100252608735897 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj 53194919fd97d48b -13875 14089 1751100265579346537 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 901bd7e66bd25929 -4484 4743 1751100256187759455 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj 7e2256d7c94b44d9 -18664 18725 1751100270367852796 esp-idf/sdmmc/libsdmmc.a 99280e2365311a5e -9122 9505 1751100260826068837 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj a9e9e4e7334b0ba1 -46974 47076 1751100298677039148 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 8f040d8b17e9d6a9 -9301 9544 1751100261004791163 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 2fbfa1264fc5a1b5 -37995 38274 1751100289698980046 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj ded3a246250c03d8 -35521 35664 1751100287223963753 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj 5c406287f10b03ce -4136 4548 1751100255841757178 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 2f35a18cb93834c8 -58812 59489 1751100310515117080 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj 3c520e0a1a905166 -38599 38824 1751100290301984016 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 19fe9d626c103706 -57392 57706 1751100309095107732 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj b5ba0c71362631fc -2793 3015 1751100254497811979 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj 6d4261b2201241b8 -7118 7521 1751100258824776813 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 572f78f32b449cc1 -17178 17448 1751100268881843014 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj ca6b142fff5b1307 -9160 9680 1751100260863790235 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 181e5573b24684c3 -9812 10023 1751100261516802191 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 89ad818cbb5bae39 -51265 51461 1751100302968067396 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj 75a560a15aa3f431 -34133 34209 1751100285835954616 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj 38a32e3ea9ab2601 -36029 36592 1751100287731967098 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj a8e63f2ccd68198e -34523 34711 1751100286227957196 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj e944b5c9f13f94de -12652 12930 1751100264355813221 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 7503850ac9599099 -58790 59350 1751100310493116935 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 91e64be98ff43ff1 -66383 66428 1751100318086166922 esp-idf/espressif__cbor/libespressif__cbor.a fa0ca041ecbfb0f2 -70921 71373 1751100322624196798 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 139bc1fe2ff1b403 -30050 30244 1751100281757927771 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj 8ddfb76fc94c8f3e -10131 10475 1751100261834796626 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 57456fd150f7382e -32330 32470 1751100284032942747 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj bee52f64e9fa82b6 -60068 60388 1751100311772331336 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj b151d006c81816ce -39461 39691 1751100291165577763 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj 7a82e995909440f3 -68615 69202 1751100320318181617 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj 405d0dc3fb7f65ef -41314 41411 1751100293018197184 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj eed8aaebf9d53055 -385 712 1751100252089266033 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj dff04e3d56b3c28a -34430 34508 1751100286132956571 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj 2a0cbeb685b52dfc -56060 57401 1751100307763098963 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj 4b42902a1017553 -10483 10785 1751100262186798943 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj de7af802c6837571 -59491 59774 1751100311194121550 esp-idf/bt/libbt.a 5c44279adeb83a64 -10480 10914 1751100262183798924 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj cffc2a09a075bbf9 -46799 46974 1751100298502037996 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj af29ea91a103e8d4 -14757 14972 1751100266460827077 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj 2b4a561f2f7f4e56 -9853 10931 1751100261556794796 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 1064e5298062520e -19002 19026 1751100270705855021 esp-idf/esp_driver_i2s/libesp_driver_i2s.a a36ec63e2a2038c8 -8839 9362 1751100260542788122 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 2c80e63d9718e0ad -34426 34466 1751100286129616611 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj 93623de083fce685 -33335 33711 1751100285037949363 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj a318992469f06bbc -66811 66915 1751100318514169740 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 87a68c7cdd07deb1 -714 904 1751100252417734640 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj c67b906ac89a2bb1 -6298 6764 1751100258001771396 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj f0de11897263b2b -10476 11506 1751100262179798897 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj f5ce1deb104ac11b -4548 4948 1751100256251759877 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 4a0c4c311ad7e138 -47734 48071 1751100299437044151 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 8e85c9caa8b73852 -78026 78030 1751100329730186868 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-install d3b8ef4dd9655cf1 -72246 72490 1751100323949205521 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b5f3811fb6881b13 -13600 13727 1751100265303819461 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 116b400372b24ec5 -64013 64122 1751100315716151320 esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj a971e5ae05075f59 -67113 67554 1751100318816171728 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj c285b00792c51ec2 -39524 39842 1751100291226990105 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 36c47ff9fcdf7c20 -11601 11858 1751100263304806303 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 3e15c63bc35dcc0e -9544 9853 1751100261247792763 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj bcacba9c5763c084 -11048 11226 1751100262751802663 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 3c6986a06cfce458 -30487 30668 1751100282189930615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj 3a1b6ba142bc51fd -46224 46459 1751100297927034211 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 2a77384e982d17d5 -13727 13821 1751100265430820297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 5e6317e57e7ddc2 -12051 12271 1751100263754809265 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 9a8f65eabbcbe5d9 -897 1542 1751100252601735851 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj da893be75c61aa06 -12571 12779 1751100264275330636 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj fd38c4ebbfac4419 -67525 67571 1751100319228174441 esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj 9765a08c3b5986cf -15617 15660 1751100267321218088 esp-idf/vfs/libvfs.a 186b30a35eeb59fc -14234 14503 1751100265937823634 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj 1ff9d121ef3bd1bb -42952 43202 1751100294655012671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj a59ee929c663fb30 -12531 12793 1751100264234812424 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 88c86e0edaed906f -35664 35764 1751100287366964694 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj e10651073e8ba831 -49528 49706 1751100301232055968 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 3169890c0557d925 -19455 24613 1751100271158858003 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 298589bf3d59b4a5 -34347 34426 1751100286049956025 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj 373557991a797b27 -42699 43299 1751100294403743279 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 19adc4a9bbf56c4b -73561 73584 1751100325264214179 esp-idf/app_reset/libapp_reset.a 458739b073b2ff97 -7975 8727 1751100259678782435 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 23320ed3254f1360 -43308 43810 1751100295011015015 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 7032a1bfc1bfa2f7 -32057 32294 1751100283760968837 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 9e29e5a165a64b03 -46780 47583 1751100298483037871 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 3f605babe4184cb3 -41193 41502 1751100292896001092 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 66b1d8d068cbc4c7 -14089 14435 1751100265793822687 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj 89d7e1f55d3f9f93 -45312 45558 1751100297015028207 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 34ead80d8f5a01e6 -37956 38391 1751100289658979783 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj da16a460818b4d9 -73619 78025 1751100325322214560 bootloader-prefix/src/bootloader-stamp/bootloader-build b654efa67ae80a01 -16945 17176 1751100268648841480 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 267b2019a596ae3d -47802 48074 1751100299506302202 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 23309db55c4d7169 -35458 35674 1751100287160963338 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj 4e742fc27734dcd8 -3440 3792 1751100255143752583 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 3d486705995c7f84 -14504 14608 1751100266207825412 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj c0a72c96821541da -7784 8240 1751100259487781177 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 5fd6a6e201c0e166 -55576 56226 1751100307279095777 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj c4d2d53d192f41e4 -14435 14653 1751100266138824958 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj 21d3506429e55cd -29669 29964 1751100281371925230 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj ae4170740bb9164c -28472 29053 1751100280174917351 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj e3ea70adce8fe12d -14608 14757 1751100266311826096 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj 92a9a0b19b8adad5 -36678 36996 1751100288380971370 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj 197c6c19b9d8a1e3 -66985 68082 1751100318688170886 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj e7769895b13f66cd -48589 48773 1751100300292049780 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 78428cab642b7add -36974 37029 1751100288676973318 esp-idf/log/liblog.a 9b4333406901386e -48386 48396 1751100300098048503 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 240d72e002908cdd -3130 3177 1751100254833750543 esp-idf/esp-tls/libesp-tls.a 6459d6a08e174980 -40195 40434 1751100291897994522 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj bef3d0c1718d5b1a -41331 42065 1751100293034002000 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj e5b56f16a41d6c3d -36878 37046 1751100288580972686 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj c872677b877e5bf2 -11191 11496 1751100262894803604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 50e657c1c0422fd -36962 37068 1751100288664973239 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj 87f503262b82aa31 -24716 29388 1751100276418892626 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 5671436d2b384e58 -36996 37187 1751100288699608994 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 93d3dd1808548ecf -9363 9430 1751100261067275151 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 4a73424b6e0db809 -37029 37282 1751100288731973680 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 1266fcc07c47b9ba -52411 52815 1751100304114074941 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj ff8a3df68605e22a -70077 70468 1751100321780191241 esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj 5faac0c06662162b -37068 37320 1751100288771973944 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 8549c116e88daabf -37188 37367 1751100288890974727 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 86f2d79896d279ef -9171 9584 1751100260874790307 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj bb50b850419856db -37282 37527 1751100288984975346 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 25ebb089d17e4896 -57843 57973 1751100309547315856 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 3b2beb1bdfa08627 -50126 50481 1751100301830716893 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj cdaad486e83d804f -38913 39198 1751100290615986083 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 2db56a2cdab6b467 -37333 37531 1751100289035975682 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b00e91aebaffeb6 -32721 32930 1751100284423945321 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj e86c53d61f24d024 -62086 62236 1751100313789138634 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj 953d126840c7da40 -37269 37565 1751100288971975260 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj bce2ddd4744d9920 -37320 37619 1751100289023865297 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b177deb6a37956b6 -39239 39335 1751100290941988229 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 84aaeb0656d851d6 -39885 40194 1751100291587992481 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 64e6da5d35d11903 -37565 37730 1751100289268977215 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 51724f0217ed4d04 -49240 50331 1751100300943054066 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 453f7ae047e0abac -66138 66592 1751100317841165310 esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj 2ab625b5eb602eb6 -37694 37840 1751100289396978058 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 86694f3eee1b64a6 -37591 37893 1751100289293977380 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b428e87384112a37 -71087 71201 1751100322790197891 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 1116ff42697e8fcc -41038 41300 1751100292742488685 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 151c88d3883450ed -61868 62230 1751100313571137199 esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj 9d2d392807fd2525 -37527 37956 1751100289229976959 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 28b62ba645e2d57c -46883 47089 1751100298586038549 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj c7dbfdcba59e2ce3 -37730 38021 1751100289432978295 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj ef9e5ba3b6fd657f -55707 56048 1751100307410096639 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj 6d893c9d687d542 -37893 38095 1751100289596193162 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj 4d66cc299d4e6863 -37840 38213 1751100289542979019 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 53e521bf35868309 -56566 56619 1751100308269102294 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj 51e61e680c6bfb3f -38213 38385 1751100289915981475 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj 4d360aa2ea8e874d -38274 38464 1751100289976981876 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj 31423e3460e9f165 -38472 38488 1751100290174983180 esp-idf/esp_common/libesp_common.a c2cc5f88f3ff62a6 -38490 38576 1751100290192983298 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 1b604aa54a392e2f -26359 28167 1751100278061903442 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj ae3d60d2256fa6fd -38285 38592 1751100289989981962 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj 8fc268ff65792562 -38228 38598 1751100289930981573 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj 92de3576ec360fd2 -38735 38880 1751100290437984911 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 8672027f62ae0520 -38386 38889 1751100290088982613 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj f0e18b99dc8fe3e4 -59916 60080 1751100311619124348 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj ead529f30c634361 -49405 49787 1751100301108055152 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj ea86db8544bb57b0 -9211 9233 1751100260915790577 esp-idf/esp_coex/libesp_coex.a 332a544207da3795 -51819 52195 1751100303522071043 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj c85a53bf9143a45 -38701 38913 1751100290403984687 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 5c18ca4cad1f97cd -48074 48317 1751100299777046390 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 5c5ac1eed843dc92 -64881 65473 1751100316584157034 esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj ed0e6c696cf4271d -12144 12639 1751100263847809877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 7b450ab0c734ad83 -38875 39085 1751100290577985832 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 7531c5d92de66676 -38576 39105 1751100290278983864 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 7209af991cc76a05 -38824 39113 1751100290526985497 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 24a3ee700b7927b -39085 39346 1751100290787987215 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj d3cb846f66d6bbf0 -39335 39442 1751100291037988861 esp-idf/esp_system/libesp_system.a 1f029f6a3dd4b246 -40439 40696 1751100292141996128 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj e87d3a8b2f6127fe -39198 39509 1751100290902987972 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 81878f47230bd3d2 -52440 52637 1751100304143075132 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj ea55f5aa4f3536cf -39105 39644 1751100290807987347 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 2b1ba7785d3d284 -50511 50773 1751100302214062433 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj 7af5950ca8b79465 -39644 39712 1751100291346990895 esp-idf/spi_flash/libspi_flash.a 4bbb2dacec650c8 -65773 66152 1751100317476162906 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj a9d1ed5d74c81c3d -13469 13600 1751100265173818605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj fc0f28b9eff1ec02 -39663 39790 1751100291365991020 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 66f06c6fd41dae2 -39712 39902 1751100291414991342 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 250399e0470bbdf6 -39902 40083 1751100291606392603 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj 691d503658cc78ca -70346 70614 1751100322049193013 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 6973b0ef0d9a5b0d -39979 40129 1751100291681993100 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj fe44a7f6045e1761 -49943 50200 1751100301646058693 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj 9262d0b54fa55037 -39346 40172 1751100291048988933 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj f0eabfe46b48c36a -40129 40282 1751100291831994088 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj e65a8503329f6910 -52676 52716 1751100304379076685 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj 44e1e0c5075bf47a -40292 40354 1751100291994995160 esp-idf/esp_mm/libesp_mm.a 91aee968c70db00 -65230 65632 1751100316933159332 esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj 8e6ccf56241a7fbf -39966 40500 1751100291668993015 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b1c5a3d15901c271 -63323 63674 1751100315026146777 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 222448140a37a83f -40083 40710 1751100291785993785 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj d0458912df125a2e -50413 50784 1751100302116061787 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj 5c541acf3e6146a0 -17589 17898 1751100269292845719 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj fdba8b461ea8d256 -32592 32756 1751100284294944472 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj 62aa2fa61730aa2 -40781 40860 1751100292483998380 esp-idf/bootloader_support/libbootloader_support.a 3b60a426059dba3f -40778 41038 1751100292480998360 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 4c8a623e8bd2b370 -40783 41112 1751100292485998393 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 2969b3de4f6646c0 -41112 41193 1751100292815000559 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 13430aed83124a5e -41198 41231 1751100292901001125 esp-idf/esp_partition/libesp_partition.a 630d0c87d5f4929d -59032 60427 1751100310735958437 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b3fa44435dfc88ef -47319 47615 1751100299022041419 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 87cdd6a63f9991a2 -37209 37333 1751100288911974865 esp-idf/hal/libhal.a b8ff9ef664c47765 -41232 41270 1751100292935001349 esp-idf/app_update/libapp_update.a 733bc995e33ef974 -35894 36225 1751100287596966208 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj f561005ddd919c2d -61024 61227 1751100312727131642 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj f78a5f2cff562bfc -41030 41285 1751100292733160092 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 948868108695dcb6 -41183 41330 1751100292887001033 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 38efafaf6b588ae7 -47545 47763 1751100299249506995 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 1691e2e93e7640b3 -61304 64881 1751100313007133486 esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj c7e909f492561162 -31764 32019 1751100283466939021 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 351fb39ce347e547 -41411 41582 1751100293114002527 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 4f5059720913e045 -43299 43510 1751100295002014956 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj eabc2f4354ce4252 -41221 41598 1751100292924001276 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 73149cd08c0e5f2c -73605 73656 1751100325309214475 esp-idf/ws2812_led/libws2812_led.a c354be02d9a5cde0 -41270 41900 1751100292973130293 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj 44d2397d5bbc2619 -106 743 1751100251809730638 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj a9e7cd7380ba7655 -44120 44263 1751100295823020360 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b425d3bc71ba1e8d -15686 16718 1751100267390201489 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj fae1066eb5fe11db -41901 42006 1751100293604005753 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj d790fa3c96f1cdbc -30564 30905 1751100282266931122 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj eabc381ef205600a -66152 66727 1751100317855165402 esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj c92b47903d486e94 -41582 42211 1751100293286651979 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 400c74cc697441b4 -12930 13282 1751100264633815051 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 21734bf6459e64c5 -60965 61134 1751100312669301930 esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj c461b0b1d999a38c -82 94 1751100251794730539 project_elf_src_esp32c3.c e5191f472c17dce0 -42006 42436 1751100293709006444 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj 7c4a126b692061d4 -42438 42467 1751100294141009288 esp-idf/esp_app_format/libesp_app_format.a d097064cf85f8342 -42065 42487 1751100293768006832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj 87712b8cc7b91739 -45777 45888 1751100297480031268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj e761f63b80bb818a -66754 66785 1751100318482929821 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S 47d81153d4664d06 -73421 73445 1751100325124213257 esp-idf/cmock/libcmock.a d144c07b68257991 -41884 41990 1751100293587005641 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 66dea82938309ad3 -42134 42529 1751100293838104303 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj 535b1df19d366e0d -43510 43873 1751100295213016345 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj 9a7e42d43ceb183c -42492 42933 1751100294196009650 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 1986e989153629bd -9995 10288 1751100261698795731 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 76911a7e237992ea -42488 42952 1751100294193009630 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 4074b30541dd0d28 -42529 42967 1751100294232009887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 3918e9b9da014fb1 -43939 44361 1751100295642019169 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 79fa78499d7d8e29 -2721 3143 1751100254424747851 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj dbb0644556eddada -9659 9811 1751100261362793519 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj cdf160dbb4983e8b -43248 43368 1751100294951014620 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 44aa68d36da313b1 -13523 13746 1751100265226818954 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj 55fd5ff2da4a2086 -43339 43661 1751100295042015219 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 599feb64e0ff896f -43326 43747 1751100295029015133 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj fe547185d25b62b1 -43682 43805 1751100295385017477 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj f73447bdd5ea6ab -66634 66813 1751100318337467738 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj fd27f539e56de6d7 -43661 43857 1751100295365017345 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj 1e7d02b13362677e -43747 43911 1751100295450702741 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj d0ee9aa856f93381 -50784 50942 1751100302487064230 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj e8fe98059d11dd6b -65721 66075 1751100317424162564 esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj 94b3afc9f0773162 -43857 43939 1751100295560018629 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 5bac0504630ddc21 -39113 39461 1751100290815987399 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj fdb1dcf7f84a8083 -52626 53042 1751100304329076356 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj 78af8701e810011e -43911 44056 1751100295614018984 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 4c651bed96dfc51c -43930 44120 1751100295633019110 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj f47bf23f61796bad -17898 18149 1751100269601847753 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 1e8853fd23fae438 -56749 57366 1751100308452103499 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj fa6d2434912f077d -78031 78049 1751100329750243712 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 7a626262de7b9248 -40282 40439 1751100291984995095 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj 1f46ae116f488d9a -43806 44154 1751100295509018294 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj d1ac87ac89783115 -3181 3338 1751100254884750879 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj 774e59d715a0e419 -44056 44211 1751100295759019939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 38e6a221e34d3b65 -54925 55195 1751100306628091491 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj 187c33ff513f827 -32396 32652 1751100284098943182 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 1aa8262ca7e42662 -44154 44277 1751100295857020584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj c30738702a05d052 -43368 44332 1751100295071015410 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 8c72cfdecb29677f -44277 44414 1751100295980021394 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj c3a4c2751d84c742 -46462 46882 1751100298165035778 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj e90cde2b15905ed8 -44361 44488 1751100296064021947 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 788a361637b788d3 -34711 34994 1751100286413958421 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj 77cd4c0069d3845e -48072 48172 1751100299775046376 esp-idf/mbedtls/mbedtls/library/libmbedx509.a d23e17c850e12a0 -6546 6708 1751100258249773028 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 60cea44db00d0cd0 -60347 60716 1751100312051127192 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj f2ba4c52aeaba649 -44453 44581 1751100296156022552 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 950cefe84744ef73 -44583 44664 1751100296286023408 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj a1a32930601e3f8b -44488 44709 1751100296191022783 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 2a583d3b2088d772 -35674 35795 1751100287376964760 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 296df2bf6865c647 -44355 44808 1751100296058021907 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj df8722d3f7027b73 -66729 66754 1751100318432169200 esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a aedfa908acdb52d1 -36512 36775 1751100288215606558 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 3fc4dd374a3174cd -44614 44882 1751100296317023612 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 3ac041c624e7e927 -51103 51594 1751100302806066330 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj 932088d32f740bce -73619 78025 1751100325322214560 bootloader/bootloader.elf b654efa67ae80a01 -13746 13898 1751100265449820422 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj bdf4752e9b006984 -44709 44923 1751100296412024238 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 2b6c1cddfbd9694d -44912 45013 1751100296615025574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj e4b8327397cad41e -56449 57263 1751100308152101524 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj ec9ffebad35c53e4 -44808 45082 1751100296511024889 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 55aa20a4485d9a7 -44581 45278 1751100296284023395 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 687ceac0912efc92 -45183 45512 1751100296886027358 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj 55e59ab9562dea1f -45278 45745 1751100296981027984 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj a664503b60e58d6f -45558 45791 1751100297261029827 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 4d59a63466e09549 -33764 33945 1751100285469952207 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj 88eb3abb157f87f6 -45745 45897 1751100297448031058 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj 1100fdc8c3903f7d -32489 32718 1751100284191943794 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj 50e174f8fabeb939 -45888 46017 1751100297591031999 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj 7530b4650d03b610 -45513 46120 1751100297216029530 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 9ff6be970dc0d9e8 -45863 46223 1751100297566031835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 8e957c9b6c7f79dc -48172 48375 1751100299876047041 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 767c07d1ca608702 -45791 46247 1751100297494031360 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b9fa2c1a5228264c -46120 46462 1751100297823033526 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 1f7a4df9a661f9cf -71820 72225 1751100323523202717 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 234e399a98a009ec -46208 46493 1751100297911034105 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b4ec4b59e6030547 -36094 36512 1751100287796967525 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj aaf55bae7741971c -32294 32330 1751100283996942510 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj 352046591d16ae71 -14411 14713 1751100266115824806 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 3c518db284af297e -46459 46615 1751100298162035758 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 83c0b5eaf67c6206 -46484 46798 1751100298187035923 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj f23e6fc2c1fe2219 -46615 46800 1751100298318756812 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 1165b176e477b7dd -47076 47171 1751100298780039826 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj c9cd31689895fbd3 -53579 54230 1751100305284082643 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj 644a651d33fc6356 -31081 31455 1751100282783934525 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj 2eb83dbb834c03ea -5183 5307 1751100256886764057 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj df3871649449aa6b -47066 47200 1751100298769824434 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 6316c8d90c7f96ff -58692 58926 1751100310395116290 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 18bb2f15ff46f154 -47089 47242 1751100298792039905 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj c66511c6bd7bc10 -57332 57457 1751100309036774865 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj 3a0b73a608df7454 -47200 47346 1751100298903040636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj c8265f69d5aac1a9 -13832 13972 1751100265536820995 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj be55a9d714bc6fe2 -66470 66722 1751100318173167495 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj d905a006338ef016 -47326 47451 1751100299029041465 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj 7e5b566e55e9084d -47615 47734 1751100299318043368 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj e2d65f5760a51ad2 -47574 47801 1751100299277043098 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj c7abdae1a95eaaae -47637 47888 1751100299340043513 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj b6acb7e9cabb3b80 -47584 47894 1751100299287078171 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b27b6b4456327c26 -47888 47992 1751100299592387126 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj f0dd4e7fd611d580 -8124 8306 1751100259827783415 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 2f677d19900a33c2 -30227 30353 1751100281930444862 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj f54b01c2ae7d670b -48060 48158 1751100299763046297 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj 307df583cc9cd6ec -48158 48232 1751100299861677567 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 34f1af3435859410 -51926 52279 1751100303629071748 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj 8739d49368df6831 -47894 48260 1751100299598742925 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj f417297a9d3b4fe5 -48232 48319 1751100299935047430 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 5061c09fed87d50b -38261 38386 1751100289963981791 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj 54754fd2173bef89 -70517 70797 1751100322220619140 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj b56b26fbf1277159 -48367 48386 1751100300086048424 bootloader-prefix/src/bootloader-stamp/bootloader-update d87531e9dcf1a379 -16718 17168 1751100268421839986 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj cc4b92faf6920025 -48367 48386 1751100300086048424 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update d87531e9dcf1a379 -47992 48489 1751100299695045850 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 178c6b9e09297c72 -45780 48588 1751100297483031288 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 6c74f45d9e4338ad -48808 48839 1751100300511513863 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 979f8bd78d095f76 -48839 49146 1751100300823707246 esp-idf/mbedtls/x509_crt_bundle bdb4cdde501e2a1e -57263 57553 1751100308966106882 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj 5cd4bb30678b8891 -73619 78025 1751100325322214560 bootloader/bootloader.map b654efa67ae80a01 -49876 50027 1751100301579058252 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj 63ad9bb6f3043a6 -32209 32396 1751100283911941951 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b4b9c40e15512c9 -64269 64402 1751100315972153005 esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj 8afc9c310acb33a5 -48839 49146 1751100300823707246 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle bdb4cdde501e2a1e -7851 8113 1751100259554781618 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 83a7a4479591688d -49500 49528 1751100301204464689 esp-idf/mbedtls/libmbedtls.a 33577f9cae90b71a -49787 49887 1751100301490057666 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj fab8e78dcf3e5f -49946 50126 1751100301650710465 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj ab2552ed15182c84 -39790 39979 1751100291492991856 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 7bdeb15811773578 -50027 50200 1751100301730059246 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj 8e93e0b7ca26f4ad -50377 50413 1751100302080061551 esp-idf/riscv/libriscv.a d79f5f7a9300adba -49913 50511 1751100301616058496 esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj 344808ecd2981d2d -50200 50587 1751100301903060385 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj 4329066b60d518 -49146 49191 1751100300892812332 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S d039b303f57c1035 -50481 50725 1751100302184062235 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj 9097e8c6fd69bf83 -15353 15802 1751100267056831000 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj a6628e6279d372df -50541 50747 1751100302244062630 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj 7d5dbb5b801db97b -50942 51033 1751100302646065277 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj 630e6edb11db0a37 -50747 51148 1751100302450063986 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj 12289915d6307e1a -51033 51216 1751100302736065869 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj c6b58963f3be36b3 -51521 51837 1751100303225069088 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj 190a487d6576b4a4 -73462 73502 1751100325165273705 esp-idf/esp_hid/libesp_hid.a 87b38d9359e50915 -51217 51393 1751100302920067080 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj 18a812182f3ffbe6 -14687 14756 1751100266390826617 esp-idf/esp_netif/libesp_netif.a 1f8401ad957be88e -66754 66785 1751100318482929821 rmaker_mqtt_server.crt.S 47d81153d4664d06 -56226 57033 1751100307929100056 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj a887974f8de0d5c3 -51173 51414 1751100302876066791 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj 6a8fe2f6aac410dd -51414 51588 1751100303117068377 esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj 9e77e4e18eb9ec64 -11815 12051 1751100263518807711 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj e42d96ebe7c83d8f -51508 51716 1751100303212410019 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj 65cd58fe9976dd5c -51588 51924 1751100303291069523 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj edf40c061151a7a -51934 52113 1751100303637071800 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj 74b6b7712403206d -73420 73461 1751100325124186557 esp-idf/app_trace/libapp_trace.a 47212b9c589c34cf -51779 52173 1751100303482070780 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj da0019516fe475a6 -34099 34228 1751100285801954392 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj ae236176e746005 -52364 52440 1751100304067074631 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj cfacd0acc359c1e9 -52173 52609 1751100303876073374 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj 6d1c837832b341a5 -69520 69829 1751100321223187575 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj e7ed8fa0762257e4 -52117 52626 1751100303820073005 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj 7c045cd823f345c6 -40849 41030 1751100292553307949 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b222b25cb46f21c2 -52716 53008 1751100304419076948 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj ee49d4ca866712b0 -57360 57532 1751100309063107521 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj 2bd650672ebcbe8b -52816 53432 1751100304520342295 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj a331d54b07412394 -53747 54167 1751100305451083742 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj 293e2e13b0c6a0b7 -32756 32995 1751100284458945551 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 292476c977a01227 -54291 54524 1751100305994087317 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj 560dd538c809c031 -66813 66985 1751100318516169753 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj fb054db0861e279d -54230 54584 1751100305933086915 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj 667443b88ee064b7 -54584 54739 1751100306287089246 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj 9b1796f6c1c56962 -54512 54759 1751100306215088772 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj 4de57dc62fa52b25 -70003 70154 1751100321706190754 esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj a2ad4fb861d6fcde -54524 54925 1751100306227088851 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj 369ef220bf41c009 -3016 3445 1751100254719749793 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj bbee3b9b155d0c95 -62529 62597 1751100314233141557 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj 57511a4032205f9d -69202 70118 1751100320905185481 esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj d5e4d3dd758ee69f -54759 55099 1751100306462090398 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj 3b5c8b70ce5f19f7 -41789 41883 1751100293492005015 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj a2fbdcc6e91b26ee -66835 67063 1751100318538169898 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj dd0c8c4f522c74b8 -54231 55459 1751100305934086922 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj b0d934f0f3083ac8 -55117 55706 1751100306820092755 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj 1b010654c08afde6 -55793 55991 1751100307496097205 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj f8b2b6de526653e1 -56501 56749 1751100308204101866 esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj 666645a38a368f07 -47204 47326 1751100298907040662 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 140908261a999a1f -34325 34402 1751100286028568562 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj 6857cc296d968755 -63008 63048 1751100314711144704 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj 285e91177506b8e1 -17509 17805 1751100269212854779 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj f8dcafae312c1ff -777 1384 1751100252480735055 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 5976a9eb2b8e731e -49 293969 1751100382375590194 CMakeFiles/confserver 9dd3e7ad61ed296a -49 293969 1751100382375590194 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/confserver 9dd3e7ad61ed296a diff --git a/RainMaker_Table-Lights/build/CMakeCache.txt b/RainMaker_Table-Lights/build/CMakeCache.txt deleted file mode 100644 index d2839f504..000000000 --- a/RainMaker_Table-Lights/build/CMakeCache.txt +++ /dev/null @@ -1,618 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -# It was generated by CMake: /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//No help, variable specified on the command line. -CCACHE_ENABLE:UNINITIALIZED=0 - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//Flags used by the ASM compiler during all build types. -CMAKE_ASM_FLAGS:STRING= - -//Flags used by the ASM compiler during DEBUG builds. -CMAKE_ASM_FLAGS_DEBUG:STRING=-g - -//Flags used by the ASM compiler during MINSIZEREL builds. -CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the ASM compiler during RELEASE builds. -CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the ASM compiler during RELWITHDEBINFO builds. -CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//C++ Compiler Base Flags -CMAKE_CXX_FLAGS:STRING='-march=rv32imc_zicsr_zifencei ' - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//C Compiler Base Flags -CMAKE_C_FLAGS:STRING='-march=rv32imc_zicsr_zifencei ' - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Linker Base Flags -CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs ' - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/pkgRedirects - -//User executables (bin) -CMAKE_INSTALL_BINDIR:PATH=bin - -//Read-only architecture-independent data (DATAROOTDIR) -CMAKE_INSTALL_DATADIR:PATH= - -//Read-only architecture-independent data root (share) -CMAKE_INSTALL_DATAROOTDIR:PATH=share - -//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) -CMAKE_INSTALL_DOCDIR:PATH= - -//C header files (include) -CMAKE_INSTALL_INCLUDEDIR:PATH=include - -//Info documentation (DATAROOTDIR/info) -CMAKE_INSTALL_INFODIR:PATH= - -//Object code libraries (lib) -CMAKE_INSTALL_LIBDIR:PATH=lib - -//Program executables (libexec) -CMAKE_INSTALL_LIBEXECDIR:PATH=libexec - -//Locale-dependent data (DATAROOTDIR/locale) -CMAKE_INSTALL_LOCALEDIR:PATH= - -//Modifiable single-machine data (var) -CMAKE_INSTALL_LOCALSTATEDIR:PATH=var - -//Man documentation (DATAROOTDIR/man) -CMAKE_INSTALL_MANDIR:PATH= - -//C header files for non-gcc (/usr/include) -CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Run-time variable data (LOCALSTATEDIR/run) -CMAKE_INSTALL_RUNSTATEDIR:PATH= - -//System admin executables (sbin) -CMAKE_INSTALL_SBINDIR:PATH=sbin - -//Modifiable architecture-independent data (com) -CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com - -//Read-only single-machine data (etc) -CMAKE_INSTALL_SYSCONFDIR:PATH=etc - -//Path to a program. -CMAKE_LINKER:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld - -//Program used to build from build.ninja files. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=RainMaker_Table-Lights - -//Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC=3.6.2 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MAJOR:STATIC=3 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MINOR:STATIC=6 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC=2 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_TWEAK:STATIC= - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//The CMake toolchain file -CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Disable package configuration, target export and installation -DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON - -//Build Mbed TLS programs. -ENABLE_PROGRAMS:BOOL= - -//Build Mbed TLS tests. -ENABLE_TESTING:BOOL= - -//No help, variable specified on the command line. -ESP_PLATFORM:UNINITIALIZED=1 - -//Generate the auto-generated files as needed -GEN_FILES:BOOL= - -//Git command line client -GIT_EXECUTABLE:FILEPATH=/usr/bin/git - -//IDF Build Target -IDF_TARGET:STRING=esp32c3 - -//IDF Build Toolchain Type -IDF_TOOLCHAIN:STRING=gcc - -//Install Mbed TLS headers. -INSTALL_MBEDTLS_HEADERS:BOOL=ON - -//Explicitly link Mbed TLS library to pthread. -LINK_WITH_PTHREAD:BOOL=OFF - -//Explicitly link Mbed TLS library to trusted_storage. -LINK_WITH_TRUSTED_STORAGE:BOOL=OFF - -//Mbed TLS config file (overrides default). -MBEDTLS_CONFIG_FILE:FILEPATH= - -//Compiler warnings treated as errors -MBEDTLS_FATAL_WARNINGS:BOOL=ON - -//Mbed TLS user config file (appended to default). -MBEDTLS_USER_CONFIG_FILE:FILEPATH= - -//Value Computed by CMake -Mbed TLS_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls - -//Value Computed by CMake -Mbed TLS_IS_TOP_LEVEL:STATIC=OFF - -//Value Computed by CMake -Mbed TLS_SOURCE_DIR:STATIC=/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls - -//No help, variable specified on the command line. -PYTHON:UNINITIALIZED=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python - -//No help, variable specified on the command line. -PYTHON_DEPS_CHECKED:UNINITIALIZED=1 - -//Value Computed by CMake -RainMaker_Table-Lights_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - -//Value Computed by CMake -RainMaker_Table-Lights_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -RainMaker_Table-Lights_SOURCE_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights - -//No help, variable specified on the command line. -SDKCONFIG:UNINITIALIZED=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - -//Allow unsafe builds. These builds ARE NOT SECURE. -UNSAFE_BUILD:BOOL=OFF - -//Build Mbed TLS shared library. -USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF - -//Build Mbed TLS static library. -USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON - -//Value Computed by CMake -esp-idf_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf - -//Value Computed by CMake -esp-idf_IS_TOP_LEVEL:STATIC=OFF - -//Value Computed by CMake -esp-idf_SOURCE_DIR:STATIC=/home/alex/esp/v5.4.1/esp-idf - -//Dependencies for the target -everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv; - -//Dependencies for the target -mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv;general;everest;general;p256m;general;idf::esp_security;general;idf::esp_mm; - -//Dependencies for the target -mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv;general;mbedx509; - -//Dependencies for the target -mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv;general;mbedcrypto; - -//Dependencies for the target -p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_riscv; - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR -CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB -CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS -CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG -CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL -CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE -CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO -CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Ninja -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -//ADVANCED property for variable: CMAKE_INSTALL_BINDIR -CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATADIR -CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR -CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR -CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR -CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INFODIR -CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR -CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR -CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR -CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR -CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_MANDIR -CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR -CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR -CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR -CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR -CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR -CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1 -//Details about finding Git -FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.48.1()] -//Details about finding Python3 -FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python][cfound components: Interpreter ][v3.13.3()] -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] -//ADVANCED property for variable: GIT_EXECUTABLE -GIT_EXECUTABLE-ADVANCED:INTERNAL=1 -//CMAKE_INSTALL_PREFIX during last run -_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local -//Compiler reason failure -_Python3_Compiler_REASON_FAILURE:INTERNAL= -//Development reason failure -_Python3_Development_REASON_FAILURE:INTERNAL= -_Python3_EXECUTABLE:INTERNAL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -//Python3 Properties -_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;13;3;32;64;;;abi3;/usr/lib/python3.13;/home/alex/.espressif/python_env/idf5.4_py3.13_env/lib/python3.13;/home/alex/.espressif/python_env/idf5.4_py3.13_env/lib/python3.13/site-packages;/home/alex/.espressif/python_env/idf5.4_py3.13_env/lib/python3.13/site-packages -_Python3_INTERPRETER_SIGNATURE:INTERNAL=3d7b1ff66c98c6bfcc85d0af89477861 -//NumPy reason failure -_Python3_NumPy_REASON_FAILURE:INTERNAL= - diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake deleted file mode 100644 index 274c9c6fa..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake +++ /dev/null @@ -1,29 +0,0 @@ -set(CMAKE_ASM_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") -set(CMAKE_ASM_COMPILER_ARG1 "") -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_ASM_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_ASM_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_ASM_COMPILER_LINKER "") -set(CMAKE_ASM_COMPILER_LINKER_ID "") -set(CMAKE_ASM_COMPILER_LINKER_VERSION ) -set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_ASM_COMPILER_LOADED 1) -set(CMAKE_ASM_COMPILER_ID "GNU") -set(CMAKE_ASM_COMPILER_VERSION "") -set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") - - -set(CMAKE_ASM_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - -set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_ASM_LINKER_PREFERENCE 0) -set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) - - diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake deleted file mode 100644 index 91f5e74e4..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake +++ /dev/null @@ -1,82 +0,0 @@ -set(CMAKE_C_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "14.2.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_STANDARD_LATEST "23") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - -set(CMAKE_C_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_C_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_C_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_C_COMPILER_LINKER "NOTFOUND") -set(CMAKE_C_COMPILER_LINKER_ID "") -set(CMAKE_C_COMPILER_LINKER_VERSION ) -set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "4") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake deleted file mode 100644 index 8391860d5..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,106 +0,0 @@ -set(CMAKE_CXX_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "14.2.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "26") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") - -set(CMAKE_CXX_PLATFORM_ID "") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - -set(CMAKE_CXX_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_CXX_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") -set(CMAKE_CXX_COMPILER_LINKER_ID "") -set(CMAKE_CXX_COMPILER_LINKER_VERSION ) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "4") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - -### Imported target for C++26 standard library -set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - - diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 7b2dcec5b..000000000 Binary files a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 38b4b99f0..000000000 Binary files a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeSystem.cmake b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeSystem.cmake deleted file mode 100644 index d9e60423b..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.14.0-22-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.14.0-22-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - -include("/home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake") - -set(CMAKE_SYSTEM "Generic") -set(CMAKE_SYSTEM_NAME "Generic") -set(CMAKE_SYSTEM_VERSION "") -set(CMAKE_SYSTEM_PROCESSOR "") - -set(CMAKE_CROSSCOMPILING "TRUE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 8d8bb038b..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,904 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define C_STD_99 199901L -#define C_STD_11 201112L -#define C_STD_17 201710L -#define C_STD_23 202311L - -#ifdef __STDC_VERSION__ -# define C_STD __STDC_VERSION__ -#endif - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif C_STD > C_STD_17 -# define C_VERSION "23" -#elif C_STD > C_STD_11 -# define C_VERSION "17" -#elif C_STD > C_STD_99 -# define C_VERSION "11" -#elif C_STD >= C_STD_99 -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/a.out b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/a.out deleted file mode 100755 index 4c42435a7..000000000 Binary files a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/a.out and /dev/null differ diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index da6c824af..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,919 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out deleted file mode 100755 index aafe5061a..000000000 Binary files a/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out and /dev/null differ diff --git a/RainMaker_Table-Lights/build/CMakeFiles/CMakeConfigureLog.yaml b/RainMaker_Table-Lights/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 966f2dfa5..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,606 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - The target system is: Generic - - - The host system is: Linux - 6.14.0-22-generic - x86_64 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - Build flags: -march=rv32imc_zicsr_zifencei - Id flags: - - The output was: - 0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdC/a.out - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - Build flags: -march=rv32imc_zicsr_zifencei - Id flags: - - The output was: - 0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": - riscv32-esp-elf-gcc (crosstool-NG esp-14.2.0_20241119) 14.2.0 - Copyright (C) 2024 Free Software Foundation, Inc. - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-oeDb1C" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-oeDb1C" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-oeDb1C' - - Run Build Command(s): /usr/bin/ninja -v cmTC_77d4e - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_77d4e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccFSRIgY.s - GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: 2abae7216a6a1e12430968a738fec0e0 - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj /tmp/ccFSRIgY.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.' - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -o cmTC_77d4e && : - Using built-in specs. - Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs - rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_77d4e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_77d4e.' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8tsqD0.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_77d4e -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_77d4e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_77d4e.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-oeDb1C'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_77d4e] - ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_77d4e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccFSRIgY.s] - ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 2abae7216a6a1e12430968a738fec0e0] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj /tmp/ccFSRIgY.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.'] - ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -o cmTC_77d4e && :] - ignore line: [Using built-in specs.] - ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] - ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] - ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_77d4e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_77d4e.'] - link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8tsqD0.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_77d4e -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cc8tsqD0.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_77d4e] ==> ignore - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_77d4e.dir/CMakeCCompilerABI.c.obj] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--start-group] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [--end-group] ==> ignore - ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_77d4e' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_77d4e.'] - ignore line: [] - ignore line: [] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys] - implicit objs: [] - implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-Prftw9" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-Prftw9" - cmakeVariables: - CMAKE_CXX_FLAGS: "-march=rv32imc_zicsr_zifencei " - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-Prftw9' - - Run Build Command(s): /usr/bin/ninja -v cmTC_ccaa1 - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_ccaa1.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/cciTBWUS.s - GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: c7cd21a23c5c74d612ca7681e3115c94 - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj /tmp/cciTBWUS.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.' - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_ccaa1 && : - Using built-in specs. - Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs - rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_ccaa1' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_ccaa1.' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cciC70IW.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_ccaa1 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_ccaa1' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_ccaa1.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:16 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-Prftw9'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_ccaa1] - ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_ccaa1.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/cciTBWUS.s] - ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: c7cd21a23c5c74d612ca7681e3115c94] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj /tmp/cciTBWUS.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_ccaa1 && :] - ignore line: [Using built-in specs.] - ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] - ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++] - ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_ccaa1' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_ccaa1.'] - link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cciC70IW.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_ccaa1 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cciC70IW.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_ccaa1] ==> ignore - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_ccaa1.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--start-group] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [--end-group] ==> ignore - ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_ccaa1' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_ccaa1.'] - ignore line: [] - ignore line: [] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys] - implicit objs: [] - implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:136 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-J9HEB1" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-J9HEB1" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-J9HEB1' - - Run Build Command(s): /usr/bin/ninja -v cmTC_54d9d - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCMAKE_HAVE_LIBC_PTHREAD -march=rv32imc_zicsr_zifencei -o CMakeFiles/cmTC_54d9d.dir/src.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-J9HEB1/src.c - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_54d9d.dir/src.c.obj -o cmTC_54d9d && : - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: CMakeFiles/cmTC_54d9d.dir/src.c.obj: in function `main': - src.c:(.text+0x6e): warning: pthread_atfork is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x50): warning: pthread_cancel is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x34): warning: pthread_create is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x42): warning: pthread_detach is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x78): warning: pthread_exit is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: src.c:(.text+0x60): warning: pthread_join is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - - exitCode: 0 - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" - - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:219 (CHECK_C_COMPILER_FLAG)" - checks: - - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-CGCcNH" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-CGCcNH" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow" - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-CGCcNH' - - Run Build Command(s): /usr/bin/ninja -v cmTC_8a49d - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_8a49d.dir/src.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/CMakeScratch/TryCompile-CGCcNH/src.c - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs CMakeFiles/cmTC_8a49d.dir/src.c.obj -o cmTC_8a49d && : - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - - exitCode: 0 -... diff --git a/RainMaker_Table-Lights/build/CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj b/RainMaker_Table-Lights/build/CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj deleted file mode 100644 index 4d53ae479..000000000 Binary files a/RainMaker_Table-Lights/build/CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/CMakeFiles/TargetDirectories.txt b/RainMaker_Table-Lights/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index e8edd44c8..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,984 +0,0 @@ -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/menuconfig.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/confserver.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/save-defconfig.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/gen_project_binary.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/app.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/erase_flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/merge-bin.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/monitor.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/encrypted-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/_project_elf_src.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/RainMaker_Table-Lights.elf.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/size.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/size-files.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/size-components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/uf2.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/uf2-app.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/partition-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/partition_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/blank_ota_data.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/read-otadata.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/read_otadata.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/erase-otadata.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/erase_otadata.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/otadata-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/encrypted-otadata-flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/install/strip.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/list_install_components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/install.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/install/local.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/install/strip.dir diff --git a/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete b/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.json b/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.json deleted file mode 100644 index cce7efa26..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "sources" : - [ - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" - }, - { - "file" : "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" - } - ], - "target" : - { - "labels" : - [ - "bootloader" - ], - "name" : "bootloader" - } -} \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.txt b/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.txt deleted file mode 100644 index 5c1cc667d..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/bootloader.dir/Labels.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Target labels - bootloader -# Source files and their labels -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/RainMaker_Table-Lights/build/CMakeFiles/clean_additional.cmake b/RainMaker_Table-Lights/build/CMakeFiles/clean_additional.cmake deleted file mode 100644 index d3c962c6c..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/clean_additional.cmake +++ /dev/null @@ -1,28 +0,0 @@ -# Additional clean files -cmake_minimum_required(VERSION 3.16) - -if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") - file(REMOVE_RECURSE - "RainMaker_Table-Lights.bin" - "RainMaker_Table-Lights.map" - "bootloader/bootloader.bin" - "bootloader/bootloader.elf" - "bootloader/bootloader.map" - "config/sdkconfig.cmake" - "config/sdkconfig.h" - "esp-idf/esptool_py/flasher_args.json.in" - "esp-idf/mbedtls/x509_crt_bundle" - "flash_app_args" - "flash_bootloader_args" - "flash_project_args" - "flasher_args.json" - "ldgen_libraries" - "ldgen_libraries.in" - "mqtt_server.crt.S" - "project_elf_src_esp32c3.c" - "rmaker_claim_service_server.crt.S" - "rmaker_mqtt_server.crt.S" - "rmaker_ota_server.crt.S" - "x509_crt_bundle.S" - ) -endif() diff --git a/RainMaker_Table-Lights/build/CMakeFiles/cmake.check_cache b/RainMaker_Table-Lights/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd7317..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/RainMaker_Table-Lights/build/CMakeFiles/git-data/HEAD b/RainMaker_Table-Lights/build/CMakeFiles/git-data/HEAD deleted file mode 100644 index b3440b61b..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -4c2820d377d1375e787bcef612f0c32c1427d183 diff --git a/RainMaker_Table-Lights/build/CMakeFiles/git-data/grabRef.cmake b/RainMaker_Table-Lights/build/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index 4a3fffc1b..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -set(HEAD_HASH) - -file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "/home/alex/esp/v5.4.1/esp-idf/.git") -# handle git-worktree -if(EXISTS "${GIT_DIR}/commondir") - file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) - string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) - if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") - get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) - endif() - if(EXISTS "${GIT_DIR_NEW}") - set(GIT_DIR "${GIT_DIR_NEW}") - endif() -endif() -if(HEAD_CONTENTS MATCHES "ref") - # named branch - string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") - if(EXISTS "${GIT_DIR}/${HEAD_REF}") - configure_file("${GIT_DIR}/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref b/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref deleted file mode 100644 index b3440b61b..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -4c2820d377d1375e787bcef612f0c32c1427d183 diff --git a/RainMaker_Table-Lights/build/CMakeFiles/rules.ninja b/RainMaker_Table-Lights/build/CMakeFiles/rules.ninja deleted file mode 100644 index c67653e66..000000000 --- a/RainMaker_Table-Lights/build/CMakeFiles/rules.ninja +++ /dev/null @@ -1,2175 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the rules used to get the outputs files -# built from the input files. -# It is included in the main 'build.ninja'. - -# ============================================================================= -# Project: RainMaker_Table-Lights -# Configurations: -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__RainMaker_Table-Lights.2eelf_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX executable. - -rule CXX_EXECUTABLE_LINKER__RainMaker_Table-Lights.2eelf_ - command = $PRE_LINK && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX executable $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_riscv_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building ASM object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_riscv_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_riscv_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_gpio_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_pm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_pm_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building ASM object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_mbedtls_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__everest_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__everest_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__p256m_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__p256m_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedcrypto_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedx509_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedx509_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedtls_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_app_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_bootloader_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_app_update_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_app_update_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_partition_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_partition_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_efuse_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_efuse_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_bootloader_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_mm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_mm_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_spi_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_system_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_common_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_rom_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_hal_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_hal_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_log_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_log_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_heap_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_heap_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_soc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_soc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_security_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_security_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_hw_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_freertos_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building ASM object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_freertos_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_freertos_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_newlib_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_newlib_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_pthread_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_pthread_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_cxx_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_cxx_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_timer_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_timer_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_gptimer_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_ringbuf_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_uart_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_app_trace_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_app_trace_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_event_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_event_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_nvs_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_nvs_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_spi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_i2s_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_sdmmc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_sdmmc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_sdspi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_rmt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_tsens_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_sdm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_i2c_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_ledc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_driver_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_driver_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_phy_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_phy_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_vfs_console_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_vfs_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_vfs_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_lwip_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_lwip_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_netif_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_netif_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_wpa_supplicant_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_coex_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_coex_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_wifi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_bt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_bt_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_unity_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_unity_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_cmock_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_cmock_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_console_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_console_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_http_parser_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_http_parser_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp-tls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp-tls_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_adc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_adc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_driver_cam_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_eth_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_eth_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_gdbstub_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_hid_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_hid_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_tcp_transport_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_tcp_transport_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_http_client_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_http_client_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_http_server_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_http_server_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_https_ota_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_https_server_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_https_server_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_lcd_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_protobuf-c_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_protobuf-c_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_protocomm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_protocomm_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_local_ctrl_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espcoredump_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espcoredump_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_wear_levelling_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_wear_levelling_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_fatfs_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_fatfs_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_json_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_json_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_mqtt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_mqtt_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_nvs_sec_provider_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_rt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_rt_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_spiffs_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_spiffs_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_wifi_provisioning_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_main_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_main_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__rmaker_common_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__rmaker_common_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_diagnostics_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__cbor_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__cbor_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_diag_data_store_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_diag_data_store_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_espressif__esp_insights_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building ASM object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_insights_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_insights_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__json_parser_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__json_parser_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__json_generator_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__json_generator_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__mdns_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__mdns_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_schedule_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_schedule_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__network_provisioning_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__network_provisioning_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp-serial-flasher_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_rcp_update_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_rcp_update_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__esp_secure_cert_mgr_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__esp_secure_cert_mgr_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_esp_rainmaker_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building ASM object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_rainmaker_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_rainmaker_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_app_insights_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_app_insights_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_espressif__qrcode_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_espressif__qrcode_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_app_network_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_app_network_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_gpio_button_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_gpio_button_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_gpio_button_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_app_reset_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_app_reset_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_ledc_driver_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_ledc_driver_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_ws2812_led_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_ws2812_led_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for re-running cmake. - -rule RERUN_CMAKE - command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning additional files. - -rule CLEAN_ADDITIONAL - command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake - description = Cleaning additional files... - - -############################################# -# Rule for cleaning all built files. - -rule CLEAN - command = /usr/bin/ninja $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = /usr/bin/ninja -t targets - description = All primary targets available: - diff --git a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin b/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin deleted file mode 100644 index 0654747d7..000000000 Binary files a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf b/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf deleted file mode 100755 index 05ed1f74d..000000000 Binary files a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf and /dev/null differ diff --git a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map b/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map deleted file mode 100644 index 1d597a7a8..000000000 --- a/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map +++ /dev/null @@ -1,100734 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - (esp_app_desc) -esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - (esp_efuse_startup_include_func) -esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_efuse_check_errors) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) -esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_key_dis_read) -esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_KEY5) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) -esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_restart) -esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - (esp_system_include_startup_funcs) -esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - (__ubsan_include) -esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - (call_start_cpu0) -esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) -esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_brownout_init) -esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) -esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (esp_reset_reason_set_hint) -esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) -esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) -esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_apb_backup_dma_lock_init) -esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) -esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (g_startup_fn) -esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (panic_restart) -esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) -esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_hw_stack_guard_get_bounds) -esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_err_to_name) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (efuse_hal_chip_revision) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) -esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) -esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (cache_hal_init) -esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (uart_hal_write_txfifo) -esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (brownout_hal_config) -esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_timestamp) -esp-idf/log/liblog.a(log_write.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_log_write) -esp-idf/log/liblog.a(log_level.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_default_level) -esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/log/liblog.a(log_write.c.obj) (esp_log_level_get_timeout) -esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_linked_list_set_level) -esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_cache_set_level) -esp-idf/log/liblog.a(log_lock.c.obj) - esp-idf/log/liblog.a(log_write.c.obj) (esp_log_impl_lock) -esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (heap_caps_get_free_size) -esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) -esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) -esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) -esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) -esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) -esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) -esp-idf/esp_security/libesp_security.a(init.c.obj) - (esp_security_init_include_impl) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (esp_cpu_set_breakpoint) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_clk_cpu_freq) -esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) (esp_intr_enable_source) -esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (periph_module_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (rtc_isr_register) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) -esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) (regi2c_ctrl_write_reg_mask) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (rtc_sleep_pu) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) -esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (sar_periph_ctrl_init) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_mprot_get_active_intr) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (esp_mprot_ll_err_to_esp_err) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_sleep_sub_mode_config) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_console_usj_pad_backup_and_disable) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_clk_tree_lp_slow_get_freq_hz) -esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_enable_cpu_retention) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_modem_reject_triggers) -esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) -esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/log/liblog.a(log_lock.c.obj) (xQueueGenericSend) -esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (vTaskDelete) -esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (vPortEndScheduler) -esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) (pvPortMalloc) -esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) -esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) -esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) -esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (abort) -esp-idf/newlib/libnewlib.a(assert.c.obj) - (__assert_func) -esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) (malloc) -esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (_lock_acquire_recursive) -esp-idf/newlib/libnewlib.a(pthread.c.obj) - (newlib_include_pthread_impl) -esp-idf/newlib/libnewlib.a(getentropy.c.obj) - (newlib_include_getentropy_impl) -esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (esp_reent_init) -esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - (newlib_include_init_funcs) -esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_kill_r) -esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_gettimeofday_r) -esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) -esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) (getrandom) -esp-idf/pthread/libpthread.a(pthread.c.obj) - (pthread_include_pthread_impl) -esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - (pthread_include_pthread_cond_var_impl) -esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) -esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - (pthread_include_pthread_rwlock_impl) -esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - (pthread_include_pthread_semaphore_impl) -esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - (__cxa_guard_dummy) -esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - (__cxx_init_dummy) -esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - (esp_timer_init_include_func) -esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) (esp_timer_impl_init_system_time) -esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_timer_private_lock) -esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_timer_impl_get_time) -esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - (uart_vfs_include_dev_init) -esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (uart_set_word_length) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - (usb_serial_jtag_connection_monitor_include) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - (usb_serial_jtag_vfs_include_dev_init) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) (usb_serial_jtag_read_bytes) -esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - (include_esp_phy_override) -esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - (esp_vfs_include_console_register) -esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (esp_vfs_register_fs) -esp-idf/vfs/libvfs.a(nullfs.c.obj) - (esp_vfs_include_nullfs_register) -esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (g_coex_adapter_funcs) -esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - (nvs_sec_provider_include_impl) -esp-idf/main/libmain.a(app_main.c.obj) - (app_main) -esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (app_light_set_power) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_cmd_register) -esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (json_obj_get_bool) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_node_init) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_node_delete) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) (esp_rmaker_device_delete) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_device_cb_src_to_str) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) (esp_rmaker_report_value) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_clean_mqtt_conn_params) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_timezone_service_enable) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_user_mapping_prov_init) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_schedule_enable) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_scenes_enable) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_cmd_response_enable) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) (esp_rmaker_secure_boot_digest_free) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_claim_data_free) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_init_local_ctrl_service) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_mqtt_init) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) (esp_rmaker_mqtt_is_budget_available) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_ota_enable_default) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_rmaker_ota_finish_using_params) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_rmaker_ota_report_status_using_topics) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_brightness_param_create) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_lightbulb_device_create) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) (esp_rmaker_ota_service_create) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (esp_rmaker_console_init) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) (register_commands) -esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) (_binary_rmaker_mqtt_server_crt_start) -esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (_binary_rmaker_ota_server_crt_start) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) (rainmaker__resp_set_user_mapping__init) -esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) (esp_rmaker_node_auth_sign_msg) -esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (app_insights_enable) -esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) (app_network_set_custom_mfg_data) -esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) (wifi_init) -esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) (iot_button_create) -esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) (app_reset_button_register) -esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) (ws2812_led_set_hsv) -esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (led_strip_new_rmt_ws2812) -esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) (esp_local_ctrl_stop) -esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) (esp_local_ctrl_data_handler) -esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) (resp_get_property_count__init) -esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) (esp_local_ctrl_get_transport_httpd) -esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) (httpd_ssl_start) -esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) (json_gen_str_start) -esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) (mdns_init) -esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (mdns_mem_malloc) -esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (mdns_is_netif_ready) -esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (ETH_EVENT) -esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) (esp_schedule_enable) -esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) (esp_schedule_nvs_add) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) (network_prov_mgr_endpoint_create) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (get_network_prov_handlers) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) (network_prov_scheme_ble_set_service_uuid) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (network_prov_config_data_handler) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (network_prov_scan_handler) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (network_ctrl_handler) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) (resp_get_wifi_status__init) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) (resp_scan_wifi_start__init) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) (resp_ctrl_wifi_reset__init) -esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) (wifi_connected_state__init) -esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) (protocomm_new) -esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) (status__descriptor) -esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) (protocomm_httpd_start) -esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) (protocomm_security0) -esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) (protocomm_security1) -esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) (protocomm_security2) -esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) (esp_srp_free) -esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) (esp_mpi_new) -esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) (protocomm_ble_start) -esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) (s0_session_resp__init) -esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (session_resp1__init) -esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) (s2_session_resp0__init) -esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) (session_data__init) -esp-idf/bt/libbt.a(bt.c.obj) esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) (esp_bt_mem_release) -esp-idf/bt/libbt.a(addr.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_hs_util_ensure_addr) -esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_svc_gap_device_name) -esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_store_util_status_rr) -esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(addr.c.obj) (ble_hs_id_gen_rnd) -esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) (ble_hs_lock) -esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_hs_hci_evt_process) -esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_mqueue_init) -esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_att_init) -esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_gattc_timer) -esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) (ble_store_delete) -esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_hs_cfg) -esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) (ble_att_clt_rx_error) -esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) (ble_hs_mbuf_att_pkt) -esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) (ble_att_cmd_get) -esp-idf/bt/libbt.a(ble_hs_log.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_hs_log_mbuf) -esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_hs_startup_go) -esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_l2cap_sig_conn_broken) -esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_gap_conn_find) -esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) (ble_uuid_cmp) -esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_pvcy_remove_entry) -esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_hs_flow_connection_broken) -esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) (ble_l2cap_chan_alloc) -esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) (ble_hs_misc_conn_chan_find) -esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_gatts_connection_broken) -esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_adv_set_fields) -esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) (ble_hs_hci_set_buf_sz) -esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (ble_hs_hci_util_handle_pb_bc_join) -esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (ble_store_config_init) -esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (nimble_port_init) -esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) (nimble_port_freertos_init) -esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) (put_le16) -esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (os_mempool_init) -esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (mem_init_mbuf_pool) -esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) (os_mbuf_pool_init) -esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) (os_msys_init) -esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (npl_funcs) -esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) (esp_nimble_hci_init) -esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) (ble_transport_to_ll_acl_impl) -esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) (bt_osi_mem_malloc) -esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) (ble_transport_alloc_evt) -esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) (ble_hs_conn_can_alloc) -esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) (ble_sm_incr_our_sign_counter) -esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) (ble_l2cap_sig_tx) -esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) (ble_hs_hci_cmd_send_buf) -esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) (ble_att_svr_register) -esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) (ble_hs_atomic_conn_delete) -esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) (ble_sm_alg_aes_cmac) -esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) (ble_hs_stop) -esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_lgcy_io_action) -esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_cmd_get) -esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) (ble_sm_sc_io_action) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) (btdm_lpclk_select_src) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (ble_util_buf_reset) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (rw_rf_le_exit_test_mode) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (coex_schm_wakeup_flag_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) (emi_reset_em_mapping_by_offset) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (btdm_hli_funcs_register) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (r_intc_deinit) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (r_cca_funcs_ro) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_rem_ch_map_proc_continue) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_con_conflict_check) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_disconnect_end) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_hci_dl_upd_info_send) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_loc_encrypt_proc_continue_hook) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_hci_feats_info_send) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_hci_command_handler_pre) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_le_ping_restart) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_enc_state_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_loc_phy_upd_proc_continue_hook) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_msg_handler_tab_p_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llc_hci_version_info_send) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_ble_ll_qa_config_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_cca_get_cca_env) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_con_cntl_pkt_info_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_init_start_hook) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_core_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_per_adv_sched) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_ext_scan_dynamic_pti_reset) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_sync_scan_dynamic_pti_process) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_lld_test_stop) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) (llm_ext_adv_get_own_addr) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (ble_ll_reset_rand_addr) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) (hci_le_create_con_cmd_handler) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llm_le_scan_duplicate_opt_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (ble_ll_scan_set_perfer_addr) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_llm_msg_handler_tab_p_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_misc_msg_handler_tab_p_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (r_modules_funcs_ro) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_nvds_is_magic_number_ok) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - esp-idf/bt/libbt.a(bt.c.obj) (btdm_osi_funcs_register) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (r_plf_funcs_ro) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (bt_rf_coex_cfg_overwrite) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rf_txpwr_dbm_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_bt_rma_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rf_pwr_tbl_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rf_util_cs_fmt_convert) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_ble_isr_error_state_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rwip_driver_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rwip_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_sch_alarm_prog) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_sch_arb_event_start_isr) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_sch_plan_set) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) (ble_evt_kick_delay_update) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_sch_slice_compute) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_sdk_config_get_hl_derived_opts) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_sdk_cfg_priv_opts_ext_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_btdm_vnd_ol_task_env_get) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_vhci_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_vshci_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) (adv_stack_enableClearLegacyAdvVsCmd) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_aes_ccm_xor_128_lsb) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rw_cryto_aes_cmac) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_aes_k1_continue) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_aes_k2_continue) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_aes_k3_continue) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_aes_k4_continue) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) (rw_crypto_aes_encrypt_sync) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_rw_crypto_aes_s1) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_co_list_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_co_util_read_array_size) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_isValidSecretKey_256) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_h4tl_eif_register) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_writebyte) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_h4tl_rx_cmd_hdr_extract) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_hci_fc_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_hci_register_vendor_desc_tab) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_hci_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) (r_hci_tl_env_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_event_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_mem_is_in_heap) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_msg_alloc) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_queue_extract) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_task_handler_get_overwrite) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) (r_ke_time_cmp) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) (r_led_init) -/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) (bt_rf_coex_hook_register) -esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) (protobuf_c_message_get_packed_size) -esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (cJSON_Delete) -esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) (esp_qrcode_print_console) -esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) (qrcodegen_getSize) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_work_queue_add_task) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_rmaker_factory_init) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) (esp_rmaker_time_get_timezone_posix) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) (esp_rmaker_tz_db_get_posix_str) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_rmaker_reboot) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) (esp_rmaker_common_console_init) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) (esp_rmaker_mqtt_glue_setup) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) (esp_get_aws_ppi) -esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) (esp_rmaker_common_register_commands) -esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) (esp_console_init) -esp-idf/console/libconsole.a(split_argv.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (esp_console_split_argv) -esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (linenoiseAddCompletion) -esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (arg_dstr_create) -esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (arg_end) -esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (arg_intn) -esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (arg_str0) -esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) (argtable3_xmalloc) -esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) (arg_parse) -esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) (esp_mqtt_client_start) -esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (mqtt_get_total_length) -esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (outbox_init) -esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (platform_create_id_string) -esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (riscv_decode_offset_from_jal_instruction) -esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (intr_handler_set) -esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (_interrupt_handler) -esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esprv_int_get_type) -esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (_vector_table) -esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (gpio_pullup_en) -esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (rtc_gpio_is_valid_gpio) -esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (esp_crt_bundle_attach) -esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) (_binary_x509_crt_bundle_start) -esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_ota_get_running_partition) -esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_partition_iterator_release) -esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_partition_write) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_efuse_check_secure_version) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (bootloader_common_ota_select_crc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) -esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_flash_encryption_enabled) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (bootloader_random_enable) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) -esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) -esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_verify) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) -esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) -esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) -esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) (esp_heap_adjust_alignment_to_hw) -esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) (esp_cache_get_alignment) -esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (spi_flash_needs_reset_check) -esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (spi_flash_disable_cache) -esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) (spi_flash_mmap) -esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mspi_pin_init) -esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_flash_erase_region) -esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_flash_init_default_chip) -esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) -esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_app_disable_os_functions) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_boya) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_th) -esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) -esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (_esp_error_check_failed) -esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) -esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (esp_vApplicationTickHook) -esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_int_wdt_init) -esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort) -esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) -esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (esp_backtrace_print) -esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_unmap_all) -esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) -esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_poll_cmd_done) -esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (spi_flash_encryption_hal_enable) -esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) -esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_hal_init) -esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_get_sclk) -esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) -esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) -esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) (rtc_cntl_hal_dma_link_init) -esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) (esp_log_buffer_hexdump_internal) -esp-idf/log/liblog.a(util.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) (esp_log_util_cvt_hex) -esp-idf/soc/libsoc.a(interrupts.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) -esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (GPIO_HOLD_MASK) -esp-idf/soc/libsoc.a(uart_periph.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_periph_signal) -esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) -esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (esp_hmac_calculate) -esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (esp_crypto_hmac_lock_acquire) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) (esp_ptr_byte_accessible) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) -esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (periph_rtc_dig_clk8m_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (esp_random) -esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_read_mac) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (esp_gpio_reserve) -esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) (temperature_sensor_power_acquire) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (esp_clk_tree_src_get_freq_hz) -esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_register_dev) -esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (adc_apb_periph_claim) -esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_ticks_to_us) -esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) (xTimerCreate) -esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (xEventGroupCreate) -esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) (rtos_int_enter) -esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (xQueueCreateWithCaps) -esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) -esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) (__atomic_compare_exchange_4) -esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) (esp_timer_create) -esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) (ets_timer_setfn) -esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) (xRingbufferCreate) -esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (esp_event_handler_register) -esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_event_loop_create) -esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) (nvs_flash_init_partition) -esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Storage::isValid() const) -esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartition::NVSPartition(esp_partition_t const*)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartitionManager::get_instance()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Lock::Lock()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::HashList::~HashList()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::Page::markFull()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::PageManager::fillStats(nvs_stats_t&)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) (nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (nvs::Item::calculateCrc32() const) -esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*)) -esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_get_by_id) -esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (rmt_config) -esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) (esp_phy_disable) -esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_init_data) -esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_track_pll) -esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) (sntp_set_time_sync_notification_cb) -esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) (lwip_getpeername) -esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) (tcpip_callback) -esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) (sntp_init) -esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_htons) -esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) (dns_gethostbyname) -esp-idf/lwip/liblwip.a(init.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) (lwip_init) -esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) (ipaddr_aton) -esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) (mem_init) -esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) (memp_init) -esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (netif_get_by_index) -esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) (pbuf_free) -esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (raw_bind_netif) -esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) (tcp_init) -esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_input_pcb) -esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_split_unsent_seg) -esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) (sys_timeout) -esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) -esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) (dhcp_network_changed_link_up) -esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) (etharp_cleanup_netif) -esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) (icmp_dest_unreach) -esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) -esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) (ip4_route) -esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_addr_isbroadcast_u32) -esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_frag) -esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) (icmp6_dest_unreach) -esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_route) -esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (ip6addr_aton) -esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) (ip6_frag) -esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) (mld6_stop) -esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) (nd6_input) -esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) (ethernet_input) -esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) (lwip_hook_tcp_isn) -esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) (lwip_hook_ip6_input) -esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_setsockopt_impl_ext) -esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) (sys_sem_new) -esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) (acd_remove) -esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) (esp_vfs_lwip_sockets_register) -esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (netconn_new_with_proto_and_callback) -esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) (lwip_netconn_is_deallocated_msg) -esp-idf/lwip/liblwip.a(err.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (err_to_errno) -esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) (netbuf_delete) -esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_chksum_pseudo) -esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (IP_EVENT) -esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) (esp_ip4addr_ntoa) -esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) (g_wifi_default_wpa_crypto_funcs) -esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_vector) -esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (os_get_random) -esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (ccmp_decrypt) -esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_gmac) -esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (bin_clear_free) -esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (fastpbkdf2_hmac_sha1) -esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) (aes_ccm_ae) -esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) (esp_wifi_init) -esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) (esp_netif_create_default_wifi_ap) -esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_wifi_destroy_if_driver) -esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) (g_wifi_osi_funcs) -esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (http_parser_url_init) -esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) (esp_tls_conn_read) -esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_tls_internal_event_tracker_capture) -esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_tls_get_platform_time) -esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_mbedtls_read) -esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_list_init) -esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_ssl_enable_global_ca_store) -esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) (esp_transport_utils_ms_to_timeval) -esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_ws_set_path) -esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (esp_http_client_set_method) -esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) (http_auth_basic) -esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) (http_header_init) -esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) (http_utils_assign_string) -esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) (httpd_get_global_transport_ctx) -esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) (httpd_req_get_hdr_value_str) -esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (httpd_sess_enum) -esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) (httpd_sess_set_send_override) -esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) (httpd_register_uri_handler) -esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (cs_create_ctrl_sock) -esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (esp_https_ota_begin) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_list_ciphersuites) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_get_bytes_avail) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_init) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (__wrap_mbedtls_ssl_handshake_client_step) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (__wrap_mbedtls_ssl_handshake_server_step) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (__wrap_mbedtls_ssl_setup) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (mbedtls_net_init) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) (mbedtls_ssl_write_client_hello) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) (mbedtls_ssl_tls12_write_client_hello_exts) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) (mbedtls_ssl_handshake_server_step) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) (mbedtls_ms_time) -esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) (esp_mbedtls_free_buf) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) (mbedtls_mpi_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_mpi_core_bitlen) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) (mbedtls_cipher_info_from_type) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_cipher_base_lookup_table) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ct_memcmp) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) (mbedtls_cipher_cmac_starts) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_ctr_drbg_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ecdh_gen_public) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) (mbedtls_ecdsa_write_signature) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) (mbedtls_ecp_get_type) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_ecp_group_load) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_entropy_free) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_md_info_from_type) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_md5) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_pk_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_pk_ecc_set_group) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_alt_info) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_pk_parse_key) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_pk_write_key_pem) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_calloc) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) (mbedtls_platform_zeroize) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (psa_get_key_attributes) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_aead_encrypt_setup) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) (mbedtls_cipher_values_from_psa) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (psa_reset_key_attributes) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_get_key_buffer_size) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_import_key) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_hash_abort) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_mac_abort) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_import_key) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (psa_generic_status_to_mbedtls) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) (mbedtls_rsa_export) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (mbedtls_sha256) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) (mbedtls_sha512_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (esp_aes_xts_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) (esp_aes_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) (esp_aes_crypt_ecb) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) (esp_sha) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (esp_ds_set_session_timeout) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) (mbedtls_mpi_exp_mod) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) (mbedtls_sha1_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) (esp_aes_gcm_setkey) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (esp_md5_finish) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_aria_setkey_enc) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_asn1_get_tag) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_asn1_write_len) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) (mbedtls_gcm_init_soft) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_oid_get_pk_alg) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe_ext) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs5_pbes2_ext) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) (esp_aes_intr_alloc) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_write_digest_state) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) (mbedtls_base64_encode) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (esp_aes_dma_start) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) (esp_crypto_shared_gdma_start_axi_ahb) -esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_x509_crt_check_key_usage) -esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) (mbedtls_x509write_csr_init) -esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (mbedtls_x509_get_serial) -esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) (mbedtls_x509_string_to_names) -esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) (mbedtls_x509_write_set_san_common) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_coex_adapter_register) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) (coex_core_pti_set) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) (coex_hw_timer_set) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) (coex_rom_osi_funcs_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) (coex_schm_lock) -/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) (coex_dbg_output) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) (esp_wifi_internal_tx) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (hostap_query_mac_in_list) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (ieee80211_crypto_encap) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (ieee80211_phy_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (chm_get_current_channel) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (ieee80211_getmgtframe) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (ieee80211_is_40mhz_valid_bw) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (offchan_in_progress) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (is_esp_mesh_assoc) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (wifi_log) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (cnx_rc_update_rssi) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (ieee80211_add_ie_vendor_esp_manufacturer) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (wifi_nvs_get) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) (wifi_sta_get_prof_password) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) (wifi_station_get_reconnect_policy) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_timer_do_process) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) (gcmp) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (ftm_is_responder_supported) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (wifi_get_init_state) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_freedom_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (get_iav_key) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) (wifi_sta_reg_eapol_txdone_cb) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) (ieee80211_regdomain_get_country) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_ht_attach) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (ieee80211_decrypt_espnow_pkt) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) (ieee80211_send_action_register) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) (tkip) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_scan_deattach) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) (wep) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) (sms4) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) (pm_is_open) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (ic_get_addr) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) (pp_register_net80211_tx_cb) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) (pm_funcs_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) (esf_buf_alloc) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) (lmacIsIdle) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) (pm_coex_reconnect_policy) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) (wifi_gpio_debug) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) (wDev_ftm_set_t1t4) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) (hal_set_rx_beacon_pti) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) (hal_crypto_clr_key_entry) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) (hal_mac_rx_get_last_dscr) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) (mac_tx_set_plcp1) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) (hal_sniffer_enable) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) (hal_enable_sta_tsf) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) (RC_SetBasicRate) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) (pp_timer_do_process) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) -esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (esp_efuse_rtc_calib_get_ver) -esp-idf/hal/libhal.a(rmt_hal.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) (rmt_hal_tx_channel_reset) -esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (adc_hal_set_calibration_param) -esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (mpi_hal_calc_hardware_words) -esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_wait_idle) -esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (aes_hal_setkey) -esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (hmac_hal_start) -esp-idf/soc/libsoc.a(rmt_periph.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) (rmt_periph_signals) -esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (temperature_sensor_attributes) -esp-idf/soc/libsoc.a(mpi_periph.c.obj) - esp-idf/hal/libhal.a(mpi_hal.c.obj) (MPI_OPERATIONS_REG) -esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) (esp_ds_start_sign) -esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (spicommon_periph_claim) -esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (gdma_new_ahb_channel) -esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (adc2_cal_include) -esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (lwip_freeaddrinfo) -esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcps_new) -esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_netif_action_start) -esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_inherent_ap_config) -esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_netstack_default_wifi_ap) -esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (wlanif_input) -esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) -esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (esp_pbuf_allocate) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_supplicant_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_supplicant_unset_all_appie) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wps_get_wps_sm_cb) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_wpa3_free_sae_data) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (owe_deinit) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (hostapd_get_hapd_data) -esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) (crypto_ecdh_deinit) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (eloop_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (hostapd_setup_wpa_psk) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (wpa_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (wpa_auth_gen_wpa_ie) -esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (pmksa_cache_free_entry) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (ap_get_sta) -esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (handle_auth_sae) -esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (check_comeback_token) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (sae_clear_temp_data) -esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dragonfly_min_pwe_loop_iter) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpa_parse_wpa_ie_rsn) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (hmac_sha256_kdf) -esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dh_groups_get) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (sha256_prf_bits) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (sha1_prf) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_wsc_build_frag_ack) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_msg_alloc) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (cipher_type_map_supp_to_public) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_parse_wpa_ie) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpabuf_alloc) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) (wpa_snprintf_hex) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_build_public_key) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_parse_msg) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_generate_pin) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_build_manufacturer) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_enrollee_get_msg) -esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_pk_valid_password) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (eap_client_get_eap_state) -esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpa_alloc_eapol) -esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (tls_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (crypto_bignum_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (rc4_skip) -esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (aes_wrap) -esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (aes_unwrap) -esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (aes_siv_decrypt) -esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) (dh5_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (ieee802_11_parse_elems) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (eap_peer_get_eap_method) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_mschapv2_register) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_peap_register) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (peap_prfplus) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_tls_register) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (eap_peer_tls_ssl_init) -esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_ttls_register) -esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (mschapv2_remove_domain) -esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (pmksa_cache_flush) -esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) (wps_process_authenticator) -esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (nt_password_hash) -esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (md4_vector) -esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) (chap_md5) -esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (des_encrypt) -esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) (coexist_printf) -esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) (pp_printf) -esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) (esp_crypto_sha1) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) (misc_nvs_deinit) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) (mesh_sta_auth_expire_time) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_txupQ_pending_get_cidx) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) (esp_mesh_delivery_toDS) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_scan_done_get_channel) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) (mesh_topo_get_ttl) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_match_self) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (mesh_timer_do_process) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_io_sem_signal) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (mesh_mutex_lock) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) (mesh_send_process_topo) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) -/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_nvs_set_layer) -esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_deinit) -esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_ahb_hal_init) -esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) (ds_hal_start) -esp-idf/soc/libsoc.a(gdma_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_periph_signals) -esp-idf/lwip/liblwip.a(ethip6.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (ethip6_output) -esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (esp_mesh_send_event_internal) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator new[](unsigned int, std::nothrow_t const&)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) (vtable for __cxxabiv1::__si_class_type_info) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) (operator delete(void*)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) (operator delete(void*, unsigned int)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) (__cxa_begin_catch) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) (std::exception::~exception()) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) (std::terminate()) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) (operator new(unsigned int)) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) (vtable for std::bad_alloc) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - esp-idf/heap/libheap.a(tlsf.c.obj) (__ffssi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (__ffsdi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) (__clz_tab) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - esp-idf/heap/libheap.a(tlsf.c.obj) (__clzsi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (__ctzsi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (__ctzdi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) (__bswapsi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (__udivdi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) (__adddf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) (__eqdf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - esp-idf/json/libjson.a(cJSON.c.obj) (__gedf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - esp-idf/json/libjson.a(cJSON.c.obj) (__ledf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - esp-idf/json/libjson.a(cJSON.c.obj) (__muldf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - esp-idf/json/libjson.a(cJSON.c.obj) (__subdf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - esp-idf/json/libjson.a(cJSON.c.obj) (__unorddf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) (__fixdfsi) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (__floatsidf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) (__floatunsidf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) (__addsf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (__divsf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) (__eqsf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) (__gesf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) (__lesf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (__mulsf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) (__subsf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (__fixunssfsi) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) (__floatsisf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) (__floatunsisf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) (__floatundisf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) (__extendsfdf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) (__truncdfsf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) (__lshrdi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) (__ashldi3) -esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) (bt_track_pll_cap) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_wakeup_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) (ram1_phy_wakeup_init) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (wait_freq_set_busy) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (ram_pbus_force_mode) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (rom_phy_param_addr) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_dig_reg_backup) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) (rfpll_set_freq) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (rom2_tsens_read_init1) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (rom1_i2c_master_reset) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (rc_cal) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) (get_sar_sig_ref) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) (wr_rx_gain_mem) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (get_phy_version_str) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (rom1_wifi_tx_dig_gain) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (ram1_set_pbus_reg) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) (pbus_rx_dco_cal) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) (bias_dreg_i2c_set) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) (bt_txdc_cal) -/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) (bt_bb_tx_cca_set) -esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) (phy_printf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) (atoi) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) (exit) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) (getenv) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) (_findenv_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) (strtod) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) (_strtol_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) (strtoul) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) (__utoa) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) (strtoull) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) (optopt) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) (setenv) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) (_setenv_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - esp-idf/json/libjson.a(cJSON.c.obj) (_ctype_) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) (vfprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) (__sprint_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (ferror) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) (__sflush_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - esp-idf/console/libconsole.a(linenoise.c.obj) (fgetc) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - esp-idf/console/libconsole.a(linenoise.c.obj) (fgets) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - esp-idf/console/libconsole.a(linenoise.c.obj) (fileno) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) (__stdio_exit_handler) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - esp-idf/console/libconsole.a(linenoise.c.obj) (fputs) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (fread) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) (_fseek_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) (__sfvwrite_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) (_fwalk_sglue) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) (_putc_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) (putchar) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) (__srefill_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) (__srget_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (setbuf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) (setvbuf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (snprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (sprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - esp-idf/json/libjson.a(cJSON.c.obj) (sscanf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) (__sread) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - esp-idf/log/liblog.a(log_write.c.obj) (vprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - esp-idf/console/libconsole.a(arg_dstr.c.obj) (vsnprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) (__swbuf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (__swsetup_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - esp-idf/console/libconsole.a(commands.c.obj) (asprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) (_fseeko_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) (_ftello_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) (vasprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) (fls) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (memchr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (strcasecmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) (strchr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - esp-idf/console/libconsole.a(argtable3.c.obj) (strcspn) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) (strdup) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) (_strdup_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) (strerror) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (strncasecmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - esp-idf/console/libconsole.a(argtable3.c.obj) (strncat) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) (strncpy) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (strnlen) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (strrchr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) (strstr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) (_user_strerror) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) (strndup) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) (strcasestr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) (_strndup_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) (difftime) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) (gmtime_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) (localtime_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) (mktime) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__month_lengths) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) (strftime) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) (time) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__tzcalc_limits) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__tz_lock) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) (_tzset_unlocked) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) (_tzset_unlocked_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) (_timezone) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__global_locale_ptr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) (_localeconv_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) (_C_time_locale) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) (_impure_ptr) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) (__errno) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (close) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (fstat) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) (gettimeofday) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (open) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (read) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (write) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) (memmove) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (memset) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - esp-idf/log/liblog.a(tag_log_level.c.obj) (strcmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (nan) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (nanf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) (frexp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) (__call_exitprocs) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) (abs) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) (_dtoa_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) (__env_lock) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__gethex) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__match) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) (labs) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) (__ascii_mbtowc) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (_Balloc) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) (__ascii_wctomb) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) (siscanf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) (sniprintf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) (_svfiprintf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) (__ssvfiscanf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) (_svfprintf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) (__ssvfscanf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) (__sflags) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) (__swhatbuf_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) (__sccl) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) (__submore) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__gettzinfo) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) (_strtoll_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) (_mbrtowc_r) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) (iswspace) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) (iswspace_l) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) (__divdf3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__fixunsdfsi) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__fixdfdi) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__floatdidf) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) (__unordsf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) (__extenddftf2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) (__trunctfdf2) - -Discarded input sections - - .text 0x00000000 0x0 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .data 0x00000000 0x0 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .bss 0x00000000 0x0 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .comment 0x00000000 0x30 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .note.GNU-stack - 0x00000000 0x0 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .riscv.attributes - 0x00000000 0x44 CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj - .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_read_field_bit.str1.4 - 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_bit - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_cnt - 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_blob - 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_write_field_cnt.str1.4 - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_cnt - 0x00000000 0xe2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_bit - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_reg - 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_block - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_reg - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_block - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.destroy_block.str1.4 - 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.destroy_block - 0x00000000 0x154 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_begin.str1.4 - 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_begin - 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_cancel.str1.4 - 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_cancel - 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_commit.str1.4 - 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_commit - 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_destroy_block - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.1 - 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.2 - 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_batch_writing_mode - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_efuse_lock - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.fill_reg - 0x00000000 0xdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.set_cnt_in_reg - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.write_reg - 0x00000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_reset - 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_efuses - 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_erase_virt_blocks - 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_update_virt_blocks.str1.4 - 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_update_virt_blocks - 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 - 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_single_block - 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_pending - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 - 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_blocks - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_cnt - 0x00000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_write_reg.str1.4 - 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_reg - 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_blob - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_get_read_register_address.str1.4 - 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_read_register_address - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_is_correct_written_data.str1.4 - 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_is_correct_written_data - 0x00000000 0x102 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.0 - 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.2 - 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.3 - 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_block_is_empty - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect - 0x00000000 0x9e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_read_protect - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_coding_scheme - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_purpose_field - 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key - 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_key_dis_read.str1.4 - 0x00000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_read - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_write - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_write - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_purpose - 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_purpose - 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_keypurpose_dis_write - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_keypurpose_dis_write - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_purpose - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_key_block_unused - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_unused_key_block - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_count_unused_key_blocks - 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_key.str1.4 - 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_key - 0x00000000 0x124 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_keys.str1.4 - 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_keys - 0x00000000 0x156 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_digest_revoke.str1.4 - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_digest_revoke - 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_digest_revoke - 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_write_protect_of_digest_revoke - 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect_of_digest_revoke - 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_secure_boot_read_key_digests.str1.4 - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_secure_boot_read_key_digests - 0x00000000 0xc6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.0 - 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.1 - 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.2 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.3 - 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.4 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.5 - 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_revoke_table - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_table - 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_info 0x00000000 0x160b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_abbrev 0x00000000 0x325 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_loc 0x00000000 0xc8d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_aranges - 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_ranges 0x00000000 0x150 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_line 0x00000000 0x1404 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_str 0x00000000 0x1057 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_frame 0x00000000 0x350 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SYS_DATA_PART2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_OCODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR_HI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_THRES_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIG_DBIAS_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_V_DIG_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_V_RTC_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_K_DIG_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_K_RTC_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR_LO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D7 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D6 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_DQS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_WP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_HD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_Q - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CLK - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ERR_RST_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OCODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_THRES_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_K_DIG_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_K_RTC_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ERR_RST_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SYS_DATA_PART2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OCODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR_HI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.THRES_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIG_DBIAS_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_DIG_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_RTC_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_DIG_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_RTC_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR_LO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D7 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D6 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_DQS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_WP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_HD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_Q - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CLK - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ERR_RST_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CUSTOM_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_USR_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OCODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR_HI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_THRES_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIG_DBIAS_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_V_DIG_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_V_RTC_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_K_DIG_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_K_RTC_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR_LO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D7 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D6 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_DQS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_WP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_HD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_CS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_Q - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_CLK - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ERR_RST_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_set_timing - 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_clear_program_registers - 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_burn_chip_opt.str1.4 - 0x00000000 0x1d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip_opt - 0x00000000 0x3c0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip - 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 - 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_apply_new_coding_scheme - 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_write_addr_blocks - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss.write_mass_blocks - 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_maybe_debugbreak - 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__ubsan_default_handler.str1.4 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_default_handler - 0x00000000 0x5c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_type_mismatch - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_type_mismatch_v1 - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_add_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_sub_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_mul_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_negate_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_divrem_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_shift_out_of_bounds - 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_out_of_bounds - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_missing_return - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_vla_bound_not_positive - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_load_invalid_value - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_nonnull_arg - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_nonnull_return - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_builtin_unreachable - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_pointer_overflow - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_invalid_builtin - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.0 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.1 - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.2 - 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.3 - 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.4 - 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.5 - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.6 - 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.7 - 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.8 - 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.9 - 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.10 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.11 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.12 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.13 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.14 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.15 - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.16 - 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_minimum_free_heap_size - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .rodata.esp_get_idf_version.str1.4 - 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_idf_version - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .text.esp_brownout_disable - 0x00000000 0x3c esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text.rtc_clk_select_rtc_slow_clk - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_reset_reason - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .iram1.1 0x00000000 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .iram1.2 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_get_address - 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_set_address - 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_monitor_start - 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_monitor_stop - 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_set_bounds - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .data 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .rodata.esp_err_to_name_r.str1.4 - 0x00000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .text.esp_err_to_name_r - 0x00000000 0x8a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_mac - 0x00000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_clear_program_registers - 0x00000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .rodata.efuse_hal_program.str1.4 - 0x00000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_program - 0x00000000 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_rs_calculate - 0x00000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_is_coding_error_in_block - 0x00000000 0x76 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_deinit - 0x00000000 0x9a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_disable - 0x00000000 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_enable - 0x00000000 0x4a esp-idf/hal/libhal.a(cache_hal.c.obj) - .rodata.__func__.3 - 0x00000000 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) - .rodata.__func__.4 - 0x00000000 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .text.uart_hal_txfifo_rst - 0x00000000 0x1a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) - .text.esp_log_set_vprintf - 0x00000000 0x32 esp-idf/log/liblog.a(log_write.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .text.esp_log_level_get - 0x00000000 0x14 esp-idf/log/liblog.a(tag_log_level.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walker - 0x00000000 0x36 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_register_failed_alloc_callback - 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_malloc_extmem_enable - 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.5 0x00000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.6 0x00000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_total_size - 0x00000000 0x42 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.heap_caps_monitor_local_minimum_free_size_start.str1.4 - 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_monitor_local_minimum_free_size_start - 0x00000000 0x10a esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_monitor_local_minimum_free_size_stop - 0x00000000 0xb0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.heap_caps_print_heap_info.str1.4 - 0x00000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_print_heap_info - 0x00000000 0xb8 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity - 0x00000000 0x74 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity_all - 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity_addr - 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_dump - 0x00000000 0x56 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_dump_all - 0x00000000 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.heap_caps_get_allocated_size.str1.4 - 0x00000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_allocated_size - 0x00000000 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.10 0x00000000 0xb4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.12 0x00000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.heap_caps_walk.str1.4 - 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walk - 0x00000000 0x98 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walk_all - 0x00000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.0 - 0x00000000 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.2 - 0x00000000 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.3 - 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.4 - 0x00000000 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.7 - 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.8 - 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - .data.min_free_bytes_monitoring - 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.multi_heap_dump_tlsf.str1.4 - 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_dump_tlsf - 0x00000000 0x34 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_block_address_impl - 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_first_block - 0x00000000 0x3c esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.multi_heap_get_next_block.str1.4 - 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_next_block - 0x00000000 0x82 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_is_free - 0x00000000 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_aligned_alloc_impl - 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_check - 0x00000000 0x76 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.multi_heap_dump.str1.4 - 0x00000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_dump - 0x00000000 0x76 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_walk - 0x00000000 0x6a esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_reset_minimum_free_bytes - 0x00000000 0x2e esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_restore_minimum_free_bytes - 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.7 - 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.6 - 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.5 - 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.3 - 0x00000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.2 - 0x00000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.1 - 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.integrity_walker - 0x00000000 0x6a esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_check - 0x00000000 0x16a esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_check_pool - 0x00000000 0x22 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_remove_pool - 0x00000000 0x1dc esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_destroy - 0x00000000 0x2 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_malloc_addr - 0x00000000 0x758 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_memalign - 0x00000000 0x14 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.15 - 0x00000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .srodata.soc_memory_type_count - 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_stall - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_unstall - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .rodata.esp_cpu_reset.str1.4 - 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_reset - 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_breakpoint - 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_set_watchpoint - 0x00000000 0xda esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_watchpoint - 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_compare_and_set - 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .rodata.__func__.0 - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_rtc_time - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_lock - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_unlock - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_mark_shared - 0x00000000 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_reserve - 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.1 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_get_intno - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.6 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.7 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.esp_intr_dump.str1.4 - 0x00000000 0x12f esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_dump - 0x00000000 0x29a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.__func__.1 - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_rcc_release_enter - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_rcc_release_exit - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_deregister - 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .sdata.rtc_spinlock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .rodata.str1.4 - 0x00000000 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .iram1.0 0x00000000 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .rodata.__func__.2 - 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.1 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.8 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.9 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.7 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_bootstrap - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enabled - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_enabled - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_fast_src_get - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_xtal_freq_update - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config_fast - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_apb_freq_get - 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_divider_set - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_divider_set - 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_enable - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_8m_enabled - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.__func__.2 - 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.__func__.1 - 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_finish - 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .rodata.rtc_sleep_get_default_config.str1.4 - 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_get_default_config - 0x00000000 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .rodata.rtc_sleep_init.str1.4 - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_init - 0x00000000 0x366 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_low_init - 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_start - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_deep_sleep_start - 0x00000000 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .rodata.__func__.0 - 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .rodata.__func__.1 - 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_clk_cal_ratio - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_time_slowclk_to_us - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_clk_wait_for_slow_cycle - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .rodata.__func__.2 - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_power_enable - 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_power_disable - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_continuous_power_acquire - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_continuous_power_release - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_get_split_addr_from_reg - 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_get_split_addr - 0x00000000 0x10a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_get_pms_area - 0x00000000 0x1a6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_get_monitor_en - 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_is_intr_ena_any - 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .rodata.esp_mprot_dump_configuration.str1.4 - 0x00000000 0x356 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_dump_configuration - 0x00000000 0x42a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.2 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.s_do_deep_sleep_phy_callback - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.6 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.7 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.get_sleep_flags - 0x00000000 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.s_sleep_hook_deregister - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.get_power_down_flags - 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.9 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.8 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.gpio_deep_sleep_wakeup_prepare.str1.4 - 0x00000000 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.gpio_deep_sleep_wakeup_prepare - 0x00000000 0x162 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.timer_wakeup_prepare - 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.3 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.4 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.10 0x00000000 0x366 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.15 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_get_deep_sleep_wake_stub - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.1 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.12 0x00000000 0xda esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_register_hook - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_deregister_hook - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_deregister_phy_hook - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.13 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.14 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_light_sleep_start - 0x00000000 0x3d6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_sleep_disable_wakeup_source.str1.4 - 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wakeup_source - 0x00000000 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_ulp_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_timer_wakeup - 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_try - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_is_valid_wakeup_gpio - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_deep_sleep_enable_gpio_wakeup.str1.4 - 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_enable_gpio_wakeup - 0x00000000 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_gpio_wakeup - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_uart_wakeup - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_wifi_wakeup - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wifi_wakeup - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_wifi_beacon_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wifi_beacon_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_bt_wakeup - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_bt_wakeup - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_get_wakeup_cause - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_get_gpio_wakeup_status - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_sleep_pd_config.str1.4 - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_pd_config - 0x00000000 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_sub_mode_force_disable - 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_sleep_sub_mode_dump_config.str1.4 - 0x00000000 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_sub_mode_dump_config - 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.16 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_periph_use_8m - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_adc_tsens_monitor - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.rtc_sleep_enable_ultra_low - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.__func__.3 - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.__func__.2 - 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.__func__.1 - 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_suspended_uarts_bmap - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_stopped_tgwdt_bmap - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_cache_suspend_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_light_sleep_wakeup - 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .data.s_config - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_lightsleep_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss.s_dslp_cb - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text.sleep_console_usj_pad_backup_and_disable - 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text.sleep_console_usj_pad_restore - 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .sbss.s_usj_state - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_info 0x00000000 0x5cf3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_abbrev 0x00000000 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_loc 0x00000000 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_line 0x00000000 0x49c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_str 0x00000000 0x4d98 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .iram1.0 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_info 0x00000000 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_line 0x00000000 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_str 0x00000000 0x37b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text.esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text.esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_info 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_abbrev 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_ranges 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_line 0x00000000 0x1b4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_str 0x00000000 0x2ad esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_pd_low_init - 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_pd_low_deinit - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.sleep_enable_cpu_retention - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .iram1.1 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_init - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_deinit - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.cpu_domain_pd_allowed - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .rodata.sleep_cpu_configure.str1.4 - 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.sleep_cpu_configure - 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .dram1.0 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_info 0x00000000 0x4bb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_abbrev 0x00000000 0x216 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_loc 0x00000000 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_aranges - 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_ranges 0x00000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_line 0x00000000 0x671 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_str 0x00000000 0x5de esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_frame 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.modem_domain_pd_allowed - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .iram1.0 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .iram1.1 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.sleep_modem_configure - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_register_inform_out_light_sleep_overhead_callback - 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback - 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.periph_inform_out_light_sleep_overhead - 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_register_light_sleep_default_params_config_callback - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_unregister_light_sleep_default_params_config_callback - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .sbss.s_light_sleep_default_params_config_cb - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .sbss.s_periph_inform_out_light_sleep_overhead_cb - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_info 0x00000000 0x2eb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_abbrev 0x00000000 0x1b5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_loc 0x00000000 0x189 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_aranges - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_ranges 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_line 0x00000000 0x4f0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_str 0x00000000 0x4aa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_frame 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGetMutexHolderFromISR - 0x00000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueuePeek - 0x00000000 0x1cc esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueuePeekFromISR.str1.4 - 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueuePeekFromISR - 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueIsQueueFullFromISR - 0x00000000 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateSet - 0x00000000 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueAddToSet - 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueRemoveFromSet - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueSelectFromSet - 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueSelectFromSetFromISR - 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.0 - 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.6 - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.8 - 0x00000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.19 - 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvSearchForNameWithinSingleList - 0x00000000 0x7e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskCheckFreeStackSpace - 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskIsTaskSuspended - 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pxGetTaskListByIndex - 0x00000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskPriorityGetFromISR - 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskPrioritySet.str1.4 - 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPrioritySet - 0x00000000 0x166 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskResume.str1.4 - 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskResume - 0x00000000 0xe2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskResumeFromISR - 0x00000000 0x10e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskEndScheduler - 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskDelayUntil.str1.4 - 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskDelayUntil - 0x00000000 0xf6 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGetHandle.str1.4 - 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetHandle - 0x00000000 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskCatchUpTicks - 0x00000000 0x6e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskAbortDelay - 0x00000000 0x106 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetTimeOutState - 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskSetThreadLocalStoragePointer.str1.4 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetThreadLocalStoragePointer - 0x00000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetStackHighWaterMark2 - 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetStackHighWaterMark - 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyWait - 0x00000000 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotify - 0x00000000 0x20e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyFromISR - 0x00000000 0x268 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGenericNotifyStateClear.str1.4 - 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyStateClear - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.ulTaskGenericNotifyValueClear - 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTimerCreateTimerTask - 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetIdleTaskHandle - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pxTaskGetStackStart - 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.prvTaskPriorityRaise.str1.4 - 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskPriorityRaise - 0x00000000 0x12c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskPriorityRestore - 0x00000000 0x110 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetNext - 0x00000000 0x9c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetSnapshotAll - 0x00000000 0x62 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pvTaskGetCurrentTCBForCore - 0x00000000 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.0 - 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.1 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.7 - 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.9 - 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.10 - 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.11 - 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.15 - 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.17 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.25 - 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.26 - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.28 - 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.32 - 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.33 - 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.34 - 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.36 - 0x00000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.39 - 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.non_ready_task_lists - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortEndScheduler - 0x00000000 0xc esp-idf/freertos/libfreertos.a(port.c.obj) - .iram1.1 0x00000000 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortYieldOtherCore - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.xPortGetTickRateHz - 0x00000000 0x6 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortSetStackWatchpoint - 0x00000000 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text.xPortGetFreeHeapSize - 0x00000000 0x18 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text.xPortGetMinimumEverFreeHeapSize - 0x00000000 0x18 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text.xPortCheckValidListMem - 0x00000000 0x3a esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text.__assert - 0x00000000 0x10 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.memalign - 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.aligned_alloc - 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.posix_memalign - 0x00000000 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_trim - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_usable_size - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_stats - 0x00000000 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.mallopt 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.mallinfo - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.1 0x00000000 0x18 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.2 0x00000000 0x18 esp-idf/newlib/libnewlib.a(locks.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.pthread_setcancelstate - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.pthread_sigmask - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.sigfillset - 0x00000000 0xa esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .text.getentropy - 0x00000000 0x46 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .text.esp_reent_cleanup - 0x00000000 0x94 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._write_r_console - 0x00000000 0x46 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._read_r_console - 0x00000000 0x50 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._fstat_r_console - 0x00000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._fsync_console - 0x00000000 0x2e esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.system 0x00000000 0x1a esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_settime - 0x00000000 0x5e esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_getres - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(time.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_list_find_item - 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_get_handle_by_desc - 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_get_desc_by_handle - 0x00000000 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_find - 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.get_default_pthread_core - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.lazy_init_pthread_cfg_key - 0x00000000 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_cfg_key_destructor - 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_delete - 0x00000000 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_create_freertos_task_with_caps - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_init - 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.esp_pthread_set_cfg.str1.4 - 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_set_cfg - 0x00000000 0xe6 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_get_cfg - 0x00000000 0xa2 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_get_default_config - 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_create.str1.4 - 0x00000000 0xb4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_create - 0x00000000 0x28a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_join - 0x00000000 0x13c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_detach - 0x00000000 0x90 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_exit - 0x00000000 0xcc esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_task_func - 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_cancel.str1.4 - 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_cancel - 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.sched_yield - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_self.str1.4 - 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_self - 0x00000000 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_equal - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_once.str1.4 - 0x00000000 0x1f esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_once - 0x00000000 0x64 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_mutex_destroy.str1.4 - 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_destroy - 0x00000000 0x9c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_timedlock - 0x00000000 0x118 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_trylock - 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_init - 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_destroy - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_gettype - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_settype - 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_init - 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_destroy - 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_getstacksize - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_setstacksize - 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_getdetachstate - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_setdetachstate - 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.1 - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.3 - 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.5 - 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__FUNCTION__.6 - 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__FUNCTION__.7 - 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_pthread_cfg_key - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_threads_list - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sdata.pthread_lazy_init_lock - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_threads_lock - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.pthread_condattr_init.str1.4 - 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_init - 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_destroy - 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_getpshared - 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_setpshared - 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_getclock - 0x00000000 0x46 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.pthread_condattr_setclock.str1.4 - 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_setclock - 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_init - 0x00000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.s_check_and_init_if_static - 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_signal - 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_broadcast - 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_timedwait - 0x00000000 0x1a4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_wait - 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_destroy - 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__func__.0 - 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0x19 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .rodata.__FUNCTION__.5 - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_key_delete - 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_internal_local_storage_destructor_callback - 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_init - 0x00000000 0x8e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_init_if_static - 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.checkrw_lock - 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_destroy - 0x00000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_rdlock - 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_tryrdlock - 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_wrlock - 0x00000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_trywrlock - 0x00000000 0x6a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .rodata.pthread_rwlock_unlock.str1.4 - 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_unlock - 0x00000000 0xa4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .rodata.__func__.0 - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_destroy - 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_init - 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_post - 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_timedwait - 0x00000000 0x124 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_trywait - 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_wait - 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_getvalue - 0x00000000 0x42 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text._ZL20signal_waiting_tasksv - 0x00000000 0x36 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 - 0x00000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text._ZL18wait_for_guard_objP7guard_t - 0x00000000 0xf6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text._ZL19static_init_preparev - 0x00000000 0x62 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata.__cxa_guard_acquire.str1.4 - 0x00000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_acquire - 0x00000000 0xe6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata.__cxa_guard_release.str1.4 - 0x00000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_release - 0x00000000 0xd8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata.__cxa_guard_abort.str1.4 - 0x00000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_abort - 0x00000000 0xfe esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss.__dso_handle - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL31s_static_init_max_waiting_count - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL27s_static_init_waiting_count - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL22s_static_init_wait_sem - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL19s_static_init_mutex - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .text.__cxx_eh_arena_size_get - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .iram1.1 0x00000000 0x6 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text.esp_timer_impl_lock - 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text.esp_timer_impl_unlock - 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .iram1.0 0x00000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .sdata.s_time_update_lock - 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.0 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.4 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_set - 0x00000000 0x7e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_advance - 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_deinit - 0x00000000 0x76 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_get_alarm_reg - 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_get_avail_data_len_via_driver - 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_rx_char_via_driver - 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tx_char_via_driver - 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_port_set_rx_line_endings - 0x00000000 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_port_set_tx_line_endings - 0x00000000 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_set_rx_line_endings - 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_set_tx_line_endings - 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_use_nonblocking - 0x00000000 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_use_driver - 0x00000000 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_dequeue - 0x00000000 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_try_set_iomux_pin - 0x00000000 0xb8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_sclk_freq - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_line_inverse - 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_sw_flow_ctrl.str1.4 - 0x00000000 0x5f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_sw_flow_ctrl - 0x00000000 0x11a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_hw_flow_ctrl.str1.4 - 0x00000000 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_hw_flow_ctrl - 0x00000000 0x108 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_hw_flow_ctrl - 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_clear_intr_status - 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_intr_mask - 0x00000000 0x94 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_pop_pos - 0x00000000 0xa8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_get_pos - 0x00000000 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_enable_pattern_det_baud_intr.str1.4 - 0x00000000 0x2d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_pattern_det_baud_intr - 0x00000000 0x15c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_disable_pattern_det_intr - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_rx_intr - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_pin.str1.4 - 0x00000000 0xd9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_pin - 0x00000000 0x47c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_rts.str1.4 - 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rts - 0x00000000 0xd2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_dtr - 0x00000000 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_tx_idle_num.str1.4 - 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_tx_idle_num - 0x00000000 0xc0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_param_config - 0x00000000 0x396 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_tx_chars - 0x00000000 0x120 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_write_bytes_with_break - 0x00000000 0x156 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_get_tx_buffer_free_size.str1.4 - 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_tx_buffer_free_size - 0x00000000 0xdc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_mode.str1.4 - 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_mode - 0x00000000 0x17a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_rx_full_threshold.str1.4 - 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rx_full_threshold - 0x00000000 0x11e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_tx_empty_threshold.str1.4 - 0x00000000 0x39 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_tx_empty_threshold - 0x00000000 0x11e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_rx_timeout.str1.4 - 0x00000000 0x33 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rx_timeout - 0x00000000 0xc8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_get_collision_flag.str1.4 - 0x00000000 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_collision_flag - 0x00000000 0x120 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_wakeup_threshold.str1.4 - 0x00000000 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_wakeup_threshold - 0x00000000 0xe0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_get_wakeup_threshold.str1.4 - 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_wakeup_threshold - 0x00000000 0x9e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_wait_tx_idle_polling - 0x00000000 0xaa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_loop_back - 0x00000000 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_always_rx_timeout - 0x00000000 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.48 - 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.47 - 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.46 - 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.45 - 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.44 - 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.43 - 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.42 - 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.41 - 0x00000000 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.40 - 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.35 - 0x00000000 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.31 - 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.29 - 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.25 - 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.24 - 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.23 - 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.22 - 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.20 - 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.18 - 0x00000000 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.16 - 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.15 - 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.13 - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.12 - 0x00000000 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.11 - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.10 - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.9 - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.8 - 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text.usb_serial_jtag_is_connected - 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_wait_tx_done_via_driver - 0x00000000 0x1a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_rx_char_via_driver - 0x00000000 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_tx_char_via_driver - 0x00000000 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_set_tx_line_endings - 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_set_rx_line_endings - 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.usb_serial_jtag_vfs_register.str1.4 - 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_register - 0x00000000 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_use_nonblocking - 0x00000000 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_use_driver - 0x00000000 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_isr_handler_default - 0x00000000 0x1e0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read_bytes - 0x00000000 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_write_bytes.str1.4 - 0x00000000 0xac esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_write_bytes - 0x00000000 0x148 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_wait_tx_done - 0x00000000 0x9a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_driver_uninstall.str1.4 - 0x00000000 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_uninstall - 0x00000000 0xf2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_driver_install.str1.4 - 0x00000000 0x172 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_install - 0x00000000 0x320 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x1f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.set_xpd_sar - 0x00000000 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.s_wifi_adc_xpd_flag - 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_free_entry - 0x00000000 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register - 0x00000000 0x36 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs_with_id - 0x00000000 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_with_id - 0x00000000 0x2c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_unregister_with_id - 0x00000000 0xbc esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_unregister - 0x00000000 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fd_with_local_fd - 0x00000000 0xe0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fd - 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_unregister_fd - 0x00000000 0xbe esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.esp_vfs_dump_fds.str1.4 - 0x00000000 0x9c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_dump_fds - 0x00000000 0x108 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.esp_vfs_dump_registered_paths.str1.4 - 0x00000000 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_dump_registered_paths - 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_set_readonly_flag - 0x00000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_pread - 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_pwrite - 0x00000000 0x9e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_ioctl - 0x00000000 0x9a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_utime - 0x00000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_opendir - 0x00000000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_readdir - 0x00000000 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_readdir_r - 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_telldir - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_seekdir - 0x00000000 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_rewinddir - 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_closedir - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_mkdir - 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_rmdir - 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_truncate - 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_ftruncate - 0x00000000 0x98 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcflow 0x00000000 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcgetsid - 0x00000000 0x80 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcsendbreak - 0x00000000 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_null_get_vfs - 0x00000000 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .text 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .data 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .bss 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.convert_key_type - 0x00000000 0x4 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.is_hmac_key_burnt_in_efuse - 0x00000000 0x26 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .rodata.compute_nvs_keys_with_hmac.str1.4 - 0x00000000 0x4e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.compute_nvs_keys_with_hmac - 0x00000000 0x190 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .rodata.read_security_cfg_hmac.str1.4 - 0x00000000 0xaa esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.read_security_cfg_hmac - 0x00000000 0xc8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .rodata.generate_keys_hmac.str1.4 - 0x00000000 0xec esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.generate_keys_hmac - 0x00000000 0x19e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.nvs_sec_provider_register_hmac - 0x00000000 0xc0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text.nvs_sec_provider_deregister - 0x00000000 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .rodata 0x00000000 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .text 0x00000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) - .data 0x00000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) - .bss 0x00000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) - .text 0x00000000 0x0 esp-idf/main/libmain.a(app_driver.c.obj) - .data 0x00000000 0x0 esp-idf/main/libmain.a(app_driver.c.obj) - .bss 0x00000000 0x0 esp-idf/main/libmain.a(app_driver.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_deregister.str1.4 - 0x00000000 0x43 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_cmd_deregister - 0x00000000 0x84 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_resp_parse_response.str1.4 - 0x00000000 0xb0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_cmd_resp_parse_response - 0x00000000 0x194 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.str1.4 - 0x00000000 0x46 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.cmd_status - 0x00000000 0x14 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_array - 0x00000000 0x24 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_leave_array - 0x00000000 0x1e esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_bool - 0x00000000 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_int - 0x00000000 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_int64 - 0x00000000 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_float - 0x00000000 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_string - 0x00000000 0x3c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_strlen - 0x00000000 0x2a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_parse_start_static - 0x00000000 0xb8 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_parse_end_static - 0x00000000 0x18 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_report_node_config_and_state.str1.4 - 0x00000000 0x4f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_report_node_config_and_state - 0x00000000 0x8e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.__esp_rmaker_report_node_config_and_state - 0x00000000 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_node_deinit.str1.4 - 0x00000000 0x77 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_node_deinit - 0x00000000 0x9e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_report_node_details - 0x00000000 0x1c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_change_node_id.str1.4 - 0x00000000 0x5e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_change_node_id - 0x00000000 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_stop - 0x00000000 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_remove_device.str1.4 - 0x00000000 0x2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_node_remove_device - 0x00000000 0xa6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_add_fw_version.str1.4 - 0x00000000 0x97 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_node_add_fw_version - 0x00000000 0xca esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_add_model.str1.4 - 0x00000000 0x6b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_node_add_model - 0x00000000 0xca esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_add_subtype.str1.4 - 0x00000000 0x6d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_node_add_subtype - 0x00000000 0xca esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_node_get_id - 0x00000000 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_add_subtype.str1.4 - 0x00000000 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_add_subtype - 0x00000000 0x92 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_add_model.str1.4 - 0x00000000 0x6c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_add_model - 0x00000000 0x92 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_get_priv_data - 0x00000000 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_get_type - 0x00000000 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_get_param_by_name.str1.4 - 0x00000000 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_get_param_by_name - 0x00000000 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_float - 0x00000000 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_obj - 0x00000000 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_get_val - 0x00000000 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_add_simple_time_series_ttl.str1.4 - 0x00000000 0x88 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_add_simple_time_series_ttl - 0x00000000 0xa6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_add_valid_str_list.str1.4 - 0x00000000 0x80 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_add_valid_str_list - 0x00000000 0xdc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_notify.str1.4 - 0x00000000 0x28 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_notify - 0x00000000 0x86 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_update_and_notify - 0x00000000 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_raise_alert.str1.4 - 0x00000000 0x3d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_raise_alert - 0x00000000 0xb2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_report_simple_ts_data.str1.4 - 0x00000000 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_report_simple_ts_data - 0x00000000 0x8c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .rodata.esp_rmaker_get_client_csr.str1.4 - 0x00000000 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .text.esp_rmaker_get_client_csr - 0x00000000 0x1a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_node_mapping_deinit - 0x00000000 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_service_disable.str1.4 - 0x00000000 0x86 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_service_disable - 0x00000000 0xa6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_service_started - 0x00000000 0xa esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_disable.str1.4 - 0x00000000 0x25 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_disable - 0x00000000 0xc6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .text.esp_rmaker_mqtt_get_conn_params - 0x00000000 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .text.esp_rmaker_mqtt_setup - 0x00000000 0x4a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_deinit.str1.4 - 0x00000000 0x33 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .text.esp_rmaker_mqtt_deinit - 0x00000000 0x4a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .text.esp_rmaker_mqtt_budgeting_deinit - 0x00000000 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .srodata.RMAKER_OTA_EVENT - 0x00000000 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .sdata.ESP_RMAKER_OTA_DEFAULT_SERVER_CERT - 0x00000000 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_intensity_param_create.str1.4 - 0x00000000 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_intensity_param_create - 0x00000000 0x8e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_cct_param_create.str1.4 - 0x00000000 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_cct_param_create - 0x00000000 0x96 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_direction_param_create.str1.4 - 0x00000000 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_direction_param_create - 0x00000000 0x8c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_speed_param_create.str1.4 - 0x00000000 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_speed_param_create - 0x00000000 0x8c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_temperature_param_create.str1.4 - 0x00000000 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_temperature_param_create - 0x00000000 0x4c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_reboot_param_create.str1.4 - 0x00000000 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_reboot_param_create - 0x00000000 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_factory_reset_param_create.str1.4 - 0x00000000 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_factory_reset_param_create - 0x00000000 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_wifi_reset_param_create.str1.4 - 0x00000000 0x15 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text.esp_rmaker_wifi_reset_param_create - 0x00000000 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .text.esp_rmaker_switch_device_create - 0x00000000 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .rodata.esp_rmaker_fan_device_create.str1.4 - 0x00000000 0xf esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .text.esp_rmaker_fan_device_create - 0x00000000 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .rodata.esp_rmaker_temp_sensor_device_create.str1.4 - 0x00000000 0x2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .text.esp_rmaker_temp_sensor_device_create - 0x00000000 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.esp_rmaker_create_system_service.str1.4 - 0x00000000 0x13 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .text.esp_rmaker_create_system_service - 0x00000000 0x1c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__cmd_set_user_mapping__get_packed_size - 0x00000000 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__cmd_set_user_mapping__pack - 0x00000000 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__cmd_set_user_mapping__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__cmd_set_user_mapping__unpack - 0x00000000 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__cmd_set_user_mapping__free_unpacked - 0x00000000 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__resp_set_user_mapping__get_packed_size.str1.4 - 0x00000000 0x4a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__resp_set_user_mapping__get_packed_size - 0x00000000 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__resp_set_user_mapping__pack - 0x00000000 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__resp_set_user_mapping__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__resp_set_user_mapping__unpack - 0x00000000 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__resp_set_user_mapping__free_unpacked - 0x00000000 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text.rainmaker__rmaker_config_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x31 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x31 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x27 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x2f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x31 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .text 0x00000000 0x0 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .data 0x00000000 0x0 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .bss 0x00000000 0x0 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .text 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .data 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .bss 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.app_network_set_custom_pop - 0x00000000 0x4e esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .data 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .bss 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .text 0x00000000 0x0 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .data 0x00000000 0x0 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .bss 0x00000000 0x0 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.button_free_tmr - 0x00000000 0x3c esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.iot_button_delete - 0x00000000 0xd4 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.iot_button_rm_cb - 0x00000000 0x50 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0x12 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text 0x00000000 0x0 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .data 0x00000000 0x0 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .bss 0x00000000 0x0 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text.app_reset_button_create - 0x00000000 0x12 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .data 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .bss 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .text 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .data 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .bss 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .text 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_remove_property.str1.4 - 0x00000000 0x23 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .text.esp_local_ctrl_remove_property - 0x00000000 0xdc esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .text.esp_local_ctrl_get_property - 0x00000000 0x5a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_set_handler.str1.4 - 0x00000000 0x31 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .text.esp_local_ctrl_set_handler - 0x00000000 0x5c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .data 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_count__get_packed_size - 0x00000000 0x42 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_count__pack - 0x00000000 0x42 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_count__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_count__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_count__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_count__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_count__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_count__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_count__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_count__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_count__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_info__get_packed_size.str1.4 - 0x00000000 0x37 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_info__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_info__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_info__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_info__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_info__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_get_property_values__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_values__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_values__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_values__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_values__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_get_property_values__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_values__get_packed_size.str1.4 - 0x00000000 0x42 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_values__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_values__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_values__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_values__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_get_property_values__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_value__get_packed_size.str1.4 - 0x00000000 0x38 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_value__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_value__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_value__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_value__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.property_value__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_set_property_values__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_set_property_values__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_set_property_values__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_set_property_values__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_set_property_values__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.cmd_set_property_values__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_set_property_values__get_packed_size.str1.4 - 0x00000000 0x42 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_set_property_values__get_packed_size - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_set_property_values__pack - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_set_property_values__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_set_property_values__unpack - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.resp_set_property_values__free_unpacked - 0x00000000 0x46 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text.local_ctrl_message__pack_to_buffer - 0x00000000 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x23 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x29 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x1f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x2a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x27 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x1e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x29 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x1e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x1f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x15 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.16 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x29 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x1f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x2a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.20 - 0x00000000 0x27 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.21 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.22 - 0x00000000 0x1e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.23 - 0x00000000 0x29 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.24 - 0x00000000 0x1d esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.25 - 0x00000000 0x1e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.26 - 0x00000000 0x14 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.27 - 0x00000000 0x1f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.29 - 0x00000000 0x27 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.30 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.31 - 0x00000000 0x1e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.32 - 0x00000000 0x29 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.33 - 0x00000000 0x26 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.34 - 0x00000000 0x27 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.35 - 0x00000000 0x1d esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.36 - 0x00000000 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .data 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .text 0x00000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .data 0x00000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .srodata.ESP_HTTPS_SERVER_EVENT - 0x00000000 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_arr_set_bool - 0x00000000 0x2a esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_arr_set_int - 0x00000000 0x2a esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_arr_set_float - 0x00000000 0x2a esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_arr_start_long_string - 0x00000000 0x2a esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_arr_set_null - 0x00000000 0x22 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.free_delegated_hostnames - 0x00000000 0x48 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_browse_action - 0x00000000 0x9c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_service_subtype_remove_for_host.str1.4 - 0x00000000 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_subtype_remove_for_host - 0x00000000 0xa2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_subtype_add_for_host - 0x00000000 0x154 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_find_subtype_needed_sendbye - 0x00000000 0x9a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._copy_delegated_host_address_list - 0x00000000 0x3e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._copy_mdns_txt_items - 0x00000000 0x1e4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_bye_subtype - 0x00000000 0x174 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_free - 0x00000000 0x42 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_action - 0x00000000 0xe0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_task_stop - 0x00000000 0x8c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_init - 0x00000000 0x17c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_lookup_service - 0x00000000 0x34c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_init - 0x00000000 0xd6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_final_bye - 0x00000000 0x62 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_netif_action - 0x00000000 0x22 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_register_netif - 0x00000000 0xc8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_unregister_netif - 0x00000000 0x90 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_hostname_get - 0x00000000 0x94 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_delegate_hostname_add - 0x00000000 0x128 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_delegate_hostname_remove - 0x00000000 0xfe esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_delegate_hostname_set_address - 0x00000000 0x114 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_hostname_exists - 0x00000000 0x46 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_instance_name_set - 0x00000000 0x108 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_exists - 0x00000000 0x58 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_exists_with_instance - 0x00000000 0x60 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_port_set_for_host - 0x00000000 0x126 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_port_set - 0x00000000 0x2c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_set_for_host - 0x00000000 0x158 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_set - 0x00000000 0x2e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_item_set_for_host - 0x00000000 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_item_set_with_explicit_value_len - 0x00000000 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_item_remove_for_host - 0x00000000 0x1e0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_txt_item_remove - 0x00000000 0x2c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_service_subtype_remove_for_host.str1.4 - 0x00000000 0x36 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_subtype_remove_for_host - 0x00000000 0x25a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_service_subtype_add_multiple_items_for_host.str1.4 - 0x00000000 0x43 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_subtype_add_multiple_items_for_host - 0x00000000 0x1ba esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_subtype_add_for_host - 0x00000000 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_subtype_update_multiple_items_for_host - 0x00000000 0x1f6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_service_remove_all.str1.4 - 0x00000000 0x23 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_service_remove_all - 0x00000000 0xc8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_free - 0x00000000 0x170 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_async_delete - 0x00000000 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_async_get_results - 0x00000000 0x5c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_async_new - 0x00000000 0x86 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_generic - 0x00000000 0xc4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query - 0x00000000 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_ptr - 0x00000000 0x48 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_srv - 0x00000000 0x58 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_txt - 0x00000000 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_lookup_delegated_service - 0x00000000 0xa6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_lookup_selfhosted_service - 0x00000000 0xa6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_query_a.str1.4 - 0x00000000 0x6a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_a - 0x00000000 0xc0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_query_aaaa - 0x00000000 0xca esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_browse_new - 0x00000000 0x60 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_browse_delete - 0x00000000 0x6c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x34 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0x23 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.5 - 0x00000000 0x31 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .bss.pkt.6 0x00000000 0x5b4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.7 - 0x00000000 0x25 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.8 - 0x00000000 0x26 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.10 - 0x00000000 0x1e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.11 - 0x00000000 0x1f esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text 0x00000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .data 0x00000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.eth_phy_reg_read - 0x00000000 0x18 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.eth_phy_reg_write - 0x00000000 0x18 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.eth_check_link_timer_cb - 0x00000000 0x10 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.eth_stack_input - 0x00000000 0x20 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.eth_on_state_changed - 0x00000000 0x2de esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_driver_install.str1.4 - 0x00000000 0x157 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_driver_install - 0x00000000 0x2e8 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_driver_uninstall.str1.4 - 0x00000000 0xdf esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_driver_uninstall - 0x00000000 0x1e0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_start.str1.4 - 0x00000000 0x12d esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_start - 0x00000000 0x1dc esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_stop.str1.4 - 0x00000000 0xc7 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_stop - 0x00000000 0x19c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_update_input_path - 0x00000000 0x4c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_transmit.str1.4 - 0x00000000 0x5a esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_transmit - 0x00000000 0xda esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_transmit_vargs - 0x00000000 0x36 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_ioctl.str1.4 - 0x00000000 0x698 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_ioctl - 0x00000000 0xaf2 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_get_phy_instance.str1.4 - 0x00000000 0x36 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_get_phy_instance - 0x00000000 0x88 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.esp_eth_get_mac_instance.str1.4 - 0x00000000 0x36 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_get_mac_instance - 0x00000000 0x88 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_increase_reference - 0x00000000 0x58 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text.esp_eth_decrease_reference - 0x00000000 0x58 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x1b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0x19 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x19 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0xe esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.5 - 0x00000000 0x11 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.6 - 0x00000000 0x1a esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.7 - 0x00000000 0xd esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.8 - 0x00000000 0xe esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.9 - 0x00000000 0x19 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.10 - 0x00000000 0x15 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .rodata.__FUNCTION__.11 - 0x00000000 0x17 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_get - 0x00000000 0x9e esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_remove_all.str1.4 - 0x00000000 0x64 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .text.esp_schedule_nvs_remove_all - 0x00000000 0xec esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_set_app_info - 0x00000000 0x1a6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_endpoint_unregister - 0x00000000 0xdc esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_disable_auto_stop - 0x00000000 0xe0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_is_sm_idle - 0x00000000 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_wait - 0x00000000 0x110 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_reset_wifi_provisioning.str1.4 - 0x00000000 0x2e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_reset_wifi_provisioning - 0x00000000 0x4a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.9 - 0x00000000 0x16 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.20 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.21 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.24 - 0x00000000 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .srodata.NETWORK_PROV_MGR_PVT_EVENT - 0x00000000 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.network_prov_scheme_ble_event_cb_free_bt - 0x00000000 0x74 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.network_prov_scheme_ble_event_cb_free_ble.str1.4 - 0x00000000 0x51 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.network_prov_scheme_ble_event_cb_free_ble - 0x00000000 0x78 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_wifi_status__get_packed_size - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_wifi_status__pack - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_wifi_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_wifi_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_wifi_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_wifi_status__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_wifi_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_wifi_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_wifi_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_wifi_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_wifi_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_get_thread_status__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_thread_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_thread_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_thread_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_thread_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_get_thread_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_thread_status__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_thread_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_thread_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_thread_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_thread_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_get_thread_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_wifi_config__get_packed_size.str1.4 - 0x00000000 0x3d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_wifi_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_wifi_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_wifi_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_wifi_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_wifi_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_thread_config__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_thread_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_thread_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_thread_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_thread_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_set_thread_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_set_wifi_config__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_wifi_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_wifi_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_wifi_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_wifi_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_wifi_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_set_thread_config__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_thread_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_thread_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_thread_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_thread_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_set_thread_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_apply_wifi_config__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_wifi_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_wifi_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_wifi_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_wifi_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_wifi_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_apply_thread_config__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_thread_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_thread_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_thread_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_thread_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.cmd_apply_thread_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_wifi_config__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_wifi_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_wifi_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_wifi_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_wifi_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_wifi_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_thread_config__get_packed_size.str1.4 - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_thread_config__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_thread_config__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_thread_config__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_thread_config__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.resp_apply_thread_config__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text.network_config_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x29 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x1f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x2a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x29 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.16 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.20 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.21 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.22 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.23 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.24 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.25 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.26 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.27 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.28 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.29 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.30 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.31 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.32 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.33 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.34 - 0x00000000 0x1a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.35 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.36 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.37 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.38 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.39 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.40 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.41 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.42 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.43 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.44 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.45 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.46 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.47 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.48 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.49 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.50 - 0x00000000 0x1a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.51 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_start__get_packed_size - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_start__pack - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_start__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_start__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_start__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_start__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_start__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_start__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_start__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_start__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_start__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_start__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_start__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_start__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_start__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_start__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_start__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_start__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_start__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_start__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_start__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_start__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_start__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_status__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_status__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_status__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_status__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_status__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_status__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_status__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_status__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_status__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_result__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_wifi_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_result__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.cmd_scan_thread_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.wi_fi_scan_result__get_packed_size.str1.4 - 0x00000000 0x3b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.wi_fi_scan_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.wi_fi_scan_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.wi_fi_scan_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.wi_fi_scan_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.wi_fi_scan_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.thread_scan_result__get_packed_size.str1.4 - 0x00000000 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.thread_scan_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.thread_scan_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.thread_scan_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.thread_scan_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.thread_scan_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_result__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_wifi_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_result__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_result__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_result__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_result__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_result__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.resp_scan_thread_result__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text.network_scan_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x29 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x22 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x19 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x21 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x22 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.20 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.21 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.22 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.23 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.24 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.25 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.26 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.27 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.28 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.29 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.30 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.31 - 0x00000000 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.32 - 0x00000000 0x29 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.33 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.34 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.35 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.36 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.37 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.38 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.39 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.40 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.41 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.42 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.43 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.44 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.45 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.46 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.47 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.48 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.49 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.50 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.51 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.52 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.53 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.54 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.55 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.56 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.57 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.58 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.59 - 0x00000000 0x1a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.60 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reset__get_packed_size - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reset__pack - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reset__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reset__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reset__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.resp_ctrl_wifi_reset__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reset__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reset__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reset__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reset__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reset__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.cmd_ctrl_wifi_reprov__get_packed_size.str1.4 - 0x00000000 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reprov__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reprov__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reprov__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reprov__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_wifi_reprov__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.resp_ctrl_wifi_reprov__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reprov__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reprov__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reprov__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reprov__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_wifi_reprov__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.cmd_ctrl_thread_reset__get_packed_size.str1.4 - 0x00000000 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reset__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reset__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reset__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reset__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reset__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.resp_ctrl_thread_reset__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reset__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reset__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reset__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reset__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reset__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.cmd_ctrl_thread_reprov__get_packed_size.str1.4 - 0x00000000 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reprov__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reprov__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reprov__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reprov__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.cmd_ctrl_thread_reprov__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.resp_ctrl_thread_reprov__get_packed_size.str1.4 - 0x00000000 0x41 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reprov__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reprov__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reprov__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reprov__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.resp_ctrl_thread_reprov__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text.network_ctrl_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x29 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.16 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.20 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.21 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.22 - 0x00000000 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.23 - 0x00000000 0x27 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.24 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.25 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.26 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.27 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.28 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.29 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.30 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.31 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.32 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.33 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.34 - 0x00000000 0x1a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.35 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connected_state__get_packed_size.str1.4 - 0x00000000 0x97 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.wifi_connected_state__get_packed_size - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.wifi_connected_state__pack - 0x00000000 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.wifi_connected_state__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.wifi_connected_state__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.wifi_connected_state__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_state__get_packed_size.str1.4 - 0x00000000 0x3d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.thread_attach_state__get_packed_size - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.thread_attach_state__pack - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.thread_attach_state__pack_to_buffer - 0x00000000 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.thread_attach_state__unpack - 0x00000000 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text.thread_attach_state__free_unpacked - 0x00000000 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.0 - 0x00000000 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.2 - 0x00000000 0x1a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.3 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_open_session.str1.4 - 0x00000000 0x37 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.protocomm_open_session - 0x00000000 0x62 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_close_session.str1.4 - 0x00000000 0x36 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.protocomm_close_session - 0x00000000 0x62 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .rodata.calculate_x.str1.4 - 0x00000000 0x2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.calculate_x - 0x00000000 0x100 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .rodata._esp_srp_gen_salt_verifier.str1.4 - 0x00000000 0xc1 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text._esp_srp_gen_salt_verifier - 0x00000000 0x1ba esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.esp_srp_srv_pubkey - 0x00000000 0xa2 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .rodata.esp_srp_gen_salt_verifier.str1.4 - 0x00000000 0x64 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.esp_srp_gen_salt_verifier - 0x00000000 0xea esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .text.esp_mpi_new_from_hex - 0x00000000 0x50 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .srodata.PROTOCOMM_TRANSPORT_BLE_EVENT - 0x00000000 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.s0_session_cmd__get_packed_size.str1.4 - 0x00000000 0x67 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_cmd__get_packed_size - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_cmd__pack - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_cmd__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_cmd__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_cmd__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.s0_session_resp__get_packed_size.str1.4 - 0x00000000 0x39 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_resp__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_resp__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_resp__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_resp__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.s0_session_resp__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_payload__get_packed_size.str1.4 - 0x00000000 0x36 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.sec0_payload__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.sec0_payload__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.sec0_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.sec0_payload__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text.sec0_payload__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.2 - 0x00000000 0x13 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.3 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x16 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x21 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x15 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd1__get_packed_size.str1.4 - 0x00000000 0x67 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd1__get_packed_size - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd1__pack - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd1__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd1__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd1__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp1__get_packed_size.str1.4 - 0x00000000 0x37 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp1__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp1__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp1__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp1__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp1__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd0__get_packed_size.str1.4 - 0x00000000 0x36 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd0__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd0__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd0__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd0__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_cmd0__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp0__get_packed_size.str1.4 - 0x00000000 0x37 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp0__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp0__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp0__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp0__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.session_resp0__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_payload__get_packed_size.str1.4 - 0x00000000 0x36 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.sec1_payload__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.sec1_payload__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.sec1_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.sec1_payload__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text.sec1_payload__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.2 - 0x00000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.3 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.16 - 0x00000000 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x13 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd0__get_packed_size.str1.4 - 0x00000000 0x6b esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd0__get_packed_size - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd0__pack - 0x00000000 0x42 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd0__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd0__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd0__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp0__get_packed_size.str1.4 - 0x00000000 0x3a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp0__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp0__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp0__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp0__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp0__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd1__get_packed_size.str1.4 - 0x00000000 0x39 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd1__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd1__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd1__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd1__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_cmd1__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp1__get_packed_size.str1.4 - 0x00000000 0x3a esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp1__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp1__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp1__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp1__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.s2_session_resp1__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_payload__get_packed_size.str1.4 - 0x00000000 0x36 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.sec2_payload__get_packed_size - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.sec2_payload__pack - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.sec2_payload__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.sec2_payload__unpack - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text.sec2_payload__free_unpacked - 0x00000000 0x46 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.2 - 0x00000000 0x13 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.3 - 0x00000000 0x1e esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.4 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.5 - 0x00000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x17 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x22 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.11 - 0x00000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.12 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.13 - 0x00000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.14 - 0x00000000 0x17 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.15 - 0x00000000 0x22 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.16 - 0x00000000 0x1f esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.17 - 0x00000000 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.18 - 0x00000000 0x16 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.__func__.19 - 0x00000000 0x21 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .data 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .text.session_data__pack_to_buffer - 0x00000000 0x44 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x1d esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) - .text.enh_power_type_get - 0x00000000 0x30 esp-idf/bt/libbt.a(bt.c.obj) - .text.malloc_ble_controller_mem - 0x00000000 0x4c esp-idf/bt/libbt.a(bt.c.obj) - .text.get_ble_controller_free_heap_size - 0x00000000 0x18 esp-idf/bt/libbt.a(bt.c.obj) - .text.bt_async_wakeup_request - 0x00000000 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .text.bt_wakeup_request_end - 0x00000000 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_controller_mem_release - 0x00000000 0x7e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_get_lpclk_src - 0x00000000 0x22 esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_ble_tx_power_set - 0x00000000 0x4e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_ble_tx_power_get - 0x00000000 0x3e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_ble_tx_power_set_enhanced - 0x00000000 0x50 esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_ble_tx_power_get_enhanced - 0x00000000 0x46 esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_sleep_enable - 0x00000000 0x3e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_sleep_disable - 0x00000000 0x3e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_controller_is_sleeping - 0x00000000 0x3a esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_controller_wakeup_request - 0x00000000 0x30 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.28 0x00000000 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.ble_svc_gap_device_name_write_access.str1.4 - 0x00000000 0x56 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_device_name_write_access - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_appearance_write_access - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_device_name_read_access - 0x00000000 0x3e esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_appearance_read_access - 0x00000000 0x2c esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.ble_svc_gap_access.str1.4 - 0x00000000 0xc esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_access - 0x00000000 0x104 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_device_appearance - 0x00000000 0xa esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_device_appearance_set - 0x00000000 0xc esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_set_chr_changed_cb - 0x00000000 0xa esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.ble_svc_gap_init.str1.4 - 0x00000000 0x8 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_init - 0x00000000 0x76 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text.ble_svc_gap_deinit - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.__func__.0 - 0x00000000 0x24 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.__func__.1 - 0x00000000 0x25 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.__func__.2 - 0x00000000 0x13 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.__func__.3 - 0x00000000 0x11 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .rodata.ble_svc_gap_defs - 0x00000000 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .data.__compound_literal.3 - 0x00000000 0x54 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .sdata.__compound_literal.2 - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .sdata.__compound_literal.1 - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .sdata.__compound_literal.0 - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .sbss.ble_svc_gap_appearance - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .sbss.ble_svc_gap_chr_changed_cb_fn - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .text.ble_store_util_delete_oldest_peer - 0x00000000 0x2a esp-idf/bt/libbt.a(ble_store_util.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .text.ble_hs_is_rpa - 0x00000000 0x1e esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .text.ble_hs_id_rnd_reset - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_synced - 0x00000000 0x10 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_sched_start - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_notifications_sched - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_transport_to_hs_iso_impl - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_hs.c.obj) - .bss.ble_hs_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_conn_chan_find_by_psm - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_mtu - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_preferred_mtu - 0x00000000 0xa esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_set_preferred_mtu - 0x00000000 0x6e esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_is_att_pdu_op - 0x00000000 0x58 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_set_default_bearer_using_cid - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_get_default_bearer_cid - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_att.c.obj) - .bss.ble_att_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_tx - 0x00000000 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_tx - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_find_inc_svcs.str1.4 - 0x00000000 0x48 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_find_inc_svcs - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_disc_all_chrs.str1.4 - 0x00000000 0x1f esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_disc_all_chrs - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_disc_all_dscs.str1.4 - 0x00000000 0x4a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_disc_all_dscs - 0x00000000 0x50 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_read - 0x00000000 0x4a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_read_long.str1.4 - 0x00000000 0xc esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_read_long - 0x00000000 0x4c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_read_mult.str1.4 - 0x00000000 0x57 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_read_mult - 0x00000000 0xca esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_write.str1.4 - 0x00000000 0x3b esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_write - 0x00000000 0x5e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_signed_write.str1.4 - 0x00000000 0xf esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_signed_write - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_write_long.str1.4 - 0x00000000 0xd esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_write_long - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_write_reliable.str1.4 - 0x00000000 0x11 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_write_reliable - 0x00000000 0xca esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_multi_notify.str1.4 - 0x00000000 0x33 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_multi_notify - 0x00000000 0x66 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_mtu_tx - 0x00000000 0x5e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_uuid.str1.4 - 0x00000000 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_uuid - 0x00000000 0x44 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_disc_svc_uuid.str1.4 - 0x00000000 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_disc_svc_uuid - 0x00000000 0x54 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_disc_chr_uuid.str1.4 - 0x00000000 0x55 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_disc_chr_uuid - 0x00000000 0x86 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_read_uuid.str1.4 - 0x00000000 0xf esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_read_uuid - 0x00000000 0x86 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_tx - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_internal - 0x00000000 0xb8 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_exchange_mtu.str1.4 - 0x00000000 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_exchange_mtu - 0x00000000 0x6e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_disc_all_svcs.str1.4 - 0x00000000 0x17 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs - 0x00000000 0x70 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_by_uuid - 0x00000000 0x7e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs - 0x00000000 0x80 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs - 0x00000000 0x80 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chrs_by_uuid - 0x00000000 0x94 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs - 0x00000000 0x80 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read - 0x00000000 0x72 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_by_uuid - 0x00000000 0x94 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long - 0x00000000 0x7a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_var - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_no_rsp - 0x00000000 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_no_rsp_flat - 0x00000000 0x36 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_signed_write - 0x00000000 0xda esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write - 0x00000000 0x92 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_flat - 0x00000000 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long - 0x00000000 0x9e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable - 0x00000000 0xce esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gatts_notify_multiple_custom.str1.4 - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gatts_notify_multiple_custom - 0x00000000 0x1f4 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_notify_custom - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_notify - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_indicate_custom - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_indicate - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_any_jobs - 0x00000000 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) - .bss.ble_gattc_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_delete_our_sec - 0x00000000 0x16 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_delete_csfc - 0x00000000 0x16 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_delete_local_irk - 0x00000000 0x16 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_read_rpa_rec - 0x00000000 0x18 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_delete_rpa_rec - 0x00000000 0x16 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_key_from_value - 0x00000000 0x66 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_clear - 0x00000000 0x56 esp-idf/bt/libbt.a(ble_store.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_mtu - 0x00000000 0xc8 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_read_mult - 0x00000000 0x78 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_write_req - 0x00000000 0x64 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_write_cmd - 0x00000000 0x66 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_signed_write_cmd - 0x00000000 0x182 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_tx_notify_mult - 0x00000000 0x46 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .text.ble_hs_mbuf_bare_pkt - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_init_parse - 0x00000000 0x6 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_init_write - 0x00000000 0xa esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_error_rsp_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_error_rsp_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_mtu_req_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_mtu_rsp_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_mtu_req_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_mtu_rsp_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_info_req_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_info_req_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_info_rsp_parse - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_info_rsp_write - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_type_value_req_parse - 0x00000000 0x50 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_find_type_value_req_write - 0x00000000 0x50 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_type_req_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_type_req_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_type_rsp_parse - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_type_rsp_write - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_req_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_req_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_blob_req_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_blob_req_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_mult_req_parse - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_mult_req_write - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_mult_rsp_parse - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_mult_rsp_write - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_group_type_req_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_group_type_req_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_group_type_rsp_parse - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_read_group_type_rsp_write - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_write_req_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_write_cmd_parse - 0x00000000 0x32 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_write_req_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_write_cmd_write - 0x00000000 0x32 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_prep_write_req_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_prep_write_req_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_prep_write_rsp_parse - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_prep_write_rsp_write - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_exec_write_req_parse - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_exec_write_req_write - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_exec_write_rsp_parse - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_exec_write_rsp_write - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_notify_req_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_notify_req_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_indicate_req_parse - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_indicate_req_write - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_indicate_rsp_parse - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text.ble_att_indicate_rsp_write - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .bss.ble_hs_log - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_foreach_handle_callback - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_busy - 0x00000000 0x2a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_fill_dflts - 0x00000000 0x3e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_tx_add - 0x00000000 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_tx_params - 0x00000000 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_wl - 0x00000000 0xea esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_log_duration.str1.4 - 0x00000000 0x3b esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_duration - 0x00000000 0x6e esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_log_disc.str1.4 - 0x00000000 0x5b esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_disc - 0x00000000 0x6e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_read_rem_ver_info - 0x00000000 0x5e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_find_by_addr - 0x00000000 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_find_handle_by_addr - 0x00000000 0x4e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_foreach_handle - 0x00000000 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_priv_mode - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_read_le_phy - 0x00000000 0x8a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_prefered_default_le_phy - 0x00000000 0x76 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_prefered_le_phy - 0x00000000 0xc8 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_get_local_used_addr - 0x00000000 0x6e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_resolve_adv_data - 0x00000000 0x34 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_event_cb - 0x00000000 0x4c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_tx_clear - 0x00000000 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_read_size - 0x00000000 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_tx_rmv - 0x00000000 0x78 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_wl_set - 0x00000000 0xf0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_ext_disc - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_cancel - 0x00000000 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_ext_validate - 0x00000000 0x54 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_validate - 0x00000000 0x5e esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_disc.str1.4 - 0x00000000 0x32 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc - 0x00000000 0x190 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_cancel - 0x00000000 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_data_len - 0x00000000 0xbc esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_read_sugg_def_data_len - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_write_sugg_def_data_len - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_security_initiate - 0x00000000 0xe4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_dev_authorization.str1.4 - 0x00000000 0x7d esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dev_authorization - 0x00000000 0xb4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_pair_initiate - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_encryption_initiate - 0x00000000 0x74 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_rssi - 0x00000000 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_eatt_event - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_enh_read_transmit_power_level - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_read_remote_transmit_power_level - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_path_loss_reporting_param - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_path_loss_reporting_enable - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_transmit_power_reporting_enable - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_set_data_related_addr_change_param - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dtm_tx_start - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dtm_rx_start - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dtm_stop - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dtm_enh_tx_start - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_dtm_enh_rx_start - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_host_check_status.str1.4 - 0x00000000 0xbf esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_host_check_status - 0x00000000 0x160 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.ble_gap_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.hex2val 0x00000000 0x4e esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.hex2bin 0x00000000 0x80 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.ble_uuid_copy - 0x00000000 0x4a esp-idf/bt/libbt.a(ble_uuid.c.obj) - .rodata.ble_uuid_to_str.str1.4 - 0x00000000 0x55 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.ble_uuid_to_str - 0x00000000 0xc6 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.ble_uuid_from_str - 0x00000000 0x1d8 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text.ble_uuid_to_any - 0x00000000 0x56 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_set_rpa_timeout - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_reset_rpa_timeout - 0x00000000 0xa esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_pvcy_enabled - 0x00000000 0xe esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .text.ble_hs_flow_stop - 0x00000000 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_create_server - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_connect - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_get_chan_info - 0x00000000 0x68 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_enhanced_connect - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_reconfig - 0x00000000 0x64 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_reconfig_mtu_mps - 0x00000000 0x64 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_disconnect - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_send - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_recv_ready - 0x00000000 0x4 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .bss.ble_l2cap_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_svc_entry - 0x00000000 0x4e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_svc_chr_attr - 0x00000000 0x98 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_set_clt_cfg_perm_flags - 0x00000000 0xa esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_updated - 0x00000000 0x126 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_peer_cl_sup_feat_get - 0x00000000 0x5e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_peer_cl_sup_feat_update - 0x00000000 0x16e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_svc - 0x00000000 0x2e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_chr - 0x00000000 0x3e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_dsc - 0x00000000 0x7a esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_free_svcs - 0x00000000 0x2c esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_svc_set_visibility - 0x00000000 0x56 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_get_cfgable_chrs - 0x00000000 0xa esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_lcl_svc_foreach - 0x00000000 0x48 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_reset - 0x00000000 0x40 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .bss.ble_gatts_stats - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.find_field_func - 0x00000000 0x16 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse_uuids16 - 0x00000000 0x68 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse_uuids128 - 0x00000000 0x7c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse_uuids32 - 0x00000000 0x6c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse_one_field - 0x00000000 0x3c4 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_flat - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_fields_mbuf - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse_fields - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_parse - 0x00000000 0x56 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_find_field - 0x00000000 0x3a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .bss.ble_hs_adv_uuids128 - 0x00000000 0x11 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .bss.ble_hs_adv_uuids32 - 0x00000000 0x38 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .bss.ble_hs_adv_uuids16 - 0x00000000 0x38 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_cmd_tx_no_rsp - 0x00000000 0x3e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_frag_num_mbufs - 0x00000000 0xe esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_frag_num_mbufs_free - 0x00000000 0xe esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_get_le_supported_feat - 0x00000000 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_util_read_rssi - 0x00000000 0x46 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .rodata.ble_hs_hci_util_read_sugg_def_data_len.str1.4 - 0x00000000 0x85 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_util_read_sugg_def_data_len - 0x00000000 0xc2 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_util_write_sugg_def_data_len - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_read_chan_map - 0x00000000 0x64 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_set_chan_class - 0x00000000 0x46 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_util_set_data_addr_change - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_dtm_tx_start - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_dtm_rx_start - 0x00000000 0x1e esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_dtm_stop - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_dtm_enh_tx_start - 0x00000000 0x2c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text.ble_hs_hci_dtm_enh_rx_start - 0x00000000 0x28 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) - .text.put_le24 - 0x00000000 0x14 esp-idf/bt/libbt.a(endian.c.obj) - .text.put_le64 - 0x00000000 0x36 esp-idf/bt/libbt.a(endian.c.obj) - .text.get_le24 - 0x00000000 0x16 esp-idf/bt/libbt.a(endian.c.obj) - .text.get_le64 - 0x00000000 0x3c esp-idf/bt/libbt.a(endian.c.obj) - .text.put_be16 - 0x00000000 0xe esp-idf/bt/libbt.a(endian.c.obj) - .text.put_be24 - 0x00000000 0x16 esp-idf/bt/libbt.a(endian.c.obj) - .text.put_be32 - 0x00000000 0x1e esp-idf/bt/libbt.a(endian.c.obj) - .text.put_be64 - 0x00000000 0x3a esp-idf/bt/libbt.a(endian.c.obj) - .text.get_be16 - 0x00000000 0xe esp-idf/bt/libbt.a(endian.c.obj) - .text.get_be24 - 0x00000000 0x16 esp-idf/bt/libbt.a(endian.c.obj) - .text.get_be64 - 0x00000000 0x3a esp-idf/bt/libbt.a(endian.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) - .text.os_mempool_unregister - 0x00000000 0x54 esp-idf/bt/libbt.a(os_mempool.c.obj) - .text.os_mempool_is_sane - 0x00000000 0x30 esp-idf/bt/libbt.a(os_mempool.c.obj) - .text.os_mempool_info_get_next - 0x00000000 0x50 esp-idf/bt/libbt.a(os_mempool.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_malloc_mempool_gen - 0x00000000 0x40 esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_malloc_mempool - 0x00000000 0x6e esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_malloc_mempool_ext - 0x00000000 0x6e esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_malloc_mbuf_pool - 0x00000000 0x88 esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_malloc_mbufpkt_pool - 0x00000000 0x18 esp-idf/bt/libbt.a(mem.c.obj) - .text.mem_pullup_obj - 0x00000000 0x20 esp-idf/bt/libbt.a(mem.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mqueue_init - 0x00000000 0x20 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mqueue_get - 0x00000000 0x44 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mqueue_put - 0x00000000 0x74 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_msys_count - 0x00000000 0x1a esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_msys_num_free - 0x00000000 0x1a esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_msys_get - 0x00000000 0x98 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mbuf_len - 0x00000000 0x16 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mbuf_dup - 0x00000000 0xd0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_mbuf_widen - 0x00000000 0x154 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .text.npl_freertos_funcs_get - 0x00000000 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .text.npl_freertos_mempool_deinit - 0x00000000 0x2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .sdata.ble_port_mutex - 0x00000000 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.ble_hci_trans_cfg_hs - 0x00000000 0x22 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.ble_hci_trans_ll_acl_tx - 0x00000000 0x12 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.ble_hci_trans_reset - 0x00000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.bt_record_hci_data - 0x00000000 0x2 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .sbss.ble_hci_rx_acl_hs_arg - 0x00000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .sbss.ble_hci_rx_acl_hs_cb - 0x00000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .sbss.ble_hci_rx_cmd_hs_arg - 0x00000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .sbss.ble_hci_rx_cmd_hs_cb - 0x00000000 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .iram1.2 0x00000000 0x18 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .iram1.3 0x00000000 0x18 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_alloc_acl_from_hs - 0x00000000 0x24 esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_alloc_iso_from_hs - 0x00000000 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_alloc_iso_from_ll - 0x00000000 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_ipc_free - 0x00000000 0xaa esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_register_put_acl_from_ll_cb - 0x00000000 0xc esp-idf/bt/libbt.a(transport.c.obj) - .rodata.__func__.2 - 0x00000000 0x17 esp-idf/bt/libbt.a(transport.c.obj) - .sbss.transport_put_acl_from_ll_cb - 0x00000000 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .text.ble_hs_conn_chan_find_by_dcid - 0x00000000 0x12 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .text.ble_hs_conn_chan_exist - 0x00000000 0x14 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_incr_our_sign_counter - 0x00000000 0x98 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_inject_io - 0x00000000 0x25c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_move_entries - 0x00000000 0x86 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_entry_free - 0x00000000 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_read_local - 0x00000000 0x52 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_write_local - 0x00000000 0x32 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_hide_range - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_restore_range - 0x00000000 0x26 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_reset - 0x00000000 0x60 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .text.ble_hs_atomic_conn_insert - 0x00000000 0x2a esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .text.ble_hs_atomic_conn_set_flags - 0x00000000 0x60 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .text.mbedtls_free_keypair - 0x00000000 0x1a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .text 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .data 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .bss 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_oob_confirm - 0x00000000 0x8c esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_oob_data_check - 0x00000000 0x2e esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_oob_generate_data - 0x00000000 0x46 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.pll_track_state_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.1 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_set_cca_fifo_int_cnt - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_get_power_state - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_get_prevent_sleep_flag - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_controller_sleep_enable - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_disable_adv_delay - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_switch_phy_coded - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_enable_scan_continue - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_dis_privacy_err_report - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_enable_scan_forever - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_disable_adv_delay - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_switch_phy_coded - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_enable_scan_continue - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_dis_privacy_err_report - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_enable_scan_forever - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_qa_test_enable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_qa_set_scan_perfer_addr - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_qa_get_adv_txed_cnt - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_qa_get_scan_rxed_cnt - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_clear_rand_addr - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_adv_aa_setting - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_scan_aa_setting - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_scan_channel_setting - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_rxerr_record_en - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_clear_all_rxerr_cnt - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_get_rxerr_cnt - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_enable_fixed_aux_chan_index - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_set_aux_chan_index - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.esp_ble_txpower_lvl_range_get - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_con_maxevtime_cal - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.2 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.3 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.4 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_deep_sleep_mem_deinit - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_deep_sleep_mem_init - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.6 0x00000000 0x14a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_controller_compile_version_check_impl - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_app_ref_init - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_cca_feature_enable - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_aa_check_enhance_enable - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_unloaded_area_init - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_controller_rom_data_init - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_assert_err - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_assert_param - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_assert_warn - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_dump_data - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_get_stack_usage - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_platform_reset - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.r_rwip_eif_get - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_controller_get_compile_version_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_gpio_init - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.12 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .bss.bb_agc_mem_addr - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .bss.bb_mem_addr - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .bss.lc_mem_addr - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_env_init - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_env_deinit - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_get_rx_buf_nb - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_get_rx_buf_size - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_set_rx_buf_nb - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_set_rx_buf_size - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_llcp_tx_alloc - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_llcp_tx_free - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_data_rx_buf_reset - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_rx_alloc - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_rx_free - 0x00000000 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_rx_alloc_in_isr - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_rx_free_in_isr - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_acl_tx_alloc - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_acl_tx_elt_get - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_acl_tx_free - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_acl_tx_free_in_isr - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_adv_tx_alloc - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_adv_tx_free - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text.r_ble_util_buf_adv_tx_free_in_isr - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .rodata.r_ble_util_buf_set_rx_buf_nb.str1.4 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .text.r_rw_v9_init_em_radio_table - 0x00000000 0x1d6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .text.r_rf_rw_v9_le_enable - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .text.r_rf_rw_v9_le_disable - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .text.r_cali_phase_match_p - 0x00000000 0x19e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .rodata.r_cali_phase_match_p.str1.4 - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .iram1.1 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_em_base_reg_show - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_base_reg_lut_show - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_get_mem_addr_by_offset - 0x00000000 0x11c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_get_em_mapping_idx_by_offset - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_overwrite_em_mapping_by_offset - 0x00000000 0x116 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_alloc_em_mapping_by_offset - 0x00000000 0x1fc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text.r_emi_free_em_mapping_by_offset - 0x00000000 0x1d4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.r_emi_alloc_em_mapping_by_offset.str1.4 - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.r_emi_base_reg_lut_show.str1.4 - 0x00000000 0x21 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.r_emi_em_base_reg_show.str1.4 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.r_emi_free_em_mapping_by_offset.str1.4 - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .text.r_bt_bb_intr_mask_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .text.r_bt_bb_intr_clear - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .text.r_bt_bb_get_intr_mask - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .text.r_btdm_isr - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - .rodata.r_cca_funcs_ro - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.r_llc_rem_ch_map_proc_continue - 0x00000000 0x118 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.llc_llcp_ch_map_update_ind_pdu_send - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.r_llc_ch_map_up_proc_err_cb - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.ll_channel_map_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.ll_min_used_channels_ind_handler - 0x00000000 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.hci_le_rd_chnl_map_cmd_handler - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.llc_op_ch_map_upd_ind_handler - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.llm_ch_map_update_ind_handler - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text.lld_ch_map_upd_cfm_handler - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_con_upd_param_in_range - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_pref_param_compute - 0x00000000 0x1c0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.llc_ll_connection_update_ind_pdu_send - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.llc_ll_connection_param_req_pdu_send - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.llc_ll_connection_param_rsp_pdu_send - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_hci_con_param_req_evt_send - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_con_plan_set_update - 0x00000000 0x1ae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_hci_con_upd_info_send - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_loc_con_upd_proc_err_cb - 0x00000000 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_rem_con_upd_proc_err_cb - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.ll_connection_update_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.ll_connection_param_req_handler - 0x00000000 0x19c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.ll_connection_param_rsp_handler - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.hci_le_con_upd_cmd_handler - 0x00000000 0x1f2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.hci_le_rem_con_param_req_reply_cmd_handler - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.hci_le_rem_con_param_req_neg_reply_cmd_handler - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.llc_op_con_upd_ind_handler - 0x00000000 0x138 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.lld_con_param_upd_cfm_handler - 0x00000000 0x122 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.lld_con_estab_ind_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.lld_con_offset_upd_ind_handler - 0x00000000 0x138 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text.r_llc_con_move_cbk - 0x00000000 0x206 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_disconnect_end - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.llc_ll_terminate_ind_pdu_send - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_disconnect_proc_continue - 0x00000000 0x122 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_ll_terminate_ind_ack - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_disconnect_proc_err_cb - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.ll_terminate_ind_handler - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.lld_disc_ind_handler - 0x00000000 0x11e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.llc_stopped_ind_handler - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.llc_op_disconnect_ind_handler - 0x00000000 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_hci_disconnected_dis - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.hci_disconnect_cmd_handler - 0x00000000 0x102 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_disconnect - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text.r_llc_init_term_proc - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .rodata.r_llc_disconnect_proc_continue.str1.4 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.llc_ll_length_req_pdu_send - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.llc_ll_length_rsp_pdu_send - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.r_llc_hci_dl_upd_info_send - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.r_llc_loc_dl_upd_proc_continue - 0x00000000 0x2f6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.r_llc_rem_dl_upd_proc - 0x00000000 0x232 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.r_llc_dle_proc_err_cb - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.ll_length_req_handler - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.ll_length_rsp_handler - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.hci_le_set_data_len_cmd_handler - 0x00000000 0x16c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.llc_op_dl_upd_ind_handler - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text.r_dl_upd_proc_start - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .rodata.r_llc_loc_dl_upd_proc_continue.str1.4 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_loc_encrypt_proc_continue_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_aes_res_cb - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_iv_skd_rand_gen - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_sk_gen - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_pause_enc_req_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_pause_enc_rsp_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_enc_req_pdu_send - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_enc_rsp_pdu_send - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_start_enc_req_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_ll_start_enc_rsp_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_loc_encrypt_proc_continue - 0x00000000 0x3e2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .rodata.r_llc_loc_encrypt_proc_continue - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_rem_encrypt_proc_continue - 0x00000000 0x420 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .rodata.r_llc_rem_encrypt_proc_continue - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_ll_pause_enc_rsp_ack_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_ll_start_enc_rsp_ack_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_ll_reject_ind_ack_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_hci_ltk_request_evt_send - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_hci_enc_evt_send - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_loc_encrypt_proc_err_cb - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.r_llc_rem_encrypt_proc_err_cb - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_pause_enc_req_handler - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_pause_enc_req_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_pause_enc_rsp_handler - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_pause_enc_rsp_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_enc_req_handler - 0x00000000 0x132 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_enc_req_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_enc_rsp_handler - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_enc_rsp_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_start_enc_req_handler - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_start_enc_req_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_ll_start_enc_rsp_handler - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.ll_start_enc_rsp_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_hci_le_start_enc_cmd_handler - 0x00000000 0x140 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.hci_le_start_enc_cmd_handler - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_hci_le_ltk_req_reply_cmd_handler - 0x00000000 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.hci_le_ltk_req_reply_cmd_handler - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_hci_le_ltk_req_neg_reply_cmd_handler - 0x00000000 0xe2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.hci_le_ltk_req_neg_reply_cmd_handler - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_llc_encrypt_ind_handler - 0x00000000 0x1ca /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_encrypt_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.f_llc_op_encrypt_ind_handler - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text.llc_op_encrypt_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .rodata.r_llc_loc_encrypt_proc_continue.str1.4 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.llc_ll_feature_req_pdu_send - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.llc_ll_feature_rsp_pdu_send - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.r_llc_hci_feats_info_send - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.r_llc_loc_feats_exch_proc_continue - 0x00000000 0x10c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.r_llc_feats_exch_proc_err_cb - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.ll_feature_req_handler - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.ll_slave_feature_req_handler - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.ll_feature_rsp_handler - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.hci_le_rd_rem_feats_cmd_handler - 0x00000000 0x108 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text.llc_op_feats_exch_ind_handler - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .rodata.r_llc_loc_feats_exch_proc_continue.str1.4 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.hci_rd_tx_pwr_lvl_cmd_handler - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.hci_rd_rssi_cmd_handler - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.hci_vs_set_pref_slave_latency_cmd_handler - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.hci_vs_set_pref_slave_evt_dur_cmd_handler - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.ble_acl_data_cb_register - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.r_llc_hci_nb_cmp_pkts_evt_send - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.r_llc_cmd_cmp_send - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.r_llc_cmd_stat_send - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.r_llc_hci_cmd_handler_tab_p_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.llc_hci_command_handler_wrapper - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.hci_acl_data_handler - 0x00000000 0x168 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.lld_acl_rx_ind_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text.lld_acl_tx_cfm_handler - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .bss.ble_acl_data_tx_cb - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .rodata.hci_acl_data_handler.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .rodata.llc_hci_command_handler_tab - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.r_llc_le_ping_proc_err_cb - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.llc_ll_ping_req_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.r_llc_le_ping_proc_continue - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.llc_ll_ping_rsp_pdu_send - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.f_ll_ping_req_handler - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.ll_ping_req_handler - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.f_ll_ping_rsp_handler - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.ll_ping_rsp_handler - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.hci_rd_auth_payl_to_cmd_handler - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.hci_wr_auth_payl_to_cmd_handler - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.f_llc_op_le_ping_ind_handler - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.llc_op_le_ping_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.f_llc_auth_payl_nearly_to_handler - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.llc_auth_payl_nearly_to_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.f_llc_auth_payl_real_to_handler - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.llc_auth_payl_real_to_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text.r_llc_le_ping_set - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .rodata.r_llc_le_ping_proc_err_cb.str1.4 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.ll_reject_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.ll_reject_ext_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.ll_unknown_rsp_handler - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.r_llcp_pdu_handler_tab_p_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.llc_ll_unknown_rsp_pdu_send - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.r_llc_ll_unknown_ind_handler - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.r_llc_ll_reject_ind_pdu_send - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.r_llc_llcp_send - 0x00000000 0x10c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.r_llc_llcp_tx_check - 0x00000000 0x156 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.lld_llcp_rx_ind_handler_wrapper - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text.lld_llcp_tx_cfm_handler - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .rodata.llcp_pdu_handler - 0x00000000 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .rodata.str1.4 - 0x00000000 0x59 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_llcp_trans_timer_set - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_cleanup - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_stop - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_start - 0x00000000 0x2a8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_role_get - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_llcp_state_set - 0x00000000 0x178 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_reg - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_unreg - 0x00000000 0xfa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_id_get - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_state_get - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_state_set - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_get - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_err_ind - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_timer_set - 0x00000000 0x10a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_timer_pause_set - 0x00000000 0x108 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text.r_llc_proc_collision_check - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .rodata.r_llc_start.str1.4 - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_loc_phy_upd_proc_continue_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_rem_phy_upd_proc_continue_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.llc_ll_phy_req_pdu_send - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.llc_ll_phy_rsp_pdu_send - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_rem_phy_upd_proc_continue - 0x00000000 0x36e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.llc_llcp_phy_upd_ind_pdu_send - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_hci_le_phy_upd_cmp_evt_send - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_loc_phy_upd_proc_err_cb - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_rem_phy_upd_proc_err_cb - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_llc_dl_chg_check - 0x00000000 0x13c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.f_ll_phy_req_handler - 0x00000000 0xfe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.ll_phy_req_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.f_ll_phy_rsp_handler - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.ll_phy_rsp_handler - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.ll_phy_update_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.hci_le_rd_phy_cmd_handler - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.f_hci_le_set_phy_cmd_handler - 0x00000000 0x1d8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.hci_le_set_phy_cmd_handler - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.f_llc_op_phy_upd_ind_handler - 0x00000000 0x12c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.llc_op_phy_upd_ind_handler - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.f_lld_phy_upd_cfm_handler - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.lld_phy_upd_cfm_handler - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text.r_phy_upd_proc_start - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .text.llc_loc_llcp_rsp_to_handler - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .text.llc_rem_llcp_rsp_to_handler - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .text.r_llc_msg_handler_tab_p_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .rodata.llc_msg_handler_tab - 0x00000000 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.llc_llcp_version_ind_pdu_send - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.r_llc_hci_version_info_send - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.r_llc_ver_exch_loc_proc_continue - 0x00000000 0x116 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.r_llc_ver_proc_err_cb - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.llc_op_ver_exch_ind_handler - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.ll_version_ind_handler - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text.hci_rd_rem_ver_info_cmd_handler - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .rodata.r_llc_ver_exch_loc_proc_continue.str1.4 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.ble_ll_qa_test_enable - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.ble_ll_get_adv_txed_cnt - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.ble_ll_adv_aa_setting - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.lld_adv_aux_offset_set - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_direct_adv_use_rpa_addr_state_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_direct_adv_use_rpa_addr_state_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_coex_env_reset - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_legacy_adv_dynamic_pti_get - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_legacy_adv_dynamic_pti_process - 0x00000000 0x3aa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_ext_adv_dynamic_pti_get - 0x00000000 0x136 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_ext_adv_dynamic_aux_pti_process - 0x00000000 0x2e8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_ext_adv_dynamic_pti_process - 0x00000000 0x39c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_dynamic_pti_process - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_set_tx_power - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_end - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_sync_info_set - 0x00000000 0x29c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_aux_ch_idx_set - 0x00000000 0x228 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_ext_pkt_prepare - 0x00000000 0x2fa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_ext_chain_connectable_construct - 0x00000000 0x2a6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_ext_chain_construct - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_adv_data_set - 0x00000000 0x2b6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_scan_rsp_data_set - 0x00000000 0x302 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_pkt_rx_connect_post - 0x00000000 0x2d8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .iram1.10 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_pkt_rx_connect_ind - 0x00000000 0x3ae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_pkt_rx - 0x00000000 0xda /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_evt_start_cbk - 0x00000000 0x3d6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_aux_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_aux_evt_start_cbk - 0x00000000 0x328 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.btdm_disable_adv_delay_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_evt_canceled_cbk - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_aux_evt_canceled_cbk - 0x00000000 0x19c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_frm_isr - 0x00000000 0x43c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_frm_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_frm_skip_isr - 0x00000000 0x1b4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_frm_cbk - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_init - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_start_init_evt_param_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_start_init_evt_param - 0x00000000 0x7e8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_start_init_evt_param - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_start_set_cs - 0x00000000 0x442 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_start_schedule_asap - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_start - 0x00000000 0x416 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_stop - 0x00000000 0xba /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_adv_data_update - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_scan_rsp_data_update - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_duration_update - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_rand_addr_update - 0x00000000 0xe2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_restart - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_sync_info_update - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text.r_lld_adv_coex_check_ext_adv_synced - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .data.g_direct_adv_use_peer_rpa_addr - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_adv_data_set.str1.4 - 0x00000000 0x3f /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_adv_data_update.str1.4 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_coex_check_ext_adv_synced.str1.4 - 0x00000000 0x21 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_scan_rsp_data_set.str1.4 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_scan_rsp_data_update.str1.4 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_start_init_evt_param.str1.4 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.r_lld_adv_start_set_cs.str1.4 - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.1 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.2 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.3 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.4 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.5 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.6 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.7 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.8 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.9 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.10 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.11 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.12 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.13 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.14 0x00000000 0xce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.15 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.16 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.17 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.18 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.19 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.20 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.21 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.22 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.23 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.24 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.25 0x00000000 0xce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.26 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.27 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.28 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.29 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.30 0x00000000 0x11a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.31 0x00000000 0x11c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.32 0x00000000 0x136 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.33 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .iram1.34 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .text.r_lld_cca_config_init - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .text.r_lld_cca_sw_init - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .text.r_lld_cca_sw_alloc - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .text.r_lld_cca_sw_free - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .bss.p_lld_cca - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .data.ble_2_rf_chan_tab - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .data.rf_2_ble_chan_tab - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .rodata.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.ble_con_evt_cb_register - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .iram1.18 0x00000000 0x1f2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_conn_dynamic_pti_process - 0x00000000 0x26c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_set_tx_power - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_max_lat_calc - 0x00000000 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_len_update - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.btdm_con_maxevtime_cal_impl - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_max_eff_time_cal - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_time_update - 0x00000000 0x2e6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_duration_min_get - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_cleanup - 0x00000000 0x21a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_instant_proc_end - 0x00000000 0x116 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_llcp_check - 0x00000000 0x12e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_link_info_check - 0x00000000 0x10a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_sync_time_update - 0x00000000 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx - 0x00000000 0x320 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_prog_new_packet_coex - 0x00000000 0x236 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_prog_new_packet_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_prog - 0x00000000 0x118 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_start_cbk - 0x00000000 0x4f0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_canceled_cbk - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_canceled_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_frm_isr - 0x00000000 0x1fa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_frm_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_isr - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_isr - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_frm_skip_isr - 0x00000000 0x104 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_frm_cbk - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .rodata.r_lld_con_frm_cbk - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_start - 0x00000000 0xae6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_llcp_tx - 0x00000000 0x14a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_data_tx - 0x00000000 0x130 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_data_flow_set - 0x00000000 0x12c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_param_update - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_ch_map_update - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_data_len_update - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_phys_update - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_len_update_for_intv - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_len_update_for_rate - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_event_counter_get - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_activity_act_offset_compute - 0x00000000 0x132 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_activity_offset_compute - 0x00000000 0xfc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_tx_enc - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rx_enc - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_enc_key_load - 0x00000000 0x154 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_current_tx_power_get - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_rssi_get - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_offset_get - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_pref_slave_latency_set - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_pref_slave_evt_dur_set - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_init - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_free_all_tx_buf - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.lld_con_evt_sd_evt_time_set - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text.r_lld_con_evt_sd_evt_time_get - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .rodata.r_lld_con_start.str1.4 - 0x00000000 0x77 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .rodata.r_lld_con_tx_prog_new_packet_coex.str1.4 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_end_type_check_state_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_end_type_check_state_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_set_tx_power - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_end - 0x00000000 0x158 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_compute_winoffset - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_sched_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_sched - 0x00000000 0x3ee /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_rx_adv_ind_or_direct_ind - 0x00000000 0x240 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_rx_adv_ext_ind - 0x00000000 0x1e2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_rx_aux_connect_rsp - 0x00000000 0x25a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_rx - 0x00000000 0x1a6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_cal_anchor_point - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_tx_cal_con_timestamp - 0x00000000 0x114 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_tx_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_process_pkt_tx - 0x00000000 0x328 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_end_type_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_end_type_get - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_frm_eof_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_frm_eof_isr - 0x00000000 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_frm_skip_isr - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_frm_cbk - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_start_cbk - 0x00000000 0x29a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_evt_canceled_cbk - 0x00000000 0x12e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_connect_req_pack - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_init - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_start - 0x00000000 0x105e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text.r_lld_init_stop - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .bss.g_initor_evt_end_abort - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .data.g_initor_evt_end_type_check - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .rodata.r_lld_init_start.str1.4 - 0x00000000 0x9d /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_le_pkt_err_state_check - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_le_pkt_err_en - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_le_pkt_err_clear - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_le_pkt_err_get - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_fixed_ch_idx_state_check - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_enable_fixed_ch_idx - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_ch_idx_set - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_aux_ptr_thr_set - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_ral_search - 0x00000000 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rpa_renew_instant_cbk - 0x00000000 0x158 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rpa_renew_evt_start_cbk - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rpa_renew_evt_canceled_cbk - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rxdesc_free - 0x00000000 0x256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rxdesc_check - 0x00000000 0x1ae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_channel_assess - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_phy_coded_500k_get - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.btdm_switch_phy_coded_impl - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_reset_reg - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.btdm_enable_scan_continue_impl - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_read_clock - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_ch_assess_data_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_rpa_renew - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_white_list_add - 0x00000000 0x1a0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_white_list_rem - 0x00000000 0x126 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_per_adv_list_add - 0x00000000 0x1b4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_per_adv_list_rem - 0x00000000 0x134 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.btdm_dis_privacy_err_report_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_res_list_add - 0x00000000 0x1c0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_res_list_peer_update - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_res_list_peer_rpa_get - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_res_list_local_rpa_get - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_res_list_is_empty - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_aa_gen - 0x00000000 0xce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_calc_aux_rx - 0x00000000 0x1d2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_ch_map_set - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_ch_idx_get - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_update_rxbuf - 0x00000000 0x1ca /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_update_rxbuf_isr - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_update_rxbuf_handler - 0x00000000 0x308 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_cca_alloc - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_cca_free - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_cca_data_reset - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_process_cca_data - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_sw_cca_evt_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .iram1.6 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_hw_cca_evt_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_hw_cca_isr - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_hw_cca_end_isr - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .rodata.lld_update_rxbuf_handler.str1.4 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .rodata.r_lld_update_rxbuf.str1.4 - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .rodata.r_lld_update_rxbuf_isr.str1.4 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_coex_env_reset - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_dynamic_pti_get - 0x00000000 0x112 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_dynamic_pti_process - 0x00000000 0x396 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_cleanup - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_set_tx_power - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_ext_pkt_prepare - 0x00000000 0x4e0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_chain_construct - 0x00000000 0x29e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_data_set - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_evt_start_chm_upd - 0x00000000 0x31e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_evt_start_cbk - 0x00000000 0x1f4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_evt_canceled_cbk - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_frm_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_frm_isr - 0x00000000 0x37e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_frm_skip_isr - 0x00000000 0xf6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_frm_cbk - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_init - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_start_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_start - 0x00000000 0x90e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_stop - 0x00000000 0xea /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_data_update - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_sync_info_get - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_init_info_get - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text.r_lld_per_adv_ch_map_update - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .rodata.r_lld_per_adv_ext_pkt_prepare.str1.4 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .rodata.r_lld_per_adv_start.str1.4 - 0x00000000 0x77 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.ble_ll_scan_aa_setting - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.ble_ll_scan_channel_setting - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_ext_scan_dynamic_pti_get - 0x00000000 0x122 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_ext_scan_dynamic_pti_process - 0x00000000 0x31c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_set_tx_power - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_end - 0x00000000 0x19e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_continue_scan_rx_isr_end_process - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_legacy_adv - 0x00000000 0x19a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_ext_adv_ind - 0x00000000 0x2f0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_aux_adv_ind - 0x00000000 0x57e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_aux_scan_rsp - 0x00000000 0x1d2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_aux_chain_ind - 0x00000000 0x1d4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_ext_adv_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_process_pkt_rx_ext_adv - 0x00000000 0x1a6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_trunc_ind - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_sync_info_unpack - 0x00000000 0x11a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_sync_accept - 0x00000000 0x250 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_sched_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_sched - 0x00000000 0x3ca /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_frm_eof_isr - 0x00000000 0x1f6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_frm_eof_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_frm_rx_isr - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_frm_skip_isr - 0x00000000 0x192 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_frm_cbk - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_evt_start_cbk - 0x00000000 0x226 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_evt_canceled_cbk - 0x00000000 0x180 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_init - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_restart - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.btdm_enable_scan_forever_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_start - 0x00000000 0xdc0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_stop - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_params_update - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_create_sync - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text.r_lld_scan_create_sync_cancel - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .rodata.r_lld_scan_start.str1.4 - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .rodata.scan_chan_tab - 0x00000000 0x3 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_scan_dynamic_pti_process - 0x00000000 0x27c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_cleanup - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_trunc_ind - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_process_pkt_rx_aux_sync_ind - 0x00000000 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_process_pkt_rx_pkt_check_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_process_pkt_rx_pkt_check - 0x00000000 0x474 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_process_pkt_rx - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_insert - 0x00000000 0x3ec /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_sched - 0x00000000 0x2f2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_frm_eof_isr_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_frm_eof_isr - 0x00000000 0x18a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_frm_rx_isr - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_frm_skip_isr - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_frm_cbk - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_evt_start_cbk_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_evt_start_cbk - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_evt_canceled_cbk - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_init - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_start - 0x00000000 0x790 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_start_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_ch_map_update - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text.r_lld_sync_stop - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .rodata.r_lld_sync_scan_dynamic_pti_process.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .rodata.r_lld_sync_start.str1.4 - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.lld_dtm_is_ongoing - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_set_tx_power - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_cleanup - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_freq2chnl - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_evt_start_cbk - 0x00000000 0x19a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_evt_canceled_cbk - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_rx_isr - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_frm_isr - 0x00000000 0x128 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_frm_cbk - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_start - 0x00000000 0x7a8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .rodata.r_lld_test_start - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text.r_lld_test_init - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_adv_set_release - 0x00000000 0x1ea /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_adv_con_len_check - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_per_adv_slot_dur - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_adv_set_dft_params - 0x00000000 0x116 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_adv_hdl_to_id - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.lld_scan_req_ind_handler - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.lld_adv_end_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.lld_per_adv_end_ind_handler - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text.r_llm_adv_set_all_release - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.ble_ll_reset_rand_addr - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.ble_ll_rand_addr_check - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.r_llm_is_wl_accessible - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.r_llm_is_non_con_act_ongoing_check - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.r_llm_no_activity - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.r_llm_aes_res_cb - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.llm_hci_command_handler_wrapper - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .text.lld_init_end_ind_handler - 0x00000000 0x5b6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.llm_hdl_to_id - 0x00000000 0x13a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .rodata.llm_hdl_to_id - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.esp_ble_controller_status_check - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_cmd_cmp_send - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_cmd_stat_send - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_is_dev_connected - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_is_dev_synced - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_dev_list_empty_entry - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_dev_list_search - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_link_disc - 0x00000000 0x130 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_master_ch_map_get - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_le_evt_mask_check - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_tx_path_comp_get - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_rx_path_comp_get - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_plan_elt_get - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_ch_map_update - 0x00000000 0x23c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_activity_free_get - 0x00000000 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text.r_llm_activity_free_set - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .rodata.r_llm_ch_map_update.str1.4 - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.ble_ll_scan_set_perfer_addr - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.ble_ll_get_scan_rxed_cnt - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_activity_syncing_get - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_scan_start - 0x00000000 0x148 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_send_adv_lost_event_to_host - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_init_ble_adv_report_flow_contol - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_ble_update_adv_flow_control - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_adv_reports_list_check - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.llm_scan_period_to_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_adv_rep_flow_control_check - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_adv_rep_flow_control_update - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.lld_adv_rep_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.lld_sync_start_req_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.f_lld_per_adv_rep_ind_handler - 0x00000000 0x48a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.lld_per_adv_rep_ind_handler - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.lld_per_adv_rx_end_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.lld_scan_end_ind_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_scan_sync_acad_attach - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_scan_sync_acad_detach - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_env_adv_dup_filt_init - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.r_llm_env_adv_dup_filt_deinit - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .rodata.r_llm_env_adv_dup_filt_init.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.lld_test_end_ind_handler - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_ch_map_to_handler - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_new_host_class_to_handler - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_rpa_renew_to_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_dh_key_gen_ind_handler - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_pub_key_gen_ind_handler - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.llm_encrypt_ind_handler - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text.r_llm_msg_handler_tab_p_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .rodata.llm_msg_handler_tab - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .rodata.llm_rpa_renew_to_handler.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text.misc_free_em_buf_handler - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text.r_misc_msg_handler_tab_p_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text.r_misc_init - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text.r_misc_deinit - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text.r_misc_free_em_buf_in_isr - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .data.misc_msg_handler_tab - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .rodata.TASK_DESC_MISC - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .rodata.r_misc_free_em_buf_in_isr.str1.4 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.btdm_coex_dynamic_pti_enable - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_cfg_set - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_st_param_set - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_st_param_get - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_legacy_adv_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_conn_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_ext_scan_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_sync_scan_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_ext_adv_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_per_adv_dynamic_pti_en_get - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text.r_bt_rf_coex_pti_table_get - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_reg_rd - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_reg_wr - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_em_init - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_rssi_convert - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_reset - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_force_agc_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text.r_rf_sleep - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .rodata.r_rf_em_init.str1.4 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_init - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_configure - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_register_rule_cs_fmt - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_deregister_rule_cs_fmt - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_apply_rule_cs_fmt - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_register_rule_cs_idx - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_deregister_rule_cs_idx - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_apply_rule_cs_idx - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text.r_bt_rma_get_ant_by_act - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.bt_controller_txpwr_index_2_level - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.ble_txpwr_get - 0x00000000 0x11e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.ble_txpwr_set - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.ble_txpwr_lvl_range_get - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_init - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_register_rule_cs_fmt - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_deregister_rule_cs_fmt - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_apply_rule_cs_fmt - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_register_rule_cs_idx - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_deregister_rule_cs_idx - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text.r_bt_rtp_apply_rule_cs_idx - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .rodata.cs_bt_pwr_tbl_idx2lvl_fpga - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .text.r_rf_util_cs_fmt_convert - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .rodata.CSWTCH.0 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .text.esp_get_ble_isr_err_counter - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .rodata.esp_get_ble_isr_err_counter - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .iram1.3 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .text.r_rwble_sleep_enter - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .text.r_rwble_sleep_wakeup_end - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_lpcycles_2_hus - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_hus_2_lpcycles - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_half_slot_2_lpcycles - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_hs_handler - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_hus_handler - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_10ms_handler - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_crypt_evt_handler - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_crypt_isr_handler - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_sw_int_handler - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_wakeup - 0x00000000 0x10c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_time_get - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_sleep - 0x00000000 0x242 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_prevent_sleep_set - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_prevent_sleep_clear - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_active_check - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_10ms_set - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_hs_set - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_timer_hus_set - 0x00000000 0x100 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_aes_encrypt - 0x00000000 0x112 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_sw_int_req - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text.r_rwip_isr - 0x00000000 0x11e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text.btdm_power_state_active_impl - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text.btdm_get_power_state_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text.btdm_get_prevent_sleep_flag_impl - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text.r_rwip_schedule - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text.r_rwip_wlcoex_set - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text.r_sch_alarm_prog - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text.r_sch_alarm_init - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text.r_sch_alarm_timer_isr - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text.r_sch_alarm_set - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text.r_sch_alarm_clear - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .rodata.r_sch_alarm_timer_isr.str1.4 - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_conflict_check - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_elt_cancel - 0x00000000 0x172 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_prog_timer - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_init - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_insert_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_insert - 0x00000000 0x336 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_remove - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text.r_sch_arb_sw_isr - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .rodata.r_sch_arb_insert.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_clock_wrap_offset_update - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_offset_max_calc - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_offset_req_hook - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_offset_req - 0x00000000 0x25c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_interval_req - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_init - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_rem - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_req - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_chk - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text.r_sch_plan_position_range_compute - 0x00000000 0x130 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_init - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_rx_isr - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_tx_isr - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_skip_isr - 0x00000000 0x124 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_bt_push - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text.r_sch_prog_push - 0x00000000 0x2bc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_compute - 0x00000000 0x126 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_init - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_bg_add - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_bg_remove - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_fg_add - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_fg_remove - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_per_add - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text.r_sch_slice_per_remove - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .rodata.r_sch_slice_compute.str1.4 - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .text.r_sdk_config_get_hl_derived_opts - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .text.r_sdk_config_set_hl_derived_opts - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .bss.sdk_cfg_hl_d_opts - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.sdk_config_priv_update_prog_delay - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.btdm_enable_irq_fifo - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.r_sdk_config_get_opts - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.r_sdk_config_set_opts - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.r_sdk_config_get_priv_opts - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.r_sdk_config_set_bt_sleep_enable - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text.r_sdk_config_get_bt_sleep_enable - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .bss.sdk_cfg_opts - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .text.r_vhci_notify_host_send_available - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .text.r_vhci_flow_off - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .text.r_vhci_flow_on - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .text.r_vhci_send_to_host - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - .text.r_vshci_init - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_dbg_common_echo_cmd_handler - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_enable_cca_cmd_handler - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vendor_ble_qa_test_cmd_handler - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_aux_offset_threshold_cmd_handler - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_adv_aux_offset_cmd_handler - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_ctrl_compile_version_cmd_handler - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_ctrl_status_cmd_handler - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_scan_chan_cmd_handler - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_adv_aa_cmd_handler - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_scan_aa_cmd_handler - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_txpwr_lvl_range_cmd_handler - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_max_txpwr_cmd_handler - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_clear_rand_addr_cmd_handler - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_txpwr_lvl_enhanced_cmd_handler - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_txpwr_lvl_enhanced_cmd_handler - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_scan_rxed_cnt_cmd_handler - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_adv_txed_cnt_cmd_handler - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_scan_prefer_addr_cmd_handler - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_scan_forever_cmd_handler - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_dflt_priv_mode_cmd_handler - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_switch_coded_phy_cmd_handler - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_dis_adv_delay_cmd_handler - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_test_en_cmd_handler - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_set_txpwr_lvl_cmd_handler - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vs_ble_qa_get_txpwr_lvl_cmd_handler - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.esp_ble_internalTestFeaturesEnable - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.bt_stack_enableEchoVsCmd - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.r_esp_vendor_hci_command_handler - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.r_vnd_hci_command_handler - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.vnd_hci_command_handler_wrapper - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .rodata.ble_ext_funcs_list - 0x00000000 0x100 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text.r_aes_ccm_xor_128_lsb - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text.r_aes_ccm_xor_128_msb - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text.r_aes_ccm_continue - 0x00000000 0x144 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text.r_aes_ccm_process_e - 0x00000000 0x1e2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text.r_rw_crypto_aes_ccm - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .rodata.r_aes_ccm_continue.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .text.r_rw_cryto_aes_cmac - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .text.r_aes_cmac_start - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .text.r_aes_cmac_continue - 0x00000000 0x1a2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .text.r_aes_k1_continue - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .text.r_rw_crypto_aes_k1 - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .text.r_aes_k2_continue - 0x00000000 0x154 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .text.r_rw_crypto_aes_k2 - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .rodata.r_aes_k2_continue.str1.4 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .text.r_aes_k3_continue - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .text.r_rw_crypto_aes_k3 - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .rodata.aes_k3_id64 - 0x00000000 0x5 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .text.r_aes_k4_continue - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .text.r_rw_crypto_aes_k4 - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .rodata.aes_k4_id6 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_rw_crypto_aes_init - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_aes_alloc - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_aes_start - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_rw_crypto_aes_encrypt - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_rw_crypto_aes_rand - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_rw_crypto_aes_result_handler - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_aes_xor_128 - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text.r_aes_shift_left_128 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - .text.r_rw_crypto_aes_s1 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_init - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_pool_init - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_push_back - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_push_back_sublist - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_push_front - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_pop_front - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_extract - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_extract_after - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_extract_sublist - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_find - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_merge - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_insert_before - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_insert_after - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text.r_co_list_size - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .rodata.r_co_list_push_back.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_util_read_array_size - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_bdaddr_compare - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_nb_good_le_channels - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_util_pack - 0x00000000 0x2c0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_util_unpack - 0x00000000 0x2a4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text.r_co_ble_pkt_dur_in_us - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .rodata.r_co_util_read_array_size.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_isValidSecretKey_256 - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_AddBigHex256 - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_AddBigHexModP256 - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_Add2SelfBigHex256 - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_SubtractBigHex256 - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_SubtractFromSelfBigHex256 - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_AddP256 - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_AddPdiv2_256 - 0x00000000 0x120 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_SubtractFromSelfBigHexSign256 - 0x00000000 0xea /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_SubtractBigHexMod256 - 0x00000000 0x150 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_SubtractBigHexUint32_256 - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_MultiplyBigHexModP256 - 0x00000000 0x1bc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_MultiplyBigHexByUint32_256 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_specialModP256 - 0x00000000 0x13c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_MultiplyByU16ModP256 - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_notEqual256 - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_GF_Jacobian_Point_Addition256 - 0x00000000 0x664 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_GF_Jacobian_Point_Double256 - 0x00000000 0x27c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_GF_Point_Jacobian_To_Affine256 - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_bigHexInversion256 - 0x00000000 0x2b8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_point_multiplication_win_256 - 0x00000000 0x50e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_is_valid_point - 0x00000000 0x14c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_multiplication_event_handler - 0x00000000 0x15a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_init - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_generate_key256 - 0x00000000 0x346 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_abort_key256_generation - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_gen_new_public_key - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_gen_new_secret_key - 0x00000000 0x156 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text.r_ecc_get_debug_Keys - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .rodata.r_ecc_multiplication_event_handler.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .text.r_h4tl_eif_register - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .text.r_h4tl_eif_io_event_post - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .rodata.r_h4tl_eif_register.str1.4 - 0x00000000 0x5d /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_rx_cmd_hdr_extract - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_rx_acl_hdr_extract - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_read_start - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_read_hdr - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_read_payl - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_read_next_out_of_sync - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_out_of_sync - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_out_of_sync_check - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_tx_done - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_tx_evt_handler - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_rx_done - 0x00000000 0x260 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_cmd_hdr_rx_evt_handler - 0x00000000 0xba /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_cmd_pld_rx_evt_handler - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_acl_hdr_rx_evt_handler - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_init - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_write - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_start - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text.r_h4tl_stop - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .rodata 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .rodata.h4tl_msgtype2hdrlen - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .rodata.r_h4tl_tx_done.str1.4 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_init - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_acl_buf_size_set - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_acl_en - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_acl_packet_sent - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_host_nb_acl_pkts_complete - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text.r_hci_fc_check_host_available_nb_acl_packets - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_host_nb_cmp_pkts_cmd_pkupk - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_set_ext_scan_param_cmd_upk - 0x00000000 0x154 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_ext_create_con_cmd_upk - 0x00000000 0x21e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_set_ext_adv_en_cmd_upk - 0x00000000 0x13a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_adv_report_evt_pkupk - 0x00000000 0x160 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_dir_adv_report_evt_pkupk - 0x00000000 0x15c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_le_ext_adv_report_evt_pkupk - 0x00000000 0x252 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_pack_bytes - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_look_for_cmd_desc - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_look_for_evt_desc - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_look_for_le_evt_desc - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_look_for_le_evt_desc_esp - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .data.hci_cmd_desc_tab_vs_esp_eco - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_ctrl_bb - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_info_par - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_le - 0x00000000 0x39c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_lk_ctrl - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_stat_par - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_cmd_desc_tab_vs - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_evt_desc_tab - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_evt_le_desc_tab - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_evt_le_desc_tab_esp - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_le_set_ext_scan_param_cmd_upk.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_evt_mask_check - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_send_2_host - 0x00000000 0x1b8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .rodata.r_hci_send_2_host - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_send_2_controller - 0x00000000 0x10a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_basic_cmd_send_2_controller - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_ble_conhdl_register - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_ble_conhdl_unregister - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text.r_hci_evt_mask_set - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .rodata.r_hci_evt_mask_set - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .rodata.r_hci_send_2_host.str1.4 - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_ble_adv_report_filter_check - 0x00000000 0x118 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_ble_adv_report_tx_check - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_cmd_reject - 0x00000000 0x172 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_build_cs_evt - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_build_cc_evt - 0x00000000 0xec /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_build_evt - 0x00000000 0x118 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_build_le_evt - 0x00000000 0xfe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_build_acl_data - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tx_start - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .rodata.r_hci_tx_start - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tx_done - 0x00000000 0x10c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tx_trigger - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_c2h_data_flow_on - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_send - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_inc_nb_h2c_cmd_pkts - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_save_pkt - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_get_pkt - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_cmd_hdr_rx_evt_handler - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_cmd_pld_rx_evt_handler - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_hci_pkt_handler - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_tl_hci_tx_done_evt_handler - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_cmd_get_max_param_size - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_cmd_received - 0x00000000 0x27c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .rodata.r_hci_cmd_received - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_acl_tx_data_alloc - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text.r_hci_acl_tx_data_received - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .rodata.r_hci_ble_adv_report_tx_check.str1.4 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .rodata.r_hci_cmd_reject.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .rodata.r_hci_tl_hci_pkt_handler.str1.4 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_init - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_callback_set - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_set - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_clear - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_get - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_get_all - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_flush - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text.r_ke_event_schedule - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .rodata.r_ke_event_callback_set.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_mem_is_in_heap - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_mem_init - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_mem_is_empty - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_check_malloc - 0x00000000 0xfe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_malloc - 0x00000000 0x18e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_free - 0x00000000 0x1f2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text.r_ke_is_free - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .rodata.r_ke_check_malloc.str1.4 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_alloc - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_send - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_send_basic - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_forward - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_forward_new_id - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_free - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_dest_id_get - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_src_id_get - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text.r_ke_msg_in_queue - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .rodata.r_ke_msg_alloc.str1.4 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .text.r_ke_init - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .text.r_ke_flush - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .text.r_ke_sleep_check - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .text.r_ke_queue_extract - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .text.r_ke_queue_insert - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_cmp_dest_id - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_saved_update - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_handler_search - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_handler_get - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_init - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_create - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_delete - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_state_set - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_state_get - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_msg_discard - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_msg_save - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_msg_flush - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text.r_ke_task_check - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_time_cmp - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_time_past - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_cmp_abs_time - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_cmp_timer_id - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_schedule - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_init - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_time - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_set - 0x00000000 0x130 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_clear - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_active - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text.r_ke_timer_adjust_all - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .rodata.r_ke_timer_set.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .text.r_led_init - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .text.r_led_set_all - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text.bt_rf_coex_hooks_p_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text 0x00000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .data 0x00000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .bss 0x00000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unknown_field_pack_to_buffer - 0x00000000 0x54 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.get_packed_payload_length - 0x00000000 0x19a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.pack_buffer_packed_payload - 0x00000000 0x1fe esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.protobuf_c_service_invoke_internal.str1.4 - 0x00000000 0x2e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_service_invoke_internal - 0x00000000 0x4a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.protobuf_c_version.str1.4 - 0x00000000 0x6 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_version - 0x00000000 0xa esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_version_number - 0x00000000 0xa esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_buffer_simple_append - 0x00000000 0xb2 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_pack_to_buffer - 0x00000000 0x10e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.required_field_pack_to_buffer - 0x00000000 0x362 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.oneof_field_pack_to_buffer - 0x00000000 0x42 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.optional_field_pack_to_buffer - 0x00000000 0x3e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unlabeled_field_pack_to_buffer - 0x00000000 0x38 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.repeated_field_pack_to_buffer.str1.4 - 0x00000000 0x13 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.repeated_field_pack_to_buffer - 0x00000000 0xea esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_check - 0x00000000 0x14e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.protobuf_c_service_generated_init.str1.4 - 0x00000000 0x3c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_service_generated_init - 0x00000000 0x5c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_service_destroy - 0x00000000 0xe esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_enum_descriptor_get_value_by_name - 0x00000000 0xba esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_enum_descriptor_get_value - 0x00000000 0x34 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_descriptor_get_field_by_name - 0x00000000 0xbc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_descriptor_get_field - 0x00000000 0x34 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_service_descriptor_get_method_by_name - 0x00000000 0xbc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.0 - 0x00000000 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.1 - 0x00000000 0x23 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.6 - 0x00000000 0x1b esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.7 - 0x00000000 0x1a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.8 - 0x00000000 0x1e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.9 - 0x00000000 0x1e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.10 - 0x00000000 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) - .data 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) - .bss 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) - .text.case_insensitive_strcmp - 0x00000000 0x6a esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_hex4 - 0x00000000 0x6a esp-idf/json/libjson.a(cJSON.c.obj) - .text.utf16_literal_to_utf8 - 0x00000000 0x14a esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_string - 0x00000000 0x1de esp-idf/json/libjson.a(cJSON.c.obj) - .text.buffer_skip_whitespace - 0x00000000 0x3c esp-idf/json/libjson.a(cJSON.c.obj) - .text.get_array_item - 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) - .text.skip_oneline_comment - 0x00000000 0x22 esp-idf/json/libjson.a(cJSON.c.obj) - .text.skip_multiline_comment - 0x00000000 0x30 esp-idf/json/libjson.a(cJSON.c.obj) - .text.minify_string - 0x00000000 0x80 esp-idf/json/libjson.a(cJSON.c.obj) - .text.create_reference - 0x00000000 0x4c esp-idf/json/libjson.a(cJSON.c.obj) - .rodata.skip_utf8_bom.str1.4 - 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) - .text.skip_utf8_bom - 0x00000000 0x4c esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_number - 0x00000000 0x15c esp-idf/json/libjson.a(cJSON.c.obj) - .text.get_object_item - 0x00000000 0x5c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetErrorPtr - 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) - .rodata.cJSON_Version.str1.4 - 0x00000000 0x9 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_Version - 0x00000000 0x30 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_InitHooks - 0x00000000 0xa8 esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_object - 0x00000000 0x19e esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_value - 0x00000000 0x16c esp-idf/json/libjson.a(cJSON.c.obj) - .text.parse_array - 0x00000000 0x148 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_SetNumberHelper - 0x00000000 0xa6 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ParseWithLengthOpts - 0x00000000 0xfa esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ParseWithOpts - 0x00000000 0x38 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_Parse - 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ParseWithLength - 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_PrintUnformatted - 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_PrintBuffered - 0x00000000 0x86 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_PrintPreallocated - 0x00000000 0x52 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetArraySize - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetArrayItem - 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetObjectItem - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetObjectItemCaseSensitive - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_HasObjectItem - 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddItemToObjectCS - 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddItemReferenceToArray - 0x00000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddItemReferenceToObject - 0x00000000 0x4c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DetachItemViaPointer - 0x00000000 0x3e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DetachItemFromArray - 0x00000000 0x2c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DeleteItemFromArray - 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DetachItemFromObject - 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DetachItemFromObjectCaseSensitive - 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DeleteItemFromObject - 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_DeleteItemFromObjectCaseSensitive - 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_InsertItemInArray - 0x00000000 0x64 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ReplaceItemViaPointer - 0x00000000 0x70 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ReplaceItemInArray - 0x00000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateNull - 0x00000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddNullToObject - 0x00000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateTrue - 0x00000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddTrueToObject - 0x00000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateFalse - 0x00000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddFalseToObject - 0x00000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateBool - 0x00000000 0x2c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddBoolToObject - 0x00000000 0x50 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateStringReference - 0x00000000 0x3c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateObjectReference - 0x00000000 0x3c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateArrayReference - 0x00000000 0x3c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateRaw - 0x00000000 0x56 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddRawToObject - 0x00000000 0x50 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddArrayToObject - 0x00000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_AddObjectToObject - 0x00000000 0x4e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateIntArray - 0x00000000 0x9e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateFloatArray - 0x00000000 0x9e esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateDoubleArray - 0x00000000 0x98 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_CreateStringArray - 0x00000000 0x96 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_Minify - 0x00000000 0xac esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsInvalid - 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsFalse - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsTrue - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsBool - 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsNull - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsNumber - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetNumberValue - 0x00000000 0x2c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsString - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_GetStringValue - 0x00000000 0x20 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsArray - 0x00000000 0x12 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsObject - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_IsRaw - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_Compare - 0x00000000 0x1a6 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_malloc - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_free - 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_SetValuestring - 0x00000000 0x8e esp-idf/json/libjson.a(cJSON.c.obj) - .text.replace_item_in_object - 0x00000000 0x80 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ReplaceItemInObject - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_ReplaceItemInObjectCaseSensitive - 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - .bss.version.0 - 0x00000000 0xf esp-idf/json/libjson.a(cJSON.c.obj) - .sbss.global_error - 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_encodeBinary - 0x00000000 0x74 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_encodeSegments - 0x00000000 0x20 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_makeBytes.str1.4 - 0x00000000 0x33 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_makeBytes - 0x00000000 0x9c esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_makeEci - 0x00000000 0x122 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.0 - 0x00000000 0x12 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.3 - 0x00000000 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_time_wait_for_sync.str1.4 - 0x00000000 0xd6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text.esp_rmaker_time_wait_for_sync - 0x00000000 0xda esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .text 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .data 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .bss 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_deinit - 0x00000000 0x7c esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_cmd_deregister - 0x00000000 0x34 esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_get_completion - 0x00000000 0x5c esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_get_hint - 0x00000000 0x78 esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_set_help_verbose_level - 0x00000000 0x18 esp-idf/console/libconsole.a(commands.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.abInit 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.prompt_len_ignore_escape_seq - 0x00000000 0x2c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.sanitize - 0x00000000 0x32 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.flushWrite - 0x00000000 0x46 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.abAppend - 0x00000000 0x4c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.abFree 0x00000000 0x14 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.freeCompletions - 0x00000000 0x3e esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.getCursorPosition.str1.4 - 0x00000000 0x6 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.getCursorPosition - 0x00000000 0xfc esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.getColumns.str1.4 - 0x00000000 0x53 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.getColumns - 0x00000000 0x10c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseBeep - 0x00000000 0x26 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseDumb.str1.4 - 0x00000000 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseDumb - 0x00000000 0xea esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetMultiLine - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetDumbMode - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseIsDumbMode - 0x00000000 0xe esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseClearScreen.str1.4 - 0x00000000 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseClearScreen - 0x00000000 0x30 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetCompletionCallback - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetHintsCallback - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetFreeHintsCallback - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseAddCompletion - 0x00000000 0x74 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.refreshShowHints.str1.4 - 0x00000000 0x11 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.refreshShowHints - 0x00000000 0xf0 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.refreshMultiLine.str1.4 - 0x00000000 0x1b esp-idf/console/libconsole.a(linenoise.c.obj) - .text.refreshMultiLine - 0x00000000 0x27e esp-idf/console/libconsole.a(linenoise.c.obj) - .text.refreshSingleLine - 0x00000000 0x150 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.refreshLine - 0x00000000 0x26 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.completeLine.str1.4 - 0x00000000 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.completeLine - 0x00000000 0x15e esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditInsert - 0x00000000 0xf0 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseInsertPastedChar - 0x00000000 0x7a esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditMoveLeft - 0x00000000 0x1c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditMoveRight - 0x00000000 0x20 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditMoveHome - 0x00000000 0x1c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditMoveEnd - 0x00000000 0x1e esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditHistoryNext - 0x00000000 0xce esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditDelete - 0x00000000 0x4a esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditBackspace - 0x00000000 0x4c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEditDeletePrevWord - 0x00000000 0x7e esp-idf/console/libconsole.a(linenoise.c.obj) - .text.getMillis - 0x00000000 0x3e esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseAllowEmpty - 0x00000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseProbe.str1.4 - 0x00000000 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseProbe - 0x00000000 0xe0 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseFree - 0x00000000 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseHistoryFree - 0x00000000 0x50 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseHistoryAdd - 0x00000000 0xf8 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseEdit.str1.4 - 0x00000000 0x1 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseEdit - 0x00000000 0x478 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseRaw - 0x00000000 0x48 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoise - 0x00000000 0x80 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseHistorySetMaxLen - 0x00000000 0xd6 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseHistorySave.str1.4 - 0x00000000 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseHistorySave - 0x00000000 0x6a esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.linenoiseHistoryLoad.str1.4 - 0x00000000 0x2 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseHistoryLoad - 0x00000000 0xa6 esp-idf/console/libconsole.a(linenoise.c.obj) - .text.linenoiseSetMaxLineLen - 0x00000000 0x18 esp-idf/console/libconsole.a(linenoise.c.obj) - .rodata.__func__.0 - 0x00000000 0xb esp-idf/console/libconsole.a(linenoise.c.obj) - .sdata.allow_empty - 0x00000000 0x1 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.history 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.history_len - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sdata.history_max_len - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.dumbmode - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.mlmode 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sdata.max_cmdline_length - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.freeHintsCallback - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.hintsCallback - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .sbss.completionCallback - 0x00000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_info 0x00000000 0x3084 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_abbrev 0x00000000 0x4aa esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_loc 0x00000000 0x150d esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_aranges - 0x00000000 0x190 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_ranges 0x00000000 0x268 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_line 0x00000000 0x3430 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_str 0x00000000 0xe11 esp-idf/console/libconsole.a(linenoise.c.obj) - .comment 0x00000000 0x30 esp-idf/console/libconsole.a(linenoise.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_frame 0x00000000 0x674 esp-idf/console/libconsole.a(linenoise.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/console/libconsole.a(linenoise.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .text.arg_dstr_set - 0x00000000 0xbe esp-idf/console/libconsole.a(arg_dstr.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(arg_end.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(arg_end.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(arg_end.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(arg_int.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(arg_int.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_int0 - 0x00000000 0x18 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_int1 - 0x00000000 0x18 esp-idf/console/libconsole.a(arg_int.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(arg_str.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(arg_str.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(arg_str.c.obj) - .text.arg_str1 - 0x00000000 0x18 esp-idf/console/libconsole.a(arg_str.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(arg_utils.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(arg_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.dbg_printf - 0x00000000 0x38 esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.arg_set_panic - 0x00000000 0xa esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.argtable3_xcalloc - 0x00000000 0x40 esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.argtable3_xrealloc - 0x00000000 0x34 esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.merge 0x00000000 0x118 esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.arg_mgsort - 0x00000000 0x7e esp-idf/console/libconsole.a(arg_utils.c.obj) - .text 0x00000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) - .data 0x00000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) - .bss 0x00000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_option - 0x00000000 0x64 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_syntax - 0x00000000 0x54 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_syntaxv_ds - 0x00000000 0x190 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_syntaxv - 0x00000000 0x54 esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_glossary_gnu_ds.str1.4 - 0x00000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_glossary_gnu_ds - 0x00000000 0xf2 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_glossary_gnu - 0x00000000 0x4c esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_nullcheck - 0x00000000 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_free - 0x00000000 0x3e esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_freetable - 0x00000000 0x40 esp-idf/console/libconsole.a(argtable3.c.obj) - .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_dispatch_custom_event - 0x00000000 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_disconnect.str1.4 - 0x00000000 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_disconnect - 0x00000000 0x78 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_reconnect.str1.4 - 0x00000000 0x2e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_reconnect - 0x00000000 0x94 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_enqueue - 0x00000000 0xee esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_unregister_event - 0x00000000 0x2a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_get_outbox_size - 0x00000000 0x4a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .srodata.MQTT_EVENTS - 0x00000000 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.mqtt_header_complete - 0x00000000 0x78 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.mqtt_msg_pingresp - 0x00000000 0x2a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .text.outbox_delete_single_expired - 0x00000000 0xa2 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text.intr_handler_get_arg - 0x00000000 0x14 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata.str1.4 - 0x00000000 0xfd esp-idf/riscv/libriscv.a(interrupt.c.obj) - .data.riscv_excp_names - 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .rodata.intr_matrix_route.str1.4 - 0x00000000 0x70 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text.intr_matrix_route - 0x00000000 0x3e esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text.esprv_get_interrupt_unmask - 0x00000000 0xa esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text.esprv_int_get_type - 0x00000000 0x18 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text.esprv_int_get_priority - 0x00000000 0x10 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text.esprv_int_is_vectored - 0x00000000 0x4 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .rodata.__func__.0 - 0x00000000 0x18 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_info 0x00000000 0x32f esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_abbrev 0x00000000 0x1ae esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_loc 0x00000000 0x1df esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_ranges 0x00000000 0x48 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_line 0x00000000 0x404 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_str 0x00000000 0x371 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .comment 0x00000000 0x30 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .debug_frame 0x00000000 0x70 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_get_io_config - 0x00000000 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_set_drive_capability - 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_get_drive_capability - 0x00000000 0x36 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_hold_en - 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_hold_dis - 0x00000000 0x42 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_iomux_out - 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_force_hold_all - 0x00000000 0x32 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_force_unhold_all - 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_ll_deepsleep_wakeup_enable.str1.4 - 0x00000000 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_deepsleep_wakeup_enable - 0x00000000 0x84 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_ll_deepsleep_wakeup_disable - 0x00000000 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_level - 0x00000000 0x8c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_pull_mode - 0x00000000 0x166 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_reset_pin.str1.4 - 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_reset_pin - 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_isr_handler_remove - 0x00000000 0xfe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_wakeup_enable.str1.4 - 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_wakeup_enable - 0x00000000 0x102 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_wakeup_disable - 0x00000000 0xb2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_set_drive_capability.str1.4 - 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_drive_capability - 0x00000000 0xfa esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_get_drive_capability.str1.4 - 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_get_drive_capability - 0x00000000 0xf6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_hold_en.str1.4 - 0x00000000 0x2f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_hold_en - 0x00000000 0xbe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_hold_dis - 0x00000000 0xbe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_deep_sleep_hold_en - 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_deep_sleep_hold_dis - 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.2 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.3 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_iomux_in - 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_iomux_out - 0x00000000 0x22 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_deep_sleep_wakeup_enable.str1.4 - 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_deep_sleep_wakeup_enable - 0x00000000 0xd8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_deep_sleep_wakeup_disable - 0x00000000 0x98 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_dump_io_configuration.str1.4 - 0x00000000 0x1d4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_dump_io_configuration - 0x00000000 0x2ee esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__func__.2 - 0x00000000 0x21 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__func__.3 - 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.16 - 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.17 - 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.18 - 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.19 - 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.20 - 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.21 - 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.23 - 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__func__.26 - 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.29 - 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.30 - 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_bundle_detach - 0x00000000 0x20 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_bundle_set - 0x00000000 0x12 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.find_default_boot_partition - 0x00000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.check_invalid_otadata - 0x00000000 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.get_last_invalid_otadata - 0x00000000 0x3a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_write_with_offset.str1.4 - 0x00000000 0xb2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_write_with_offset - 0x00000000 0x116 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_get_boot_partition.str1.4 - 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_boot_partition - 0x00000000 0xb4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_bootloader_description - 0x00000000 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_last_invalid_partition - 0x00000000 0x76 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_erase_last_boot_app_partition - 0x00000000 0xf6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.__func__.4 - 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.bootloader_util_regions_overlap.str1.4 - 0x00000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.bootloader_util_regions_overlap - 0x00000000 0x68 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_unload_all - 0x00000000 0x82 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_register_external - 0x00000000 0x16e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_deregister_external - 0x00000000 0x80 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_copy.str1.4 - 0x00000000 0x137 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_copy - 0x00000000 0x222 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.__func__.0 - 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.__func__.4 - 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text.esp_partition_get_sha256 - 0x00000000 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text.esp_partition_check_identity - 0x00000000 0x68 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_reset - 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .rodata.esp_efuse_update_secure_version.str1.4 - 0x00000000 0x139 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_update_secure_version - 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_check_long_hold_gpio_level - 0x00000000 0xca esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_check_long_hold_gpio - 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .rodata.bootloader_common_label_search.str1.4 - 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_label_search - 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .rodata.bootloader_common_erase_part_type_data.str1.4 - 0x00000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_erase_part_type_data - 0x00000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_get_sha256_of_partition - 0x00000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_vddsdio_configure - 0x00000000 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_info 0x00000000 0x2492 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_abbrev 0x00000000 0x390 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_loc 0x00000000 0x592 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_ranges 0x00000000 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_line 0x00000000 0xd71 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_str 0x00000000 0x1ee5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_frame 0x00000000 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_write_protect_crypt_cnt - 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_get_flash_encryption_mode - 0x00000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_init_checks.str1.4 - 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_init_checks - 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_set_release_mode.str1.4 - 0x00000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_set_release_mode - 0x00000000 0x140 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 - 0x00000000 0x3c7 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_cfg_verify_release_mode - 0x00000000 0x3a6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .text.bootloader_random_enable - 0x00000000 0x198 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .text.bootloader_random_disable - 0x00000000 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_info 0x00000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_abbrev 0x00000000 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_line 0x00000000 0x595 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_str 0x00000000 0x288 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.6 0x00000000 0x6a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_write - 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_sector - 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_range - 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.0 0x00000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.3 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_enable_wp - 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_spi_flash_reset - 0x00000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.7 0x00000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.13 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_get_spi_mode - 0x00000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.__func__.0 - 0x00000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.11 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.10 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.5 0x00000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.bootloader_spi_flash_resume - 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .rodata.print_flash_info.str1.4 - 0x00000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.print_flash_info - 0x00000000 0x1ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.update_flash_config - 0x00000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.bootloader_flash_update_size - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.0 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.1 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.2 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.4 0x00000000 0xc2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.3 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.5 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.bootloader_init_spi_flash - 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.index_to_partition - 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.check_anti_rollback - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.try_load_partition - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.s_flash_seg_needs_map - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.log_invalid_app_partition.str1.4 - 0x00000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.log_invalid_app_partition - 0x00000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.write_otadata.str1.4 - 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.write_otadata - 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.set_actual_ota_seq.str1.4 - 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_actual_ota_seq - 0x00000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_common_read_otadata.str1.4 - 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_read_otadata - 0x00000000 0xca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_get_partition_description - 0x00000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_partition_table.str1.4 - 0x00000000 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_partition_table - 0x00000000 0x2e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_get_selected_boot_partition.str1.4 - 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_get_selected_boot_partition - 0x00000000 0x202 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_reset - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_atexit - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.set_cache_and_start_app.str1.4 - 0x00000000 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_cache_and_start_app - 0x00000000 0x1fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.unpack_load_app.str1.4 - 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.unpack_load_app - 0x00000000 0x122 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.load_image.str1.4 - 0x00000000 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.load_image - 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_boot_image.str1.4 - 0x00000000 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_boot_image - 0x00000000 0x1d2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_hex_to_str - 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_flash_contents - 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.__func__.0 - 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.__func__.1 - 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .sbss.ota_has_initial_contents - 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .rodata.esp_partition_table_verify.str1.4 - 0x00000000 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text.esp_partition_table_verify - 0x00000000 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_info 0x00000000 0x655 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_abbrev 0x00000000 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_loc 0x00000000 0x1fc esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_ranges 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_line 0x00000000 0x7e6 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_str 0x00000000 0x4be esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image_no_verify - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_metadata - 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader_data - 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader - 0x00000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_flash_size - 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.17 0x00000000 0x48 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_reserve_block_with_caps - 0x00000000 0x14c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 - 0x00000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_dump_mapped_blocks - 0x00000000 0x1d0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.5 0x00000000 0x264 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_paddr_to_vaddr.str1.4 - 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_paddr_to_vaddr - 0x00000000 0xa2 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__FUNCTION__.6 - 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.15 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.14 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.13 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.12 0x00000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.11 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.10 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.9 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.8 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.7 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.6 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_aligned_malloc_internal - 0x00000000 0xf4 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.esp_cache_msync.str1.4 - 0x00000000 0x230 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_msync - 0x00000000 0x2b6 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_aligned_malloc - 0x00000000 0x12 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_aligned_malloc_prefer - 0x00000000 0x96 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_aligned_calloc - 0x00000000 0xda esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text.esp_cache_aligned_calloc_prefer - 0x00000000 0x10a esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0x22 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__func__.5 - 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .rodata.__FUNCTION__.6 - 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.2 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.3 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .rodata.esp_enable_cache_wrap.str1.4 - 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .text.esp_enable_cache_wrap - 0x00000000 0x3e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_find_non_contiguous_block_nums - 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_pages_to_bytes - 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_merge_contiguous_pages - 0x00000000 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_mmap_pages - 0x00000000 0x15c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_mmap_dump - 0x00000000 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.spi_flash_phys2cache.str1.4 - 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_phys2cache - 0x00000000 0x54 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.__func__.0 - 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.__func__.2 - 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.3 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.6 0x00000000 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .dram1.1 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.11 0x00000000 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.find_region - 0x00000000 0x5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_id - 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_unique_chip_id - 0x00000000 0xb0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.8 0x00000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.14 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.15 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.17 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.18 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_protectable_regions - 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.19 0x00000000 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.20 0x00000000 0xe8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.26 0x00000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.27 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.esp_flash_suspend_cmd_init.str1.4 - 0x00000000 0x7c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_suspend_cmd_init - 0x00000000 0xbc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_app_disable_protect - 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.use_bus_lock - 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.bus_using_iomux - 0x00000000 0xc8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.cs_using_iomux - 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.acquire_spi_device.str1.4 - 0x00000000 0x87 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.acquire_spi_device - 0x00000000 0x120 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .iram1.0 0x00000000 0x15a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_remove_flash_device - 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.spi_bus_add_flash_device.str1.4 - 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_add_flash_device - 0x00000000 0x196 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.__func__.2 - 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.use_bus_lock - 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.3 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.5 0x00000000 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.2 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.4 0x00000000 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_init_os_functions - 0x00000000 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_deinit_os_functions - 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_init_main_bus_lock - 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_set_dangerous_write_protection - 0x00000000 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .rodata.esp_flash_spi23_default_os_functions - 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.3 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.5 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text.memspi_host_read - 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .rodata._esp_error_check_failed_without_abort.str1.4 - 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .text._esp_error_check_failed_without_abort - 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.4 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.5 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.6 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.7 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_register_freertos_idle_hook - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_idle_hook_for_cpu - 0x00000000 0x66 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_idle_hook - 0x00000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook_for_cpu - 0x00000000 0x66 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook - 0x00000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.delete_entry - 0x00000000 0x186 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_stop - 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_restart - 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_add_user - 0x00000000 0xa6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_reset_user.str1.4 - 0x00000000 0x2b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reset_user - 0x00000000 0x10c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete - 0x00000000 0x68 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.unsubscribe_idle.str1.4 - 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.unsubscribe_idle - 0x00000000 0x9c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_reconfigure.str1.4 - 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reconfigure - 0x00000000 0x12c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_deinit.str1.4 - 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_deinit - 0x00000000 0xe8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete_user - 0x00000000 0x96 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_status - 0x00000000 0x8c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.4 - 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.6 - 0x00000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.9 - 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__func__.10 - 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.11 - 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_reconfigure - 0x00000000 0x5e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .rodata.esp_task_wdt_impl_timer_free.str1.4 - 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_free - 0x00000000 0xb6 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_stop - 0x00000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .rodata.__func__.0 - 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_unmap_all - 0x00000000 0x54 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_init - 0x00000000 0x1a esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_bytes_to_pages - 0x00000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.__func__.10 - 0x00000000 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_clock_output_setup - 0x00000000 0x4e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_clock_output_teardown - 0x00000000 0x46 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_deinit - 0x00000000 0x14 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_get_clock_source - 0x00000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_get_time - 0x00000000 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_get_alarm_value - 0x00000000 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_counter_value_advance - 0x00000000 0x78 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_hw_flow_ctrl - 0x00000000 0x4a esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_hw_flow_ctrl - 0x00000000 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_sw_flow_ctrl - 0x00000000 0x76 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_at_cmd_char - 0x00000000 0x76 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_tx_idle_num - 0x00000000 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_dtr - 0x00000000 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_wakeup_thrd - 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_wakeup_thrd - 0x00000000 0xe esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_mode - 0x00000000 0x10e esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_is_hw_rts_en - 0x00000000 0xa esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_inverse_signal - 0x00000000 0xb8 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_loop_back - 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_init - 0x00000000 0x68 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_max_rx_timeout_thrd - 0x00000000 0x1e esp-idf/hal/libhal.a(uart_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text.gpio_hal_isolate_in_sleep - 0x00000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .rodata.rtc_cntl_hal_dma_link_init.str1.4 - 0x00000000 0x73 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .text.rtc_cntl_hal_dma_link_init - 0x00000000 0xde esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .text.rtc_cntl_hal_enable_cpu_retention - 0x00000000 0x54 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .iram1.0 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .rodata.__func__.0 - 0x00000000 0x1b esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_info 0x00000000 0x44c esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_abbrev 0x00000000 0x247 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_loc 0x00000000 0x1ff esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_ranges 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_line 0x00000000 0x559 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_str 0x00000000 0x3fa esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_buffers.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_buffers.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_buffers.c.obj) - .text.log_buffer_hex_line - 0x00000000 0x52 esp-idf/log/liblog.a(log_buffers.c.obj) - .text.log_buffer_char_line - 0x00000000 0x28 esp-idf/log/liblog.a(log_buffers.c.obj) - .text.esp_log_buffer_hex_internal - 0x00000000 0x1c esp-idf/log/liblog.a(log_buffers.c.obj) - .text.esp_log_buffer_char_internal - 0x00000000 0x1c esp-idf/log/liblog.a(log_buffers.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .rodata.esp_log_util_cvt_dec.str1.4 - 0x00000000 0xb esp-idf/log/liblog.a(util.c.obj) - .text.esp_log_util_cvt_dec - 0x00000000 0x20 esp-idf/log/liblog.a(util.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .rodata.spi_periph_signal - 0x00000000 0x48 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_info 0x00000000 0x179e esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_abbrev 0x00000000 0x1bd esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_line 0x00000000 0x24c esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_str 0x00000000 0x1221 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text.convert_key_type - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text.write_and_padd - 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text.esp_hmac_calculate - 0x00000000 0x2b4 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .rodata.esp_hmac_jtag_enable.str1.4 - 0x00000000 0x5e esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text.esp_hmac_jtag_enable - 0x00000000 0xea esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text.esp_hmac_jtag_disable - 0x00000000 0x76 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_info 0x00000000 0x5ce1 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_abbrev 0x00000000 0x39a esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_loc 0x00000000 0x649 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_ranges 0x00000000 0x98 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_line 0x00000000 0xe8d esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_str 0x00000000 0x51a1 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .debug_frame 0x00000000 0xc0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_dma_ext_capable - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_external_ram - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_enable - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_get_freq - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_mac_addr_len_get - 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_iface_mac_addr_set - 0x00000000 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_base_mac_addr_set - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_efuse_mac_get_custom - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_derive_local_mac - 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_base_mac_addr_get - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .text.esp_gpio_revoke - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .text.esp_gpio_is_reserved - 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text.temp_sensor_sync_tsens_idx - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.try_acquire_free_dev - 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.11 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.10 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.req_core - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.13 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.7 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.16 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.14 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.12 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_init_lock - 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.spi_bus_deinit_lock.str1.4 - 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_deinit_lock - 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_register_dev - 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_unregister_dev - 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_set_bg_control - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.21 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.22 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.str1.4 - 0x00000000 0xcf esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.24 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.26 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.27 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.28 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.29 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_bg_request - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.30 0x00000000 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.31 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.32 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.33 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.34 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .rodata.__func__.3 - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .dram1.0 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .sdata.s_spinlock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_acquire - 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_release - 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_try_acquire - 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc2_lock - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc1_lock - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerCreateStatic.str1.4 - 0x00000000 0x2a esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerCreateStatic - 0x00000000 0x7c esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerGetTimerDaemonTaskHandle.str1.4 - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerGetTimerDaemonTaskHandle - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerGetPeriod - 0x00000000 0x32 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.vTimerSetReloadMode - 0x00000000 0x66 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerGetReloadMode - 0x00000000 0x56 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.uxTimerGetReloadMode - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerGetExpiryTime - 0x00000000 0x32 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerGetStaticBuffer.str1.4 - 0x00000000 0x1e esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerGetStaticBuffer - 0x00000000 0x40 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.pcTimerGetName - 0x00000000 0x32 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerIsTimerActive - 0x00000000 0x56 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.vTimerSetTimerID - 0x00000000 0x4e esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerPendFunctionCallFromISR - 0x00000000 0x2c esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerPendFunctionCall.str1.4 - 0x00000000 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerPendFunctionCall - 0x00000000 0x54 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.0 - 0x00000000 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.1 - 0x00000000 0x11 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.3 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.4 - 0x00000000 0xf esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.5 - 0x00000000 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.6 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.7 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.8 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.9 - 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.10 - 0x00000000 0x1f esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.12 - 0x00000000 0x13 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.xEventGroupCreateStatic - 0x00000000 0xac esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.xEventGroupGetBitsFromISR - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.xEventGroupSync - 0x00000000 0x15e esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.xEventGroupGetStaticBuffer.str1.4 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.xEventGroupGetStaticBuffer - 0x00000000 0x68 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.vEventGroupSetBitsCallback - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.vEventGroupClearBitsCallback - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.__func__.0 - 0x00000000 0x1b esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.__func__.5 - 0x00000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.__func__.7 - 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.xStreamBufferGenericCreateWithCaps - 0x00000000 0x96 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.vStreamBufferGenericDeleteWithCaps - 0x00000000 0x90 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .rodata.__func__.0 - 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvBytesInBuffer - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.prvInitialiseNewStreamBuffer.str1.4 - 0x00000000 0x82 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvInitialiseNewStreamBuffer - 0x00000000 0x7c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.prvWriteBytesToBuffer.str1.4 - 0x00000000 0x81 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvWriteBytesToBuffer - 0x00000000 0xee esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvWriteMessageToBuffer - 0x00000000 0x64 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.prvReadBytesFromBuffer.str1.4 - 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvReadBytesFromBuffer - 0x00000000 0xc4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvReadMessageFromBuffer - 0x00000000 0x66 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferGenericCreate.str1.4 - 0x00000000 0xa3 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGenericCreate - 0x00000000 0x110 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferGenericCreateStatic.str1.4 - 0x00000000 0x56 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGenericCreateStatic - 0x00000000 0x144 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferGetStaticBuffers.str1.4 - 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGetStaticBuffers - 0x00000000 0x90 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.vStreamBufferDelete - 0x00000000 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReset - 0x00000000 0x70 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSetTriggerLevel - 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSpacesAvailable - 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferBytesAvailable - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferSend.str1.4 - 0x00000000 0x62 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSend - 0x00000000 0x1b8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSendFromISR - 0x00000000 0xe6 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferReceive.str1.4 - 0x00000000 0x41 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceive - 0x00000000 0x162 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.xStreamBufferNextMessageLengthBytes.str1.4 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferNextMessageLengthBytes - 0x00000000 0x8c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceiveFromISR - 0x00000000 0xd8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferIsEmpty - 0x00000000 0x3e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferIsFull - 0x00000000 0x54 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSendCompletedFromISR - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceiveCompletedFromISR - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.0 - 0x00000000 0x25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.1 - 0x00000000 0x22 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.2 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.3 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.4 - 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.5 - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.6 - 0x00000000 0x17 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.7 - 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.8 - 0x00000000 0x19 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.9 - 0x00000000 0x16 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.11 - 0x00000000 0x12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.12 - 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.13 - 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.14 - 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.15 - 0x00000000 0x13 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.16 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.17 - 0x00000000 0x1e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.18 - 0x00000000 0x21 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.19 - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.20 - 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .rodata.__func__.21 - 0x00000000 0x1b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_info 0x00000000 0x20cd esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_abbrev 0x00000000 0x34e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_loc 0x00000000 0x26e1 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_aranges - 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_ranges 0x00000000 0x108 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_line 0x00000000 0x1cdf esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_str 0x00000000 0xadc esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_frame 0x00000000 0x3d4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_1 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_1 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_1 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_1 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_1 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_1 - 0x00000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_1 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_1 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_1 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_1 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_1 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_1 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_1 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_1 - 0x00000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_1 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_1 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_add_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_1 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_sub_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_1 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_and_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_1 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_or_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_1 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_xor_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_1 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_1 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_1 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_1 - 0x00000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_1 - 0x00000000 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_1 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_1 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_2 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_2 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_2 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_2 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_2 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_2 - 0x00000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_2 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_2 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_2 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_2 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_2 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_2 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_2 - 0x00000000 0x46 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_2 - 0x00000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_2 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_2 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_add_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_2 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_sub_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_2 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_and_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_2 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_or_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_2 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_xor_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_2 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_2 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_2 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_2 - 0x00000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_2 - 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_2 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_2 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_4 - 0x00000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_4 - 0x00000000 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_4 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_4 - 0x00000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_4 - 0x00000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_4 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_4 - 0x00000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_4 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_4 - 0x00000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_4 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_4 - 0x00000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_4 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_4 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_4 - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_4 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_4 - 0x00000000 0x28 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_add_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_4 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_sub_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_4 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_and_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_4 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_or_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_4 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_xor_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_4 - 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_4 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_4 - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_4 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_4 - 0x00000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_4 - 0x00000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_4 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_8 - 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_8 - 0x00000000 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_8 - 0x00000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_8 - 0x00000000 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_8 - 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_8 - 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_8 - 0x00000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_8 - 0x00000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_8 - 0x00000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_add_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_8 - 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_sub_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_8 - 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_and_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_8 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_or_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_8 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_xor_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_8 - 0x00000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_8 - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_8 - 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_8 - 0x00000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_8 - 0x00000000 0x5e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_8 - 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_8 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange - 0x00000000 0x6e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.print_timer_info.str1.4 - 0x00000000 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.print_timer_info - 0x00000000 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.0 0x00000000 0x12a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_deinit - 0x00000000 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.esp_timer_dump.str1.4 - 0x00000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_dump - 0x00000000 0x116 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.11 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.12 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.13 0x00000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .text.ets_timer_init - 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .text.ets_timer_deinit - 0x00000000 0x2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .text 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvGetFreeSize.str1.4 - 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetFreeSize - 0x00000000 0x4e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreateNoSplit - 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferSendAcquire - 0x00000000 0x9e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferSendComplete - 0x00000000 0xee esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferReceiveSplit.str1.4 - 0x00000000 0x88 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveSplit - 0x00000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveSplitFromISR - 0x00000000 0x6c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveUpToFromISR - 0x00000000 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferAddToQueueSetRead.str1.4 - 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferAddToQueueSetRead - 0x00000000 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferRemoveFromQueueSetRead - 0x00000000 0x74 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferPrintInfo.str1.4 - 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferPrintInfo - 0x00000000 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.2 - 0x00000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.3 - 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.5 - 0x00000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.6 - 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.12 - 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.14 - 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.15 - 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.22 - 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.23 - 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_isr_post - 0x00000000 0x2e esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_loop_delete_default - 0x00000000 0x2c esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_isr_post_to - 0x00000000 0xc4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_dump - 0x00000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.__func__.0 - 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m - 0x00000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_dump - 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_init_partition_ptr - 0x00000000 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_secure_init_partition - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_secure_init - 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_find_key - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_erase_all - 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_str - 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_stats - 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_used_entry_count - 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_generate_keys - 0x00000000 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_read_security_cfg - 0x00000000 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_register_security_scheme - 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_get_default_security_scheme - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_generate_keys_v2 - 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_read_security_cfg_v2 - 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_entry_find_in_handle - 0x00000000 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_erase_partition_ptr - 0x00000000 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ - 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_setIsEimPKcT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i16 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ - 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_setIlEimPKcT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i32 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ - 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_setIxEimPKcT_ - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i64 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ - 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_setIyEimPKcT_ - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u64 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_getIsEimPKcPT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i16 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_getIlEimPKcPT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i32 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_getIxEimPKcPT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i64 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._Z7nvs_getIyEimPKcPT_ - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u64 - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss._ZL26nvs_sec_default_scheme_cfg - 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZNK3nvs7Storage7isValidEv - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9debugDumpEv - 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th - 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9debugDumpEv - 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t - 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj - 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc - 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t - 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZNK3nvs15NVSHandleSimple11get_storageEv - 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv - 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t - 0x00000000 0xac esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .rodata._ZTVN3nvs9NVSHandleE - 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .text._ZN3nvs4Lock6uninitEv - 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page10setVersionEh - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 - 0x00000000 0xbc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE - 0x00000000 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 - 0x00000000 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZNK3nvs4Page9debugDumpEv - 0x00000000 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 - 0x00000000 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t - 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t - 0x00000000 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ - 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE - 0x00000000 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionD2Ev - 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition4readEjPvj - 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj - 0x00000000 0xca esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionD0Ev - 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t - 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t - 0x00000000 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .rodata._ZTVN3nvs9PartitionE - 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .rodata._ZTVN3nvs21NVSEncryptedPartitionE - 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_info 0x00000000 0x54aa esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_abbrev 0x00000000 0x9df esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_loc 0x00000000 0x549 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_ranges 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_line 0x00000000 0xe3a esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_str 0x00000000 0x45ed esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_frame 0x00000000 0xec esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.check_iomux_pins_quad - 0x00000000 0xbc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.bus_uses_iomux_pins - 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.alloc_dma_chan.str1.4 - 0x00000000 0x130 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.alloc_dma_chan - 0x00000000 0x1ea esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.bus_iomux_pins_set_quad - 0x00000000 0x13e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.bus_iomux_pins_set - 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_irqsource_for_host - 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_irqdma_source_for_host - 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_chan_alloc - 0x00000000 0x82 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_desc_alloc - 0x00000000 0xb4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .iram1.0 0x00000000 0xe0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spicommon_dma_chan_free.str1.4 - 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_chan_free - 0x00000000 0x6e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spicommon_bus_initialize_io.str1.4 - 0x00000000 0x1d2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_bus_initialize_io - 0x00000000 0x744 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_bus_free_io_cfg - 0x00000000 0x62 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_cs_initialize - 0x00000000 0x108 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spicommon_cs_free_io.str1.4 - 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_cs_free_io - 0x00000000 0x54 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_bus_using_iomux - 0x00000000 0xc8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_main_set_lock - 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_lock_get_by_id - 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spi_bus_initialize.str1.4 - 0x00000000 0x173 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_initialize - 0x00000000 0x302 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spi_bus_dma_memory_alloc.str1.4 - 0x00000000 0x3a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_dma_memory_alloc - 0x00000000 0x5e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_get_attr - 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_get_dma_ctx - 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_free - 0x00000000 0xa4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_register_destroy_func - 0x00000000 0x16 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x13 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__func__.2 - 0x00000000 0x15 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__func__.4 - 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__FUNCTION__.5 - 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__func__.6 - 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.__func__.7 - 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .sdata.bus_ctx - 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .data.s_mainbus - 0x00000000 0x68 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_info 0x00000000 0x5096 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_abbrev 0x00000000 0x52a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_loc 0x00000000 0x1354 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_aranges - 0x00000000 0xd8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_ranges 0x00000000 0x160 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_line 0x00000000 0x2b1b esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_str 0x00000000 0x2e89 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_frame 0x00000000 0x2fc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text 0x00000000 0x0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .data 0x00000000 0x0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_module_disable - 0x00000000 0x9e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_clk_div - 0x00000000 0xc6 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_clk_div - 0x00000000 0x120 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_rx_idle_thresh - 0x00000000 0xbe esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_rx_idle_thresh - 0x00000000 0xee esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_mem_block_num - 0x00000000 0x11c esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_mem_block_num - 0x00000000 0x106 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_tx_carrier.str1.4 - 0x00000000 0x2b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_tx_carrier - 0x00000000 0x136 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_mem_pd - 0x00000000 0xbc esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_mem_pd - 0x00000000 0xa0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_tx_stop - 0x00000000 0xca esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_rx_thr_intr_en - 0x00000000 0x17e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_rx_start - 0x00000000 0x138 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_rx_stop - 0x00000000 0xea esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_tx_memory_reset - 0x00000000 0xb8 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_rx_memory_reset - 0x00000000 0xba esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_memory_owner.str1.4 - 0x00000000 0x27 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_memory_owner - 0x00000000 0xf0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_memory_owner - 0x00000000 0xe8 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_tx_loop_mode - 0x00000000 0xb0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_tx_loop_mode - 0x00000000 0xac esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_rx_filter - 0x00000000 0xd0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_source_clk - 0x00000000 0xba esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_source_clk - 0x00000000 0xb4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_idle_level.str1.4 - 0x00000000 0x28 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_idle_level - 0x00000000 0x106 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_idle_level - 0x00000000 0xc0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_status - 0x00000000 0xc0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_rx_intr_en - 0x00000000 0xba esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_err_intr_en - 0x00000000 0xe4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_tx_intr_en - 0x00000000 0xb6 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_fill_tx_items.str1.4 - 0x00000000 0x55 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_fill_tx_items - 0x00000000 0x126 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_isr_deregister - 0x00000000 0x12 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_driver_uninstall - 0x00000000 0x296 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_write_items - 0x00000000 0x2bc esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_ringbuf_handle - 0x00000000 0xd4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_register_tx_end_callback - 0x00000000 0x22 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_translator_set_context - 0x00000000 0x96 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_translator_get_context.str1.4 - 0x00000000 0x27 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_translator_get_context - 0x00000000 0x4e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_get_channel_status.str1.4 - 0x00000000 0x25 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_get_channel_status - 0x00000000 0xc0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_add_channel_to_group - 0x00000000 0xbc esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_remove_channel_from_group - 0x00000000 0xb8 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_tx_loop_count.str1.4 - 0x00000000 0x29 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_set_tx_loop_count - 0x00000000 0xfa esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_enable_tx_loop_autostop - 0x00000000 0x5e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1c esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x16 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.2 - 0x00000000 0x1e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.3 - 0x00000000 0x19 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.5 - 0x00000000 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.7 - 0x00000000 0x1b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.8 - 0x00000000 0x1b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.10 - 0x00000000 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.12 - 0x00000000 0x10 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.14 - 0x00000000 0x15 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.16 - 0x00000000 0x12 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.23 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.24 - 0x00000000 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.25 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.26 - 0x00000000 0xf esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.27 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.28 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.29 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.31 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.32 - 0x00000000 0x12 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.33 - 0x00000000 0x15 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.34 - 0x00000000 0x15 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.35 - 0x00000000 0x15 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.36 - 0x00000000 0x15 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.37 - 0x00000000 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.38 - 0x00000000 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.39 - 0x00000000 0xc esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.40 - 0x00000000 0xd esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.41 - 0x00000000 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.42 - 0x00000000 0xc esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.44 - 0x00000000 0xf esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.45 - 0x00000000 0xf esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.47 - 0x00000000 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.48 - 0x00000000 0x16 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.49 - 0x00000000 0x16 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.50 - 0x00000000 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.51 - 0x00000000 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.52 - 0x00000000 0x10 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.55 - 0x00000000 0x10 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .iram1.2 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .iram1.3 0x00000000 0x26 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.esp_phy_release_init_data - 0x00000000 0x2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 - 0x00000000 0xb3 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.esp_phy_erase_cal_data_in_nvs - 0x00000000 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.__func__.4 - 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .rodata 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.phy_ant_config_check.str1.4 - 0x00000000 0x84 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_ant_config_check - 0x00000000 0x9a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_ant_set_gpio_output - 0x00000000 0x42 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.esp_phy_set_ant_gpio.str1.4 - 0x00000000 0x52 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_set_ant_gpio - 0x00000000 0x11c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_get_ant_gpio - 0x00000000 0x64 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_set_ant - 0x00000000 0x56 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.esp_phy_get_ant.str1.4 - 0x00000000 0x1a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_get_ant - 0x00000000 0x4e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.s_phy_ant_gpio_config - 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.do_stop 0x00000000 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_do_restart - 0x00000000 0x1a esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.do_setserver - 0x00000000 0x1a esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_set_sync_status - 0x00000000 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_set_sync_mode - 0x00000000 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_get_sync_mode - 0x00000000 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_get_sync_status - 0x00000000 0x54 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_set_sync_interval - 0x00000000 0x1a esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_restart - 0x00000000 0x2c esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_get_system_time - 0x00000000 0x3c esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_stop - 0x00000000 0x1c esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_setserver - 0x00000000 0x26 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_getservername - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_getserver - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_getreachability - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.esp_sntp_getoperatingmode - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_poll_inc_sockets_used - 0x00000000 0x36 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_pollscan - 0x00000000 0x1ac esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_poll_dec_sockets_used - 0x00000000 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_thread_init - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_thread_cleanup - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_dbg_get_socket - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_recvmsg - 0x00000000 0x1b4 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_readv - 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_sendmsg - 0x00000000 0x2dc esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_writev - 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_poll.str1.4 - 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_poll - 0x00000000 0x15c esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.__func__.4 - 0x00000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.__func__.5 - 0x00000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.pbuf_free_int - 0x00000000 0x12 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_callbackmsg_new - 0x00000000 0x2a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_callbackmsg_delete - 0x00000000 0x16 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_callbackmsg_trycallback - 0x00000000 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_callbackmsg_trycallback_fromisr - 0x00000000 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_callback_wait - 0x00000000 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.pbuf_free_callback - 0x00000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.mem_free_callback - 0x00000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.3 - 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.4 - 0x00000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.5 - 0x00000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_stop - 0x00000000 0x6e esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_getoperatingmode - 0x00000000 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_getreachability - 0x00000000 0x18 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_setserver - 0x00000000 0x70 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_getserver - 0x00000000 0x1c esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_getkodreceived - 0x00000000 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_getservername - 0x00000000 0x16 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) - .text.lwip_strnstr - 0x00000000 0x70 esp-idf/lwip/liblwip.a(def.c.obj) - .text.lwip_stricmp - 0x00000000 0x3a esp-idf/lwip/liblwip.a(def.c.obj) - .text.lwip_strnistr - 0x00000000 0x68 esp-idf/lwip/liblwip.a(def.c.obj) - .text.lwip_itoa - 0x00000000 0xb4 esp-idf/lwip/liblwip.a(def.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_clear_cache - 0x00000000 0x5a esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_getserver - 0x00000000 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) - .text.ipaddr_ntoa - 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) - .text.ipaddr_ntoa_r - 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) - .text.memp_init_pool - 0x00000000 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - .rodata.memp_malloc_pool.str1.4 - 0x00000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) - .text.memp_malloc_pool - 0x00000000 0x38 esp-idf/lwip/liblwip.a(memp.c.obj) - .text.memp_free_pool - 0x00000000 0x3a esp-idf/lwip/liblwip.a(memp.c.obj) - .rodata.__func__.1 - 0x00000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) - .rodata.__func__.3 - 0x00000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_input.str1.4 - 0x00000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_input - 0x00000000 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_index_to_name - 0x00000000 0x44 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_name_to_index - 0x00000000 0x22 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_set_ipaddr - 0x00000000 0x40 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_set_netmask - 0x00000000 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_set_gw - 0x00000000 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_add_noaddr - 0x00000000 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_create_ip6_linklocal_address.str1.4 - 0x00000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_create_ip6_linklocal_address - 0x00000000 0x126 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_add_ip6_address.str1.4 - 0x00000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_add_ip6_address - 0x00000000 0x130 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.3 - 0x00000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.4 - 0x00000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.16 - 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_header - 0x00000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_dechain.str1.4 - 0x00000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_dechain - 0x00000000 0xa8 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_get_contiguous - 0x00000000 0x62 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_coalesce - 0x00000000 0x3a esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_memcmp - 0x00000000 0x96 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_memfind - 0x00000000 0x68 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_strstr - 0x00000000 0x62 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.__func__.4 - 0x00000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) - .text.raw_disconnect - 0x00000000 0xb6 esp-idf/lwip/liblwip.a(raw.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_listen_with_backlog - 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_txnow - 0x00000000 0x32 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_setprio - 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_debug_state_str - 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_tcp_get_tcp_addrinfo - 0x00000000 0x6e esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_new 0x00000000 0x16 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.str1.4 - 0x00000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_state_str - 0x00000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text.sys_timeouts_deinit - 0x00000000 0x38 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text.sys_restart_timeouts - 0x00000000 0x34 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .srodata.lwip_num_cyclic_timers - 0x00000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_set_struct - 0x00000000 0xa6 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_inform - 0x00000000 0xe4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.__func__.7 - 0x00000000 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_find_addr.str1.4 - 0x00000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_find_addr - 0x00000000 0x8c esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_get_entry - 0x00000000 0xd2 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_acd_probe - 0x00000000 0x34 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_acd_announce - 0x00000000 0x2e esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.__func__.4 - 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.__func__.5 - 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .text.ip4_set_default_multicast_netif - 0x00000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) - .text.ip4_output - 0x00000000 0x84 esp-idf/lwip/liblwip.a(ip4.c.obj) - .rodata.__func__.0 - 0x00000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .text.ip4_addr_netmask_valid - 0x00000000 0x34 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .text.ipaddr_addr - 0x00000000 0x1c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .text.ip4addr_ntoa - 0x00000000 0x1c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .bss.str.0 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .rodata.icmp6_send_response_with_addrs.str1.4 - 0x00000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_send_response_with_addrs - 0x00000000 0x9e esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_packet_too_big - 0x00000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_time_exceeded - 0x00000000 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_time_exceeded_with_addrs - 0x00000000 0x1e esp-idf/lwip/liblwip.a(icmp6.c.obj) - .rodata.__func__.0 - 0x00000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) - .text.ip6_output - 0x00000000 0x194 esp-idf/lwip/liblwip.a(ip6.c.obj) - .rodata.__func__.0 - 0x00000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .text.ip6addr_ntoa - 0x00000000 0x1e esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .bss.str.0 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .text.ip4_netif_exist - 0x00000000 0x40 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_mutex_free - 0x00000000 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_mbox_trypost_fromisr.str1.4 - 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_mbox_trypost_fromisr - 0x00000000 0x5e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_jiffies - 0x00000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_thread_sem_deinit - 0x00000000 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_delay_ms - 0x00000000 0x20 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.__func__.5 - 0x00000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_bind_if - 0x00000000 0x28 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_sendto - 0x00000000 0x58 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_close - 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_recv_udp_raw_netbuf - 0x00000000 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_recv_tcp_pbuf - 0x00000000 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.netconn_recv.str1.4 - 0x00000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_recv - 0x00000000 0xd0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.netconn_thread_init.str1.4 - 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_thread_init - 0x00000000 0x5a esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_thread_cleanup - 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.__func__.0 - 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.__func__.2 - 0x00000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_bind_if - 0x00000000 0x7e esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_new - 0x00000000 0x2c esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_ref - 0x00000000 0x62 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_chain - 0x00000000 0x36 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_data - 0x00000000 0x2c esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_next - 0x00000000 0x1e esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text.netbuf_first - 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .rodata.inet_cksum_pseudo_partial_base.str1.4 - 0x00000000 0x3d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text.inet_cksum_pseudo_partial_base - 0x00000000 0x108 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text.inet_chksum_pseudo_partial - 0x00000000 0x44 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text.ip6_chksum_pseudo_partial - 0x00000000 0x6c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text.ip_chksum_pseudo_partial - 0x00000000 0x28 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .rodata.__func__.0 - 0x00000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .text.esp_netif_next - 0x00000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.tcpip_exec_api - 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcpc_option_api - 0x00000000 0x96 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_find_if_api - 0x00000000 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_add_ip6_address_priv - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_ipc_call_fn - 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_tx_rx_event_api.str1.4 - 0x00000000 0x1f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_tx_rx_event_api - 0x00000000 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_start_api - 0x00000000 0xf4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_stop_api - 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_dhcpc_stop_api.str1.4 - 0x00000000 0x33 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcpc_stop_api - 0x00000000 0x82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_set_hostname_api.str1.4 - 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_hostname_api - 0x00000000 0x7a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_get_clients_by_mac_api - 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_dns_info_api - 0x00000000 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_dns_info_api - 0x00000000 0x74 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_create_ip6_linklocal_api - 0x00000000 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_netif_impl_name_api - 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_ppp_set_auth_api - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_join_ip6_multicast_group_api.str1.4 - 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_join_ip6_multicast_group_api - 0x00000000 0x68 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_leave_ip6_multicast_group_api.str1.4 - 0x00000000 0x39 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_leave_ip6_multicast_group_api - 0x00000000 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_remove_ip6_address_api - 0x00000000 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_set_ip_info_api.str1.4 - 0x00000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_ip_info_api - 0x00000000 0x1f0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_add_ip6_address_api.str1.4 - 0x00000000 0x65 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_add_ip6_address_api - 0x00000000 0x13a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_default_netif - 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_default_netif - 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_ip4_addr - 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_ip4addr_aton - 0x00000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_str_to_ip4 - 0x00000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_str_to_ip6 - 0x00000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_handle_from_netif_impl - 0x00000000 0x6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_deinit - 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_tcpip_exec - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_find_if - 0x00000000 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_destroy - 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_tx_rx_event_enable - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_tx_rx_event_disable - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_transmit - 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcpc_stop - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_get_status - 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_start - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_stop - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_hostname - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_mac - 0x00000000 0xa0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_dhcps_option_api.str1.4 - 0x00000000 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_option_api - 0x00000000 0x296 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_ip_info - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_get_clients_by_mac - 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_dns_info - 0x00000000 0x5e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_get_dns_info.str1.4 - 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_dns_info - 0x00000000 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_ip6_get_addr_type - 0x00000000 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_create_ip6_linklocal - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_ip6_global - 0x00000000 0x88 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_all_preferred_ip6 - 0x00000000 0x14e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_route_prio - 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_option - 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcpc_option - 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_netif_impl_index - 0x00000000 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_netif_impl_name - 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_napt_enable - 0x00000000 0x6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_ppp_set_auth - 0x00000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_napt_disable - 0x00000000 0x6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_link_speed - 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_join_ip6_multicast_group - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_leave_ip6_multicast_group - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_add_ip6_address - 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_remove_ip6_address - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.__func__.2 - 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .srodata.g_wifi_default_mesh_crypto_funcs - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.sha384_vector - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.sha512_vector - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.sha1_vector - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.md5_vector - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_hash_init - 0x00000000 0x10a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_hash_update - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_hash_finish - 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.hmac_sha384_vector - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.hmac_sha384 - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.hmac_md5_vector - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.hmac_md5 - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.aes_128_ctr_encrypt - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_mod_exp - 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_dh_init - 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_global_init - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.crypto_global_deinit - 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_aad_nonce_pv1 - 0x00000000 0x17e esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_get_pn - 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_encrypt_pv1 - 0x00000000 0x106 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_256_decrypt - 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_256_encrypt - 0x00000000 0x13c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_ad - 0x00000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.hwaddr_aton2 - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .rodata.printf_encode.str1.4 - 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.printf_encode - 0x00000000 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.wpa_ssid_txt - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.__hide_aliasing_typecast - 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.wpa_is_hex - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.has_ctrl_char - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.wpa_merge_byte_arrays - 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.str_clear_free - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.os_gmtime - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.os_mktime - 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.rssi_to_rcpi - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.get_param - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .bss.ssid_txt.0 - 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.esp_wifi_deinit - 0x00000000 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.nan_start - 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.nan_stop - 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.nan_input - 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.nan_sm_handle_event - 0x00000000 0x2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.disconnect_and_destroy - 0x00000000 0x40 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_netif_attach_wifi - 0x00000000 0x3c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_wifi_set_default_wifi_nan_handlers - 0x00000000 0x12 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_wifi_clear_default_wifi_driver_and_handlers - 0x00000000 0x78 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_netif_destroy_default_wifi - 0x00000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_netif_create_wifi - 0x00000000 0x7c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 - 0x00000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_netif_create_default_wifi_mesh_netifs - 0x00000000 0x252 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.__func__.0 - 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.__func__.1 - 0x00000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text.esp_wifi_destroy_if_driver - 0x00000000 0x3a esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .srodata.memset_func - 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .data 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .bss 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_method_str.str1.4 - 0x00000000 0xa esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_method_str - 0x00000000 0x22 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_errno_name.str1.4 - 0x00000000 0x2f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_errno_name - 0x00000000 0x44 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_errno_description - 0x00000000 0x44 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_body_is_final - 0x00000000 0x1a esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_parser_version - 0x00000000 0xa esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.__func__.3 - 0x00000000 0x17 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.__func__.4 - 0x00000000 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_strerror_tab - 0x00000000 0x108 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.get_port.str1.4 - 0x00000000 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.get_port - 0x00000000 0x72 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_conn_http_new - 0x00000000 0x9c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_conn_http_new_sync - 0x00000000 0x86 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_conn_http_new_async - 0x00000000 0x74 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_get_global_ca_store - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_get_ciphersuites_list - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_get_ssl_context - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_set_conn_sockfd - 0x00000000 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_get_conn_state - 0x00000000 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_set_conn_state - 0x00000000 0x46 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_init_global_ca_store - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_set_global_ca_store - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_free_global_ca_store - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_get_ssl_context.str1.4 - 0x00000000 0x1f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_get_ssl_context - 0x00000000 0x3e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_init_global_ca_store.str1.4 - 0x00000000 0x29 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_init_global_ca_store - 0x00000000 0x68 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_set_global_ca_store.str1.4 - 0x00000000 0x8d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_set_global_ca_store - 0x00000000 0x34 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_get_global_ca_store - 0x00000000 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_free_global_ca_store - 0x00000000 0x34 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_get_ciphersuites_list - 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .text.esp_transport_get_payload_transport_handle - 0x00000000 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_send_raw.str1.4 - 0x00000000 0x31 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_send_raw - 0x00000000 0x50 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_set_user_agent - 0x00000000 0x52 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_set_headers - 0x00000000 0x52 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_set_auth - 0x00000000 0x52 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_set_config.str1.4 - 0x00000000 0x33 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_set_config - 0x00000000 0x1b0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_get_fin_flag - 0x00000000 0x16 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_get_upgrade_request_status - 0x00000000 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_get_read_opcode - 0x00000000 0x22 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_get_read_payload_len - 0x00000000 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.__FUNCTION__.0 - 0x00000000 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_header - 0x00000000 0x36 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_delete_header - 0x00000000 0x36 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_delete_all_headers - 0x00000000 0x2e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_get_username.str1.4 - 0x00000000 0x2e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_username - 0x00000000 0x42 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_set_username.str1.4 - 0x00000000 0x25 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_username - 0x00000000 0x64 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_password - 0x00000000 0x42 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_password - 0x00000000 0x86 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_authtype - 0x00000000 0x3e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_get_user_data.str1.4 - 0x00000000 0x2d esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_user_data - 0x00000000 0x42 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_user_data - 0x00000000 0x3e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_reset_redirect_counter - 0x00000000 0x10 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_get_errno.str1.4 - 0x00000000 0x23 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_errno - 0x00000000 0x42 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_timeout_ms - 0x00000000 0x10 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_cancel_request - 0x00000000 0x6c esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_set_post_field.str1.4 - 0x00000000 0x32 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_post_field - 0x00000000 0x64 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_is_chunked_response - 0x00000000 0x8 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_transport_type - 0x00000000 0x42 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_auth_data - 0x00000000 0x32 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_flush_response - 0x00000000 0x7c esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_get_url.str1.4 - 0x00000000 0x2f esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_url - 0x00000000 0x70 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_get_chunk_length.str1.4 - 0x00000000 0x25 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_chunk_length - 0x00000000 0x64 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .srodata.ESP_HTTP_CLIENT_EVENT - 0x00000000 0x4 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .rodata.sha256_sprintf.str1.4 - 0x00000000 0x5 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .text.sha256_sprintf - 0x00000000 0xc8 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .text.md5_printf - 0x00000000 0x9e esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .text.http_auth_digest - 0x00000000 0x40e esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x11 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .text.http_header_get - 0x00000000 0x26 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .text.http_header_set_from_string - 0x00000000 0x9a esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .text.http_header_count - 0x00000000 0xe esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .rodata.__FUNCTION__.1 - 0x00000000 0x1c esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .text.http_utils_join_string - 0x00000000 0x9a esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .text.http_utils_get_string_between - 0x00000000 0x8c esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .text.http_utils_get_string_after - 0x00000000 0x8c esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .text.http_utils_str_starts_with - 0x00000000 0x96 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .rodata.__func__.1 - 0x00000000 0x1e esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .rodata.__func__.4 - 0x00000000 0x17 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_get_client_list - 0x00000000 0x70 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_get_global_user_ctx - 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .srodata.ESP_HTTP_SERVER_EVENT - 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_cookie_key_value - 0x00000000 0xfe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_validate_req_ptr - 0x00000000 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_query_key_value - 0x00000000 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_get_url_query_len - 0x00000000 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_get_url_query_str - 0x00000000 0x70 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_get_hdr_value_len - 0x00000000 0xb4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.httpd_req_get_cookie_val.str1.4 - 0x00000000 0x75 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_get_cookie_val - 0x00000000 0xf4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_get_ctx - 0x00000000 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_set_ctx - 0x00000000 0x76 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_update_lru_counter - 0x00000000 0x6e esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_trigger_close - 0x00000000 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_send - 0x00000000 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_resp_send_chunk.str1.4 - 0x00000000 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_resp_send_chunk - 0x00000000 0x1f8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_resp_send_custom_err - 0x00000000 0x14e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_register_err_handler - 0x00000000 0x22 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_req_async_handler_begin - 0x00000000 0xe6 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_req_async_handler_complete - 0x00000000 0x46 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_socket_send - 0x00000000 0x4a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_socket_recv - 0x00000000 0x4a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.__func__.1 - 0x00000000 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .text.httpd_uri_match_wildcard - 0x00000000 0x126 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.httpd_unregister_uri.str1.4 - 0x00000000 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .text.httpd_unregister_uri - 0x00000000 0x108 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.__func__.1 - 0x00000000 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .text.cs_recv_from_ctrl_sock - 0x00000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .data 0x00000000 0x0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_https_ota_get_status_code - 0x00000000 0x20 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_https_ota_get_image_size - 0x00000000 0x12 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota.str1.4 - 0x00000000 0x2d esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_https_ota - 0x00000000 0x86 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .srodata.ESP_HTTPS_OTA_EVENT - 0x00000000 0x4 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text.mbedtls_ssl_ciphersuite_from_string - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .rodata.mbedtls_ssl_get_ciphersuite_name.str1.4 - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text.mbedtls_ssl_get_ciphersuite_name - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text.mbedtls_ssl_get_ciphersuite_id - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_check_record - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_reset_in_out_pointers - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_check_pending - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_get_record_expansion - 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_set_inbound_transform - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_set_outbound_transform - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_send_fatal_handshake_failure - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_close_notify - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_conf_version_check - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_conf_check - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_tls12_session_save - 0x00000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_session_save - 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_tls12_session_load - 0x00000000 0x2ca esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_session_load - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_get_handshake_transcript_sha384 - 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_get_handshake_transcript_sha256 - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_tls_prf - 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_extension_id - 0x00000000 0x162 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_extension_mask - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_add_hs_msg_to_checksum - 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_reset_msg_layer - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_dtls_badmac_limit - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_dbg - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_read_timeout - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_timer_cb - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_session_cache - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_cert_profile - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_hs_sni - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_hs_own_cert - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_hs_ca_chain - 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_hs_dn_hints - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_hs_authmode - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_verify - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_sig_algs - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_groups - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_sni - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_alpn_protocol - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_cert_req_ca_list - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_encrypt_then_mac - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_extended_master_secret - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_max_frag_len - 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_legacy_renegotiation - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_renegotiation_enforced - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_renegotiation_period - 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_conf_session_tickets_cb - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_export_keys_cb - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_ciphersuite_id_from_ssl - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_ciphersuite - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.mbedtls_ssl_get_version.str1.4 - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_version - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_input_max_frag_len - 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_max_in_record_payload - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_peer_cert - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_save - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_copy - 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_session - 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_session - 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_setup - 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_reset_int - 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_reset - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_session_load - 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_psa_curve_info_from_tls_id - 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_handshake_transcript - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .srodata.ssl_serialized_session_header - 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.__wrap_mbedtls_ssl_session_reset - 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.__wrap_mbedtls_ssl_close_notify - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.net_prepare - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_connect - 0x00000000 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_bind - 0x00000000 0x142 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_accept - 0x00000000 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_set_block - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_set_nonblock - 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_usleep - 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_recv_timeout - 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_ssl_conf_preference_order - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_reset_add_tx_buffer - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_reset_free_tx_buffer - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_reset_add_rx_buffer - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_reset_free_rx_buffer - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mpi_get_digit - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_lt_mpi_ct - 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_read_string - 0x00000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_read_file - 0x00000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mpi_write_hlp - 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .rodata.mbedtls_mpi_write_string.str1.4 - 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_write_string - 0x00000000 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .rodata.mbedtls_mpi_write_file.str1.4 - 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_write_file - 0x00000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .rodata.mbedtls_mpi_self_test.str1.4 - 0x00000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_self_test - 0x00000000 0x418 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .rodata.gcd_pairs - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_add_if - 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_mul - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_list - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_info_from_string - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_update_ad - 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_write_tag - 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_check_tag - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .sbss.supported_init - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .bss.mbedtls_cipher_supported - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.cmac_test_subkeys.str1.4 - 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.cmac_test_subkeys - 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.mbedtls_cipher_cmac_reset - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.mbedtls_cipher_cmac - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.cmac_test_wth_cipher.str1.4 - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.cmac_test_wth_cipher - 0x00000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.mbedtls_aes_cmac_prf_128 - 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.test_aes128_cmac_prf.str1.4 - 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.test_aes128_cmac_prf - 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.mbedtls_cmac_self_test.str1.4 - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.mbedtls_cmac_self_test - 0x00000000 0x192 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.PRFT 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.PRFM 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.PRFKlen - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.PRFK 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_256_expected_result - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_256_subkeys - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_256_key - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_192_expected_result - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_192_subkeys - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_192_key - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_128_expected_result - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_128_subkeys - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_128_key - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.aes_message_lengths - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .rodata.test_message - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.ctr_drbg_self_test_entropy - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_set_prediction_resistance - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_set_entropy_len - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_set_nonce_len - 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_set_reseed_interval - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_update - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_write_seed_file - 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_update_seed_file - 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.mbedtls_ctr_drbg_self_test.str1.4 - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_self_test - 0x00000000 0x29e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .sbss.test_offset - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.result_nopr - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.result_pr - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.pers_nopr - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.pers_pr - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.entropy_source_nopr - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .rodata.entropy_source_pr - 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.mbedtls_ecdh_can_do - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.mbedtls_ecdh_get_grp_id - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_sign - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_sign_det_ext - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_verify - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_genkey - 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_from_keypair - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.self_test_rng - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.self_test_adjust_exponent - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_curve_info_from_name - 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_point_read_string - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_tls_read_group - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata.self_test_point.str1.4 - 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.self_test_point - 0x00000000 0x16c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_set_public_key - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_write_public_key - 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_keypair_calc_public - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_keypair_get_group_id - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_export - 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata.mbedtls_ecp_self_test.str1.4 - 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_self_test - 0x00000000 0x1ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .sdata.state.0 - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_source_self_test_check_bits - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.entropy_dummy_source - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_source_self_test_gather - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_update_manual - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_gather - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .rodata.mbedtls_entropy_write_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_write_seed_file - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .rodata.mbedtls_entropy_update_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_update_seed_file - 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .rodata.mbedtls_entropy_source_self_test.str1.4 - 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_source_self_test - 0x00000000 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .rodata.mbedtls_entropy_self_test.str1.4 - 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_self_test - 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.hmac_drbg_self_test_entropy - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_seed - 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_set_prediction_resistance - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_set_entropy_len - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_set_reseed_interval - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_write_seed_file - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_update_seed_file - 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.mbedtls_hmac_drbg_self_test.str1.4 - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_self_test - 0x00000000 0x28c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .sbss.test_offset - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.result_nopr - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.entropy_nopr - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.result_pr - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .rodata.entropy_pr - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_error_from_psa - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_list - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_info_from_string - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_get_name - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .rodata.mbedtls_md_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_file - 0x00000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text.mbedtls_md_hmac - 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .rodata.str1.4 - 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .rodata.md_names - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .rodata.supported_digests - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .rodata.mbedtls_md5_self_test.str1.4 - 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .text.mbedtls_md5_self_test - 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .rodata.md5_test_sum - 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .rodata.md5_test_buflen - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .rodata.md5_test_buf - 0x00000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.psa_extend_key_usage_flags - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.psa_algorithm_for_rsa - 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_check_pair - 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_debug - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .rodata.mbedtls_pk_get_name.str1.4 - 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_get_name - 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.copy_from_psa - 0x00000000 0x35a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_copy_from_psa - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_copy_public_from_psa - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_sign_ext - 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_get_psa_attributes - 0x00000000 0x258 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.import_public_into_psa - 0x00000000 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.import_pair_into_psa - 0x00000000 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_import_into_psa - 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .rodata.mbedtls_pk_load_file.str1.4 - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.mbedtls_pk_load_file - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.mbedtls_pk_parse_keyfile - 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.mbedtls_pk_parse_public_keyfile - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .rodata.mbedtls_pk_write_pubkey_pem.str1.4 - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.mbedtls_pk_write_pubkey_pem - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_set_calloc_free - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_setup - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_teardown - 0x00000000 0x2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_extend_key_usage_flags - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.key_type_is_raw_bytes - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_get_initialized - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_get_drivers_initialized - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_key_can_do - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_policy_algorithm_intersection - 0x00000000 0x522 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_algorithm_permits - 0x00000000 0x436 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_policy_permits - 0x00000000 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_restrict_key_policy - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_key_policy - 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_optional_attributes - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_finalize_alg_and_key_validation - 0x00000000 0x2dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_verify_check_alg - 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_get_base_algorithm - 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_check_nonce_length - 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_check_algorithm - 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_tag_length - 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_final_checks - 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_get_kdf_alg - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.is_kdf_alg_supported - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_agreement_try_support - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_allows_free_form_secret_input - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_check_input_type - 0x00000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_set_seed - 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_set_key - 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_set_label - 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_input - 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_psk_to_ms_set_other_key - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_ecjpake_to_pms_input - 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_copy_input - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_copy_output - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_export_key_buffer_internal - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_wipe_tag_output_buffer - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_get_and_lock_key_slot_with_policy - 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_get_and_lock_transparent_key_slot_with_policy - 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_key_attributes - 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_start_key_creation - 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_finish_key_creation - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_hash_setup - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_psk_to_ms_set_key - 0x00000000 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_tls12_prf_psk_to_ms_input - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_mac_sign_setup - 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_start_hmac - 0x00000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_mac_verify_setup - 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_mac_compute - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_compute_internal - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_asymmetric_encrypt - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_asymmetric_decrypt - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_cipher_encrypt_setup - 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_cipher_decrypt_setup - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_cipher_abort - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_cipher_encrypt - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_cipher_decrypt - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_aead_encrypt - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_aead_decrypt - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_aead_encrypt_setup - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_aead_decrypt_setup - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_aead_verify - 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_random_free - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_random_init - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_can_do_hash - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_can_do_cipher - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_to_psa_error - 0x00000000 0x598 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_random_internal - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_random_seed - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_crypto_init_subsystem - 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_unstructured_key_bit_size - 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_validate_key_type_and_size_for_key_generation - 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_allocate_buffer_to_slot - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_copy_key_material_into_slot - 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_import_key_into_slot - 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_import_key - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_remove_key_data_from_memory - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_wipe_key_slot - 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_fail_key_creation - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_destroy_key - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_get_key_attributes - 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_export_key_internal - 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_export_key - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_export_public_key_internal - 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_copy_key - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_abort - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_finish_internal - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_setup - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_try_support - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_set_maximum_capacity - 0x00000000 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_setup_kdf - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_clone - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_abort - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_setup - 0x00000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_sign_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_verify_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_builtin - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_sign_hash - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_message_builtin - 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_internal - 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_builtin - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_verify_hash - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_message_builtin - 0x00000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_internal - 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_interruptible_set_max_ops - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_interruptible_get_max_ops - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_get_num_ops - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_get_num_ops - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_interruptible_set_max_ops - 0x00000000 0x2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_sign_hash_get_num_ops - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_verify_hash_get_num_ops - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_sign_hash_start - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_sign_hash_start - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_sign_hash_complete - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_sign_hash_abort - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_abort_internal - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_abort - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_verify_hash_start - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_verify_hash_start - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_verify_hash_complete - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_verify_hash_abort - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_abort_internal - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_complete - 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_abort - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_abort - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_setup - 0x00000000 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_encrypt_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_decrypt_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_abort - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_setup - 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_encrypt_setup - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_decrypt_setup - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_set_nonce_internal - 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_set_lengths - 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_abort - 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_input_internal - 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_input_integer_internal - 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_get_capacity - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_set_capacity - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_custom_key_parameters_are_default - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_setup - 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_input_integer - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_input_key - 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_agreement_raw_builtin - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_key_agreement - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_agreement_raw_internal - 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_agreement_internal - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_key_internal - 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_driver_wrapper_generate_key - 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_key_custom - 0x00000000 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_key_ext - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_key - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_crypto_configure_entropy_sources - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.mbedtls_psa_crypto_free - 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_init - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_local_input_alloc - 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_local_input_free - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_import_key - 0x00000000 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_update - 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_verify - 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_compare - 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_update - 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_verify_finish - 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_verify - 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_message - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_start - 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_verify_hash_start - 0x00000000 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_set_iv - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_set_nonce - 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_update_ad - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_input_bytes - 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_key_agreement - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_local_output_alloc - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_crypto_local_output_free - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_export_key - 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_export_public_key - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_finish - 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_hash_compute - 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_tls12_ecjpake_to_pms_read - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_sign_finish - 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_tls12_prf_generate_next_block - 0x00000000 0x254 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_tls12_prf_read - 0x00000000 0x18c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_mac_compute - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_message - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash - 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_asymmetric_encrypt - 0x00000000 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_asymmetric_decrypt - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_sign_hash_complete - 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_generate_iv - 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_update - 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_finish - 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_encrypt - 0x00000000 0x1e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_cipher_decrypt - 0x00000000 0x166 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_encrypt - 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_decrypt - 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_generate_nonce - 0x00000000 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_update - 0x00000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_finish - 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_aead_verify - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_output_bytes - 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_derived_ecc_key_weierstrass_helper - 0x00000000 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_derived_ecc_key_montgomery_helper - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_derived_key_internal - 0x00000000 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_output_key_custom - 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_output_key_ext - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_key_derivation_output_key - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_raw_key_agreement - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text.psa_generate_random - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .srodata.default_custom_production - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .sdata.psa_interruptible_max_ops - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .bss.global_data - 0x00000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_info 0x00000000 0xec83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_abbrev 0x00000000 0x58d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_loc 0x00000000 0x11a4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_aranges - 0x00000000 0x680 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_ranges 0x00000000 0x898 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_line 0x00000000 0xc6a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_str 0x00000000 0x4352 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .debug_frame 0x00000000 0x1f2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.psa_aead_unpadded_locate_tag - 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.psa_aead_setup - 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_encrypt_setup - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_decrypt_setup - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_set_nonce - 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_set_lengths - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_update_ad - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_update - 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_finish - 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_abort - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_encrypt - 0x00000000 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text.mbedtls_psa_aead_decrypt - 0x00000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_info 0x00000000 0x17c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_abbrev 0x00000000 0x3d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_loc 0x00000000 0x1394 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_aranges - 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_line 0x00000000 0xd9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_str 0x00000000 0xc8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .debug_frame 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_cipher_validate_values - 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.psa_cipher_update_ecb - 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_cipher_values_from_psa - 0x00000000 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_cipher_info_from_psa - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.psa_cipher_setup - 0x00000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_encrypt_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_decrypt_setup - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_set_iv - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_update - 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_finish - 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_abort - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_encrypt - 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text.mbedtls_psa_cipher_decrypt - 0x00000000 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_info 0x00000000 0x1508 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_abbrev 0x00000000 0x394 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_loc 0x00000000 0x1435 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_aranges - 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_ranges 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_line 0x00000000 0x127e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_str 0x00000000 0xb80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .debug_frame 0x00000000 0x234 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .text.psa_reset_key_attributes - 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_info 0x00000000 0x22b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_abbrev 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_loc 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_line 0x00000000 0x282 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_str 0x00000000 0x35b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .debug_frame 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .text.psa_driver_wrapper_get_key_buffer_size - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .text.psa_driver_wrapper_export_public_key - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .text.psa_driver_wrapper_get_builtin_key - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_info 0x00000000 0x4cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_abbrev 0x00000000 0x186 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_loc 0x00000000 0x207 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_ranges 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_line 0x00000000 0x3ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_str 0x00000000 0x4ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.check_ecc_parameters - 0x00000000 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_load_representation - 0x00000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_export_key - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_import_key - 0x00000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_export_public_key - 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_generate_key - 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecdsa_sign_hash - 0x00000000 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecp_load_public_part - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_ecdsa_verify_hash - 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text.mbedtls_psa_key_agreement_ecdh - 0x00000000 0x166 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_info 0x00000000 0x1953 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_abbrev 0x00000000 0x34e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_loc 0x00000000 0x1490 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_aranges - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_line 0x00000000 0x1106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_str 0x00000000 0xc9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .debug_frame 0x00000000 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_abort - 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_setup - 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_clone - 0x00000000 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_update - 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_finish - 0x00000000 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text.mbedtls_psa_hash_compute - 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_info 0x00000000 0xdad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_abbrev 0x00000000 0x24a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_loc 0x00000000 0x90c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_line 0x00000000 0xb5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_str 0x00000000 0x713 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_hmac_abort_internal - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mac_init - 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.cmac_setup - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_hmac_setup_internal - 0x00000000 0x308 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_hmac_update_internal - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_hmac_finish_internal - 0x00000000 0x1ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_mac_finish_internal - 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_abort - 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.psa_mac_setup - 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_sign_setup - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_verify_setup - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_update - 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_sign_finish - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_verify_finish - 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text.mbedtls_psa_mac_compute - 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_info 0x00000000 0x181e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_abbrev 0x00000000 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_loc 0x00000000 0x1070 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_aranges - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_line 0x00000000 0x114d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_str 0x00000000 0xb22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .debug_frame 0x00000000 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.psa_rsa_read_exponent - 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.rsa_pss_expected_salt_len - 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.psa_check_rsa_key_byte_aligned - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.psa_rsa_oaep_set_padding_mode - 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_md_get_size_from_type - 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.psa_rsa_decode_md_type - 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_load_representation - 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_export_key - 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_import_key - 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_export_public_key - 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_generate_key - 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_sign_hash - 0x00000000 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_rsa_verify_hash - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_asymmetric_encrypt - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text.mbedtls_psa_asymmetric_decrypt - 0x00000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_info 0x00000000 0x1993 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_abbrev 0x00000000 0x367 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_loc 0x00000000 0x165f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_aranges - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_ranges 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_line 0x00000000 0x125d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_str 0x00000000 0xa52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .debug_frame 0x00000000 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_extend_key_usage_flags - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.volatile_key_id_of_index - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.slice_index_of_volatile_key_id - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.slot_index_of_volatile_key_id - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_get_key_slots_initialized - 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.get_volatile_key_slot - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_allocate_volatile_key_slot - 0x00000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_load_persistent_key_into_slot - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_is_valid_key_id - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_get_and_lock_key_slot_in_memory - 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_initialize_key_slots - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_wipe_all_key_slots - 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_free_key_slot - 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_reserve_free_key_slot - 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_get_and_lock_key_slot - 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_unregister_read - 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_unregister_read_under_mutex - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_validate_key_location - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_validate_key_persistence - 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_open_key - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_close_key - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.psa_purge_key - 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text.mbedtls_psa_get_stats - 0x00000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .bss.global_data - 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_info 0x00000000 0x1383 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_abbrev 0x00000000 0x3cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_loc 0x00000000 0x111e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_aranges - 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_ranges 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_line 0x00000000 0x19a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_str 0x00000000 0xa79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .debug_frame 0x00000000 0x2a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_its_identifier_of_slot - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_crypto_storage_get_data_length - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.check_magic_header - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_crypto_storage_load - 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_is_key_present_in_storage - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_crypto_storage_store - 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_destroy_persistent_key - 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_format_key_data_for_storage - 0x00000000 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_parse_key_data_from_storage - 0x00000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_save_persistent_key - 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_free_persistent_key_data - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text.psa_load_persistent_key - 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .rodata 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_info 0x00000000 0x103c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_abbrev 0x00000000 0x35c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_loc 0x00000000 0xe27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_aranges - 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_line 0x00000000 0xe04 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_str 0x00000000 0x707 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .debug_frame 0x00000000 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .rodata.psa_its_fill_filename.str1.4 - 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_fill_filename - 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .rodata.psa_its_read_file.str1.4 - 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_read_file - 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_get_info - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_get - 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .rodata.psa_its_set.str1.4 - 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_set - 0x00000000 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text.psa_its_remove - 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .rodata 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_info 0x00000000 0x11f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_abbrev 0x00000000 0x307 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_loc 0x00000000 0x67a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_line 0x00000000 0x94b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_str 0x00000000 0x80e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .debug_frame 0x00000000 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.convert_raw_to_der_single_int - 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.convert_der_to_raw_single_int - 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.psa_generic_status_to_mbedtls - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.psa_status_to_mbedtls - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.psa_pk_status_to_mbedtls - 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.mbedtls_ecc_group_to_psa - 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.mbedtls_ecc_group_from_psa - 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.mbedtls_psa_get_random - 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.mbedtls_ecdsa_raw_to_der - 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text.mbedtls_ecdsa_der_to_raw - 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .rodata.psa_to_pk_rsa_errors - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .rodata.psa_to_lms_errors - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .rodata.psa_to_md_errors - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_info 0x00000000 0xa4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_abbrev 0x00000000 0x26e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_loc 0x00000000 0xe9f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_aranges - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_line 0x00000000 0xe1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_str 0x00000000 0x6b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .debug_frame 0x00000000 0x16c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.myrand 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_export_raw - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_get_padding_mode - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_get_md_alg - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_rsassa_pss_sign_no_mode_check - 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_rsassa_pss_sign_ext - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_copy - 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .rodata.mbedtls_rsa_self_test.str1.4 - 0x00000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_self_test - 0x00000000 0x35a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .rodata 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .rodata.mbedtls_sha1_self_test.str1.4 - 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .text.mbedtls_sha1_self_test - 0x00000000 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .rodata.sha1_test_sum - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .rodata.sha1_test_buflen - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .rodata.sha1_test_buf - 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .rodata.mbedtls_sha256_common_self_test.str1.4 - 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .text.mbedtls_sha256_common_self_test - 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .text.mbedtls_sha256_self_test - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .text.mbedtls_sha224_self_test - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .rodata.sha256_test_sum - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .rodata.sha224_test_sum - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .rodata.sha_test_buflen - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .rodata.sha_test_buf - 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.mbedtls_sha512_common_self_test.str1.4 - 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .text.mbedtls_sha512_common_self_test - 0x00000000 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .text.mbedtls_sha512_self_test - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .text.mbedtls_sha384_self_test - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.sha512_test_sum - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.sha384_test_sum - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.sha_test_buflen - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.sha_test_buf - 0x00000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_internal_aes_encrypt - 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_encrypt - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_internal_aes_decrypt - 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_decrypt - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_cfb8 - 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.esp_mpi_mul_mpi_mod - 0x00000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .text.esp_mpi_hardware_words - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .text.esp_mpi_interrupt_enable - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .text.esp_mpi_interrupt_clear - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .text.esp_mpi_mul_mpi_mod_hw_op - 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_internal_sha256_process - 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .text.esp_md5_process - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.mbedtls_aria_self_test.str1.4 - 0x00000000 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.mbedtls_aria_self_test - 0x00000000 0x6b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test2_ctr_ct - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test2_cfb_ct - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test2_cbc_ct - 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test2_pt - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test2_key - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test1_ecb_ct - 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test1_ecb_pt - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_test1_ecb_key - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .text.mbedtls_asn1_get_enum - 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_algorithm_identifier - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_enum - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_utf8_string - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_printable_string - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_ia5_string - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_bitstring - 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_named_bitstring - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_star_encrypt_and_tag - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_star_auth_decrypt - 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.mbedtls_ccm_self_test.str1.4 - 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_self_test - 0x00000000 0x21e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.res_test_data - 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.tag_len_test_data - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.msg_len_test_data - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.add_len_test_data - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.iv_len_test_data - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.msg_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.ad_test_data - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.iv_test_data - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .rodata.key_test_data - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.mbedtls_gcm_self_test.str1.4 - 0x00000000 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.mbedtls_gcm_self_test - 0x00000000 0x5ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.tag_test_data - 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.ct_test_data - 0x00000000 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.pt_test_data - 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.pt_index_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.pt_len_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.additional_test_data - 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.add_index_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.add_len_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.iv_test_data - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.iv_index_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.iv_len_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.key_test_data - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.key_index_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_x520_attr_from_asn1 - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_ext_key_usage_from_asn1 - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_certificate_policies_from_asn1 - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_attr_short_name - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_extended_key_usage - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_certificate_policies - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_sig_alg_desc - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.mbedtls_oid_get_numeric_string.str1.4 - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_numeric_string - 0x00000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_certificate_policies - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_ext_key_usage - 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_x520_attr_type - 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.mbedtls_pkcs5_self_test.str1.4 - 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .text.mbedtls_pkcs5_self_test - 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.result_key_test_data - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.key_len_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.it_cnt_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.salt_test_data - 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.slen_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.password_test_data - 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.plen_test_data - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .rodata.mbedtls_base64_self_test.str1.4 - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .text.mbedtls_base64_self_test - 0x00000000 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .rodata.base64_test_enc - 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .rodata.base64_test_dec - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_start - 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_free - 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.x509_info_ext_key_usage.str1.4 - 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_info_ext_key_usage - 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_info_cert_policies - 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_info.str1.4 - 0x00000000 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_info - 0x00000000 0x5f4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_verify_info.str1.4 - 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_verify_info - 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_verify - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_verify_with_profile - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_der_nocopy - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_der_with_ext_cb - 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_file - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_parse_path.str1.4 - 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_path - 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_get_ca_istrue - 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.str1.4 - 0x00000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.x509_crt_verify_strings - 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_profile_none - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_profile_next - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text.mbedtls_x509write_csr_set_extension - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text.mbedtls_x509write_csr_set_subject_alternative_name - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .rodata.mbedtls_x509write_csr_set_key_usage.str1.4 - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text.mbedtls_x509write_csr_set_key_usage - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .rodata.mbedtls_x509write_csr_set_ns_cert_type.str1.4 - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text.mbedtls_x509write_csr_set_ns_cert_type - 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.md_type_to_string.str1.4 - 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.md_type_to_string - 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.nibble_to_hex_digit - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_dn_gets.str1.4 - 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_dn_gets - 0x00000000 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_serial_gets.str1.4 - 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_serial_gets - 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_sig_alg_gets.str1.4 - 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_sig_alg_gets - 0x00000000 0xfc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_key_size_helper.str1.4 - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_key_size_helper - 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_time_cmp - 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_time_is_past - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_time_is_future - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_info_subject_alt_name.str1.4 - 0x00000000 0x164 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_info_subject_alt_name - 0x00000000 0x52e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_info_cert_type.str1.4 - 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_info_cert_type - 0x00000000 0x244 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_info_key_usage.str1.4 - 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_info_key_usage - 0x00000000 0x284 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.mbedtls_x509_set_extension - 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .rodata.mbedtls_x509_write_set_san_common.str1.4 - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .text.mbedtls_x509_write_set_san_common - 0x00000000 0x250 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_info 0x00000000 0x5de esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_abbrev 0x00000000 0x1ce esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_loc 0x00000000 0x3d1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_line 0x00000000 0x614 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_str 0x00000000 0x42c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.esp_coex_adapter_funcs_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.esp_coex_i154_funcs_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.esp_coex_status_bit_set - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.esp_coex_status_bit_clear - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_event_duration_get - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_pti_set - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .coexiram.7 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .iram1.8 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .iram1.9 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_preference_set - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_version_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_version_get_value - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text.coex_wifi_register_update_lpclk_callback - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .data.g_coex_adapter_funcs_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .data.g_coex_basic_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .data.g_coex_i154_funcs_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .data.libcoexist_reversion_remote - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.1 0x00000000 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.2 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.3 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.4 0x00000000 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.5 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .dram1.6 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.coex_version_str - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.esp_coex_adapter_funcs_md5_check.str1.4 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.esp_coex_i154_funcs_md5_check.str1.4 - 0x00000000 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .text.coex_core_pti_set - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .coexiram.3 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .iram1.4 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .iram1.5 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .coexiram.8 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .coexiram.1 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .coexiram.2 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .coexiram.3 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .text.coex_hw_timer_force - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .text.coex_hw_timer_unforce - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .text.coex_hw_debug_matrix_config - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .text.coex_hw_debug_matrix_init - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .dram1.4 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .text.coex_rom_osi_funcs_deinit - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .coexiram.1 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .coexiram.2 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_status_get - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_curr_phase_idx_set - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .coexiram.4 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .coexiram.5 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_get_phase_by_idx - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_wifi_channel_get - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_register_wifi_channel_change_callback - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_flexible_period_set - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_flexible_period_get - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_deinit - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .data.coex_schm_ble_default_bt_a2dp_wifi_default - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .data.coex_schm_ble_default_bt_idle_wifi_default - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .data.coex_schm_ble_idle_bt_idle_wifi_default - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .dram1.6 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .rodata.__func__.3776 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text.coex_gpio_debug_matrix_init - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text.coex_gpio_debug_matrix_config - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text.coex_set_gpio_debug_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text.coex_gpio_debug_max_event_get - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text.coex_dbg_set_log_level - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .dram1.1 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.esp_wifi_internal_tx_is_stop - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_reg_encap_amsdu_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.wifi_is_started - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_recycle_cache_eb - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.get_wifi_internal_state - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_output_pending_eb - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_copy_eb_header - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_amsdu_adjust_last_length - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .wifiextrairam.18 - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .wifiextrairam.19 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_vnd_ie_size - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .wifi0iram.37 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_search_node - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.esp_wifi_internal_tx_by_ref - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.esp_wifi_mesh_tx - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_raw_frame_sanity_check - 0x00000000 0x20a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.esp_wifi_80211_tx - 0x00000000 0x128 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_get_nvs_he_dcm_max_constellation_tx - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .wifiextrairam.62 - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .bss.he_dcm_max_constellation_tx - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.46 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.47 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.48 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.49 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.50 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.51 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.52 - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.53 - 0x00000000 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.54 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.55 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.ieee80211_hostapd_data_txcb - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss.APRecvBcnStartTick - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss.ApFreqCalTimer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .text.ieee80211_crypto_available - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .text.ieee80211_crypto_setkey - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .text.ieee80211_crypto_encap - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .rodata_wlog_error.2 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .text.phymode2str - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.phymode2str - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .text.ieee80211_set_user_sup_rate - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata_wlog_warning.2 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata_wlog_warning.4 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text.chm_check_channel_is_valid - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text.chm_check_channel - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .wifi0iram.12 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .text.ieee80211_psq_cleanup - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .text.ieee80211_psq_take_tail - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .text.ieee80211_get_chan_info - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .rodata.ieee80211_get_chan_info - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .rodata_wlog_warning.3 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .text.roc_op_start - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .text.roc_op_end - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .text.offchan_txop_end - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .text.offchan_txop_start - 0x00000000 0x260 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .data.s_global_offchan_seq - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .rodata_wlog_error.2 - 0x00000000 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .rodata_wlog_error.3 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_public_action_recv_mesh_awake - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_mesh_quick_init - 0x00000000 0x180 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_mesh_quick_deinit - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_vnd_mesh_update_beacon - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_vnd_mesh_fully_associated - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text.ieee80211_public_action_send_mesh_awake - 0x00000000 0x15a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .rodata 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .bss.esp_mesh_appie - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .bss.esp_mesh_ps_duty - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .rodata.ieee80211_public_action_send_mesh_awake.str1.4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .text.dbg_hmac_rxtx_statis_dump - 0x00000000 0x2aa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .text.dbg_hmac_statis_dump - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata.dbg_hmac_rxtx_statis_dump.str1.4 - 0x00000000 0x93 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.10 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.11 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.12 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.13 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.14 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.2 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.3 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.4 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.5 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.6 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.7 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.8 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata_wlog_info.9 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.esp_mesh_get_tsf_time - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .wifi0iram.88 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .wifi0iram.90 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_is_any_node_connecting - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.wifi_softap_staconnected_event_policy - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.wifi_softap_toomany_deny - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_sta_pm - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_stop_obss_scan - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .wifislprxiram.114 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_error.89 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_error.91 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .text.ieee80211_deliver_data - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .text.ieee80211_is_11b_rate - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_now_head - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_mesh_group - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_simple_pair - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_freq_annon - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_now - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text.ieee80211_add_ie_vendor_esp_ssid - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text.wifi_nvs_sta_restore - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text.wifi_nvs_ap_restore - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text.ieee80211_nvs_set_default_ssid - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text.wifi_nvs_set_sta_listen_interval - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata_wlog_warning.6 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata_wlog_warning.7 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_sta_get_prof_pmk_internal - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_sta_disable_sae_pk_internal - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.wifi_ap_pmf_enabled - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_get_sta_gtk_index - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_enable_sta_privacy_internal - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_sta_is_running_internal - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_unregister_wpa2_cb_internal - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_register_wpa2_cb_internal - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_unregister_wapi_cb - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_register_wapi_cb - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_get_assoc_bssid_internal - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_espnow_get_init_flag - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_espnow_set_init_flag - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_mt_key_is_mask - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_mt_key_is_mask_zero - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_mt_key_set_mask - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_mt_key_clear_mask - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.ieee80211_get_mac_addr_from_frame - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_del_key_internal - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_key_internal - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_get_key_internal - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_register_tx_cb_internal - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_get_appie_internal - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_sta_wpa2_ent_enable_internal - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_sta_wpa2_ent_disable_internal - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_wpa2_ent_state_internal - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_wps_type_internal - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_get_wps_type_internal - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_disarm_sta_connection_timer_internal - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_wps_status_internal - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_wps_cb_internal - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_internal_supplicant_header_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_wps_start_flag_internal - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_rssi_threshold - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_is_rm_enabled_internal - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_is_btm_enabled_internal - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_is_mbo_enabled_internal - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_is_ft_enabled_internal - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_action_tx_req - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_remain_on_channel - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_set_sigma_internal - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .data.g_wifi_supplicant_funcs_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .rodata.esp_wifi_internal_supplicant_header_md5_check.str1.4 - 0x00000000 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .rodata.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_wps_stop - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_wps_start - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_ioctl_ht2040_get - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_phy_bw_is_modified - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_phy_bw_is_valid - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_ioctl_ht2040_set - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.adc2_wifi_acquire - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.adc2_wifi_release - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.ieee80211_set_phy_2nd_chan - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.ieee80211_phy_2nd_chan_is_valid - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.ieee80211_set_phy_mode - 0x00000000 0x1e4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_phy_2nd_chan_process - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.print_sta_pmk - 0x00000000 0x144 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_mac_process - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_promis_filter_process - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_promis_ctrl_filter_process - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_sta_set_ap_num_process - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_auto_connect_process - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_macaddr - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.chip_post_deinit - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .wifislprxiram.41 - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .wifislprxiram.43 - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_promis_process - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.esp_wifi_internal_set_baw - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_crypto_deinit - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_hmac_deinit - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_lmac_deinit - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_sta_disconnect - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_scan_stop_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_scan_params_process - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_scan_params_process - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.cipher_map_net80211_to_public_cipher - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_ap_record_process - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_sta_list_process - 0x00000000 0x16c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_protocol_process - 0x00000000 0xf6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_protocol_process - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_bw_nvs - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_bw_process - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_bw_process - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_channel_process - 0x00000000 0x168 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_home_channel_process - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_channel_process - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_chan_range - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_country - 0x00000000 0x1e0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_country - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_band_process - 0x00000000 0x1ca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_band_mode_process - 0x00000000 0xec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_restart_process - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_vnd_ie_process - 0x00000000 0x122 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_vnd_ie_cb_process - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_max_tpw - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_event_mask - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_csi - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_csi_set_config - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_ant_config_check - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .wifirxiram.99 - 0x00000000 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_ant - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_ant_gpio - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_fix_rate_process - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_deauth_sta_process - 0x00000000 0x116 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_wps_start_flag - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_wpa2_ent_enable_process - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_wpa2_ent_disable_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_log_mod_process - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_wps_type_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_wps_status_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_wps_cb_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_internal_ioctl_process - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_get_tsf_time_process - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_ftm_start_initiator_process - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_rssi_threshold - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_roc_process - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_action_tx_process - 0x00000000 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_configure_wake_window_process - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_disable_pmf_config_process - 0x00000000 0x160 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_force_wakeup_process - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_update_listen_interval_process - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_coex_pwr_process - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_update_tsf_tick_interval_process - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_sample_beacon_process - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_tbtt_quick_wake_configure_process - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_set_progress - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_get_progress - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_roots_ie_set_progress - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_roots_ie_get_progress - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_init_progress - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_deinit_progress - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_sta_disassoc - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_map_deauth_progress - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_sta_disassoc_progress - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_set_beacon_interval_progress - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_assoc_expire_set_progress - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_router_bssid_set_progress - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_router_bssid_get_progress - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_root_conflicts_set_progress - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_crypto_funcs_set_progress - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ie_crypto_key_set_progress - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_parent_monitor_set_progress - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_parent_monitor_get_progress - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_parent_candidate_set_progress - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_parent_candidate_clear_progress - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_parent_candidate_get_progress - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_rssi_threshold_set_progress - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_rssi_threshold_get_progress - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_is_roots_found_progress - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_switch_channel_progress - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ps_duty_cycle_set_process - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_ps_duty_ext_get_process - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_mesh_act_duty_signaling_process - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_dynamic_cs_process - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.config_is_cache_tx_buf_enabled - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_softap_set_obss_overlap_process - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .bss.mesh_router_bssid - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .data.g_mesh_root_conflicts_allowed - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .data.map_assoc_expire - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .data.s_ioctl_table - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.77 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.80 - 0x00000000 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.81 - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.100 - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.101 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.102 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.103 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.104 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.105 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.106 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.112 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.113 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.114 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.119 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.120 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.121 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.122 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.124 - 0x00000000 0x51 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.135 - 0x00000000 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.42 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.44 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.78 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.79 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.97 - 0x00000000 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.98 - 0x00000000 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.110 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.111 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.12 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.123 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.125 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.136 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.137 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.50 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.90 - 0x00000000 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.91 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.92 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.93 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.94 - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_info.96 - 0x00000000 0x37 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.11 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.15 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.16 - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.89 - 0x00000000 0x5b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.95 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_ftm_sess_timeout - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_ftm_req_timeout - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_tx_ftm_msmt - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_send_ftmr - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_register_ftm_timer - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_get_phy_comp - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_ftm_measurement_txcb - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_record_t2t3_cb - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_session_timeout - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_send_msmt_pkt - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_request_timeout - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_send_request - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_offchan_end - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.public_send_action_ftm_req - 0x00000000 0x298 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_is_supported - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_map_bw_param_to_phybw - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_get_resp_session_for_peer - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_get_resp_session_by_cookie - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_add_resp_session - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_free_resp_session - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_record_t1t4_cb - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_set_t1t4_cb - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_resp_get_burst_slot - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_resp_get_burst_inst_delay - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.public_send_action_ftm_resp - 0x00000000 0x420 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_ftm_sess_timeout_process - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_tx_ftm_msmt_process - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_resp_allocate_para - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_create_responder_session - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_send_initial_resp - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.public_recv_action_ftm_req - 0x00000000 0x1ac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_responder_set_offset - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_get_estimated_dist - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_parse_data - 0x00000000 0x2fe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_session_end - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_session_abort - 0x00000000 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_ftm_request_txcb - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_send_ftmr_process - 0x00000000 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_process_resp - 0x00000000 0x330 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.public_recv_action_ftm_resp - 0x00000000 0x2a8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_negotiate_session - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_offchan_tx_req - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_start_session - 0x00000000 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_ftm_req_timeout_process - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_start_initiator_local - 0x00000000 0x31a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_end_session_local - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_initiator_get_report_local - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ftm_validate_initiator_config - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text.ieee80211_ftm_attach - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.g_ftm_report_num_entries - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.g_t1_offset_psec - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata.ftm_initiator_process_resp.str1.4 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.10 - 0x00000000 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.11 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.12 - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.17 - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.18 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.19 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.20 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.21 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.22 - 0x00000000 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.24 - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.25 - 0x00000000 0x39 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.26 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.27 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.3 - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.4 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.5 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.6 - 0x00000000 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.7 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_error.8 - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.13 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.14 - 0x00000000 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.15 - 0x00000000 0x43 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.16 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.23 - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .rodata_wlog_warning.9 - 0x00000000 0x6f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_config_channel_local - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_band_get_config_channel_local - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_negotiated_channel_local - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_negotiated_bw_local - 0x00000000 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_sta_get_aid_local - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_sta_get_negotiated_phymode_local - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_inactive_time_local - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_end_session_local - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_get_report_local - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_resp_set_offset_local - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_inactive_time_local - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_station_get_config - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_station_get_config_default - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_station_get_current_ap_id - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_station_ap_check - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_softap_cacl_mac - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_sta_get_rssi - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_softap_get_station_num - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_register_user_ie_manufacturer_recv_cb - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_unregister_user_ie_manufacturer_recv_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_set_user_ie - 0x00000000 0x10c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_get_user_ie - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.wifi_get_user_ie - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_check_chan_param - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_osi_ready - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_osi_funcs_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_crypto_funcs_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_wifi_type_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_esp_wifi_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_esp_wifi_he_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_wifi_he_type_md5_check - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_initiate_session - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_restart - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_clear_fast_connect - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_deauth_sta - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_promiscuous_scan_start - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_stop - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_scan_parameters - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_scan_parameters - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_get_ap_record - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ap_get_sta_list - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_connectionless_module_set_wake_interval - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_protocol - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_protocol - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_protocols - 0x00000000 0x18c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_protocols - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_config_11b_rate - 0x00000000 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_config_espnow_rate - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_config_80211_tx_rate - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_config_80211_tx - 0x00000000 0x258 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_bandwidth - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_bandwidth - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_bandwidths - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_bandwidths - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_channel - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_home_channel - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_channel - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_country - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_country_code - 0x00000000 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_country - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_country_code - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_mac - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_softap_set_obss_overlap - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_promiscuous_filter - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_promiscuous_filter - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_promiscuous_ctrl_filter - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_promiscuous_ctrl_filter - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_promiscuous - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_promiscuous_rx_cb - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_promiscuous - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_auto_connect - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_auto_connect - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_vendor_ie - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_vendor_ie_cb - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_max_tx_power - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_max_tx_power - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_event_mask - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_csi - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_csi_config - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_csi_rx_cb - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_ant_gpio - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_ant_gpio - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_ant - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_ant - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_set_fix_rate - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_get_fix_rate - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_sta_rx_probe_req - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_end_session - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_get_report - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_ftm_resp_set_offset - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_set_mac_sleep - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_set_log_mod - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_get_log - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_ioctl - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_configure_wake_window - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_force_wakeup_acquire - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_force_wakeup_release - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_coex_pwr_configure - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_beacon_offset_sample_beacon - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_tbtt_quick_wake_configure - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_is_tsf_active - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .wifislpiram.62 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_update_tsf_tick_interval - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_update_listen_interval - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_update_light_sleep_default_params - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_beacon_monitor_configure - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_beacon_offset_configure - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_beacon_offset_set_rx_beacon_standard - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_get_config_channel - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_band_get_config_channel - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_improve_contention_ability - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_get_negotiated_channel - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_get_negotiated_bandwidth - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_sta_get_aid - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_sta_get_negotiated_phymode - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_tsf_time - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_tx_done_cb - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_inactive_time - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_inactive_time - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_statis_dump - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_internal_set_spp_amsdu - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_disable_pmf_config - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_phy_apply_phy_init_data - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_mesh_reg_rxcb - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_ap_assoc_expire - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_ap_assoc_expire - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_router_bssid - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_router_bssid - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_beacon_interval - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_beacon_interval - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_sta_disassoc - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_get_cur_ap_info - 0x00000000 0xea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_scan_get_ap_ie_len - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_get_cur_ap_record - 0x00000000 0x19e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_scan_get_ap_record - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_mesh_init - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_mesh_deinit - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_mesh_set - 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_mesh_get - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_roots_set - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_vnd_roots_get - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_allow_root_conflicts - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_is_root_conflicts_allowed - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_parent_monitor_config - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_parent_monitor_config - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_ie_crypto_funcs_internal - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_ie_crypto_key_internal - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_sort_ap_records - 0x00000000 0x16a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_sort_get_cur_ap_info - 0x00000000 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_scan_sort_get_cur_ap_record - 0x00000000 0x1f6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_parent_candidate - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_clear_parent_candidate - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_parent_candidate - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_rssi_threshold_internal - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_rssi_threshold_internal - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_is_roots_found - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_storage - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_switch_channel_internal - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_active_duty_cycle - 0x00000000 0xec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_active_duty_cycle - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_network_duty_internal - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_set_network_duty_cycle - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_get_network_duty_cycle - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_ps_get_ext_duty - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_mesh_ps_duty_signaling - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_non_mesh_connections - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_band - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_band - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_band_mode - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_get_band_mode - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_set_dynamic_cs - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.esp_wifi_eb_tx_status_success_internal - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.s_mesh_fetch_num - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.s_mesh_sort_bss - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.s_mesh_sort_num - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.sort_bss.17678 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.token.17826 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_esp_wifi_he_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_esp_wifi_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_coex_basic_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_crypto_funcs_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_he_type_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_osi_funcs_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_type_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_types_generic_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_wifi_types_native_md5 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.CSWTCH.502 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_crypto_funcs_md5_check.str1.4 - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_esp_wifi_he_md5_check.str1.4 - 0x00000000 0x37 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_esp_wifi_md5_check.str1.4 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_osi_funcs_md5_check.str1.4 - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_wifi_he_type_md5_check.str1.4 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.esp_wifi_internal_wifi_type_md5_check.str1.4 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.11 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.12 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.22 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.23 - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.24 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.25 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.26 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.27 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.28 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.29 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.56 - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.57 - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.60 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.66 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.67 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_info.32 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_info.33 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_info.34 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_info.35 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_info.65 - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.30 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.31 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.36 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.37 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.38 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.39 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.40 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.41 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.42 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.43 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.44 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.45 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.46 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.47 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.48 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.49 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.50 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.51 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.52 - 0x00000000 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.53 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.54 - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.55 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.63 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.64 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.wifi_recycle_rx_pkt - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.wifi_get_rand_macaddr - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.wifi_get_rand_macaddr_keep_oui - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_find_ie_match - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_find_elem - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_find_ext_elem - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_find_ext_ie - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .data.libnet80211_reversion_git - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .data.libnet80211_reversion_remote - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata.ieee80211_opcap - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata.str1.4 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.register_ieee80211_action_vendor_get_key_cb - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.unregister_ieee80211_action_vendor_get_key_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.ieee80211_add_action_vendor_spec_esp - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.ieee80211_alloc_action_vendor_spec - 0x00000000 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.ieee80211_send_action_vendor_spec - 0x00000000 0x3b8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.register_ieee80211_action_vendor_spec_cb - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text.unregister_ieee80211_action_vendor_spec_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .bss.avs_tx_content - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .data.s_global_vendor_seq.12185 - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .rodata.ieee80211_add_action_vendor_spec_esp.str1.4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .bss.esp_test_dump_htc - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .text.ieee80211_gettid - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .text.ieee80211_iserp_rateset - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .text.ieee80211_wme_initparams - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .rodata.rates.11314 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .text.ieee80211_rfid_locp_recv_open - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .text.ieee80211_rfid_locp_recv_close - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .text.register_ieee80211_rfid_locp_recv_cb - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .text.unregister_ieee80211_rfid_locp_recv_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .text.ieee80211_regdomain_max_tx_power - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .text.ieee80211_regdomain_chan_num - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .data.s_map 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_cal_tx_pps - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ampdu_stop - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .wifirxiram.36 - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ampdu_dispatch_movement - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .wifirxiram.38 - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .wifirxiram.40 - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .wifirxiram.42 - 0x00000000 0x108 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ampdu_start_age_timer - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.37 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.39 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.41 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.43 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.45 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .text.ieee80211_ccmp_encrypt - 0x00000000 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .rodata_wlog_error.5 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .text.ieee80211_send_action_unregister - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .text.ieee80211_recv_action_unregister - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_set_default_params - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.wifi_sta_set_scan_default_params - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_pm_channel_op_cb - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_set_home_chan_dwell_time - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.cannel_scan_connect_state - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_connect_state - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.6 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_error.4 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_error.5 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.wifi_apb80m_request - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.wifi_apb80m_release - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.3 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_is_dream - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.4 - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_allow_tx - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .iram1.8 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_mac_sleep_init - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_mac_sleep_deinit - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifirxiram.20 - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislpiram.21 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.23 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_enable_sleep_delay_timer - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_mac_wakeup - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_mac_sleep - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.27 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.is_off_channel - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislpiram.35 - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_update_tsf_tick_interval - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_set_beacon_filter - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_is_in_wifi_slice_threshold - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.50 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifirxiram.54 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_tbtt_quick_wake_configure - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_beacon_monitor_configure - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_update_light_sleep_default_params - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_scan_lock - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_scan_unlock - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_try_scan_unlock - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_get_idle_wait_time - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_register_connectionless_wake_window - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_unregister_connectionless_wake_window - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_connectionless_module_set_wake_interval - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_is_hw_beacon_filter_active - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_clear_wakeup_signal - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .wifislprxiram.62 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_get_beacon_duration - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.bb_intr_handl - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .wifislprxiram.3 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_is_pure_sta - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_rssi - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_ebuf_alloc - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_ebuf_recycle_tx - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_ebuf_recycle_rx - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_register_pp_tx_done_cb - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_promis_filter - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_promis_filter - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_promis_ctrl_filter - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_promis_ctrl_filter - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_register_promis_rx_cb - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_register_csi_rx_cb - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_register_ftm_callbacks - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_pp_post - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_reset_rx_ba - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.esp_mesh_set_6m_rate - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_bb_check_noise_init - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_random - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_trc - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_tx_is_idle - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_fix_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_fix_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_csi - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .wifislprxiram.11 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_csi_set_config - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_is_sta_tsf_active - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .wifislpiram.13 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_update_tsf_tick_interval - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_update_light_sleep_default_params - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_beacon_monitor_configure - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_beacon_offset_configure - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_beacon_offset_set_rx_beacon_standard - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_update_listen_interval - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_rx_disable_bssid_check - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_rx_enable_bssid_check - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_bar_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_trc_update_def_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_espnow_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_80211_tx_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_80211_tx_rate_config - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_espnow_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_80211_tx_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_set_80211_tx_rate_config - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_default_sched - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_get_G6M_sched - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text.ic_connectionless_module_set_wake_interval - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .rodata_wlog_info.9 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifislpiram.5 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.rotl 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.rotr 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_set_cut_rx - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_set_cut_evt - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_can_cut_sevt - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_can_cut_evt - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.RxNodeNum - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.TxNodeNum - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.SigSpaceMalloc - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.SigSpaceFree - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.DefFreqCalTimerCB - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifirxiram.6 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.7 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.11 0x00000000 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppAddTimCount - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppRegisterPromisRxCallback - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppRegisterTxDoneUserActionCallback - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppUnregisterTxCallback - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_register_tx_cb - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.pp_unregister_tx_cb - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.16 - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppRecycleTxBuf - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.19 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifislprxiram.24 - 0x00000000 0x13c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppGetTxQFirstAvail_Locked - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppFetchTxQFirstAvail - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppDequeueTxQ - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppRollBackTxQ - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppSetBarRate - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.32 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.33 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.34 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.35 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppCheckTxAMPDUlength - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.36 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.37 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppRecordBarRRC - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.43 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.47 - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.49 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifislprxiram.50 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifislprxiram.51 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.emul_timeout - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.59 - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppEnableQueue - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.62 0x00000000 0x132 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .iram1.66 0x00000000 0x176 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.64 - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppProcessWaitQ - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppDisableQueue - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.61 - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.60 0x00000000 0x138 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppDiscardMPDU - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.70 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.12 0x00000000 0x1e4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.40 - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.44 0x00000000 0x408 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifi0iram.9 0x00000000 0x20a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .wifiextrairam.72 - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.ppMessageInQ - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.CurFreeSigIdx - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.CurSigIdxToBeUse - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.DefFreqCalTimer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.HighestFreqOffsetInOneChk - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.LowestFreqOffsetInOneChk - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.SigInMacISR - 0x00000000 0x190 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.current_ifidx.14072 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.pend_flag_periodic_cal - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.pp_allow_cut_sevt - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .bss.pp_need_cut_rx - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .data.CanDoFreqCal - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .data.NoiseTimerInterval - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .data.libpp_reversion_git - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.10 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.14 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.17 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.45 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.48 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_warning.13 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_warning.15 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_warning.67 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislprxiram.8 - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislpiram.9 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislpiram.10 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_configure - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_add_total_counter - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_add_loss_counter - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_deinit - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_set_rx_beacon_standard - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_init - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_get_rx_beacon_success_rate - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_resample_timeout_process - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_resample_timeout - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislprxiram.5 - 0x00000000 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_check - 0x00000000 0x164 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_get_average - 0x00000000 0x170 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislpiram.2 - 0x00000000 0x204 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislpiram.3 - 0x00000000 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .wifislpiram.7 - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text.pm_beacon_offset_funcs_init - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .bss.prev_last_tbtt_time.10996 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .bss.s_pm_beacon_offset - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .bss.s_pm_beacon_offset_config - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .bss.total_tbtt_count.10997 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata.cst4 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata.pm_beacon_offset_get_average.cst4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata.pm_beacon_offset_get_average.cst8 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata.pm_beacon_offset_init.cst4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_debug.13 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_debug.15 - 0x00000000 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_error.4 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_error.6 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_info.11 - 0x00000000 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_info.12 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .rodata_wlog_info.14 - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .text.esf_buf_setup_for_mesh - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .text.esf_buf_statis_dump - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata.esf_buf_statis_dump.str1.4 - 0x00000000 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata_wlog_info.19 - 0x00000000 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata_wlog_info.20 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata_wlog_info.21 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacIsIdle - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacReachShortLimit - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacReachLongLimit - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacIsLongFrame - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.3 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.4 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacRequestTxopQueue - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacReleaseTxopQueue - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacProcessTxopSuccess - 0x00000000 0x18e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.20 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .iram1.31 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .iram1.35 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .iram1.36 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .iram1.37 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_internal_set_retry_counter - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_internal_set_msdu_lifetime - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_internal_get_mib - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_internal_set_rts - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_internal_get_rts - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.21 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.22 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.16 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.lmacRxDone - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.dbg_lmac_get_acs - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .wifi0iram.66 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text.esp_wifi_set_11b_tx_plcp - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .bss.g_pp_tx_pkt_num - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .data.txopstart_index - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata.__FUNCTION__.11440 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata.__FUNCTION__.11457 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_error.12 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_error.13 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_error.14 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_error.15 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_error.17 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata_wlog_info.56 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_calc_duration - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rx11NRate2AMPDULimit - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trcAmpduSetState - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcSetTxAmpduLimit - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcClearCurStat - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcClearCurSched - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcClearCurAMPDUSched - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcLowerSched - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcUpSched - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcUpdateAckSnr - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .wifirxiram.9 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_onAmpduOp - 0x00000000 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcSetBarRate - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_default_sched - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_G6M_sched - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcGetAmpduSched - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rssi_margin - 0x00000000 0x13c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.rssi_margin - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.TRC_PER_IS_GOOD - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.TRC_AMPDU_PER_DOWN_THRESHOLD - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcAmpduLowerRate - 0x00000000 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.TRC_AMPDU_PER_UP_THRESHOLD - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.TRC_AMPDU_PER_UP_THRESHOLD - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_NeedRTS - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.trc_NeedRTS - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_onDisconnect - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_onScanStart - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_onScanDone - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_isAmpduOn - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_SetTxAmpduState - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .wifi0iram.20 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .wifi0iram.21 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_mask - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_sta_trc - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .wifirxiram.25 - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_trc_by_index - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_trc_default - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_only_sta_trc - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_update_def_rate - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_get_fix_rate - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc_set_fix_rate - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_get_espnow_rate - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_set_espnow_rate - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_get_80211_tx_rate - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_get_80211_tx_rate_config - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_set_80211_tx_rate - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.trc_set_80211_tx_rate_config - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .bss.g_80211_tx_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .bss.g_80211_tx_rate_config - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .bss.g_espnow_rate - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .data.BAROFDMSched - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.CSWTCH.47 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.__FUNCTION__.13018 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_error.12 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_warning.27 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - .text.pm_coex_pwr_configure - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .iram1.5 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.wifi_gpio_debug_max_event_get - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_lmac_rxtx_statis_dump - 0x00000000 0x202 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_lmac_hw_statis_dump - 0x00000000 0x22c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_lmac_diag_statis_dump - 0x00000000 0x15a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_lmac_ps_statis_dump - 0x00000000 0x1ae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_lmac_statis_dump - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_his_lmac_eb_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_his_lmac_event_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_his_lmac_int_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_his_lmac_rx_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_his_lmac_tx_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_ebuf_loc_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_perf_path_show - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_perf_path_set - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text.dbg_perf_throughput_cal - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .bss.s_t_old 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .bss.s_total 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata.dbg_lmac_diag_statis_dump.str1.4 - 0x00000000 0x67 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata.dbg_lmac_hw_statis_dump.str1.4 - 0x00000000 0xda /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata.dbg_lmac_ps_statis_dump.cst4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata.dbg_lmac_ps_statis_dump.str1.4 - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata.dbg_lmac_rxtx_statis_dump.str1.4 - 0x00000000 0x5f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.10 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.11 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.12 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.13 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.14 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.15 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.16 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.17 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.18 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.19 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.20 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.21 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.22 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.23 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.24 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.25 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.26 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.27 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.28 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.29 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.30 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.31 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.32 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.33 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.34 - 0x00000000 0x51 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.35 - 0x00000000 0x55 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.36 - 0x00000000 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.6 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.7 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.8 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .rodata_wlog_info.9 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.5 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.8 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.6 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.7 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.9 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.10 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .iram1.14 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifislpiram.16 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifislprxiram.52 - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.13 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifi0iram.15 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifiorslpiram.23 - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wDev_Mesh_Enable_Tsf - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wDev_Mesh_Set_TBTT - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_mac_sleep_init - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_mac_sleep_deinit - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_set_promis_misc_buf - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_set_promis_filter - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_get_promis_filter - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_set_promis_ctrl_filter - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_get_promis_ctrl_filter - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wDev_RxSecError - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_ftm_set_callbacks - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wDev_FetchFirstDesc - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wDev_is_low_rate_enable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifislpiram.22 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifirxiram.21 - 0x00000000 0x2d6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .wifislprxiram.27 - 0x00000000 0x13e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text.wdev_set_csi_rx_cb - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata.__FUNCTION__.12844 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata.__FUNCTION__.13018 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_error.28 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_error.29 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_error.50 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_error.51 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_info.12 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_warning.11 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .text.hal_agreement_clr_rx_ba - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .text.hal_ba_session_store - 0x00000000 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .text.hal_ba_session_restore - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .rodata_wlog_info.3 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - .text.hal_crypto_get_using_key_idx - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.mac_tx_set_plcp0 - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.mac_tx_set_duration - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .wifi0iram.8 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_is_txq_enabled - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_now 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .wifi0iram.10 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_disable_mac - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_enable_mac - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .wifislpiram.11 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.mac_rxbuf_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .iram1.14 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .iram1.17 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_clr_bssid - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_tsf_get_time - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.wDev_Mesh_Disable_Tsf - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_tsf_set_time - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_set_csi - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .wifislprxiram.19 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_rx_enable - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_mac_rx_disable - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_enable_sta_beacon_filter - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_set_sta_beacon_filter - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_enable_sta_dump_beacon - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_beacon_ie_crc_get - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_beacon_ie_crc_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_rx_disable_bssid_check - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text.hal_rx_enable_bssid_check - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .bss.g_mac_deinit_count - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .bss.g_mac_deinit_rxing - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .bss.g_mac_deinit_txing - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .iram1.2 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .iram1.6 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - .text.mac_tx_set_plcp2 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - .text.hal_sniffer_rx_clr_statistics - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifiextrairam.5 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_tsf_timer_get_target - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_enable_tsf_timer_wakeup - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_disable_tsf_timer_wakeup - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifiextrairam.6 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_disable_tsf_timer - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_get_sta_next_tbtt - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.9 - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.hal_tsf_clear_soc_wakeup_request - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.10 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.11 - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.12 - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.13 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_tbtt_rf_ctrl_wait_cycles - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_timer_rf_ctrl_wait_cycles - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_clear_mac_modem_rf_power_state - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_get_mac_modem_rf_power_state - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_clear_soc_wakeup_request - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_map_tbtt_target_to_rx_frame - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_unmap_tbtt_target_to_rx_frame - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_tsf_time_deviation - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_tsf_time_deviation_sync_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_tsf_time_deviation_sync_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.15 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.17 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.18 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.19 - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.20 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.21 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.22 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.23 - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.24 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.25 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.26 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_tbtt_rf_ctrl_disable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.27 - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.28 - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.29 - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.31 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.32 - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.33 - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.34 - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.35 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.36 - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.37 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .wifislpiram.38 - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_timer_modem_wakeup_enable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_timer_modem_wakeup_disable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_timer_rf_ctrl_enable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_timer_rf_ctrl_disable - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_control_timestamp_use_tsf_enable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_set_rx_control_timestamp_use_tsf_disable - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text.tsf_hal_select_rx_start_default_tsf - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text.RC_GetAckRate - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text.RC_GetRtsRate - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text.RC_GetAckTime - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text.RC_GetBlockAckTime - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_get_pkg_ver - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_set_rom_log_scheme - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_disable_rom_download_mode - 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_enable_rom_secure_download_mode - 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x00000000 0x181 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x00000000 0x410 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x00000000 0x5de esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_cal_voltage.str1.4 - 0x00000000 0x74 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_cal_voltage - 0x00000000 0x10a esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_tsens_val.str1.4 - 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_tsens_val - 0x00000000 0xca esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.__func__.0 - 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.__func__.1 - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .text.rmt_hal_init - 0x00000000 0x38 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .text.rmt_hal_deinit - 0x00000000 0x24 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_ll_write_block - 0x00000000 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_ll_read_block - 0x00000000 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_transform_block - 0x00000000 0x32 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_ll_write_block_512 - 0x00000000 0x2c esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_ll_read_result_256 - 0x00000000 0x24 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_write_one_block_512 - 0x00000000 0x2c esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_write_block_512 - 0x00000000 0x1a esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_next_block_padding - 0x00000000 0x14 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_next_block_normal - 0x00000000 0x12 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_read_result_256 - 0x00000000 0x22 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text.esp_ds_is_busy - 0x00000000 0x12 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text.esp_ds_sign - 0x00000000 0x46 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text.esp_ds_encrypt_params - 0x00000000 0x12c esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .rodata.spi_ll_enable_bus_clock.str1.4 - 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spi_ll_enable_bus_clock - 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spi_ll_reset_register - 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .rodata.spicommon_periph_claim.str1.4 - 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spicommon_periph_claim - 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spicommon_periph_in_use - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spicommon_periph_free - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .rodata.__func__.0 - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .rodata.__func__.1 - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .bss.spi_claiming_func - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .sdata.spi_periph_claimed - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_info 0x00000000 0x55e9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_abbrev 0x00000000 0x31d esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_loc 0x00000000 0x2b6 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_line 0x00000000 0x70c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_str 0x00000000 0x4dbc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_frame 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_install_tx_interrupt.str1.4 - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_install_tx_interrupt - 0x00000000 0xec esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_install_rx_interrupt - 0x00000000 0xea esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_default_rx_isr - 0x00000000 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_default_tx_isr - 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_get_free_m2m_trig_id_mask - 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_get_alignment_constraints - 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_apply_strategy - 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_set_priority - 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_register_tx_event_callbacks.str1.4 - 0x00000000 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_tx_event_callbacks - 0x00000000 0x184 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_rx_event_callbacks - 0x00000000 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_stop - 0x00000000 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_append - 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_reset - 0x00000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.20 - 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.19 - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.18 - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.16 - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.15 - 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.14 - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.13 - 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.12 - 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.11 - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.10 - 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.8 - 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) - .text.lwip_gethostbyname - 0x00000000 0x1be esp-idf/lwip/liblwip.a(netdb.c.obj) - .text.lwip_gethostbyname_r - 0x00000000 0x190 esp-idf/lwip/liblwip.a(netdb.c.obj) - .sbss.s_aliases.1 - 0x00000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) - .bss.s_hostent.2 - 0x00000000 0x14 esp-idf/lwip/liblwip.a(netdb.c.obj) - .bss.s_hostname.3 - 0x00000000 0x101 esp-idf/lwip/liblwip.a(netdb.c.obj) - .sbss.s_phostent_addr.4 - 0x00000000 0x8 esp-idf/lwip/liblwip.a(netdb.c.obj) - .bss.s_hostent_addr.5 - 0x00000000 0x18 esp-idf/lwip/liblwip.a(netdb.c.obj) - .sbss.h_errno 0x00000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_option_info - 0x00000000 0x8e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcp_search_ip_on_mac - 0x00000000 0x66 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_dns_setserver - 0x00000000 0x1e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_dns_getserver - 0x00000000 0xe esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .text.esp_netif_action_join_ip6_multicast_group - 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .text.esp_netif_action_leave_ip6_multicast_group - 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .text.esp_netif_action_add_ip6_address - 0x00000000 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .text.esp_netif_action_remove_ip6_address - 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .rodata._g_esp_netif_inherent_eth_config - 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .sdata._g_esp_netif_netstack_default_wifi_nan - 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .sdata._g_esp_netif_netstack_default_eth - 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .srodata.s_wifi_netif_config_nan - 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .srodata.s_eth_netif_config - 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .text.wlanif_init_nan - 0x00000000 0x22 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .text.ethernet_low_level_init - 0x00000000 0x26 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .text.ethernet_low_level_output - 0x00000000 0x92 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .text.ethernetif_input - 0x00000000 0x76 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .rodata.ethernetif_init.str1.4 - 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .text.ethernetif_init - 0x00000000 0x94 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .rodata.__func__.0 - 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_info 0x00000000 0xafa esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_abbrev 0x00000000 0x2c3 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_loc 0x00000000 0x383 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_line 0x00000000 0x797 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_str 0x00000000 0x73f esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .debug_frame 0x00000000 0xa0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text.wpa_sendto_wrapper - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text.esp_supplicant_disable_pmk_caching - 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_supplicant_str_to_mac - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.wpa_supplicant_connect - 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_get_tx_power - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.wpa_drv_send_action - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_wnm_is_btm_supported_connection - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_wnm_send_bss_transition_mgmt_query - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_rrm_is_rrm_supported_connection - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_rrm_send_neighbor_report_request - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_rrm_send_neighbor_rep_request - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_rxq_init - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_rxq_enqueue - 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_rxq_dequeue - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_rf_band_cb - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_rxq_deinit - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.save_credentials_cb - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_ether_send - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_init - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_stop_connection_timers - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_wps_scan_done - 0x00000000 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.is_wps_pbc_overlap - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.ap_supports_sae - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_build_ic_appie_wps_pr - 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_build_ic_appie_wps_ar - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_parse_scan_result - 0x00000000 0x2cc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_post - 0x00000000 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_rx_eapol - 0x00000000 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_timeout - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_msg_timeout - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_success - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_eapol_start_handle - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_wps_scan - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_alloc_eapol - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_free_eapol - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_send_eap_identity_rsp - 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_send_frag_ack - 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_enrollee_process_msg_frag - 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_process_wps_mX_req - 0x00000000 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_send_wps_mX_rsp - 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wps_tx_start.str1.4 - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_tx_start - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_start_pending - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_stop_process - 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_notify_deauth - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_add_discard_ap - 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_start_msg_timer - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wps_set_default_factory.str1.4 - 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_set_default_factory - 0x00000000 0xee esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_set_factory_info - 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_dev_deinit - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wps_dev_init.str1.4 - 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_dev_init - 0x00000000 0x1de esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_timeout_internal - 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_success_internal - 0x00000000 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_eapol_start_handle_internal - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wps_init_cfg_pin.str1.4 - 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_init_cfg_pin - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wifi_station_wps_init.str1.4 - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_init - 0x00000000 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_delete_timer - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_finish - 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_rx_eapol_internal - 0x00000000 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_msg_timeout_internal - 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_deinit - 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_sm_get - 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_station_wps_start - 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_wps_scan_internal - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_task_deinit - 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.wps_task_init.str1.4 - 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_task_init - 0x00000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_post_block - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.esp_wifi_wps_disable.str1.4 - 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.esp_wifi_wps_disable - 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_check_wifi_mode - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.esp_wifi_wps_enable - 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.is_wps_enabled - 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_wps_enable_internal - 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wifi_wps_disable_internal - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.wps_task - 0x00000000 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text.esp_wifi_wps_start - 0x00000000 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.wps_buf.0 - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_factory_info - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.gWpsSm 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .bss.s_wps_sig_cnt - 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_task_create_sem - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_data_lock - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_queue - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_task_hdl - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_rxq - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_enabled - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_api_sem - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.s_wps_api_lock - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .rodata.str1.4 - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sdata.wps_model_number - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.esp_wifi_unregister_wpa3_cb - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_rng_wrapper - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.pk_write_ec_pubkey_formatted - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.pk_write_ec_param - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_group_byname - 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_affine_coordinates - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_get_order - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_compare - 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_debug_print_point - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_get_public_key - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_priv_key_der - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_group_from_key - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_get_private_key - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_publickey_buf - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_write_pubkey_der - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_parse_priv - 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_get_curve_id - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ecdh - 0x00000000 0x176 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ecdsa_get_sign - 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_verify_signature_r_s - 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_debug_print - 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_parse_subpub_key - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_is_ec_key - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_gen - 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.mbedtls_pk_write_pubkey_formatted - 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_pk_write_formatted_pubkey_der - 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_write_pub_key - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_key_get_subject_public_key - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_cancel_timeout_one - 0x00000000 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_is_timeout_registered - 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_deplete_timeout - 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_replenish_timeout - 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_config_defaults_bss - 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_config_defaults - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_mac_comp - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_mac_comp_empty - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_wep_key_cmp - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_maclist_found - 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_rate_found - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_for_each_sta - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_sta_no_wpa - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_pmksa_remove - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_sm_event - 0x00000000 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_auth_flush - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .rodata.pmksa_cache_auth_list.str1.4 - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_auth_list - 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_sta_delayed_1x_auth_fail_cb - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_for_each_sta - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.hostapd_free_stas - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_sta_delayed_1x_auth_fail_disconnect - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_sta_pending_delayed_1x_auth_fail_disconnect - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_state_txt.str1.4 - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_state_txt - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .text.dragonfly_suitable_group - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .rodata.wpa_cipher_txt.str1.4 - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_cipher_txt - 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_insert_pmkid - 0x00000000 0x1ac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_cipher_rsc_len - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .text.dh_init 0x00000000 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .text.dh_derive_shared - 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .text.eap_wsc_build_frag_ack - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_info 0x00000000 0x3ab esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_abbrev 0x00000000 0x1ae esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_loc 0x00000000 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_line 0x00000000 0x404 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_str 0x00000000 0x4cd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.wpabuf_put_be24 - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_hdr_len_valid - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_hdr_validate - 0x00000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_msg_alloc - 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_update_len - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_get_id - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text.eap_get_type - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_info 0x00000000 0x96f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_abbrev 0x00000000 0x283 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_loc 0x00000000 0x84d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_aranges - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_ranges 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_line 0x00000000 0x99f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_str 0x00000000 0x5b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .debug_frame 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.eapol_sm_notify_eap_success - 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_set_pmk - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sta_is_cur_pmksa_set - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_resize - 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_alloc_ext_data - 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_dup - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_concat - 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_printf - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .rodata._wpa_snprintf_hex.str1.4 - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .text._wpa_snprintf_hex - 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .text.wpa_snprintf_hex_uppercase - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .text.wpa_snprintf_hex - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_info 0x00000000 0x361 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_abbrev 0x00000000 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_loc 0x00000000 0x3a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_line 0x00000000 0x43b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_str 0x00000000 0x2bd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_frame 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.is_selected_pin_registrar - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .rodata.wps_init.str1.4 - 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_init - 0x00000000 0x122 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_deinit - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_process_msg - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_get_msg - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_is_selected_pbc_registrar - 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_is_selected_pin_registrar - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_is_addr_authorized - 0x00000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_ap_priority_compar - 0x00000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_get_uuid_e - 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_is_20 - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_build_assoc_req_ie - 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_build_assoc_resp_ie - 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_build_probe_req_ie - 0x00000000 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .rodata.wps_attr_text.str1.4 - 0x00000000 0xfb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text.wps_attr_text - 0x00000000 0x2ca esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_info 0x00000000 0x2981 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_abbrev 0x00000000 0x475 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_loc 0x00000000 0x11f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_aranges - 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_ranges 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_line 0x00000000 0x19f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_str 0x00000000 0x175e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .debug_frame 0x00000000 0x28c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wpabuf_put_be16 - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wpabuf_put_be24 - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_public_key - 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_req_type - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_resp_type - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_config_methods - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_uuid_e - 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_dev_password_id - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_config_error - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_authenticator - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_version - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_wfa_ext - 0x00000000 0x1aa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_msg_type - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_enrollee_nonce - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_registrar_nonce - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_auth_type_flags - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_encr_type_flags - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_conn_type_flags - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_assoc_state - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_key_wrap_auth - 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_encr_settings - 0x00000000 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_ie_encapsulate - 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_mac_addr - 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_rf_bands_attr - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text.wps_build_ap_channel - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_info 0x00000000 0x3b83 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_abbrev 0x00000000 0x459 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_loc 0x00000000 0x212c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_aranges - 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_ranges 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_line 0x00000000 0x231d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_str 0x00000000 0x1971 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .debug_frame 0x00000000 0x414 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text.wps_set_vendor_ext_wfa_subelem - 0x00000000 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text.wps_parse_vendor_ext_wfa - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text.wps_parse_vendor_ext - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text.wps_set_attr - 0x00000000 0x6d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text.wps_parse_msg - 0x00000000 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_info 0x00000000 0xca7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_abbrev 0x00000000 0x289 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_loc 0x00000000 0x17fa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_ranges 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_line 0x00000000 0x19e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_str 0x00000000 0xefc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .debug_frame 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_kdf 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .rodata.wps_derive_keys.str1.4 - 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_derive_keys - 0x00000000 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_derive_psk - 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_decrypt_encr_settings - 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pin_checksum - 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pin_valid - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_generate_pin - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pin_str_valid - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_fail_event - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_success_event - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pwd_auth_fail_event - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pbc_overlap_event - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_selected_registrar_timeout_event - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pbc_timeout_event - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pbc_active_event - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_pbc_disable_event - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_dev_type_str2bin - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .rodata.wps_dev_type_bin2str.str1.4 - 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_dev_type_bin2str - 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .rodata.uuid_gen_mac_addr.str1.4 - 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.uuid_gen_mac_addr - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .rodata.wps_config_methods_str2bin.str1.4 - 0x00000000 0xb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_config_methods_str2bin - 0x00000000 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_build_wsc_ack - 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text.wps_build_wsc_nack - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_info 0x00000000 0x24cf esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_abbrev 0x00000000 0x49b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_loc 0x00000000 0xda9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_aranges - 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_ranges 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_line 0x00000000 0x18f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_str 0x00000000 0x1121 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .debug_frame 0x00000000 0x340 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wpabuf_put_be16 - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_primary_dev_type - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_manufacturer - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_model_name - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_model_number - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_serial_number - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_dev_name - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_manufacturer - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_model_name - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_model_number - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_serial_number - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_primary_dev_type - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_secondary_dev_type - 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_req_dev_type - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_dev_name - 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_device_attrs - 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_os_version - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_vendor_ext_m1 - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_rf_bands - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_vendor_ext - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_build_application_ext - 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_device_attrs - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_os_version - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_vendor_ext_m1 - 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_process_rf_bands - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text.wps_device_data_free - 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_info 0x00000000 0x2297 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_abbrev 0x00000000 0x336 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_loc 0x00000000 0x168e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_aranges - 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_ranges 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_line 0x00000000 0x18aa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_str 0x00000000 0x108f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .debug_frame 0x00000000 0x408 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_ap_settings - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_wps_state - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_m1 - 0x00000000 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_e_hash - 0x00000000 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_m3 - 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_e_snonce1 - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_m5 - 0x00000000 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_e_snonce2 - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_m7 - 0x00000000 0x10a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_registrar_nonce - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_uuid_r - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_r_hash1 - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_r_hash2 - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_build_wsc_done - 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_wsc_start - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_enrollee_nonce - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_wsc_ack - 0x00000000 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_wsc_nack - 0x00000000 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_dev_pw_id - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_pubkey - 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_m2 - 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_m2d - 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_r_snonce1 - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_m4 - 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_r_snonce2 - 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_m6 - 0x00000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_cred_e - 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_creds - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_ap_settings_e - 0x00000000 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_m8 - 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_process_wsc_msg - 0x00000000 0x1b2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_enrollee_get_msg - 0x00000000 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text.wps_enrollee_process_msg - 0x00000000 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_info 0x00000000 0x451f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_abbrev 0x00000000 0x50c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_loc 0x00000000 0x1f5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_aranges - 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_ranges 0x00000000 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_line 0x00000000 0x396c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_str 0x00000000 0x219a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .debug_frame 0x00000000 0x590 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.add_char - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_pk_base32_encode - 0x00000000 0x156 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_api_lock - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_api_unlock - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_rxq_init - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_rxq_enqueue - 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_rxq_dequeue - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_rxq_deinit - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_set_eap_state - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.wpa2_start_eapol_internal.str1.4 - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_start_eapol_internal - 0x00000000 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_client_enable_fn - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_wifi_sta_enterprise_disable - 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_post - 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_task_delete - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.eap_peer_sm_deinit.str1.4 - 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_peer_sm_deinit - 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.eap_peer_sm_init.str1.4 - 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_peer_sm_init - 0x00000000 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_client_disable_fn - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_start_eapol - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_sm_rx_eapol - 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_ent_rx_eapol - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_sm_send_eapol - 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.eap_sm_process_request.str1.4 - 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_sm_process_request - 0x00000000 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.eap_sm_rx_eapol_internal.str1.4 - 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.eap_sm_rx_eapol_internal - 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wpa2_task - 0x00000000 0x122 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_wifi_sta_enterprise_enable - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_certificate_and_key - 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_certificate_and_key - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_ca_cert - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_ca_cert - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_identity - 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_identity - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_username - 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_username - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_password - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_password - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_new_password - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_clear_new_password - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_disable_time_check - 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.wifi_sta_get_enterprise_disable_time_check - 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_get_disable_time_check - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.esp_eap_client_set_ttls_phase2_method.str1.4 - 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_ttls_phase2_method - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_suiteb_192bit_certification - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_pac_file - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .rodata.esp_eap_client_set_fast_params.str1.4 - 0x00000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_set_fast_params - 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text.esp_eap_client_use_default_cert_bundle - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wpa2_rxq - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sdata.s_disable_time_check - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wifi_wpa2_sync_sem - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wpa2_api_lock - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sdata.s_wpa2_state - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wpa2_queue - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wpa2_task_hdl - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss.s_wpa2_data_lock - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .text.wpa_sm_get_beacon_ie - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_mbedtls_cleanup - 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_mbedtls_conn_delete - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_key_derivation - 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_mbedtls_read - 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_mbedtls_write - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_enable_sha1_config - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.set_ca_cert - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.set_pki_context - 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_set_ciphersuite - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .rodata.set_client_config.str1.4 - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.set_client_config - 0x00000000 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .rodata.tls_create_mbedtls_handle.str1.4 - 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_create_mbedtls_handle - 0x00000000 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_prf - 0x00000000 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_init - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_deinit - 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_init - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_deinit - 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_get_errors - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_established - 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_global_set_verify - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_set_verify - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_handshake - 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_server_handshake - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_encrypt - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_decrypt - 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_resumed - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_set_cipher_list - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_get_version - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_get_cipher - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_enable_workaround - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_get_failed - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_get_read_alerts - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_get_write_alerts - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_set_params - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_global_set_params - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_set_session_ticket_cb - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_export_key - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_get_eap_fast_key - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_client_hello_ext - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_shutdown - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text.tls_connection_get_random - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .rodata.__func__.0 - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .rodata.__func__.1 - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .rodata.eap_mbedtls_x509_crt_profile - 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .data.tls_sig_algs_for_eap - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .sbss.tls_instance_count - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_info 0x00000000 0x45ba esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_abbrev 0x00000000 0x5c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_loc 0x00000000 0x1a87 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_aranges - 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_ranges 0x00000000 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_line 0x00000000 0x1b10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_str 0x00000000 0x2a3e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .debug_frame 0x00000000 0x4ec esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .text.crypto_bignum_bits - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .text.crypto_bignum_to_string - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .text.crypto_free_buffer - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.aes_siv_encrypt - 0x00000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .text.dh5_init - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .text.dh5_init_fixed - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .text.dh5_derive_shared - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .text.dh5_free - 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_info 0x00000000 0x337 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_abbrev 0x00000000 0x1a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_loc 0x00000000 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_line 0x00000000 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_str 0x00000000 0x311 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .debug_frame 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.get_ie 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_ie_count - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.get_vendor_ie - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.mbo_add_ie - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .rodata.ieee802_11_parse_candidate_list.str1.4 - 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_parse_candidate_list - 0x00000000 0x19e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_vendor_ie_concat - 0x00000000 0xee esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_ext_capab - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.get_operating_class - 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_config_allowed_method - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_allowed_phase2_type - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_set_scard_pin - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_get_scard_identity - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.wpabuf_put_be24 - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_free_key - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_copy_buf - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_get_eap_method - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_get_methods - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_get_type - 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_phase2_type - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_phase2_types - 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_method_alloc - 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_method_free - 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_method_register - 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_unregister_methods - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_register_methods - 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_deinit_prev_method - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .rodata.eap_peer_config_init.str1.4 - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_config_init - 0x00000000 0x22e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_config_deinit - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .rodata.eap_peer_blob_init.str1.4 - 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_blob_init - 0x00000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .rodata.eap_sm_get_method_name.str1.4 - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_get_method_name - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_peer_blob_deinit - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_abort - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config - 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_allowed_method - 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_allowMethod - 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_build_identity_resp - 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_build_nak - 0x00000000 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_request - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_request_identity - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_request_password - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_request_new_password - 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_sm_buildIdentity - 0x00000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config_identity - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config_password - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config_password2 - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config_new_password - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_set_config_blob - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text.eap_get_config_blob - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.config_methods - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.eap_methods - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.esp_crt_bundle_attach_fn - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_default_cert_bundle - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_suiteb_certification - 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_pac_file_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_pac_file - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_phase1_options - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_ttls_phase2_type - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_new_password_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_new_password - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_password_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_password - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_ca_cert_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_ca_cert - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_private_key_passwd_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_private_key_passwd - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_private_key_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_private_key - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_client_cert_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_client_cert - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_username_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_username - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_anonymous_identity_len - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .sbss.g_wpa_anonymous_identity - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_info 0x00000000 0x2519 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_abbrev 0x00000000 0x507 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_loc 0x00000000 0x166a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_aranges - 0x00000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_ranges 0x00000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_line 0x00000000 0x2564 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_str 0x00000000 0x1399 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .debug_frame 0x00000000 0x578 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_check_mslen - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_isKeyAvailable - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_getKey - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_check_config - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_copy_challenge - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_challenge_reply - 0x00000000 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_challenge - 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_password_changed - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_success - 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_deinit - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .rodata.eap_mschapv2_failure_txt.str1.4 - 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_failure_txt - 0x00000000 0x1ce esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_change_password - 0x00000000 0x20c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_failure - 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_process - 0x00000000 0x134 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_mschapv2_init - 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .rodata.eap_peer_mschapv2_register.str1.4 - 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text.eap_peer_mschapv2_register - 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_info 0x00000000 0x25e7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_abbrev 0x00000000 0x49a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_loc 0x00000000 0x15c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_aranges - 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_ranges 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_line 0x00000000 0x1fca esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_str 0x00000000 0x111f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .debug_frame 0x00000000 0x2fc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_isKeyAvailable - 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_get_session_id - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_free_key - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_init_for_reauth - 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_deinit_for_reauth - 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_has_reauth_data - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_get_status.str1.4 - 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_get_status - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_get_emsk - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_getKey.str1.4 - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_getKey - 0x00000000 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.wpabuf_put_be16 - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peapv2_tlv_eap_payload - 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_get_isk - 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_tlv_build_nak - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_derive_cmk.str1.4 - 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_derive_cmk - 0x00000000 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_tlv_validate_cryptobinding - 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.peap_phase2_sufficient - 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_tlv_add_cryptobinding - 0x00000000 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_tlv_build_result - 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_tlv_process - 0x00000000 0x1b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_phase2_request - 0x00000000 0x1b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_decrypt - 0x00000000 0x47c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_process.str1.4 - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_process - 0x00000000 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_deinit - 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_parse_phase1.str1.4 - 0x00000000 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_parse_phase1 - 0x00000000 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peap_init.str1.4 - 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peap_init - 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata.eap_peer_peap_register.str1.4 - 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text.eap_peer_peap_register - 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .rodata 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_info 0x00000000 0x387d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_abbrev 0x00000000 0x498 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_loc 0x00000000 0x25ca esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_aranges - 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_ranges 0x00000000 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_line 0x00000000 0x3b1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_str 0x00000000 0x1395 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .debug_frame 0x00000000 0x4b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .text.peap_prfplus - 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_info 0x00000000 0x347 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_abbrev 0x00000000 0x14d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_loc 0x00000000 0x266 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_line 0x00000000 0x572 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_str 0x00000000 0x2be esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .debug_frame 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_isKeyAvailable - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_getKey - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_failure - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_free_key - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .rodata.eap_tls_success.str1.4 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_success - 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_process - 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_deinit - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_tls_init - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .rodata.eap_peer_tls_register.str1.4 - 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text.eap_peer_tls_register - 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_info 0x00000000 0x14b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_abbrev 0x00000000 0x3b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_loc 0x00000000 0x7fd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_aranges - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_ranges 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_line 0x00000000 0xdb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_str 0x00000000 0xcde esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .debug_frame 0x00000000 0x174 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_tls_params_flags.str1.4 - 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_params_flags - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_params_from_conf1 - 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_check_blob - 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_params_from_conf - 0x00000000 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_init_connection - 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.wpabuf_put_data - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.wpabuf_put_be32 - 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_msg_alloc - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_peer_tls_ssl_init.str1.4 - 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_ssl_init - 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_derive_key - 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_peer_tls_derive_session_id.str1.4 - 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_derive_session_id - 0x00000000 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_build_ack - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_peer_tls_status.str1.4 - 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_status - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_process_init - 0x00000000 0x12e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_reset_input - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_reassemble_fragment - 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_data_reassemble - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_process_input - 0x00000000 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_reset_output - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_ssl_deinit - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_tls_process_output.str1.4 - 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_tls_process_output - 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .rodata.eap_peer_tls_process_helper.str1.4 - 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_process_helper - 0x00000000 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_reauth_init - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_decrypt - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_encrypt - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_select_phase2_methods - 0x00000000 0x144 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text.eap_peer_tls_phase2_nak - 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_info 0x00000000 0x2acb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_abbrev 0x00000000 0x4bb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_loc 0x00000000 0x1f88 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_aranges - 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_ranges 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_line 0x00000000 0x252d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_str 0x00000000 0x1394 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .debug_frame 0x00000000 0x4c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_eap_deinit - 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_select_eap_method - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_check_auth_status - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_isKeyAvailable - 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_fake_identity_request - 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_get_emsk - 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_get_session_id - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_getKey - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_free_key - 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_init_for_reauth - 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_deinit_for_reauth - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_has_reauth_data - 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_ttls_get_status.str1.4 - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_get_status - 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_eap_process - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_encrypt_response - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_eap_method - 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_avp_hdr - 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_avp_encapsulate - 0x00000000 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_eap - 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_avp_add - 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_pap - 0x00000000 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_ttls_implicit_challenge.str1.4 - 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_implicit_challenge - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_mschapv2 - 0x00000000 0x1da esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_mschap - 0x00000000 0x18c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request_chap - 0x00000000 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_ttls_phase2_request.str1.4 - 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_request - 0x00000000 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_implicit_identity_request - 0x00000000 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_process_phase2_eap - 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_phase2_start - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_parse_attr_eap - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_parse_avp - 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_parse_avps - 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_process_phase2_mschapv2 - 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_process_decrypted - 0x00000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_decrypt - 0x00000000 0x154 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_ttls_v0_derive_key.str1.4 - 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_v0_derive_key - 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_process_handshake - 0x00000000 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_process - 0x00000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_deinit - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_ttls_init.str1.4 - 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_ttls_init - 0x00000000 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .rodata.eap_peer_ttls_register.str1.4 - 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text.eap_peer_ttls_register - 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_info 0x00000000 0x4281 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_abbrev 0x00000000 0x48a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_loc 0x00000000 0x3746 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_aranges - 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_ranges 0x00000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_line 0x00000000 0x3c7f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_str 0x00000000 0x1593 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .debug_frame 0x00000000 0x770 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .text.mschapv2_remove_domain - 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .text.mschapv2_derive_response - 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .text.mschapv2_verify_auth_response - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_info 0x00000000 0x59d esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_abbrev 0x00000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_loc 0x00000000 0x376 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_line 0x00000000 0x65c esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_str 0x00000000 0x3f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .debug_frame 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .rodata.pmksa_cache_list.str1.4 - 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_list - 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_network_idx - 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_auth_type - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_encr_type - 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_network_key_idx - 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_ssid - 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_network_key - 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred_mac_addr - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_workaround_cred_key - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_authenticator - 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_key_wrap_auth - 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_cred - 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text.wps_process_ap_settings - 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_info 0x00000000 0x1a6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_abbrev 0x00000000 0x37e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_loc 0x00000000 0x6bd esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_aranges - 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_ranges 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_line 0x00000000 0xbe5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_str 0x00000000 0x1042 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .debug_frame 0x00000000 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.utf8_to_ucs2 - 0x00000000 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.challenge_hash - 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.nt_password_hash - 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.hash_nt_password_hash - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.challenge_response - 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.generate_nt_response - 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.generate_nt_response_pwhash - 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.generate_authenticator_response_pwhash - 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.generate_authenticator_response - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.nt_challenge_response - 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.get_master_key - 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.get_asymetric_start_key - 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.encrypt_pw_block_with_password_hash - 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.new_password_encrypted_with_old_nt_password_hash - 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.nt_password_hash_encrypted_with_block - 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text.old_nt_password_hash_encrypted_with_new_nt_password_hash - 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.shs_pad2.0 - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.magic2.1 - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.magic3.2 - 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.shs_pad1.3 - 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.magic1.4 - 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.magic2.5 - 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata.magic1.6 - 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .rodata 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_info 0x00000000 0x12b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_abbrev 0x00000000 0x266 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_loc 0x00000000 0x123e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_aranges - 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_ranges 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_line 0x00000000 0xef5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_str 0x00000000 0x690 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .debug_frame 0x00000000 0x2a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.MD4Init 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.MD4Transform - 0x00000000 0x51c esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.MD4Update - 0x00000000 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.MD4Pad 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.MD4Final - 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text.md4_vector - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .rodata.PADDING - 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_info 0x00000000 0x5bc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_abbrev 0x00000000 0x1b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_loc 0x00000000 0x9c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_ranges 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_line 0x00000000 0x853 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_str 0x00000000 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .debug_frame 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .text.chap_md5 - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_info 0x00000000 0x1d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_abbrev 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_loc 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_line 0x00000000 0x32d esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_str 0x00000000 0x26f esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .debug_frame 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.desfunc 0x00000000 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.cookey 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.deskey 0x00000000 0x1b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des_encrypt - 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des_key_setup - 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des_block_encrypt - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des_block_decrypt - 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des3_key_setup - 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des3_encrypt - 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text.des3_decrypt - 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP8 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP7 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP6 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP5 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP4 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP3 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP2 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.SP1 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.pc2 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.totrot - 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.pc1 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.bigbyte - 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .rodata.bytebit - 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_info 0x00000000 0xd21 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_abbrev 0x00000000 0x2ba esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_loc 0x00000000 0x1513 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_aranges - 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_ranges 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_line 0x00000000 0x1968 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_str 0x00000000 0x3d9 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .debug_frame 0x00000000 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.sc_printf.str1.4 - 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.sc_printf - 0x00000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.core_printf.str1.4 - 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.core_printf - 0x00000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.target_printf.str1.4 - 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.target_printf - 0x00000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.wapi_printf.str1.4 - 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.wapi_printf - 0x00000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.mesh_printf.str1.4 - 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.mesh_printf - 0x00000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .bss.g_log_mod - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .data.libcore_reversion_git - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .rodata.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_find_conflict_roots.part.5 - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_set_root_candidate.part.17 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_set_root_candidate_ie.part.18 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_register_timer_cb - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_ie_update_rssi - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_set_ie.constprop.39 - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_clear_parent.part.25 - 0x00000000 0x124 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_clear_parent.constprop.38 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_set_ie - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.is_mesh_last_parent - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_send_root_switch - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_is_switch_parent - 0x00000000 0x204 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_compute_my_votes - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_check_rc_expire - 0x00000000 0x3a4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_change_layer - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_set_parent_candidate_config - 0x00000000 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_parent_check_root_conflict - 0x00000000 0xda /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.route_announce_timer_start - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.route_announce_timeout_process - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.route_announce_timer_stop - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_ie_monitor - 0x00000000 0xd8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ie_monitor_timeout_process - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_bcn_change_timer_start - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_root_connect_timer_start - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.candidate_monitor_timer_stop - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_disable_parent_switch_monitor - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.candidate_monitor_timer_start - 0x00000000 0x226 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_ps_control_check_awake - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_control_set_awake - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_control_set_sleep - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_control_get_min_duty - 0x00000000 0x18e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_control_timeout_process - 0x00000000 0x1f4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_find_conflict_roots - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_remove_conflict_roots - 0x00000000 0x10a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.is_self_mac_greater - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_is_yield_root - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_add_conflict_roots - 0x00000000 0x210 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_yield_roots_announce - 0x00000000 0x202 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_yield_roots_monitor - 0x00000000 0x1bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_delete_timers - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_send_roots_gone - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_send_roots_fixed - 0x00000000 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_send_roots_stop - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_check_conflict_roots - 0x00000000 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_send_rmv_announcement - 0x00000000 0x208 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_is_scan_allowed - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_rt_change_debug - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_is_rt_change_debug - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_node_process_disconnect - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_vote_done - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_disconnected - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_scan_request - 0x00000000 0x11e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_rootless - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_check_no_parent_found - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_root_process_connect - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_child_set_ps_duty - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_child_clr_ps_duty - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_process_ps_type - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_is_better_parent - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.is_mesh_child - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_flush_scan_result - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_scan_done - 0x00000000 0x234 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.scan_result_print - 0x00000000 0x2c4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_scan_done_process_weak - 0x00000000 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_conn_init - 0x00000000 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_conn_deinit - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_parent_insert_candidate - 0x00000000 0x180 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_scan_done_vote - 0x00000000 0x4fc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_scan_done - 0x00000000 0x73a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_update_current_parent - 0x00000000 0x134 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_set_root_candidate - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_update_ie_rssi - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_set_root_candidate_ie - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_compute_votes - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_process_root_candidate - 0x00000000 0x224 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_process_same_root_candidate - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_add_invalid_rc - 0x00000000 0x12e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text._mesh_find_root_competitor - 0x00000000 0x62e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.print_rc_info - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_is_last_rc_existing - 0x00000000 0x128 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_update_rcandidate_rssi - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_init_rcandidate - 0x00000000 0x10a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_check_last_rcandidate - 0x00000000 0x2c0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_find_root_competitor - 0x00000000 0x1ee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_vote_root_candidate - 0x00000000 0x5d2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_router - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_nvs_settings - 0x00000000 0x278 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_is_better_parent - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_parent_compute_rank - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_set_ignore - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_parent_limit_layer2_cap - 0x00000000 0x274 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_parent_try_rssi - 0x00000000 0x1f8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_parent_try_layer - 0x00000000 0x150 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_select_parent - 0x00000000 0x204 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_get_child_num - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_process_ps_awake - 0x00000000 0x134 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_child_event - 0x00000000 0xee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_process_child_macconnected - 0x00000000 0x26c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.print_txupQ_pending - 0x00000000 0x2e8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_get_child_idx - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_get_child_idx_lock - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_insert_child - 0x00000000 0x338 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_remove_child - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_remove_children - 0x00000000 0x152 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_leaf - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_no_parent - 0x00000000 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_clear_parent - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_revote_root - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_node_process_healing - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_push_to_nwk_queue - 0x00000000 0x156 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_route_announce_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ie_monitor_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_bcn_change_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_root_connect_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_candidate_monitor_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_candidate_monitor_timeout_process - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_control_timeout - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_sta_connect - 0x00000000 0x240 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_connect_to_router - 0x00000000 0x32e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_connect_to_candidate - 0x00000000 0x3d4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_root_connect_timeout_process - 0x00000000 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_root_process_disconnect - 0x00000000 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_manual_networking - 0x00000000 0x2ea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_sta_disconnect - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_connect - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_disconnect - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_parent_reselect - 0x00000000 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_check_layer - 0x00000000 0x122 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_ie_change - 0x00000000 0x41c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_process_conflict_discnx - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_node_process_cycle - 0x00000000 0x102 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_wifi_event_cb - 0x00000000 0x41e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_wifi_event_cb - 0x00000000 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_post_toDS_state - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_set_rssi_threshold - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_get_rssi_threshold - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_set_default_rssi_threshold - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_is_nwk_inited - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_is_nwk_running - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_process_parent_organized - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_task_deinit - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_nwk_task_init - 0x00000000 0x3ca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_nwk_task_deinit - 0x00000000 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_get_beacon_interval - 0x00000000 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_adjust_passive_scan_time - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_set_beacon_interval - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_parent_select_done - 0x00000000 0x8a8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_parent_select - 0x00000000 0x97a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_bcn_change_timeout_process - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_nwk_task_main - 0x00000000 0x3550 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_task_main - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.mesh_ps_get_duties - 0x00000000 0x14a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text.esp_mesh_print_scan_result - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.ann_time_start - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.bcn_change_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.candidate_monitor_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.cnx_backoff.10356 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_is_wifi_connected - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_is_wifi_connecting - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_is_wifi_disconnecting - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_conn - 0x00000000 0x2c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_current_parent - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_ext_vote_state - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_last_parent - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_last_parent_chain - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_last_parent_ie - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.g_mesh_rmv_opt - 0x00000000 0x4d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.is_nwk_running - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.last_event_id.11387 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.max_voter_num.10339 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_conn_mutex - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_nwk_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_nwk_task - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_ps_cnt - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_ps_control - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mesh_timer_func - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mie_log_time_start - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.mie_monitor_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.ps_control_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.retry_attemps - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.root_connect_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.route_announce_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_extra_scan_attempts - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_final_struggle.10344 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_first_short_time_retries - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_history_root_backoff - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_is_parent_set - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_layer_backoff_times - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_last_layer - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_last_rcandidate - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_print_scan_result_enable - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_rcandidate - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_root_addr - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_rt_change_dbg - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_running_channel - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_mesh_scan_req - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_monitor_timer_interval - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_parent_cyclic_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_parent_idle_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_parent_map_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_parent_root_children_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_parent_rssi_threshold - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_root_connect_timer_armed - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_rssi_backoff_times - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_sta_discnx_times - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_vote_expire_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_vote_invalid_list - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_vote_ps_times - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_vote_rc_times - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.s_vote_scan_times - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.vote_log_time_start - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.vote_log_time_stop - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .data.s_mesh_beacon_interval - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .data.s_mesh_scan_done - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .data.s_monitor_parent_config - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10213 - 0x00000000 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10233 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10289 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10363 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10369 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10394 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10403 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10415 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10420 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10428 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10460 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10599 - 0x00000000 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10660 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10674 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10685 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10708 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10727 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10863 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10932 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10939 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10961 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.10980 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11005 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11017 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11021 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11294 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11310 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11323 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.__func__.11354 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata._mesh_find_root_competitor.str1.4 - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.candidate_monitor_timer_start.str1.4 - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_clear_parent.part.25.str1.4 - 0x00000000 0x55 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_connect.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_ie_monitor.str1.4 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_insert_child.str1.4 - 0x00000000 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_is_switch_parent.str1.4 - 0x00000000 0x128 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_nwk_task_init.str1.4 - 0x00000000 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_parent_select.str1.4 - 0x00000000 0x250 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_push_to_nwk_queue.str1.4 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_remove_children.str1.4 - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_scan_done.str1.4 - 0x00000000 0xb3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_scan_done_vote.str1.4 - 0x00000000 0x18f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_send_rmv_announcement.str1.4 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_set_parent_candidate_config.str1.4 - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.esp_mesh_sta_connect.str1.4 - 0x00000000 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_add_invalid_rc.str1.4 - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_adjust_passive_scan_time.str1.4 - 0x00000000 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_check_last_rcandidate.str1.4 - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_check_rc_expire.str1.4 - 0x00000000 0x139 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_connect_to_candidate.str1.4 - 0x00000000 0x112 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_connect_to_router.str1.4 - 0x00000000 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_init_rcandidate.str1.4 - 0x00000000 0x4b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_node_process_cycle.str1.4 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_change_layer.str1.4 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_check_layer.str1.4 - 0x00000000 0x79 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_check_no_parent_found.str1.4 - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_manual_networking.str1.4 - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_process_ie_change.str1.4 - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_process_no_parent.str1.4 - 0x00000000 0x39 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_process_nvs_settings.str1.4 - 0x00000000 0xdd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_process_scan_done.str1.4 - 0x00000000 0xaf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_process_scan_request.str1.4 - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_nwk_task_main.str1.4 - 0x00000000 0xd4f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_parent_select_done.str1.4 - 0x00000000 0x1af /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_process_child_macconnected.str1.4 - 0x00000000 0xc9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_ps_control_get_min_duty.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_ps_control_timeout_process.str1.4 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_scan_done_process_weak.str1.4 - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_select_parent.str1.4 - 0x00000000 0x69 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_select_parent_limit_layer2_cap.str1.4 - 0x00000000 0x10e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_select_parent_try_layer.str1.4 - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_select_parent_try_rssi.str1.4 - 0x00000000 0x97 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_select_set_ignore.str1.4 - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_vote_root_candidate.str1.4 - 0x00000000 0x13f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.mesh_wifi_event_cb.str1.4 - 0x00000000 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.print_txupQ_pending.str1.4 - 0x00000000 0x14d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.route_announce_timeout_process.str1.4 - 0x00000000 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .rodata.scan_result_print.str1.4 - 0x00000000 0x160 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_print_txQ_waiting - 0x00000000 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_print_txQ_waiting - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_get_tx_pending - 0x00000000 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_get_tx_pending - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_block_event - 0x00000000 0x20e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_block_start - 0x00000000 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_forward_check_active - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_check_tid_mbox_full - 0x00000000 0x1fa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_check_tid_mbox_full - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_push_to_ack_state_queue - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_tx_cb - 0x00000000 0x12a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_best_effort_tx - 0x00000000 0x31e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_push_to_wnd_queue - 0x00000000 0x126 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_operation_rxseqno - 0x00000000 0x444 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending_get_cidx - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending_insert_child - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending_delete_child - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending_get_xonseq - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending_clear_xonseq - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_txupQ_pending - 0x00000000 0xc88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_process_txupQ_pending - 0x00000000 0x2cc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_push_to_tx_queue - 0x00000000 0x588 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_force_txupQ_pending - 0x00000000 0x17a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_available_txupQ_num - 0x00000000 0x1e4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_flush_txQ - 0x00000000 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_tx_tid_flush - 0x00000000 0x218 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_tx_tid_stop - 0x00000000 0x1e0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_push_to_ps_tx_queue - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_ps_tx - 0x00000000 0x15e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.tx_task_main - 0x00000000 0x240 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_discard_context - 0x00000000 0x16c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_xon - 0x00000000 0x6c0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_recv_xon - 0x00000000 0x17a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_tx_task_main - 0x00000000 0xa3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_deliver_packet - 0x00000000 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_flush_packets - 0x00000000 0x2d2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_process_disconnected - 0x00000000 0x330 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_process_expired - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_flush_upstream_packets - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.xon_task_main - 0x00000000 0x1bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_process_no_wnd - 0x00000000 0x140 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_xon_task_main - 0x00000000 0xa70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_tx_task_deinit - 0x00000000 0x224 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_tx_task_init - 0x00000000 0x238 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_tx_task_init - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_tx_task_deinit - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_block_deinit - 0x00000000 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_send_block_deinit - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.mesh_send_block_main - 0x00000000 0x4e0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_block_init - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_flush_upstream_packets - 0x00000000 0x1ac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text.esp_mesh_send_block_time - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.is_block_running - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.is_mesh_tx_started - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_ack_state_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_be_xmit_seqno - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_conn_leave - 0x00000000 0x2c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_new_wnd_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_reassign_xseqno - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_self_xonseq - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_tx_fail_cnt.10275 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_tx_mbox - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_tx_task - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_xon 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.mesh_xreq_seqno - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.send_block_flush_mbox - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.send_block_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .bss.send_block_task - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .data.MESH_BCAST_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .data.g_mesh_packet_lifetime - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10016 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10053 - 0x00000000 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10076 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10088 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10121 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10137 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10175 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10185 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10198 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10209 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10216 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10264 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10282 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10300 - 0x00000000 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10308 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10316 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10334 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10387 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10452 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10489 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.10497 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.__func__.9985 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_available_txupQ_num.str1.4 - 0x00000000 0x43 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_flush_upstream_packets.str1.4 - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_force_txupQ_pending.str1.4 - 0x00000000 0x5b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_operation_rxseqno.str1.4 - 0x00000000 0x138 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_print_txQ_waiting.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_process_txupQ_pending.str1.4 - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_push_to_tx_queue.str1.4 - 0x00000000 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_push_to_wnd_queue.str1.4 - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_send_block_event.str1.4 - 0x00000000 0x91 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_send_block_init.str1.4 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_send_xon.str1.4 - 0x00000000 0x254 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_tx_task_init.str1.4 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_tx_tid_flush.str1.4 - 0x00000000 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.esp_mesh_txupQ_pending.str1.4 - 0x00000000 0x3eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_check_tid_mbox_full.str1.4 - 0x00000000 0x8b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_flush_upstream_packets.str1.4 - 0x00000000 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_get_tx_pending.str1.4 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_print_txQ_waiting.str1.4 - 0x00000000 0x97 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_send_block_main.str1.4 - 0x00000000 0x15f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_tx_task_main.str1.4 - 0x00000000 0x189 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_tx_tid_stop.str1.4 - 0x00000000 0xa3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_xon_deliver_packet.str1.4 - 0x00000000 0x6b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_xon_process_disconnected.str1.4 - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.mesh_xon_task_main.str1.4 - 0x00000000 0x232 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.tx_task_main.str1.4 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .rodata.xon_task_main.str1.4 - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mgmt_routing_table.part.2 - 0x00000000 0x40c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.optype2str - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_get_optlen - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_mcast_cover_node - 0x00000000 0x364 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_remove_myself_from_forwarding - 0x00000000 0x148 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_delivery_toDS - 0x00000000 0x21e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_delivery_toSelf - 0x00000000 0x412 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mcast_cover_node - 0x00000000 0x488 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_process_mcast - 0x00000000 0x17e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_process_bcast - 0x00000000 0x388 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mgmt_root_switch - 0x00000000 0x184 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mgmt_root_waive - 0x00000000 0x204 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mgmt_announce - 0x00000000 0x468 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.mesh_process_mgmt_routing_table - 0x00000000 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_process_options - 0x00000000 0x296 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_process_ucast - 0x00000000 0x97e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text.esp_mesh_forward_packet - 0x00000000 0x46c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .bss.mesh_xseqno - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .data.MESH_BCAST_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.CSWTCH.646 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.__func__.10013 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.__func__.10031 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.__func__.10045 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.__func__.9947 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.__func__.9981 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_delivery_toDS.str1.4 - 0x00000000 0x65 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_delivery_toSelf.str1.4 - 0x00000000 0xab /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_forward_packet.str1.4 - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_mcast_cover_node.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_process_options.str1.4 - 0x00000000 0x69 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.esp_mesh_process_ucast.str1.4 - 0x00000000 0x346 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.mesh_process_mgmt_announce.str1.4 - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.mesh_process_mgmt_root_waive.str1.4 - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.mesh_process_mgmt_routing_table.part.2.str1.4 - 0x00000000 0x1c9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.optype2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .rodata.str1.4 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text.esp_mesh_channel_enable_jp - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text.esp_mesh_scan_done_get_channel - 0x00000000 0x80e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text.mesh_nwk_process_reselect - 0x00000000 0x312 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text.mesh_nwk_process_look_for_network - 0x00000000 0x37c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text.mesh_nwk_process_allow_switch - 0x00000000 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .bss.look_for_nwk_count.9998 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .bss.scan_times.9978 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.__func__.10003 - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.__func__.10014 - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.__func__.9984 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.esp_mesh_channel_enable_jp.str1.4 - 0x00000000 0x49 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.esp_mesh_scan_done_get_channel.str1.4 - 0x00000000 0x33a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.mesh_nwk_process_allow_switch.str1.4 - 0x00000000 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.mesh_nwk_process_look_for_network.str1.4 - 0x00000000 0x109 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .rodata.mesh_nwk_process_reselect.str1.4 - 0x00000000 0x164 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.esp_mesh_push_to_rx_queue - 0x00000000 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.mesh_topo_get_ttl - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.esp_mesh_wifi_recv_cb - 0x00000000 0x71a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.esp_mesh_rx_task_deinit - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.mesh_rx_task_deinit - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.mesh_rx_task_main - 0x00000000 0x29a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text.esp_mesh_rx_task_init - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss.is_rx_running - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss.mesh_rx_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss.mesh_rx_task - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .bss.parent_last_mac_seqno.9984 - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .data.MESH_BCAST_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.__func__.10000 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.__func__.9960 - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.__func__.9987 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.esp_mesh_push_to_rx_queue.str1.4 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.esp_mesh_rx_task_init.str1.4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.esp_mesh_wifi_recv_cb.str1.4 - 0x00000000 0x225 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.mesh_rx_task_main.str1.4 - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .rodata.mesh_topo_get_ttl.str1.4 - 0x00000000 0x51 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_clear - 0x00000000 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_find_expire - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_clear_expire - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_find_invalid - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_clear_invalid - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_update_invalid - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_list_find - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text.esp_mesh_ap_enqueue - 0x00000000 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .rodata.__func__.10009 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .rodata.__func__.9937 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .rodata.esp_mesh_ap_list_clear.str1.4 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_rt_change_timeout - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_route_init - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_route_deinit - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_rt_change_timer_start - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_rt_change_timeout_process - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_match_self - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_get_total_children_num - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_lookup_sub_route - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_lookup_route - 0x00000000 0x16c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_print_route_table - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_get_sub_capacity - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.routetype2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_update_route_table - 0x00000000 0x39a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_delete_sub_children - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_send_add_announcement - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_fill_rmv_sub_child - 0x00000000 0x300 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_malloc_rmv_announcement - 0x00000000 0xda /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_construct_rmv_announcement - 0x00000000 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_pack_rmv_announcement - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_pack_rmv_announcement - 0x00000000 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_pack_multi_routing_table - 0x00000000 0x470 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_ie_update_capacity - 0x00000000 0x19a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_check_nonassociated_children - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_monitor_nonassociated_children - 0x00000000 0x2aa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_remove_nonassociated_children - 0x00000000 0x1c4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_copy_mgmt_announce - 0x00000000 0x302 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_process_redundant_subchildren - 0x00000000 0x3dc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_combine_multi_redundant_ack - 0x00000000 0x2a2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_check_multi_redundant_ack - 0x00000000 0x2ec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_refresh_routing_table - 0x00000000 0x6ca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_get_routing_table_size - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_get_routing_table - 0x00000000 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_get_subnet_nodes_num - 0x00000000 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.mesh_get_subnet_nodes_list - 0x00000000 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_send_rtable_request - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_send_rtable_ack - 0x00000000 0x224 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text.esp_mesh_nwk_redundant_route - 0x00000000 0x1de /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.is_route_inited - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.mesh_multi_recv_ack - 0x00000000 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.mesh_multi_send_ack - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.mesh_route_table - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .bss.rt_change_timer - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.CSWTCH.426 - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10043 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10083 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10101 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10190 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10205 - 0x00000000 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10230 - 0x00000000 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10235 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10264 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.10277 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.9945 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.9953 - 0x00000000 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.__func__.9970 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_check_multi_redundant_ack.str1.4 - 0x00000000 0x13a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_combine_multi_redundant_ack.str1.4 - 0x00000000 0x15f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_copy_mgmt_announce.str1.4 - 0x00000000 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_get_routing_table.str1.4 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_lookup_route.str1.4 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_monitor_nonassociated_children.str1.4 - 0x00000000 0xb9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_nwk_redundant_route.str1.4 - 0x00000000 0xa5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_pack_multi_routing_table.str1.4 - 0x00000000 0xd7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_process_redundant_subchildren.str1.4 - 0x00000000 0x1c5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_refresh_routing_table.str1.4 - 0x00000000 0xf1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_remove_nonassociated_children.str1.4 - 0x00000000 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.esp_mesh_send_rtable_ack.str1.4 - 0x00000000 0x7b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.mesh_fill_rmv_sub_child.str1.4 - 0x00000000 0x18b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.mesh_malloc_rmv_announcement.str1.4 - 0x00000000 0x59 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.mesh_update_route_table.str1.4 - 0x00000000 0xf7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.routetype2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .rodata.str1.4 - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_zero_addr - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_get_vnd_ext_assoc_len - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_ps_duty_ext_get_process - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_ssid - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_roots_announce - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_roots_yield - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_roots_fixed - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_roots_gone - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_ps - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_parse_ext_assoc_ie - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_sync_interface_tsf - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_ext_assoc - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._wifi_vnd_ext_mesh_roots_free.part.11 - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_fixed.part.13 - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_my_ie_encrypted - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_get_vnd_ssid_len - 0x00000000 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_coding_ie_key - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_encrypt_vnd_ie - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_assoc_ie - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_decrypt_vnd_ie - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_check_vnd_ie - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_set_ie_crypto_config - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_mesh_quick_set - 0x00000000 0x1de /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.ieee80211_mesh_quick_set - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_mesh_quick_get - 0x00000000 0x154 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.ieee80211_mesh_quick_get - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_sta_monitor_rssi - 0x00000000 0x132 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_map_reject_connection - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_map_change_beacon_interval - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_vnd_mesh_quick_set - 0x00000000 0x1be /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_vnd_mesh_quick_get - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_ie_esp_mesh_head - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_ssid_ie - 0x00000000 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_ext_assoc_ie - 0x00000000 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_ps_ie - 0x00000000 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_duty_signaling - 0x00000000 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_init_mesh_assoc_ie - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.roots_type2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._wifi_vnd_ext_mesh_roots_free - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._wifi_vnd_ext_mesh_roots_malloc - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._print_roots_count - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_num_reach_max - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_reset_window_open_time - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_announce - 0x00000000 0x25a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_fixed - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_vnd_mesh_roots_get - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_valid - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_announce - 0x00000000 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_yield - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_announce_used - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_yield_used - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_fixed - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_is_mesh_roots_gone - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_get_vnd_roots_len - 0x00000000 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_add_mesh_roots_ie - 0x00000000 0x144 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_map_stop_beacon - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_check_window_close_expire - 0x00000000 0x1a2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_check_window_open_expire - 0x00000000 0x1be /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_timer_process_fixed - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_timer_process_gone - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.print_roots_ie - 0x00000000 0x2c0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.is_esp_mesh_duty_signaling - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_ps_set_new_duty - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_post_event - 0x00000000 0xee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_master_is_root - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_parse_ps_entire_rule - 0x00000000 0x48c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_parse_ps_uplink_rule - 0x00000000 0x1fc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_check_duration_expire - 0x00000000 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_set_master_identity - 0x00000000 0xec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_clr_master_identity - 0x00000000 0x13e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_clr_remaining - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_set_remaining - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_check_allowed - 0x00000000 0x204 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_ps_duty_cycle_set_process - 0x00000000 0x310 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_parse_ps_ie - 0x00000000 0x276 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_recv_mesh_duty_signaling - 0x00000000 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_nwk_duty_process_remaining - 0x00000000 0x308 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_root_process_duty_duration_expire - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_ps_duty_cycle_get_process - 0x00000000 0x182 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_is_new_root_found - 0x00000000 0x148 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_is_new_root_invalid - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_is_ie_ignored - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_is_same_router - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_get_conflict_root_state - 0x00000000 0x272 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_check_roots_gone - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_timer_process_announce - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_timer_process_conflict_root - 0x00000000 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_remove_conflict_root - 0x00000000 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_yield - 0x00000000 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_conflict_table - 0x00000000 0x11e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_find_conflict_root - 0x00000000 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_update_conflict_root - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_add_conflict_root - 0x00000000 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_is_new_found_conflict_root - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.ieee80211_vnd_mesh_roots_set - 0x00000000 0x4ea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_remove_gone - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_gone - 0x00000000 0x17a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_roots_process_stop - 0x00000000 0x14a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_process_roots_ie_ttl - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_timer_process_yield - 0x00000000 0x214 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_root_process_roots_ie - 0x00000000 0x2ae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_process_roots_ie - 0x00000000 0x36c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_parse_conflict_roots_ie - 0x00000000 0x3c2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_parse_conflict_roots_ie - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_check_conflict_beacon - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_parse_conflict_assoc_ie - 0x00000000 0x43c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_set_parent_candidate - 0x00000000 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_clear_parent_candidate - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_get_parent_candidate - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_post_parent_switch_candidate - 0x00000000 0x390 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_post_parent_weak_rssi - 0x00000000 0x1da /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_post_parent_assoc_ie - 0x00000000 0x100 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_monitor_parent_candidate_ie - 0x00000000 0x24e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_set_parent_monitor_config - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_get_parent_monitor_config - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_get_sub_ie - 0x00000000 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text._mesh_set_flag_roots_found - 0x00000000 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_get_vnd_roots_len - 0x00000000 0x2a6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_monitor_parent_ie - 0x00000000 0x448 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_map_probe_response - 0x00000000 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_monitor_vote_candidate_rssi - 0x00000000 0x108 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_parse_beacon - 0x00000000 0x14c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_set_rssi_threshold - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_get_rssi_threshold - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_quick_funcs_init - 0x00000000 0x1d0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_init_cb - 0x00000000 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.esp_mesh_quick_funcs_deinit - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text.mesh_deinit_cb - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.esp_mesh_remain_nwk_duty - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.is_roots_found.10891 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.iv 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.last_parent_layer.11444 - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.max_ie_len.10894 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.mesh_sub_ie.11435 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.monitor_count.11445 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.monitor_time_start.11355 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.post_event_time.10851 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.post_event_time.11144 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.roots_found_time.10892 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.rx_bcn_count.11574 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_is_probe_requested - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_conflict_roots - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_ie_crypto_funcs - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_ie_crypto_key - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_monitor_parent_cfg - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_parent_candidate - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_roots_ie_life - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_mesh_rssi_threshold - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_parent_monitor_assoc_time - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_parent_monitor_weak_time - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_parent_worse_rssi_time - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_ps_device_duty - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_ps_device_duty_type - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_ps_parent_duty - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_ps_parent_duty_type - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.s_recv_bcn_count - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.signaling_token.10963 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .bss.wifi_vnd_ext_mesh_roots - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .data.MESH_BCAST_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .data.candidate_rssi.11424 - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .data.g_mesh_monitor_parent_beacon_count - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.CSWTCH.647 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.__func__.10348 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.__func__.10521 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.__func__.10527 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.__func__.10899 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.__func__.11322 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_check_roots_gone.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_check_window_close_expire.str1.4 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_roots_process_stop.str1.4 - 0x00000000 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_roots_process_yield.str1.4 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_timer_process_conflict_root.str1.4 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata._mesh_timer_process_yield.str1.4 - 0x00000000 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.esp_mesh_add_conflict_root.str1.4 - 0x00000000 0x49 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.esp_mesh_parse_conflict_assoc_ie.str1.4 - 0x00000000 0x53 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.esp_mesh_ps_duty_cycle_get_process.str1.4 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.ieee80211_add_ie_esp_mesh_head.str1.4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.ieee80211_vnd_mesh_roots_set.str1.4 - 0x00000000 0x63 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.mesh_nwk_duty_process_remaining.str1.4 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.mesh_parse_ps_entire_rule.str1.4 - 0x00000000 0xe5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.mesh_parse_ps_uplink_rule.str1.4 - 0x00000000 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.mesh_post_parent_switch_candidate.str1.4 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.mesh_root_process_roots_ie.str1.4 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.roots_type2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata.str1.4 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_error.2 - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_error.5 - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_info.20 - 0x00000000 0x85 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_info.26 - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_info.27 - 0x00000000 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_info.32 - 0x00000000 0x99 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_info.34 - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.10 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.11 - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.12 - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.13 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.14 - 0x00000000 0x43 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.15 - 0x00000000 0x53 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.16 - 0x00000000 0x5f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.17 - 0x00000000 0x37 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.18 - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.19 - 0x00000000 0x61 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.21 - 0x00000000 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.22 - 0x00000000 0x51 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.23 - 0x00000000 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.24 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.25 - 0x00000000 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.28 - 0x00000000 0x89 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.29 - 0x00000000 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.3 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.30 - 0x00000000 0xa3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.31 - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.33 - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.35 - 0x00000000 0x77 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.36 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.4 - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.6 - 0x00000000 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.7 - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.8 - 0x00000000 0x75 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .rodata_wlog_warning.9 - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_route_announce - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_mie_monitor - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_bcn_change - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_root_connect - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_candidate_monitor - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_rt_change - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_ps_control - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text.mesh_timer_do_process - 0x00000000 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .data.mesh_timer_info - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .rodata.__func__.9976 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .rodata.mesh_timer_do_process.str1.4 - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.esp_mesh_io_sem_wait - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.esp_mesh_io_sem_signal - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_set_io_process - 0x00000000 0xee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.esp_mesh_stop_parent_reconnection - 0x00000000 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_set_router - 0x00000000 0x24a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_set_self_organized - 0x00000000 0x136 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_set_type - 0x00000000 0x2aa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_csa_set_bssid - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_switch_channel - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_look_for_network - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text.mesh_nwk_io_process - 0x00000000 0x1c4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_nwk_io_process - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .bss.csa_bssid - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .bss.g_mesh_stop_reconnection - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .bss.s_mesh_io_error - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.__func__.9945 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.__func__.9999 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_nwk_io_process.str1.4 - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_set_io_process.str1.4 - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_set_router.str1.4 - 0x00000000 0xa9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_set_self_organized.str1.4 - 0x00000000 0x5d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .rodata.mesh_set_type.str1.4 - 0x00000000 0xa5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_mutex_lock - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_mutex_unlock - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.esp_mesh_create_mbox - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.esp_mesh_free_mbox - 0x00000000 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_malloc - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_free - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.esp_mesh_create_context - 0x00000000 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.esp_mesh_free_context - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_create_task - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.wifi_event_id2str - 0x00000000 0x172 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.wifi_event_id2str - 0x00000000 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.nwk_event_id2str - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.tx_msg_id2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.tx_state_id2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.discnx_reason_id2str - 0x00000000 0x1ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.mesh_ie_type2str - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.scan_status2str - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.vote_done2str - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.vote_start2str - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.txq_opr2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.tx_wifi_err2str - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.io_cfg2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.opt_type2str - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.reconnect_type2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text.dutytype2str - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .bss.strid.9988 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.40 - 0x00000000 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.41 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.42 - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.43 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.44 - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.45 - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.46 - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.47 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.48 - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.CSWTCH.49 - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.__func__.9938 - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.__func__.9944 - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.discnx_reason_id2str.str1.4 - 0x00000000 0x167 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.dutytype2str.str1.4 - 0x00000000 0x7b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.esp_mesh_create_mbox.str1.4 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.mesh_ie_type2str.str1.4 - 0x00000000 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.nwk_event_id2str.str1.4 - 0x00000000 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.scan_status2str.str1.4 - 0x00000000 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.str1.4 - 0x00000000 0x914 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.tx_msg_id2str.str1.4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.tx_state_id2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.vote_done2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .rodata.wifi_event_id2str.str1.4 - 0x00000000 0x36e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_rx_pending - 0x00000000 0x162 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_ie_init - 0x00000000 0x146 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_wifi_event_init - 0x00000000 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_wifi_event_deinit - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_init - 0x00000000 0x22a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_stop_recv - 0x00000000 0x1fc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_parse_option - 0x00000000 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.mesh_parse_option - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_add_option - 0x00000000 0x138 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_chain_header_add_ttl - 0x00000000 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_send_process_topo - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_send_process_flag - 0x00000000 0x18e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_send_sem_wait - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_send_sem_signal - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_send_mgmt - 0x00000000 0x2be /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_send - 0x00000000 0x6ac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_send - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_recv_add_option - 0x00000000 0x190 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_recv_process_flag - 0x00000000 0x12a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_recv - 0x00000000 0x3e4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_recv - 0x00000000 0x1a2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_encrypt_ie_plain_key - 0x00000000 0x11c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_config - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_router - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_router - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_set_id - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_id - 0x00000000 0x154 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_id - 0x00000000 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_type - 0x00000000 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_type - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_max_layer - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_ap_password - 0x00000000 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_ap_authmode - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_ap_authmode - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_ap_connections - 0x00000000 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_ap_connections - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_non_mesh_connections - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_config - 0x00000000 0x4ca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_non_mesh_connections - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_layer - 0x00000000 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_parent_bssid - 0x00000000 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_root - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_print_rxQ_waiting - 0x00000000 0x23e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_push_to_myself_queue - 0x00000000 0x22e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_push_to_tcpip_queue - 0x00000000 0x3bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_flush_tcpip_queue - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_recv_release - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_recv_toDS - 0x00000000 0x206 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_max_layer - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_self_organized - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_self_organized - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_set_parent - 0x00000000 0x668 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_parent - 0x00000000 0x17c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_waive_root - 0x00000000 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_waive_root - 0x00000000 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_send_stop_vote - 0x00000000 0x194 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_send_stop_vote - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_vote_percentage - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_vote_percentage - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_root_addr - 0x00000000 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_attempts - 0x00000000 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_attempts - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_push_to_xmit_state_queue - 0x00000000 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_stop - 0x00000000 0x738 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_deinit - 0x00000000 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_start - 0x00000000 0x202 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_total_node_num - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_switch_parent_paras - 0x00000000 0xda /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_switch_parent_paras - 0x00000000 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_xon_qsize - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_xon_qsize - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_my_group - 0x00000000 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_insert_group_addr - 0x00000000 0x14c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_delete_group_addr - 0x00000000 0x1d0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_group_id - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_delete_group_id - 0x00000000 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_group_num - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_group_list - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_capacity_num - 0x00000000 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_capacity_num - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_my_ie_encrypted - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_set_ie_crypto_funcs - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_ie_crypto_funcs - 0x00000000 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.mesh_set_ie_crypto_key - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_ie_crypto_key - 0x00000000 0x19c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_ie_crypto_key - 0x00000000 0x112 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_root_healing_delay - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_root_healing_delay - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_passive_scan_time - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_passive_scan_time - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_fix_root - 0x00000000 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_root_fixed - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_announce_interval - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_announce_interval - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_subnet_nodes_num - 0x00000000 0x102 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_subnet_nodes_list - 0x00000000 0x13e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_switch_channel - 0x00000000 0x128 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_look_for_network - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_set_topology - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_get_topology - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_device_active - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_enable_ps - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_disable_ps - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_is_ps_enabled - 0x00000000 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text.esp_mesh_ps_get_duties - 0x00000000 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.MESH_ZERO_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_is_mesh_inited - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_is_mesh_started - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_is_root_fixed - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_is_standalone_sta - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_cfg_attemps - 0x00000000 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_cfg_switch_parent - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_chain - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_ext_cfg - 0x00000000 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_ie - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_manual_nwk - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_self_map_addr - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_self_sta_addr - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_stop_event_group - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.g_mesh_xon_cfg_qsize - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.mesh_ioctl_sem - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.mesh_myself_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.mesh_tcpip_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.mesh_xmit_sem - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.mesh_xmit_state_mbox - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.option.10075 - 0x00000000 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_extra_toDS_qsize - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_extra_toSelf_qsize - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_mesh_ext_crypto_config - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_mesh_group_addr - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_mesh_send_mutex - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.s_mesh_stop_mutex - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .bss.value.10074 - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.MESH_BCAST_ADDR - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_ann_interval - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_cfg_vote_percent - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_max_layer - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_passive_scan_time - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_root_healing_delay - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.g_mesh_rt_capacity - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.libmesh_reversion_git - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .data.s_mesh_ie_crypto_plain_key - 0x00000000 0x41 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10019 - 0x00000000 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10029 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10108 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10127 - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10195 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10227 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10303 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10312 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10322 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10381 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10437 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.__func__.10449 - 0x00000000 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_get_rx_pending.str1.4 - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_init.cst4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_print_rxQ_waiting.str1.4 - 0x00000000 0x8d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_push_to_tcpip_queue.str1.4 - 0x00000000 0x15e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_recv.str1.4 - 0x00000000 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_send.str1.4 - 0x00000000 0xdb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_ap_connections.str1.4 - 0x00000000 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_ap_password.str1.4 - 0x00000000 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_config.str1.4 - 0x00000000 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_ie_crypto_funcs.str1.4 - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_ie_crypto_key.str1.4 - 0x00000000 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_non_mesh_connections.str1.4 - 0x00000000 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_set_parent.str1.4 - 0x00000000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_stop.str1.4 - 0x00000000 0x264 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_switch_channel.str1.4 - 0x00000000 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.esp_mesh_waive_root.cst4 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.mesh_encrypt_ie_plain_key.str1.4 - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.mesh_set_parent.str1.4 - 0x00000000 0x1bf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.mesh_stop_recv.str1.4 - 0x00000000 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.mesh_wifi_event_init.str1.4 - 0x00000000 0x73 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .rodata.str1.4 - 0x00000000 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.mesh_pm_tbtt_start - 0x00000000 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_tbtt_timeout_process - 0x00000000 0x1bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_rx_beacon_process - 0x00000000 0x15a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_tx_data_process - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_tx_null_process - 0x00000000 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.mesh_pm_set_null - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_go_to_sleep - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_pm_go_to_wake - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text.esp_mesh_is_start_pm_now - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss.mesh_ps_keep_cnx - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss.rx_bcn_count.8719 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss.s_mesh_is_awake_duty - 0x00000000 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss.s_mesh_next_awake_tbtt - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .bss.send_null_cnt.8665 - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .data.g_mesh_dfs_compensation_ms - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .data.s_mesh_active_duty_cycle - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .rodata_wlog_info.2 - 0x00000000 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .rodata_wlog_info.4 - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .rodata_wlog_warning.3 - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.nvs_op2str - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.esp_mesh_nvs_operate - 0x00000000 0x430 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.esp_mesh_nvs_operate - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.esp_mesh_nvs_set_layer - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.esp_mesh_nvs_set_assoc - 0x00000000 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.esp_mesh_nvs_init - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text.esp_mesh_nvs_deinit - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .bss.g_mesh_nvs_settings - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .bss.mesh_nvs_settings - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .data.mesh_nvs_handle - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.CSWTCH.62 - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.esp_mesh_nvs_init.str1.4 - 0x00000000 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.esp_mesh_nvs_operate.str1.4 - 0x00000000 0xa3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.nvs_op2str.str1.4 - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .rodata.str1.4 - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_stop - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_append - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_reset - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_set_strategy - 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_read_intr_status - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_get_intr_status_reg - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_get_eof_desc_addr - 0x00000000 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_periph_signals - 0x00000000 0x1c esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_info 0x00000000 0x389 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_abbrev 0x00000000 0xac esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_line 0x00000000 0x110 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_str 0x00000000 0xb59 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .rodata.esp_mesh_send_event_internal.str1.4 - 0x00000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .text.esp_mesh_send_event_internal - 0x00000000 0x22 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .srodata.MESH_EVENT - 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_info 0x00000000 0x1bd esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_abbrev 0x00000000 0xca esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_loc 0x00000000 0x96 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_line 0x00000000 0x327 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_str 0x00000000 0x2af esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .debug_frame 0x00000000 0x2c esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .text._ZSt15set_new_handlerPFvvE - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .gcc_except_table._ZSt15set_new_handlerPFvvE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .text.exit._GLOBAL__sub_D__ZSt7nothrow - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .gcc_except_table._GLOBAL__sub_D__ZSt7nothrow - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .fini_array 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .eh_frame 0x00000000 0x188 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .sdata.DW.ref.__gxx_personality_v0 - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .eh_frame 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .eh_frame 0x00000000 0x130 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .text._ZNSt9type_infoD0Ev - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .text._ZNKSt9type_info10__do_catchEPKS_PPvj - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .rodata._ZTVSt9type_info - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .eh_frame 0x00000000 0x80 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .eh_frame 0x00000000 0x12c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .text.__cxa_get_exception_ptr - 0x00000000 0x6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .text._ZSt18uncaught_exceptionv - 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .text._ZSt19uncaught_exceptionsv - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .eh_frame 0x00000000 0xac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZNSt13bad_exceptionD2Ev - 0x00000000 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZNKSt9exception4whatEv.str1.4 - 0x00000000 0xf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZNKSt9exception4whatEv - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZNKSt13bad_exception4whatEv.str1.4 - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZNKSt13bad_exception4whatEv - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZNSt9exceptionD0Ev - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZNSt13bad_exceptionD0Ev - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv115__forced_unwindD2Ev - 0x00000000 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv115__forced_unwindD0Ev - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv119__foreign_exceptionD2Ev - 0x00000000 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv119__foreign_exceptionD0Ev - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZGTtNKSt9exceptionD1Ev - 0x00000000 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .text._ZGTtNKSt13bad_exceptionD1Ev - 0x00000000 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZTVSt9exception - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZTVSt13bad_exception - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZTVN10__cxxabiv115__forced_unwindE - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .rodata._ZTVN10__cxxabiv119__foreign_exceptionE - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .eh_frame 0x00000000 0x104 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE - 0x00000000 0x2a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .fini_array 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .sdata.DW.ref.__gxx_personality_v0 - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .eh_frame 0x00000000 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv.str1.4 - 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv.str1.4 - 0x00000000 0x26 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv - 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev - 0x00000000 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev - 0x00000000 0x22 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev - 0x00000000 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev - 0x00000000 0x22 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx7__mutex4lockEv - 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN9__gnu_cxx7__mutex6unlockEv - 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZSt13set_terminatePFvvE - 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .gcc_except_table._ZSt13set_terminatePFvvE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZN10__cxxabiv112__unexpectedEPFvvE - 0x00000000 0xe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZSt14set_unexpectedPFvvE - 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .gcc_except_table._ZSt14set_unexpectedPFvvE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._ZSt14get_unexpectedv - 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .gcc_except_table._ZSt14get_unexpectedv - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text.unlikely._ZSt10unexpectedv - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text.exit._GLOBAL__sub_D__ZN10__cxxabiv111__terminateEPFvvE - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .gcc_except_table._GLOBAL__sub_D__ZN10__cxxabiv111__terminateEPFvvE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .fini_array 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTSSt9exception - 0x00000000 0xd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .srodata._ZTISt9exception - 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTSN9__gnu_cxx24__concurrence_lock_errorE - 0x00000000 0x27 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTIN9__gnu_cxx24__concurrence_lock_errorE - 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTSN9__gnu_cxx26__concurrence_unlock_errorE - 0x00000000 0x29 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTIN9__gnu_cxx26__concurrence_unlock_errorE - 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTVN9__gnu_cxx24__concurrence_lock_errorE - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .rodata._ZTVN9__gnu_cxx26__concurrence_unlock_errorE - 0x00000000 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .sdata.DW.ref.__gxx_personality_v0 - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .eh_frame 0x00000000 0x240 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .sdata._ZN10__cxxabiv120__unexpected_handlerE - 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_info 0x00000000 0x3c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_abbrev 0x00000000 0x277 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_aranges - 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_line 0x00000000 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_str 0x00000000 0x66e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_line_str - 0x00000000 0x494 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .group 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .rodata._ZTSSt9exception - 0x00000000 0xd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .srodata._ZTISt9exception - 0x00000000 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .eh_frame 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .group 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .eh_frame 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .text 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_info 0x00000000 0x164 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_abbrev 0x00000000 0xd0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_loclists - 0x00000000 0x81 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_rnglists - 0x00000000 0x16 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_line 0x00000000 0x11b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_str 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .text 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_info 0x00000000 0x20a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_abbrev 0x00000000 0x13d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_loclists - 0x00000000 0x89 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_rnglists - 0x00000000 0x16 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_line 0x00000000 0x157 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_str 0x00000000 0x1fb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .rodata 0x00000000 0x100 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_info 0x00000000 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_abbrev 0x00000000 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_aranges - 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line 0x00000000 0x3f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_str 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .text 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_info 0x00000000 0x157 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_abbrev 0x00000000 0xca /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_loclists - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_rnglists - 0x00000000 0x16 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_line 0x00000000 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_str 0x00000000 0x1c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .text 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_info 0x00000000 0x173 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_abbrev 0x00000000 0xdd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_loclists - 0x00000000 0x75 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_rnglists - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_line 0x00000000 0xf9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_str 0x00000000 0x1d3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - .text 0x00000000 0x4a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_info 0x00000000 0x215 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_abbrev 0x00000000 0x13d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_loclists - 0x00000000 0x86 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_rnglists - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_line 0x00000000 0x143 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_str 0x00000000 0x1fd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - .text 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_info 0x00000000 0xe6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_abbrev 0x00000000 0x65 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_loclists - 0x00000000 0xd6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line 0x00000000 0xe9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_str 0x00000000 0x1aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_info 0x00000000 0xe6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_abbrev 0x00000000 0x65 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_loclists - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_line 0x00000000 0x9b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_str 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - .text 0x00000000 0x52 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_info 0x00000000 0xe6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_abbrev 0x00000000 0x65 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_loclists - 0x00000000 0x21 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_line 0x00000000 0xcf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_str 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .text 0x00000000 0x394 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_info 0x00000000 0x7a8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_abbrev 0x00000000 0x1bf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_loclists - 0x00000000 0x556 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_rnglists - 0x00000000 0x8e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_line 0x00000000 0xa2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_str 0x00000000 0x258 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - .text 0x00000000 0x362 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_info 0x00000000 0x7f1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_abbrev 0x00000000 0x1ca /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_loclists - 0x00000000 0x479 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_rnglists - 0x00000000 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_line 0x00000000 0xa36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_str 0x00000000 0x258 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - .text 0x00000000 0x35a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_info 0x00000000 0x776 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_abbrev 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_loclists - 0x00000000 0x6ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_rnglists - 0x00000000 0x8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line 0x00000000 0x97b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_str 0x00000000 0x259 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .text 0x00000000 0x322 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_info 0x00000000 0x7c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_abbrev 0x00000000 0x1aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_loclists - 0x00000000 0x520 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_rnglists - 0x00000000 0x56 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_line 0x00000000 0x98d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_str 0x00000000 0x259 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .text 0x00000000 0x5e0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_info 0x00000000 0x4f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_abbrev 0x00000000 0x186 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_loclists - 0x00000000 0xa83 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_rnglists - 0x00000000 0xf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_line 0x00000000 0x1377 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_str 0x00000000 0x293 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_line_str - 0x00000000 0x1bc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - .text 0x00000000 0x6a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_info 0x00000000 0x221 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_abbrev 0x00000000 0x153 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_loclists - 0x00000000 0x6a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_rnglists - 0x00000000 0x23 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_line 0x00000000 0x277 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_str 0x00000000 0x1a5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - .text 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_info 0x00000000 0x220 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_abbrev 0x00000000 0x168 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_loclists - 0x00000000 0x10f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_rnglists - 0x00000000 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_line 0x00000000 0x347 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_str 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - .text 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_info 0x00000000 0x220 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_abbrev 0x00000000 0x168 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_loclists - 0x00000000 0x10f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_rnglists - 0x00000000 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_line 0x00000000 0x347 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_str 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - .text 0x00000000 0x458 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_info 0x00000000 0x6ac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_abbrev 0x00000000 0x185 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_loclists - 0x00000000 0x7b4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_rnglists - 0x00000000 0x148 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_line 0x00000000 0xf02 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_str 0x00000000 0x3ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_line_str - 0x00000000 0x1c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_frame 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - .text 0x00000000 0x5f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_info 0x00000000 0x4f2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_abbrev 0x00000000 0x186 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_loclists - 0x00000000 0xafa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_rnglists - 0x00000000 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_line 0x00000000 0x1384 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_str 0x00000000 0x293 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_line_str - 0x00000000 0x1bc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - .text 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_info 0x00000000 0x220 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_abbrev 0x00000000 0x14f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_loclists - 0x00000000 0x2d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_rnglists - 0x00000000 0x1d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_line 0x00000000 0x185 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_str 0x00000000 0x1a8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_line_str - 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - .text 0x00000000 0x64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_info 0x00000000 0x1c2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_abbrev 0x00000000 0x15f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_loclists - 0x00000000 0xaa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_line 0x00000000 0x1df /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_str 0x00000000 0x1a0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .text 0x00000000 0x74 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_info 0x00000000 0x268 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_abbrev 0x00000000 0x164 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_loclists - 0x00000000 0x95 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_rnglists - 0x00000000 0x2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_line 0x00000000 0x225 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_str 0x00000000 0x23d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_line_str - 0x00000000 0x1cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_frame 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - .text 0x00000000 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_info 0x00000000 0x25d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_abbrev 0x00000000 0x163 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_loclists - 0x00000000 0xb3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_rnglists - 0x00000000 0x2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_line 0x00000000 0x223 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_str 0x00000000 0x238 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_line_str - 0x00000000 0x1d5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_frame 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .text 0x00000000 0x31c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_info 0x00000000 0x2e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_abbrev 0x00000000 0x17d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_loclists - 0x00000000 0x819 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_rnglists - 0x00000000 0xcc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_line 0x00000000 0xd4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_str 0x00000000 0x256 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_line_str - 0x00000000 0x1bc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .debug_frame 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - .text 0x00000000 0x248 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .rodata 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_info 0x00000000 0x360 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_abbrev 0x00000000 0x14c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_loclists - 0x00000000 0x3b8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_rnglists - 0x00000000 0x66 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_line 0x00000000 0x8cd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_str 0x00000000 0x2c0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_line_str - 0x00000000 0x1bc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - .text 0x00000000 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_info 0x00000000 0x1fb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_abbrev 0x00000000 0x12d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_loclists - 0x00000000 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_rnglists - 0x00000000 0x1d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_line 0x00000000 0x22f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_str 0x00000000 0x189 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - .text 0x00000000 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_info 0x00000000 0x1fe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_abbrev 0x00000000 0x162 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_loclists - 0x00000000 0x97 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_rnglists - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_line 0x00000000 0x2cb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_str 0x00000000 0x1ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - .text 0x00000000 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_info 0x00000000 0x1fe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_abbrev 0x00000000 0x162 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_loclists - 0x00000000 0x97 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_rnglists - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_line 0x00000000 0x2cb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_str 0x00000000 0x1ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - .text 0x00000000 0x244 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_info 0x00000000 0x350 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_abbrev 0x00000000 0x15b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_loclists - 0x00000000 0x32d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_rnglists - 0x00000000 0x61 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_line 0x00000000 0x810 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_str 0x00000000 0x27b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_line_str - 0x00000000 0x1c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - .text 0x00000000 0x32a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_info 0x00000000 0x2e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_abbrev 0x00000000 0x17d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_loclists - 0x00000000 0x7ac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_rnglists - 0x00000000 0xc9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_line 0x00000000 0xd87 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_str 0x00000000 0x256 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_line_str - 0x00000000 0x1bc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .debug_frame 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - .text 0x00000000 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_info 0x00000000 0x19b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_abbrev 0x00000000 0x14d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_loclists - 0x00000000 0x89 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_line 0x00000000 0x1b7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_str 0x00000000 0x18a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_line_str - 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - .text 0x00000000 0xc0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_info 0x00000000 0x213 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_abbrev 0x00000000 0x16d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_loclists - 0x00000000 0x187 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_rnglists - 0x00000000 0x45 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_line 0x00000000 0x37a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_str 0x00000000 0x21e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_line_str - 0x00000000 0x1cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_frame 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - .text 0x00000000 0xa4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_info 0x00000000 0x20a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_abbrev 0x00000000 0x186 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_loclists - 0x00000000 0x143 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_rnglists - 0x00000000 0x35 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_line 0x00000000 0x34c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_str 0x00000000 0x219 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_line_str - 0x00000000 0x1d5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .debug_frame 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - .text 0x00000000 0x100 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_info 0x00000000 0x23d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_abbrev 0x00000000 0x175 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_loclists - 0x00000000 0x1a7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_rnglists - 0x00000000 0x43 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_line 0x00000000 0x41a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_str 0x00000000 0x22d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_line_str - 0x00000000 0x1d5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .debug_frame 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - .text 0x00000000 0xa4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_info 0x00000000 0x254 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_abbrev 0x00000000 0x15b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_loclists - 0x00000000 0x121 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_rnglists - 0x00000000 0x1d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_line 0x00000000 0x3a3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_str 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_line_str - 0x00000000 0x1d4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .debug_frame 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - .text 0x00000000 0xf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_info 0x00000000 0x287 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_abbrev 0x00000000 0x13c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_loclists - 0x00000000 0x23c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_rnglists - 0x00000000 0x26 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_line 0x00000000 0x4c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_str 0x00000000 0x21f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_line_str - 0x00000000 0x1d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - .text 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_info 0x00000000 0x1b6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_abbrev 0x00000000 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_loclists - 0x00000000 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_line 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_str 0x00000000 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .text 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_info 0x00000000 0x1b6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_abbrev 0x00000000 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_loclists - 0x00000000 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_line 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_str 0x00000000 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text._Z12abort_returnIPPvET_v - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text._Z12abort_returnIPvET_v - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text._Z12abort_returnIP11frame_stateET_v - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.abort_expect_void - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.abort_expect_void_and_return - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.forward_abort_uw_ctx - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap___register_frame_info_bases - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap___register_frame_info - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap___register_frame_info_table_bases - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap___register_frame_info_table - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_Find_FDE - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_GetGR - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_GetCFA - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_SetIP - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_SetGR - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_GetIPInfo - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text._Z17__frame_state_forPvP11frame_state - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_Resume - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_RaiseException - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_ForcedUnwind - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_Backtrace - 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.pa_i2c_track - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.rom_bt_track_tx_power - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.rom_wifi_track_tx_power - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.phy_param_track - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.pocket_sar_power - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text.ram_tx_pwctrl_background - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.RFChannelSel - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_rx_rifs_en - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_current_level_set - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_bt_power_track - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.tx_pwctrl_background - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_set_11b_param - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_eco_version_sel - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_force_rx_gain - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_get_rx_gain - 0x00000000 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_rx_band_set - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_set_cca_cnt - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_get_cca_cnt - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_param_set - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_get_rfdata_num - 0x00000000 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_get_noise_floor - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text.phy_get_rssi - 0x00000000 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .text.phy_get_mac_addr - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .text.get_chip_version - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .text.write_freq_mem_all - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .text.get_rf_freq_cap - 0x00000000 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .text.rom_pbus_xpd_tx_on - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .text.rom_phy_param_addr - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .text.chip726_phyrom_version_num - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .bss.phy_param_rom - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .comment 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_chan_pwr_backoff - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_get_most_tpw - 0x00000000 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.get_max_power - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.esp_tx_state_out - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_get_adc_rand - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_internal_delay - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_ftm_comp - 0x00000000 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_chan_dump_cfg - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_chan_filt_set - 0x00000000 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_rx11blr_cfg - 0x00000000 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_get_cca - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_set_rate - 0x00000000 0x178 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_set_rate_xiaomi - 0x00000000 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_set_wifi_mode_only - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_txpwr_backoff - 0x00000000 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_get_tx_rate - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_dig_ldo_cal - 0x00000000 0x15e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_txtone_start - 0x00000000 0xce /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text.phy_txtone_stop - 0x00000000 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .rodata.phy_dig_ldo_cal.str1.4 - 0x00000000 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .text.ram_pll_vol_cal - 0x00000000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .text.phy_set_freq - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .text.get_pll_ref_code - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.phy_set_tsens_power - 0x00000000 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.tsens_dac_to_index - 0x00000000 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.tsens_dac_cal1 - 0x00000000 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.rom_tsens_code_read - 0x00000000 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.tsens_temp_read1 - 0x00000000 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text.phy_get_tsens_value - 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .text.chan14_mic_enable - 0x00000000 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .text.set_adc_rand - 0x00000000 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .rodata 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .text.phy_analog_delay_cal - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .text.rfrx_sat_cal_init - 0x00000000 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .rodata 0x00000000 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .text.phy_set_pwdet_power - 0x00000000 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .text.meas_tone_pwr_db - 0x00000000 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .text.rx_blocking_set - 0x00000000 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.phy_version_print - 0x00000000 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.phy_reg_check - 0x00000000 0x258 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.phy_i2c_check - 0x00000000 0x24c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.get_dc_value - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.phy_tx_gain_print - 0x00000000 0x160 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.phy_cal_print - 0x00000000 0x666 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.pbus_print - 0x00000000 0x124 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.mac_debug - 0x00000000 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text.pll_cap_print - 0x00000000 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.mac_debug.str1.4 - 0x00000000 0x9f /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.pbus_print.str1.4 - 0x00000000 0x49 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.phy_cal_print.str1.4 - 0x00000000 0x21a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.phy_i2c_check.str1.4 - 0x00000000 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.phy_reg_check.str1.4 - 0x00000000 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.phy_tx_gain_print.str1.4 - 0x00000000 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.phy_version_print.str1.4 - 0x00000000 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .rodata.pll_cap_print.str1.4 - 0x00000000 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text.rom_txbbgain_to_index - 0x00000000 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text.rom_index_to_txbbgain - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text.rom_set_tx_gain_mem - 0x00000000 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text.phy_get_txpwr_param - 0x00000000 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text.target_power_backoff - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .rodata.CSWTCH.38 - 0x00000000 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.start_tx_tone - 0x00000000 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.ram_check_noise_floor - 0x00000000 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.phy_rx_sense_set - 0x00000000 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.tx_state_set - 0x00000000 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.phy_close_pa - 0x00000000 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.wifi_rifs_mode_en - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.phy_get_fetx_delay - 0x00000000 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.rom_phy_xpd_tsens - 0x00000000 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text.phy_fft_scale_force - 0x00000000 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .text.rfrx_sat_rst - 0x00000000 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .text.get_rfrx_sat - 0x00000000 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .text.rfrx_sat_check - 0x00000000 0x456 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .text.rom_noise_check_loop - 0x00000000 0x182 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.rfrx_sat_check.str1.4 - 0x00000000 0x49 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.rom_noise_check_loop.str1.4 - 0x00000000 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - .text.rom_i2c_sar2_init_code - 0x00000000 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .text.tx_ict_stg0_cal - 0x00000000 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .text 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .data 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .bss 0x00000000 0x0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.coex_pti_print - 0x00000000 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer0_wifi_v2 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer0_wifi_pti_v2 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer1_bt_v2 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer1_bt_pti_v2 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer11_bt_v2 - 0x00000000 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer11_bt_pti_v2 - 0x00000000 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr_set - 0x00000000 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr - 0x00000000 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr_unset - 0x00000000 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.bt_set_chn - 0x00000000 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text.set_ble_rx_sense - 0x00000000 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .rodata.coex_pti_print.str1.4 - 0x00000000 0x69 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .rodata.rtc_printf.str1.4 - 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text.rtc_printf - 0x00000000 0x2e esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_info 0x00000000 0x904 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_abbrev 0x00000000 0x1da /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_loclists - 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_line 0x00000000 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_str 0x00000000 0x4e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_line_str - 0x00000000 0x2d3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .debug_frame 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - .text 0x00000000 0x10 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_info 0x00000000 0xec /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_abbrev 0x00000000 0xb6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_loclists - 0x00000000 0x2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_line 0x00000000 0x8b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_str 0x00000000 0x115 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_line_str - 0x00000000 0x1fd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .debug_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .text 0x00000000 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_info 0x00000000 0x183 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_abbrev 0x00000000 0xee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_loclists - 0x00000000 0xea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_line 0x00000000 0x14c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_str 0x00000000 0x129 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_line_str - 0x00000000 0x200 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .debug_frame 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - .text 0x00000000 0x132 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .rodata.str1.4 - 0x00000000 0x6d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_info 0x00000000 0x9a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_abbrev 0x00000000 0x23d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_loclists - 0x00000000 0x3f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_line 0x00000000 0x268 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_str 0x00000000 0x506 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_line_str - 0x00000000 0x2dc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .debug_frame 0x00000000 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .text 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .rodata.str1.4 - 0x00000000 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_info 0x00000000 0x1c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_abbrev 0x00000000 0xf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_loclists - 0x00000000 0x12b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_line 0x00000000 0x1e1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_str 0x00000000 0x144 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_line_str - 0x00000000 0x20b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .text 0x00000000 0x396 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_info 0x00000000 0x759 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_abbrev 0x00000000 0x251 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_loclists - 0x00000000 0x513 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_rnglists - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_line 0x00000000 0x8ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_str 0x00000000 0x16d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_line_str - 0x00000000 0x26e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .debug_frame 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .text 0x00000000 0x66 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_info 0x00000000 0x8d4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_abbrev 0x00000000 0x1d7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_loclists - 0x00000000 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_line 0x00000000 0x148 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_str 0x00000000 0x543 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_line_str - 0x00000000 0x2de /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .debug_frame 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .text 0x00000000 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_info 0x00000000 0x956 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_abbrev 0x00000000 0x233 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_loclists - 0x00000000 0xa8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_line 0x00000000 0x18a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_str 0x00000000 0x555 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_line_str - 0x00000000 0x2db /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .debug_frame 0x00000000 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - .text 0x00000000 0x14a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_info 0x00000000 0xa9b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_abbrev 0x00000000 0x252 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_loclists - 0x00000000 0x1af /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_line 0x00000000 0x394 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_str 0x00000000 0x565 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_line_str - 0x00000000 0x2e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .debug_frame 0x00000000 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - .text 0x00000000 0x7a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_info 0x00000000 0x8dd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_abbrev 0x00000000 0x1d7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_loclists - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_line 0x00000000 0x15e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_str 0x00000000 0x543 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_line_str - 0x00000000 0x2de /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .debug_frame 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .text 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_info 0x00000000 0x97e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_abbrev 0x00000000 0x213 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_loclists - 0x00000000 0x7a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_line 0x00000000 0x14d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_str 0x00000000 0x521 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_line_str - 0x00000000 0x2e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .debug_frame 0x00000000 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .text 0x00000000 0x13a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_info 0x00000000 0xa7e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_abbrev 0x00000000 0x29a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_loclists - 0x00000000 0x19a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_line 0x00000000 0x2fa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_str 0x00000000 0x575 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_line_str - 0x00000000 0x2e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .debug_frame 0x00000000 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_info 0x00000000 0x939 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_abbrev 0x00000000 0x242 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_loclists - 0x00000000 0x5e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_line 0x00000000 0xd9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_str 0x00000000 0x4f2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_line_str - 0x00000000 0x2d3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .debug_frame 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .text 0x00000000 0xe2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_info 0x00000000 0xa86 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_abbrev 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_loclists - 0x00000000 0x1be /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_line 0x00000000 0x265 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_str 0x00000000 0x5a1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_line_str - 0x00000000 0x2e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .debug_frame 0x00000000 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .text 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_info 0x00000000 0x8d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_abbrev 0x00000000 0x209 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_loclists - 0x00000000 0x46 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_line 0x00000000 0xef /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_str 0x00000000 0x4f8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_line_str - 0x00000000 0x2de /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .debug_frame 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_info 0x00000000 0x894 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_abbrev 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_loclists - 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_line 0x00000000 0xc2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_str 0x00000000 0x4e5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_line_str - 0x00000000 0x2d6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .debug_frame 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - .text 0x00000000 0x64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_info 0x00000000 0x90d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_abbrev 0x00000000 0x227 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_loclists - 0x00000000 0x69 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_line 0x00000000 0x163 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_str 0x00000000 0x50f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_line_str - 0x00000000 0x2d8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .debug_frame 0x00000000 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - .text 0x00000000 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_info 0x00000000 0x8c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_abbrev 0x00000000 0x1b9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_loclists - 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_line 0x00000000 0x8d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_str 0x00000000 0x4e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_line_str - 0x00000000 0x2d6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - .text 0x00000000 0x1da /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_info 0x00000000 0xa71 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_abbrev 0x00000000 0x27c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_loclists - 0x00000000 0x105 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_line 0x00000000 0x484 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_str 0x00000000 0x589 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_line_str - 0x00000000 0x2ea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .debug_frame 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .text 0x00000000 0x102 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_info 0x00000000 0x941 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_abbrev 0x00000000 0x22a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_loclists - 0x00000000 0x113 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_line 0x00000000 0x2f4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_str 0x00000000 0x546 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_line_str - 0x00000000 0x2de /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .debug_frame 0x00000000 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .text 0x00000000 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_info 0x00000000 0x103 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_abbrev 0x00000000 0xae /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_loclists - 0x00000000 0x39 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_line 0x00000000 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_str 0x00000000 0x11f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_line_str - 0x00000000 0x278 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .text 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_info 0x00000000 0xfc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_abbrev 0x00000000 0xb8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_loclists - 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_line 0x00000000 0xba /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_str 0x00000000 0x122 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_line_str - 0x00000000 0x271 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - .text 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_info 0x00000000 0x10f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_abbrev 0x00000000 0x8a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_loclists - 0x00000000 0x130 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_line 0x00000000 0x157 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_str 0x00000000 0x112 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_line_str - 0x00000000 0x271 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .text 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_info 0x00000000 0x13e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_abbrev 0x00000000 0xc6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_loclists - 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_rnglists - 0x00000000 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_line 0x00000000 0xf7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_str 0x00000000 0x117 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_line_str - 0x00000000 0x21b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - .text 0x00000000 0x1c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_info 0x00000000 0xd3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_abbrev 0x00000000 0x80 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_loclists - 0x00000000 0x27 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_line 0x00000000 0xe0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_str 0x00000000 0x10b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_line_str - 0x00000000 0x206 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - .text 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_info 0x00000000 0xe4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_abbrev 0x00000000 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_loclists - 0x00000000 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_line 0x00000000 0xc4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_str 0x00000000 0x10b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_line_str - 0x00000000 0x206 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - .text 0x00000000 0x22 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_info 0x00000000 0xdd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_abbrev 0x00000000 0x99 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_loclists - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_line 0x00000000 0xdf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_str 0x00000000 0x113 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - .text 0x00000000 0x1c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_info 0x00000000 0x873 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_abbrev 0x00000000 0x1d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_loclists - 0x00000000 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_line 0x00000000 0xac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_str 0x00000000 0x4e5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_line_str - 0x00000000 0x2d9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .debug_frame 0x00000000 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - .text 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_info 0x00000000 0x917 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_abbrev 0x00000000 0x213 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_loclists - 0x00000000 0x5b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_line 0x00000000 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_str 0x00000000 0x501 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_line_str - 0x00000000 0x2e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .debug_frame 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .text 0x00000000 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_info 0x00000000 0x92a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_abbrev 0x00000000 0x207 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_loclists - 0x00000000 0x97 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_line 0x00000000 0xf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_str 0x00000000 0x514 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_line_str - 0x00000000 0x2e5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .debug_frame 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - .text 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_info 0x00000000 0x143 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_abbrev 0x00000000 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_loclists - 0x00000000 0x136 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_line 0x00000000 0x1c7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_str 0x00000000 0x12f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .debug_frame 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - .text 0x00000000 0x2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_info 0x00000000 0xf9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_abbrev 0x00000000 0xaa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_loclists - 0x00000000 0x4b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_line 0x00000000 0x117 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_str 0x00000000 0x124 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - .text 0x00000000 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_info 0x00000000 0x152 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_abbrev 0x00000000 0xd7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_loclists - 0x00000000 0xb4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_rnglists - 0x00000000 0x1d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_line 0x00000000 0x112 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_str 0x00000000 0x11f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_line_str - 0x00000000 0x289 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - .text 0x00000000 0x2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_info 0x00000000 0xec /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_abbrev 0x00000000 0x8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_loclists - 0x00000000 0x47 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_line 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_str 0x00000000 0x113 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - .text 0x00000000 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_info 0x00000000 0xd2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_abbrev 0x00000000 0x76 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_loclists - 0x00000000 0xa2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_line 0x00000000 0xf5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_str 0x00000000 0x113 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_info 0x00000000 0x101 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_abbrev 0x00000000 0xa1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_loclists - 0x00000000 0x5b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_line 0x00000000 0x106 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_str 0x00000000 0x12f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - .text 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_info 0x00000000 0xd5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_abbrev 0x00000000 0x87 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_loclists - 0x00000000 0xa5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_line 0x00000000 0xb5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_str 0x00000000 0x119 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_line_str - 0x00000000 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - .text 0x00000000 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_info 0x00000000 0x130 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_abbrev 0x00000000 0xc8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_loclists - 0x00000000 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_line 0x00000000 0xd8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_str 0x00000000 0x118 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_line_str - 0x00000000 0x209 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .debug_frame 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - .text 0x00000000 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_info 0x00000000 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_abbrev 0x00000000 0xa9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_loclists - 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_line 0x00000000 0x12c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_str 0x00000000 0x112 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_line_str - 0x00000000 0x271 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_info 0x00000000 0x89d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_abbrev 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_loclists - 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_line 0x00000000 0xc2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_str 0x00000000 0x4ee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_line_str - 0x00000000 0x2dc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .debug_frame 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - .text 0x00000000 0x9e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_info 0x00000000 0x1ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_abbrev 0x00000000 0x109 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_loclists - 0x00000000 0xc4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_rnglists - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_line 0x00000000 0x184 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_str 0x00000000 0x136 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_line_str - 0x00000000 0x28f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .debug_frame 0x00000000 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - .text 0x00000000 0x56 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_info 0x00000000 0x8fd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_abbrev 0x00000000 0x213 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_loclists - 0x00000000 0xdf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_line 0x00000000 0x12d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_str 0x00000000 0x4fb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_line_str - 0x00000000 0x2eb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .debug_frame 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .text 0x00000000 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .rodata.str1.4 - 0x00000000 0x6d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_info 0x00000000 0x9d7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_abbrev 0x00000000 0x242 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_loclists - 0x00000000 0x35 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_line 0x00000000 0x118 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_str 0x00000000 0x569 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_line_str - 0x00000000 0x355 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .debug_frame 0x00000000 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .sbss 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .text 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .sbss 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .text 0x00000000 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_info 0x00000000 0xa91 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_abbrev 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_loclists - 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_line 0x00000000 0xdf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_str 0x00000000 0x62c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_line_str - 0x00000000 0x36a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .debug_frame 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .text 0x00000000 0x4a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_info 0x00000000 0xff /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_abbrev 0x00000000 0xa6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_loclists - 0x00000000 0x119 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_line 0x00000000 0x104 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_str 0x00000000 0x12c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_line_str - 0x00000000 0x2ee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - .text 0x00000000 0xa8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_line 0x00000000 0x18e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_line_str - 0x00000000 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_info 0x00000000 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_abbrev 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_str 0x00000000 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .riscv.attributes - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .text 0x00000000 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_info 0x00000000 0x256 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_abbrev 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_loclists - 0x00000000 0x1d6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_line 0x00000000 0x31c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_str 0x00000000 0x133 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_line_str - 0x00000000 0x33e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .text 0x00000000 0x64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_info 0x00000000 0x1a8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_abbrev 0x00000000 0x121 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_loclists - 0x00000000 0x75 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_line 0x00000000 0x242 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_str 0x00000000 0x146 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_line_str - 0x00000000 0x3d5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - .text 0x00000000 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_info 0x00000000 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_abbrev 0x00000000 0x131 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_loclists - 0x00000000 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_line 0x00000000 0x26d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_str 0x00000000 0x153 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_line_str - 0x00000000 0x36a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - .text 0x00000000 0x11e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_line 0x00000000 0x13a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_line_str - 0x00000000 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_info 0x00000000 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_abbrev 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .debug_str 0x00000000 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .riscv.attributes - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .text 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_info 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_abbrev 0x00000000 0x56 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_loclists - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_line 0x00000000 0x6e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_str 0x00000000 0x104 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_line_str - 0x00000000 0x1fd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .text 0x00000000 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_info 0x00000000 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_abbrev 0x00000000 0x56 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_loclists - 0x00000000 0x2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_line 0x00000000 0x74 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_str 0x00000000 0x109 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_line_str - 0x00000000 0x200 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .text 0x00000000 0x536 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .rodata 0x00000000 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_info 0x00000000 0x683 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_abbrev 0x00000000 0x17c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_loclists - 0x00000000 0xa11 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_rnglists - 0x00000000 0xcd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_line 0x00000000 0x110e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_str 0x00000000 0x355 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_line_str - 0x00000000 0x1c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_frame 0x00000000 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - .text 0x00000000 0x62 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_info 0x00000000 0x1a9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_abbrev 0x00000000 0x162 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_loclists - 0x00000000 0x72 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_rnglists - 0x00000000 0x16 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_line 0x00000000 0x1bb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_str 0x00000000 0x19c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_line_str - 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - .text 0x00000000 0x9e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_info 0x00000000 0x1d8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_abbrev 0x00000000 0x162 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_loclists - 0x00000000 0x15a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_line 0x00000000 0x28f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_str 0x00000000 0x1aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_line_str - 0x00000000 0x1c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .debug_frame 0x00000000 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - .text 0x00000000 0x176 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_info 0x00000000 0x2cd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_abbrev 0x00000000 0x181 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_loclists - 0x00000000 0x185 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_rnglists - 0x00000000 0x4f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_line 0x00000000 0x502 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_str 0x00000000 0x25b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_line_str - 0x00000000 0x1cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .debug_frame 0x00000000 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - .text 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_info 0x00000000 0x1f1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_abbrev 0x00000000 0x138 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_loclists - 0x00000000 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_rnglists - 0x00000000 0x16 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_line 0x00000000 0x177 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_str 0x00000000 0x18c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_line_str - 0x00000000 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -Memory Configuration - -Name Origin Length Attributes -iram0_0_seg 0x40380000 0x0004e710 xr -iram0_2_seg 0x42000020 0x007fffe0 xr -dram0_0_seg 0x3fc80000 0x0004e710 rw -drom0_0_seg 0x3c000020 0x007fffe0 r -rtc_iram_seg 0x50000000 0x00001fe8 xrw -rtc_reserved_seg 0x50001fe8 0x00000018 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - - 0x00000000 IDF_TARGET_ESP32C3 = 0x0 -LOAD CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/bt/libbt.a -LOAD esp-idf/unity/libunity.a -LOAD esp-idf/cmock/libcmock.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/esp_hid/libesp_hid.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/esp_https_server/libesp_https_server.a -LOAD esp-idf/esp_lcd/libesp_lcd.a -LOAD esp-idf/protobuf-c/libprotobuf-c.a -LOAD esp-idf/protocomm/libprotocomm.a -LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a -LOAD esp-idf/espcoredump/libespcoredump.a -LOAD esp-idf/wear_levelling/libwear_levelling.a -LOAD esp-idf/fatfs/libfatfs.a -LOAD esp-idf/json/libjson.a -LOAD esp-idf/mqtt/libmqtt.a -LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a -LOAD esp-idf/rt/librt.a -LOAD esp-idf/spiffs/libspiffs.a -LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a -LOAD esp-idf/main/libmain.a -LOAD esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a -LOAD esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a -LOAD esp-idf/espressif__cbor/libespressif__cbor.a -LOAD esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a -LOAD esp-idf/espressif__esp_insights/libespressif__esp_insights.a -LOAD esp-idf/espressif__json_parser/libespressif__json_parser.a -LOAD esp-idf/espressif__json_generator/libespressif__json_generator.a -LOAD esp-idf/espressif__mdns/libespressif__mdns.a -LOAD esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a -LOAD esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a -LOAD esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a -LOAD esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a -LOAD esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a -LOAD esp-idf/esp_rainmaker/libesp_rainmaker.a -LOAD esp-idf/app_insights/libapp_insights.a -LOAD esp-idf/espressif__qrcode/libespressif__qrcode.a -LOAD esp-idf/app_network/libapp_network.a -LOAD esp-idf/gpio_button/libgpio_button.a -LOAD esp-idf/app_reset/libapp_reset.a -LOAD esp-idf/ledc_driver/libledc_driver.a -LOAD esp-idf/ws2812_led/libws2812_led.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD esp-idf/cmock/libcmock.a -LOAD esp-idf/unity/libunity.a -LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a -LOAD esp-idf/esp_hid/libesp_hid.a -LOAD esp-idf/esp_lcd/libesp_lcd.a -LOAD esp-idf/fatfs/libfatfs.a -LOAD esp-idf/wear_levelling/libwear_levelling.a -LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a -LOAD esp-idf/rt/librt.a -LOAD esp-idf/spiffs/libspiffs.a -LOAD esp-idf/espressif__esp_insights/libespressif__esp_insights.a -LOAD esp-idf/espcoredump/libespcoredump.a -LOAD esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a -LOAD esp-idf/espressif__cbor/libespressif__cbor.a -LOAD esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a -LOAD esp-idf/esp_rainmaker/libesp_rainmaker.a -LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a -LOAD esp-idf/esp_https_server/libesp_https_server.a -LOAD esp-idf/espressif__json_parser/libespressif__json_parser.a -LOAD esp-idf/espressif__json_generator/libespressif__json_generator.a -LOAD esp-idf/espressif__mdns/libespressif__mdns.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a -LOAD esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a -LOAD esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a -LOAD esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a -LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a -LOAD esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a -LOAD esp-idf/protocomm/libprotocomm.a -LOAD esp-idf/bt/libbt.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a -LOAD esp-idf/protobuf-c/libprotobuf-c.a -LOAD esp-idf/json/libjson.a -LOAD esp-idf/espressif__qrcode/libespressif__qrcode.a -LOAD esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/mqtt/libmqtt.a -LOAD esp-idf/gpio_button/libgpio_button.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_coex/libesp_coex.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/newlib/libnewlib.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -LOAD esp-idf/cxx/libcxx.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libm.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libnosys.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -START GROUP -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libnosys.a -END GROUP - 0x400005e0 PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) - 0x400005e4 PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) - 0x400005e8 PROVIDE (esprv_int_enable = esprv_intc_int_enable) - 0x400005ec PROVIDE (esprv_int_disable = esprv_intc_int_disable) - 0x400005f0 PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) - 0x60000000 PROVIDE (UART0 = 0x60000000) - 0x60010000 PROVIDE (UART1 = 0x60010000) - 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) - 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) - 0x60004000 PROVIDE (GPIO = 0x60004000) - [!provide] PROVIDE (SDM = 0x60004f00) - 0x60008000 PROVIDE (RTCCNTL = 0x60008000) - [!provide] PROVIDE (RTCIO = 0x60008400) - 0x60008800 PROVIDE (EFUSE = 0x60008800) - [!provide] PROVIDE (HINF = 0x6000b000) - [!provide] PROVIDE (I2S0 = 0x6002d000) - [!provide] PROVIDE (I2C0 = 0x60013000) - [!provide] PROVIDE (UHCI0 = 0x60014000) - [!provide] PROVIDE (HOST = 0x60015000) - 0x60016000 PROVIDE (RMT = 0x60016000) - 0x60016400 PROVIDE (RMTMEM = 0x60016400) - [!provide] PROVIDE (SLC = 0x60018000) - [!provide] PROVIDE (LEDC = 0x60019000) - 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) - 0x60020000 PROVIDE (TIMERG1 = 0x60020000) - 0x60023000 PROVIDE (SYSTIMER = 0x60023000) - 0x60024000 PROVIDE (GPSPI2 = 0x60024000) - [!provide] PROVIDE (SYSCON = 0x60026000) - [!provide] PROVIDE (TWAI = 0x6002b000) - 0x60040000 PROVIDE (APB_SARADC = 0x60040000) - 0x60043000 PROVIDE (USB_SERIAL_JTAG = 0x60043000) - 0x6003f000 PROVIDE (GDMA = 0x6003f000) - 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) - 0x40000018 rtc_get_reset_reason = 0x40000018 - 0x4000001c analog_super_wdt_reset_happened = 0x4000001c - 0x40000020 jtag_cpu_reset_happened = 0x40000020 - 0x40000024 rtc_get_wakeup_cause = 0x40000024 - 0x40000028 rtc_boot_control = 0x40000028 - 0x4000002c rtc_select_apb_bridge = 0x4000002c - 0x40000030 rtc_unhold_all_pads = 0x40000030 - 0x40000034 set_rtc_memory_crc = 0x40000034 - 0x40000038 cacl_rtc_memory_crc = 0x40000038 - 0x4000003c ets_is_print_boot = 0x4000003c - 0x40000040 ets_printf = 0x40000040 - 0x40000044 ets_install_putc1 = 0x40000044 - 0x40000048 ets_install_uart_printf = 0x40000048 - 0x4000004c ets_install_putc2 = 0x4000004c - 0x40000050 PROVIDE (ets_delay_us = 0x40000050) - 0x40000054 ets_get_stack_info = 0x40000054 - 0x40000058 ets_install_lock = 0x40000058 - 0x4000005c ets_backup_dma_copy = 0x4000005c - 0x40000060 ets_apb_backup_init_lock_func = 0x40000060 - 0x40000064 UartRxString = 0x40000064 - 0x40000068 uart_tx_one_char = 0x40000068 - 0x4000006c uart_tx_one_char2 = 0x4000006c - 0x40000070 uart_rx_one_char = 0x40000070 - 0x40000074 uart_rx_one_char_block = 0x40000074 - 0x40000078 uart_rx_readbuff = 0x40000078 - 0x4000007c uartAttach = 0x4000007c - 0x40000080 uart_tx_flush = 0x40000080 - 0x40000084 uart_tx_wait_idle = 0x40000084 - 0x40000088 uart_div_modify = 0x40000088 - 0x4000008c multofup = 0x4000008c - 0x40000090 software_reset = 0x40000090 - 0x40000094 software_reset_cpu = 0x40000094 - 0x40000098 assist_debug_clock_enable = 0x40000098 - 0x4000009c assist_debug_record_enable = 0x4000009c - 0x400000a0 clear_super_wdt_reset_flag = 0x400000a0 - 0x400000a4 disable_default_watchdog = 0x400000a4 - 0x400000a8 send_packet = 0x400000a8 - 0x400000ac recv_packet = 0x400000ac - 0x400000b0 GetUartDevice = 0x400000b0 - 0x400000b4 UartDwnLdProc = 0x400000b4 - 0x400000b8 Uart_Init = 0x400000b8 - 0x400000bc ets_set_user_start = 0x400000bc - 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc - 0x3fcdfffc ets_ops_table_ptr = 0x3fcdfffc - 0x400000c0 mz_adler32 = 0x400000c0 - 0x400000c4 mz_crc32 = 0x400000c4 - 0x400000c8 mz_free = 0x400000c8 - 0x400000cc tdefl_compress = 0x400000cc - 0x400000d0 tdefl_compress_buffer = 0x400000d0 - 0x400000d4 tdefl_compress_mem_to_heap = 0x400000d4 - 0x400000d8 tdefl_compress_mem_to_mem = 0x400000d8 - 0x400000dc tdefl_compress_mem_to_output = 0x400000dc - 0x400000e0 tdefl_get_adler32 = 0x400000e0 - 0x400000e4 tdefl_get_prev_return_status = 0x400000e4 - 0x400000e8 tdefl_init = 0x400000e8 - 0x400000ec tdefl_write_image_to_png_file_in_memory = 0x400000ec - 0x400000f0 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f0 - 0x400000f4 tinfl_decompress = 0x400000f4 - 0x400000f8 tinfl_decompress_mem_to_callback = 0x400000f8 - 0x400000fc tinfl_decompress_mem_to_heap = 0x400000fc - 0x40000100 tinfl_decompress_mem_to_mem = 0x40000100 - [!provide] PROVIDE (jd_prepare = 0x40000104) - [!provide] PROVIDE (jd_decomp = 0x40000108) - 0x4000010c PROVIDE (esp_rom_spiflash_wait_idle = 0x4000010c) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted = 0x40000110) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000114) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000118) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x4000011c) - [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x40000120) - [!provide] PROVIDE (esp_rom_spiflash_erase_block = 0x40000124) - [!provide] PROVIDE (esp_rom_spiflash_erase_sector = 0x40000128) - [!provide] PROVIDE (esp_rom_spiflash_write = 0x4000012c) - [!provide] PROVIDE (esp_rom_spiflash_read = 0x40000130) - 0x40000134 PROVIDE (esp_rom_spiflash_config_param = 0x40000134) - [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000138) - [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x4000013c) - [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000140) - [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000144) - [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000148) - [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x4000014c) - 0x40000150 PROVIDE (esp_rom_spiflash_config_clk = 0x40000150) - [!provide] PROVIDE (esp_rom_spiflash_config_readmode = 0x40000154) - [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000158) - [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x4000015c) - [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000160) - [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40000164) - [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000168) - [!provide] PROVIDE (spi_flash_guard_set = 0x4000016c) - [!provide] PROVIDE (spi_flash_guard_get = 0x40000170) - [!provide] PROVIDE (spi_flash_write_config_set = 0x40000174) - [!provide] PROVIDE (spi_flash_write_config_get = 0x40000178) - [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x4000017c) - [!provide] PROVIDE (spi_flash_unlock = 0x40000180) - [!provide] PROVIDE (spi_flash_erase_range = 0x40000184) - [!provide] PROVIDE (spi_flash_erase_sector = 0x40000188) - [!provide] PROVIDE (spi_flash_write = 0x4000018c) - [!provide] PROVIDE (spi_flash_read = 0x40000190) - [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000194) - [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000198) - [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x4000019c) - [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x400001a0) - [!provide] PROVIDE (spi_flash_mmap = 0x400001a4) - [!provide] PROVIDE (spi_flash_mmap_pages = 0x400001a8) - [!provide] PROVIDE (spi_flash_munmap = 0x400001ac) - [!provide] PROVIDE (spi_flash_mmap_dump = 0x400001b0) - [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x400001b4) - [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x400001b8) - [!provide] PROVIDE (spi_flash_cache2phys = 0x400001bc) - [!provide] PROVIDE (spi_flash_phys2cache = 0x400001c0) - [!provide] PROVIDE (spi_flash_disable_cache = 0x400001c4) - [!provide] PROVIDE (spi_flash_restore_cache = 0x400001c8) - [!provide] PROVIDE (spi_flash_cache_enabled = 0x400001cc) - [!provide] PROVIDE (spi_flash_enable_cache = 0x400001d0) - [!provide] PROVIDE (spi_cache_mode_switch = 0x400001d4) - [!provide] PROVIDE (spi_common_set_dummy_output = 0x400001d8) - [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x400001dc) - [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x400001e0) - [!provide] PROVIDE (SPIEraseArea = 0x400001e4) - [!provide] PROVIDE (SPILock = 0x400001e8) - [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x400001ec) - [!provide] PROVIDE (SPI_Common_Command = 0x400001f0) - [!provide] PROVIDE (SPI_WakeUp = 0x400001f4) - [!provide] PROVIDE (SPI_block_erase = 0x400001f8) - [!provide] PROVIDE (SPI_chip_erase = 0x400001fc) - [!provide] PROVIDE (SPI_init = 0x40000200) - [!provide] PROVIDE (SPI_page_program = 0x40000204) - [!provide] PROVIDE (SPI_read_data = 0x40000208) - [!provide] PROVIDE (SPI_sector_erase = 0x4000020c) - [!provide] PROVIDE (SPI_write_enable = 0x40000210) - [!provide] PROVIDE (SelectSpiFunction = 0x40000214) - [!provide] PROVIDE (SetSpiDrvs = 0x40000218) - [!provide] PROVIDE (Wait_SPI_Idle = 0x4000021c) - [!provide] PROVIDE (spi_dummy_len_fix = 0x40000220) - [!provide] PROVIDE (Disable_QMode = 0x40000224) - [!provide] PROVIDE (Enable_QMode = 0x40000228) - [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fcdfff4) - 0x3fcdfff0 PROVIDE (rom_spiflash_legacy_data = 0x3fcdfff0) - [!provide] PROVIDE (g_flash_guard_ops = 0x3fcdfff8) - [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x4000022c) - [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000230) - [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000234) - [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000238) - [!provide] PROVIDE (spi_flash_hal_read = 0x4000023c) - [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000240) - [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000244) - [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000248) - [!provide] PROVIDE (spi_flash_hal_program_page = 0x4000024c) - [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000250) - [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000254) - [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000258) - [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x4000025c) - [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000260) - [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000264) - [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000268) - [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x4000026c) - [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000270) - [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000274) - [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000278) - [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x4000027c) - [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000280) - [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000284) - [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000288) - [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x4000028c) - [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000290) - [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000294) - [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000298) - [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x4000029c) - [!provide] PROVIDE (spi_flash_chip_generic_read = 0x400002a0) - [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x400002a4) - [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x400002a8) - [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x400002ac) - [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x400002b0) - [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x400002b4) - [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x400002b8) - [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x400002bc) - [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x400002c0) - [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x400002c4) - [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x400002c8) - [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fcdffec) - [!provide] PROVIDE (memspi_host_read_id_hs = 0x400002cc) - [!provide] PROVIDE (memspi_host_read_status_hs = 0x400002d0) - [!provide] PROVIDE (memspi_host_flush_cache = 0x400002d4) - [!provide] PROVIDE (memspi_host_erase_chip = 0x400002d8) - [!provide] PROVIDE (memspi_host_erase_sector = 0x400002dc) - [!provide] PROVIDE (memspi_host_erase_block = 0x400002e0) - [!provide] PROVIDE (memspi_host_program_page = 0x400002e4) - [!provide] PROVIDE (memspi_host_read = 0x400002e8) - [!provide] PROVIDE (memspi_host_set_write_protect = 0x400002ec) - [!provide] PROVIDE (memspi_host_set_max_read_len = 0x400002f0) - [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400002f4) - [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400002f8) - [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400002fc) - [!provide] PROVIDE (esp_flash_read_id = 0x40000300) - [!provide] PROVIDE (esp_flash_get_size = 0x40000304) - [!provide] PROVIDE (esp_flash_erase_chip = 0x40000308) - [!provide] PROVIDE (rom_esp_flash_erase_region = 0x4000030c) - [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x40000310) - [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40000314) - [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40000318) - [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000031c) - [!provide] PROVIDE (esp_flash_set_protected_region = 0x40000320) - [!provide] PROVIDE (esp_flash_read = 0x40000324) - [!provide] PROVIDE (esp_flash_write = 0x40000328) - [!provide] PROVIDE (esp_flash_write_encrypted = 0x4000032c) - [!provide] PROVIDE (esp_flash_read_encrypted = 0x40000330) - [!provide] PROVIDE (esp_flash_get_io_mode = 0x40000334) - [!provide] PROVIDE (esp_flash_set_io_mode = 0x40000338) - [!provide] PROVIDE (spi_flash_boot_attach = 0x4000033c) - [!provide] PROVIDE (spi_flash_dump_counters = 0x40000340) - [!provide] PROVIDE (spi_flash_get_counters = 0x40000344) - [!provide] PROVIDE (spi_flash_op_counters_config = 0x40000348) - [!provide] PROVIDE (spi_flash_reset_counters = 0x4000034c) - [!provide] PROVIDE (esp_flash_default_chip = 0x3fcdffe8) - [!provide] PROVIDE (esp_flash_api_funcs = 0x3fcdffe4) - 0x400004b0 PROVIDE (Cache_Get_ICache_Line_Size = 0x400004b0) - [!provide] PROVIDE (Cache_Get_Mode = 0x400004b4) - [!provide] PROVIDE (Cache_Address_Through_IBus = 0x400004b8) - [!provide] PROVIDE (Cache_Address_Through_DBus = 0x400004bc) - [!provide] PROVIDE (Cache_Set_Default_Mode = 0x400004c0) - [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x400004c4) - 0x400004c8 PROVIDE (ROM_Boot_Cache_Init = 0x400004c8) - [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x400004cc) - [!provide] PROVIDE (Cache_Op_Addr = 0x400004d0) - 0x400004d4 PROVIDE (Cache_Invalidate_Addr = 0x400004d4) - [!provide] PROVIDE (Cache_Invalidate_ICache_All = 0x400004d8) - [!provide] PROVIDE (Cache_Mask_All = 0x400004dc) - [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x400004e0) - [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x400004e4) - [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x400004e8) - [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x400004ec) - [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x400004f0) - [!provide] PROVIDE (Cache_End_ICache_Preload = 0x400004f4) - [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x400004f8) - [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400004fc) - [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x40000500) - [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x40000504) - [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40000508) - [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000050c) - [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40000510) - [!provide] PROVIDE (Cache_Lock_Addr = 0x40000514) - [!provide] PROVIDE (Cache_Unlock_Addr = 0x40000518) - 0x4000051c PROVIDE (Cache_Disable_ICache = 0x4000051c) - 0x40000520 PROVIDE (Cache_Enable_ICache = 0x40000520) - 0x40000524 PROVIDE (Cache_Suspend_ICache = 0x40000524) - 0x40000528 PROVIDE (Cache_Resume_ICache = 0x40000528) - [!provide] PROVIDE (Cache_Freeze_ICache_Enable = 0x4000052c) - [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x40000530) - [!provide] PROVIDE (Cache_Pms_Lock = 0x40000534) - [!provide] PROVIDE (Cache_Ibus_Pms_Set_Addr = 0x40000538) - [!provide] PROVIDE (Cache_Ibus_Pms_Set_Attr = 0x4000053c) - [!provide] PROVIDE (Cache_Dbus_Pms_Set_Addr = 0x40000540) - [!provide] PROVIDE (Cache_Dbus_Pms_Set_Attr = 0x40000544) - 0x40000548 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40000548) - [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000054c) - [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40000550) - [!provide] PROVIDE (Cache_Owner_Init = 0x40000554) - [!provide] PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40000558) - [!provide] PROVIDE (Cache_MMU_Init = 0x4000055c) - [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x40000560) - [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x40000564) - [!provide] PROVIDE (Cache_Count_Flash_Pages = 0x40000568) - [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x4000056c) - [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x40000570) - [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x40000574) - [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40000578) - [!provide] PROVIDE (Cache_Get_Memory_value = 0x4000057c) - [!provide] PROVIDE (rom_cache_op_cb = 0x3fcdffd8) - [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fcdffd4) - 0x40000580 ets_get_apb_freq = 0x40000580 - 0x40000584 ets_get_cpu_frequency = 0x40000584 - 0x40000588 ets_update_cpu_frequency = 0x40000588 - 0x4000058c ets_get_printf_channel = 0x4000058c - 0x40000590 ets_get_xtal_div = 0x40000590 - 0x40000594 ets_set_xtal_div = 0x40000594 - 0x40000598 ets_get_xtal_freq = 0x40000598 - 0x4000059c gpio_input_get = 0x4000059c - 0x400005a0 gpio_matrix_in = 0x400005a0 - 0x400005a4 gpio_matrix_out = 0x400005a4 - 0x400005b0 gpio_output_set = 0x400005b0 - 0x400005b4 gpio_pad_hold = 0x400005b4 - 0x400005b8 gpio_pad_input_disable = 0x400005b8 - 0x400005bc gpio_pad_input_enable = 0x400005bc - 0x400005c0 gpio_pad_pulldown = 0x400005c0 - 0x400005c4 gpio_pad_pullup = 0x400005c4 - 0x400005c8 gpio_pad_select_gpio = 0x400005c8 - 0x400005cc gpio_pad_set_drv = 0x400005cc - 0x400005d0 gpio_pad_unhold = 0x400005d0 - 0x400005d4 gpio_pin_wakeup_disable = 0x400005d4 - 0x400005d8 gpio_pin_wakeup_enable = 0x400005d8 - 0x400005dc gpio_bypass_matrix_in = 0x400005dc - 0x400005e0 esprv_intc_int_set_priority = 0x400005e0 - 0x400005e4 esprv_intc_int_set_threshold = 0x400005e4 - 0x400005e8 esprv_intc_int_enable = 0x400005e8 - 0x400005ec esprv_intc_int_disable = 0x400005ec - 0x400005f0 esprv_intc_int_set_type = 0x400005f0 - 0x400005f4 intr_matrix_set = 0x400005f4 - 0x400005f8 ets_intr_lock = 0x400005f8 - 0x400005fc ets_intr_unlock = 0x400005fc - [!provide] PROVIDE (intr_handler_set = 0x40000600) - 0x40000604 ets_isr_attach = 0x40000604 - 0x40000608 ets_isr_mask = 0x40000608 - 0x4000060c ets_isr_unmask = 0x4000060c - 0x40000610 md5_vector = 0x40000610 - 0x40000614 MD5Init = 0x40000614 - 0x40000618 MD5Update = 0x40000618 - 0x4000061c MD5Final = 0x4000061c - 0x40000620 hmac_md5_vector = 0x40000620 - 0x40000624 hmac_md5 = 0x40000624 - 0x40000628 crc32_le = 0x40000628 - 0x4000062c crc32_be = 0x4000062c - 0x40000630 crc16_le = 0x40000630 - 0x40000634 crc16_be = 0x40000634 - 0x40000638 crc8_le = 0x40000638 - 0x4000063c crc8_be = 0x4000063c - 0x40000640 esp_crc8 = 0x40000640 - 0x40000644 ets_sha_enable = 0x40000644 - 0x40000648 ets_sha_disable = 0x40000648 - 0x4000064c ets_sha_get_state = 0x4000064c - 0x40000650 ets_sha_init = 0x40000650 - 0x40000654 ets_sha_process = 0x40000654 - 0x40000658 ets_sha_starts = 0x40000658 - 0x4000065c ets_sha_update = 0x4000065c - 0x40000660 ets_sha_finish = 0x40000660 - 0x40000664 ets_sha_clone = 0x40000664 - 0x40000668 ets_hmac_enable = 0x40000668 - 0x4000066c ets_hmac_disable = 0x4000066c - 0x40000670 ets_hmac_calculate_message = 0x40000670 - 0x40000674 ets_hmac_calculate_downstream = 0x40000674 - 0x40000678 ets_hmac_invalidate_downstream = 0x40000678 - 0x4000067c ets_jtag_enable_temporarily = 0x4000067c - 0x40000680 ets_aes_enable = 0x40000680 - 0x40000684 ets_aes_disable = 0x40000684 - 0x40000688 ets_aes_setkey = 0x40000688 - 0x4000068c ets_aes_block = 0x4000068c - 0x40000690 ets_bigint_enable = 0x40000690 - 0x40000694 ets_bigint_disable = 0x40000694 - 0x40000698 ets_bigint_multiply = 0x40000698 - 0x4000069c ets_bigint_modmult = 0x4000069c - 0x400006a0 ets_bigint_modexp = 0x400006a0 - 0x400006a4 ets_bigint_wait_finish = 0x400006a4 - 0x400006a8 ets_bigint_getz = 0x400006a8 - 0x400006ac ets_ds_enable = 0x400006ac - 0x400006b0 ets_ds_disable = 0x400006b0 - 0x400006b4 ets_ds_start_sign = 0x400006b4 - 0x400006b8 ets_ds_is_busy = 0x400006b8 - 0x400006bc ets_ds_finish_sign = 0x400006bc - 0x400006c0 ets_ds_encrypt_params = 0x400006c0 - 0x400006c4 ets_aes_setkey_dec = 0x400006c4 - 0x400006c8 ets_aes_setkey_enc = 0x400006c8 - 0x400006cc ets_mgf1_sha256 = 0x400006cc - 0x400006d0 ets_efuse_read = 0x400006d0 - 0x400006d4 ets_efuse_program = 0x400006d4 - 0x400006d8 ets_efuse_clear_program_registers = 0x400006d8 - 0x400006dc ets_efuse_write_key = 0x400006dc - 0x400006e0 ets_efuse_get_read_register_address = 0x400006e0 - 0x400006e4 ets_efuse_get_key_purpose = 0x400006e4 - 0x400006e8 ets_efuse_key_block_unused = 0x400006e8 - 0x400006ec ets_efuse_find_unused_key_block = 0x400006ec - 0x400006f0 ets_efuse_rs_calculate = 0x400006f0 - 0x400006f4 ets_efuse_count_unused_key_blocks = 0x400006f4 - 0x400006f8 ets_efuse_secure_boot_enabled = 0x400006f8 - 0x400006fc ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400006fc - 0x40000700 ets_efuse_cache_encryption_enabled = 0x40000700 - 0x40000704 ets_efuse_download_modes_disabled = 0x40000704 - 0x40000708 ets_efuse_find_purpose = 0x40000708 - 0x4000070c ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x4000070c - 0x40000710 ets_efuse_force_send_resume = 0x40000710 - 0x40000714 ets_efuse_get_flash_delay_us = 0x40000714 - 0x40000718 ets_efuse_get_mac = 0x40000718 - 0x4000071c ets_efuse_get_spiconfig = 0x4000071c - 0x40000720 ets_efuse_usb_print_is_disabled = 0x40000720 - 0x40000724 ets_efuse_usb_serial_jtag_print_is_disabled = 0x40000724 - 0x40000728 ets_efuse_get_uart_print_control = 0x40000728 - 0x4000072c ets_efuse_get_wp_pad = 0x4000072c - 0x40000730 ets_efuse_legacy_spi_boot_mode_disabled = 0x40000730 - 0x40000734 ets_efuse_security_download_modes_enabled = 0x40000734 - 0x40000738 ets_efuse_set_timing = 0x40000738 - 0x4000073c ets_efuse_jtag_disabled = 0x4000073c - 0x40000740 ets_efuse_usb_download_mode_disabled = 0x40000740 - 0x40000744 ets_efuse_usb_module_disabled = 0x40000744 - 0x40000748 ets_efuse_usb_device_disabled = 0x40000748 - 0x4000074c ets_emsa_pss_verify = 0x4000074c - 0x40000750 ets_rsa_pss_verify = 0x40000750 - 0x40000754 ets_secure_boot_verify_bootloader_with_keys = 0x40000754 - 0x40000758 ets_secure_boot_verify_signature = 0x40000758 - 0x4000075c ets_secure_boot_read_key_digests = 0x4000075c - 0x40000760 ets_secure_boot_revoke_public_key_digest = 0x40000760 - [!provide] PROVIDE (usb_uart_rx_one_char = 0x400008cc) - [!provide] PROVIDE (usb_uart_rx_one_char_block = 0x400008d0) - [!provide] PROVIDE (usb_uart_tx_flush = 0x400008d4) - [!provide] PROVIDE (usb_uart_tx_one_char = 0x400008d8) - [!provide] PROVIDE (g_uart_print = 0x3fcdffd1) - [!provide] PROVIDE (g_usb_print = 0x3fcdffd0) - 0x3fcdffcc bt_rf_coex_cfg_p = 0x3fcdffcc - 0x3fcdffc8 bt_rf_coex_hooks_p = 0x3fcdffc8 - 0x3fcdffc4 btdm_env_p = 0x3fcdffc4 - 0x3fcdffc0 g_rw_controller_task_handle = 0x3fcdffc0 - 0x3fcdffbc g_rw_init_sem = 0x3fcdffbc - 0x3fcdffb8 g_rw_schd_queue = 0x3fcdffb8 - 0x3fcdffb4 lld_init_env = 0x3fcdffb4 - 0x3fcdffb0 lld_rpa_renew_env = 0x3fcdffb0 - 0x3fcdffac lld_scan_env = 0x3fcdffac - 0x3fcdffa8 lld_scan_sync_env = 0x3fcdffa8 - 0x3fcdffa4 lld_test_env = 0x3fcdffa4 - 0x3fcdffa0 p_ble_util_buf_env = 0x3fcdffa0 - 0x3fcdff9c p_lld_env = 0x3fcdff9c - 0x3fcdff98 p_llm_env = 0x3fcdff98 - 0x3fcdff94 r_h4tl_eif_p = 0x3fcdff94 - 0x3fcdff90 r_hli_funcs_p = 0x3fcdff90 - 0x3fcdff8c r_ip_funcs_p = 0x3fcdff8c - 0x3fcdff88 r_modules_funcs_p = 0x3fcdff88 - 0x3fcdff84 r_osi_funcs_p = 0x3fcdff84 - 0x3fcdff80 r_plf_funcs_p = 0x3fcdff80 - 0x3fcdff7c vhci_env_p = 0x3fcdff7c - 0x3fcdff78 aa_gen = 0x3fcdff78 - 0x3fcdff6c aes_env = 0x3fcdff6c - 0x3fcdff1c bt_rf_coex_cfg_cb = 0x3fcdff1c - 0x3fcdff18 btdm_pwr_state = 0x3fcdff18 - 0x3fcdff14 btdm_slp_err = 0x3fcdff14 - 0x3fcdff0c ecc_env = 0x3fcdff0c - 0x3fcdff04 esp_handler = 0x3fcdff04 - 0x3fcdfefc esp_vendor_cmd = 0x3fcdfefc - 0x3fcdfef8 g_adv_delay_dis = 0x3fcdfef8 - 0x3fcdfef4 g_conflict_elt = 0x3fcdfef4 - 0x3fcdfee4 g_eif_api = 0x3fcdfee4 - 0x3fcdfed8 g_event_empty = 0x3fcdfed8 - 0x3fcdfecc g_llc_state = 0x3fcdfecc - 0x3fcdfec8 g_llm_state = 0x3fcdfec8 - 0x3fcdfec4 g_max_evt_env = 0x3fcdfec4 - 0x3fcdfec0 g_misc_state = 0x3fcdfec0 - 0x3fcdfea4 g_rma_rule_db = 0x3fcdfea4 - 0x3fcdfe88 g_rtp_rule_db = 0x3fcdfe88 - 0x3fcdfe85 g_scan_forever = 0x3fcdfe85 - 0x3fcdfe84 g_time_msb = 0x3fcdfe84 - 0x3fcdfe5c h4tl_env = 0x3fcdfe5c - 0x3fcdfe38 hci_env = 0x3fcdfe38 - 0x3fcdfe34 hci_ext_host = 0x3fcdfe34 - 0x3fcdfe2c hci_fc_env = 0x3fcdfe2c - 0x3fcdfe00 hci_tl_env = 0x3fcdfe00 - 0x3fcdfdd0 ke_env = 0x3fcdfdd0 - 0x3fcdfd90 ke_event_env = 0x3fcdfd90 - 0x3fcdfd14 ke_task_env = 0x3fcdfd14 - 0x3fcdfcec llc_env = 0x3fcdfcec - 0x3fcdfcc4 lld_adv_env = 0x3fcdfcc4 - 0x3fcdfc9c lld_con_env = 0x3fcdfc9c - 0x3fcdfc94 lld_exp_sync_pos_tab = 0x3fcdfc94 - 0x3fcdfc6c lld_per_adv_env = 0x3fcdfc6c - 0x3fcdfc44 lld_sync_env = 0x3fcdfc44 - 0x3fcdfc38 llm_le_adv_flow_env = 0x3fcdfc38 - 0x3fcdfc34 rw_sleep_enable = 0x3fcdfc34 - 0x3fcdfc2c rwble_env = 0x3fcdfc2c - 0x3fcdfc10 rwip_env = 0x3fcdfc10 - 0x3fcdfc04 rwip_param = 0x3fcdfc04 - 0x3fcdfc00 rwip_prog_delay = 0x3fcdfc00 - 0x3fcdfbc8 rwip_rf = 0x3fcdfbc8 - 0x3fcdfbc0 sch_alarm_env = 0x3fcdfbc0 - 0x3fcdfbac sch_arb_env = 0x3fcdfbac - 0x3fcdfba4 sch_plan_env = 0x3fcdfba4 - 0x3fcdfaa0 sch_prog_env = 0x3fcdfaa0 - 0x3fcdfa40 sch_slice_env = 0x3fcdfa40 - 0x3fcdfa38 sch_slice_params = 0x3fcdfa38 - 0x3fcdfa30 timer_env = 0x3fcdfa30 - 0x3fcdfa2c unloaded_area = 0x3fcdfa2c - 0x3fcdfa28 vshci_state = 0x3fcdfa28 - 0x3fcdfa1c TASK_DESC_LLC = 0x3fcdfa1c - 0x3fcdfa10 TASK_DESC_LLM = 0x3fcdfa10 - 0x3fcdfa04 TASK_DESC_VSHCI = 0x3fcdfa04 - 0x3fcdf9fc co_default_bdaddr = 0x3fcdf9fc - 0x3fcdf9f8 dbg_assert_block = 0x3fcdf9f8 - 0x3fcdf9f4 g_bt_plf_log_level = 0x3fcdf9f4 - 0x3fcdf9d0 hci_cmd_desc_tab_vs_esp = 0x3fcdf9d0 - 0x3fcdf9b8 hci_command_handler_tab_esp = 0x3fcdf9b8 - 0x3fcdf9b4 privacy_en = 0x3fcdf9b4 - 0x3fcdf96c sdk_cfg_priv_opts = 0x3fcdf96c - 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc - 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc - 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c - 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c - 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c - 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 - 0x3ff1f79c LLM_AA_CT1 = 0x3ff1f79c - 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 - 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 - 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 - 0x3ff1f768 adv_evt_prop2type = 0x3ff1f768 - 0x3ff1f760 adv_evt_type2prop = 0x3ff1f760 - 0x3ff1f750 aes_cmac_zero = 0x3ff1f750 - 0x3ff1f740 aes_k2_salt = 0x3ff1f740 - 0x3ff1f738 aes_k3_id64 = 0x3ff1f738 - 0x3ff1f728 aes_k3_salt = 0x3ff1f728 - 0x3ff1f724 aes_k4_id6 = 0x3ff1f724 - 0x3ff1f714 aes_k4_salt = 0x3ff1f714 - 0x3ff1f6e8 bigHexP256 = 0x3ff1f6e8 - 0x3ff1f6e0 byte_tx_time = 0x3ff1f6e0 - 0x3ff1f6d8 co_null_bdaddr = 0x3ff1f6d8 - 0x3ff1f6d0 co_phy_mask_to_rate = 0x3ff1f6d0 - 0x3ff1f6c8 co_phy_mask_to_value = 0x3ff1f6c8 - 0x3ff1f6c4 co_phy_to_rate = 0x3ff1f6c4 - 0x3ff1f6c0 co_phy_value_to_mask = 0x3ff1f6c0 - 0x3ff1f6b8 co_rate_to_byte_dur_us = 0x3ff1f6b8 - 0x3ff1f6b0 co_rate_to_phy = 0x3ff1f6b0 - 0x3ff1f6ac co_rate_to_phy_mask = 0x3ff1f6ac - 0x3ff1f69c co_sca2ppm = 0x3ff1f69c - 0x3ff1f670 coef_B = 0x3ff1f670 - 0x3ff1f668 connect_req_dur_tab = 0x3ff1f668 - 0x3ff1f5e4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5e4 - 0x3ff1f518 em_base_reg_lut = 0x3ff1f518 - 0x3ff1f510 fixed_tx_time = 0x3ff1f510 - 0x3ff1f508 h4tl_msgtype2hdrlen = 0x3ff1f508 - 0x3ff1f4d8 hci_cmd_desc_root_tab = 0x3ff1f4d8 - 0x3ff1f46c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f46c - 0x3ff1f43c hci_cmd_desc_tab_info_par = 0x3ff1f43c - 0x3ff1f0a0 hci_cmd_desc_tab_le = 0x3ff1f0a0 - 0x3ff1f088 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f088 - 0x3ff1f07c hci_cmd_desc_tab_stat_par = 0x3ff1f07c - 0x3ff1f040 hci_cmd_desc_tab_vs = 0x3ff1f040 - 0x3ff1eff8 hci_evt_desc_tab = 0x3ff1eff8 - 0x3ff1ef58 hci_evt_le_desc_tab = 0x3ff1ef58 - 0x3ff1ef50 hci_evt_le_desc_tab_esp = 0x3ff1ef50 - 0x3ff1ef48 hci_rsvd_evt_msk = 0x3ff1ef48 - 0x3ff1ef44 lld_aux_phy_to_rate = 0x3ff1ef44 - 0x3ff1ef3c lld_init_max_aux_dur_tab = 0x3ff1ef3c - 0x3ff1ef34 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef34 - 0x3ff1ef2c lld_scan_max_aux_dur_tab = 0x3ff1ef2c - 0x3ff1ef24 lld_sync_max_aux_dur_tab = 0x3ff1ef24 - 0x3ff1ef1c llm_local_le_feats = 0x3ff1ef1c - 0x3ff1ef14 llm_local_le_states = 0x3ff1ef14 - 0x3ff1eeec llm_local_supp_cmds = 0x3ff1eeec - 0x3ff1eecc maxSecretKey_256 = 0x3ff1eecc - 0x3ff1eec4 max_data_tx_time = 0x3ff1eec4 - 0x3ff1eeb4 one_bits = 0x3ff1eeb4 - 0x3ff1eeac rwip_coex_cfg = 0x3ff1eeac - 0x3ff1ee94 rwip_priority = 0x3ff1ee94 - 0x3ff1ee48 veryBigHexP256 = 0x3ff1ee48 - 0x400015b0 esp_pp_rom_version_get = 0x400015b0 - 0x400015b4 RC_GetBlockAckTime = 0x400015b4 - 0x400015b8 ebuf_list_remove = 0x400015b8 - 0x400015c8 GetAccess = 0x400015c8 - 0x400015cc hal_mac_is_low_rate_enabled = 0x400015cc - 0x400015d0 hal_mac_tx_get_blockack = 0x400015d0 - 0x400015d8 ic_get_trc = 0x400015d8 - 0x400015e0 ic_mac_init = 0x400015e0 - 0x400015e4 ic_interface_enabled = 0x400015e4 - 0x400015e8 is_lmac_idle = 0x400015e8 - 0x400015f0 lmacDiscardAgedMSDU = 0x400015f0 - 0x400015fc lmacIsIdle = 0x400015fc - 0x40001600 lmacIsLongFrame = 0x40001600 - 0x40001608 lmacPostTxComplete = 0x40001608 - 0x4000160c lmacProcessAllTxTimeout = 0x4000160c - 0x40001610 lmacProcessCollisions = 0x40001610 - 0x40001614 lmacProcessRxSucData = 0x40001614 - 0x40001618 lmacReachLongLimit = 0x40001618 - 0x4000161c lmacReachShortLimit = 0x4000161c - 0x40001620 lmacRecycleMPDU = 0x40001620 - 0x40001624 lmacRxDone = 0x40001624 - 0x40001634 mac_tx_set_duration = 0x40001634 - 0x4000163c mac_tx_set_plcp0 = 0x4000163c - 0x40001644 mac_tx_set_plcp2 = 0x40001644 - 0x4000164c pm_disable_dream_timer = 0x4000164c - 0x40001650 pm_disable_sleep_delay_timer = 0x40001650 - 0x40001658 pm_mac_wakeup = 0x40001658 - 0x4000165c pm_mac_sleep = 0x4000165c - 0x40001660 pm_enable_active_timer = 0x40001660 - 0x40001664 pm_enable_sleep_delay_timer = 0x40001664 - 0x40001668 pm_local_tsf_process = 0x40001668 - 0x4000166c pm_set_beacon_filter = 0x4000166c - 0x40001670 pm_is_in_wifi_slice_threshold = 0x40001670 - 0x40001674 pm_is_waked = 0x40001674 - 0x40001680 pm_on_data_rx = 0x40001680 - 0x40001684 pm_on_tbtt = 0x40001684 - 0x4000169c pm_sleep_for = 0x4000169c - 0x400016a4 ppAMPDU2Normal = 0x400016a4 - 0x400016ac ppCalFrameTimes = 0x400016ac - 0x400016b0 ppCalSubFrameLength = 0x400016b0 - 0x400016b8 ppCheckTxAMPDUlength = 0x400016b8 - 0x400016bc ppDequeueRxq_Locked = 0x400016bc - 0x400016c0 ppDequeueTxQ = 0x400016c0 - 0x400016c4 ppEmptyDelimiterLength = 0x400016c4 - 0x400016c8 ppEnqueueRxq = 0x400016c8 - 0x400016cc ppEnqueueTxDone = 0x400016cc - 0x400016d0 ppGetTxQFirstAvail_Locked = 0x400016d0 - 0x400016d4 ppGetTxframe = 0x400016d4 - 0x400016e0 ppProcessRxPktHdr = 0x400016e0 - 0x400016e8 ppRecordBarRRC = 0x400016e8 - 0x400016ec lmacRequestTxopQueue = 0x400016ec - 0x400016f0 lmacReleaseTxopQueue = 0x400016f0 - 0x400016f4 ppRecycleAmpdu = 0x400016f4 - 0x400016f8 ppRecycleRxPkt = 0x400016f8 - 0x400016fc ppResortTxAMPDU = 0x400016fc - 0x40001700 ppResumeTxAMPDU = 0x40001700 - 0x4000170c ppRxProtoProc = 0x4000170c - 0x40001710 ppSearchTxQueue = 0x40001710 - 0x40001714 ppSearchTxframe = 0x40001714 - 0x40001718 ppSelectNextQueue = 0x40001718 - 0x4000171c ppSubFromAMPDU = 0x4000171c - 0x40001720 ppTask = 0x40001720 - 0x40001724 ppTxPkt = 0x40001724 - 0x40001728 ppTxProtoProc = 0x40001728 - 0x4000172c ppTxqUpdateBitmap = 0x4000172c - 0x40001734 pp_hdrsize = 0x40001734 - 0x40001738 pp_post = 0x40001738 - 0x4000173c pp_process_hmac_waiting_txq = 0x4000173c - 0x40001740 rcGetAmpduSched = 0x40001740 - 0x40001744 rcUpdateRxDone = 0x40001744 - 0x40001748 rc_get_trc = 0x40001748 - 0x4000174c rc_get_trc_by_index = 0x4000174c - 0x40001750 rcAmpduLowerRate = 0x40001750 - 0x40001754 rcampduuprate = 0x40001754 - 0x40001758 rcClearCurAMPDUSched = 0x40001758 - 0x4000175c rcClearCurSched = 0x4000175c - 0x40001760 rcClearCurStat = 0x40001760 - 0x40001768 rcLowerSched = 0x40001768 - 0x4000176c rcSetTxAmpduLimit = 0x4000176c - 0x40001774 rcUpdateAckSnr = 0x40001774 - 0x40001784 rcUpSched = 0x40001784 - 0x40001788 rssi_margin = 0x40001788 - 0x4000178c rx11NRate2AMPDULimit = 0x4000178c - 0x40001790 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40001790 - 0x40001794 TRC_AMPDU_PER_UP_THRESHOLD = 0x40001794 - 0x40001798 trc_calc_duration = 0x40001798 - 0x4000179c trc_isTxAmpduOperational = 0x4000179c - 0x400017a0 trc_onAmpduOp = 0x400017a0 - 0x400017a4 TRC_PER_IS_GOOD = 0x400017a4 - 0x400017a8 trc_SetTxAmpduState = 0x400017a8 - 0x400017ac trc_tid_isTxAmpduOperational = 0x400017ac - 0x400017b0 trcAmpduSetState = 0x400017b0 - 0x400017bc wDev_DiscardFrame = 0x400017bc - 0x400017c0 wDev_GetNoiseFloor = 0x400017c0 - 0x400017c4 wDev_IndicateAmpdu = 0x400017c4 - 0x400017cc wdev_bank_store = 0x400017cc - 0x400017d0 wdev_bank_load = 0x400017d0 - 0x400017d4 wdev_mac_reg_load = 0x400017d4 - 0x400017d8 wdev_mac_reg_store = 0x400017d8 - 0x400017dc wdev_mac_special_reg_load = 0x400017dc - 0x400017e0 wdev_mac_special_reg_store = 0x400017e0 - 0x400017e4 wdev_mac_wakeup = 0x400017e4 - 0x400017e8 wdev_mac_sleep = 0x400017e8 - 0x400017ec hal_mac_is_dma_enable = 0x400017ec - 0x400017f8 wdevProcessRxSucDataAll = 0x400017f8 - 0x400017fc wdev_csi_len_align = 0x400017fc - 0x40001800 ppDequeueTxDone_Locked = 0x40001800 - 0x4000180c config_is_cache_tx_buf_enabled = 0x4000180c - 0x40001810 //ppMapWaitTxq = 0x40001810 - 0x40001814 ppProcessWaitingQueue = 0x40001814 - 0x40001818 ppDisableQueue = 0x40001818 - 0x4000181c pm_allow_tx = 0x4000181c - 0x3ff1ee44 our_instances_ptr = 0x3ff1ee44 - 0x3fcdf968 pTxRx = 0x3fcdf968 - 0x3fcdf964 lmacConfMib_ptr = 0x3fcdf964 - 0x3fcdf960 our_wait_eb = 0x3fcdf960 - 0x3fcdf95c our_tx_eb = 0x3fcdf95c - 0x3fcdf958 pp_wdev_funcs = 0x3fcdf958 - 0x3fcdf954 g_osi_funcs_p = 0x3fcdf954 - 0x3fcdf950 wDevCtrl_ptr = 0x3fcdf950 - 0x3ff1ee40 g_wdev_last_desc_reset_ptr = 0x3ff1ee40 - 0x3fcdf94c wDevMacSleep_ptr = 0x3fcdf94c - 0x3fcdf948 g_lmac_cnt_ptr = 0x3fcdf948 - 0x3ff1ee3c our_controls_ptr = 0x3ff1ee3c - 0x3fcdf944 pp_sig_cnt_ptr = 0x3fcdf944 - 0x3fcdf940 g_eb_list_desc_ptr = 0x3fcdf940 - 0x3fcdf93c s_fragment_ptr = 0x3fcdf93c - 0x3fcdf938 if_ctrl_ptr = 0x3fcdf938 - 0x3fcdf934 g_intr_lock_mux = 0x3fcdf934 - 0x3fcdf930 g_wifi_global_lock = 0x3fcdf930 - 0x3fcdf92c s_wifi_queue = 0x3fcdf92c - 0x3fcdf928 pp_task_hdl = 0x3fcdf928 - 0x3fcdf924 s_pp_task_create_sem = 0x3fcdf924 - 0x3fcdf920 s_pp_task_del_sem = 0x3fcdf920 - 0x3fcdf91c g_wifi_menuconfig_ptr = 0x3fcdf91c - 0x3fcdf918 xphyQueue = 0x3fcdf918 - 0x3fcdf914 ap_no_lr_ptr = 0x3fcdf914 - 0x3fcdf910 rc11BSchedTbl_ptr = 0x3fcdf910 - 0x3fcdf90c rc11NSchedTbl_ptr = 0x3fcdf90c - 0x3fcdf908 rcLoRaSchedTbl_ptr = 0x3fcdf908 - 0x3fcdf904 BasicOFDMSched_ptr = 0x3fcdf904 - 0x3fcdf900 trc_ctl_ptr = 0x3fcdf900 - 0x3fcdf8fc g_pm_cnt_ptr = 0x3fcdf8fc - 0x3fcdf8f8 g_pm_ptr = 0x3fcdf8f8 - 0x3fcdf8f4 g_pm_cfg_ptr = 0x3fcdf8f4 - 0x3fcdf8f0 g_esp_mesh_quick_funcs_ptr = 0x3fcdf8f0 - 0x3fcdf8ec g_txop_queue_status_ptr = 0x3fcdf8ec - 0x3fcdf8e8 g_mac_sleep_en_ptr = 0x3fcdf8e8 - 0x3fcdf8e4 g_mesh_is_root_ptr = 0x3fcdf8e4 - 0x3fcdf8e0 g_mesh_topology_ptr = 0x3fcdf8e0 - 0x3fcdf8dc g_mesh_init_ps_type_ptr = 0x3fcdf8dc - 0x3fcdf8d8 g_mesh_is_started_ptr = 0x3fcdf8d8 - 0x3fcdf8d4 g_config_func = 0x3fcdf8d4 - 0x3fcdf8d0 g_net80211_tx_func = 0x3fcdf8d0 - 0x3fcdf8cc g_timer_func = 0x3fcdf8cc - 0x3fcdf8c8 s_michael_mic_failure_cb = 0x3fcdf8c8 - 0x3fcdf8c4 wifi_sta_rx_probe_req = 0x3fcdf8c4 - 0x3fcdf8c0 g_tx_done_cb_func = 0x3fcdf8c0 - 0x3fcdf874 g_per_conn_trc = 0x3fcdf874 - 0x3fcdf870 s_encap_amsdu_func = 0x3fcdf870 - 0x40001820 esp_net80211_rom_version_get = 0x40001820 - 0x40001824 ampdu_dispatch = 0x40001824 - 0x40001828 ampdu_dispatch_all = 0x40001828 - 0x4000182c ampdu_dispatch_as_many_as_possible = 0x4000182c - 0x40001830 ampdu_dispatch_movement = 0x40001830 - 0x40001834 ampdu_dispatch_upto = 0x40001834 - 0x40001838 chm_is_at_home_channel = 0x40001838 - 0x4000183c cnx_node_is_existing = 0x4000183c - 0x40001840 cnx_node_search = 0x40001840 - 0x40001844 ic_ebuf_recycle_rx = 0x40001844 - 0x40001848 ic_ebuf_recycle_tx = 0x40001848 - 0x4000184c ic_reset_rx_ba = 0x4000184c - 0x40001850 ieee80211_align_eb = 0x40001850 - 0x40001858 ieee80211_ampdu_start_age_timer = 0x40001858 - 0x40001860 ieee80211_is_tx_allowed = 0x40001860 - 0x40001864 ieee80211_output_pending_eb = 0x40001864 - 0x4000186c ieee80211_set_tx_desc = 0x4000186c - 0x40001870 rom_sta_input = 0x40001870 - 0x40001874 wifi_get_macaddr = 0x40001874 - 0x40001878 wifi_rf_phy_disable = 0x40001878 - 0x4000187c wifi_rf_phy_enable = 0x4000187c - 0x40001880 ic_ebuf_alloc = 0x40001880 - 0x40001888 ieee80211_copy_eb_header = 0x40001888 - 0x4000188c ieee80211_recycle_cache_eb = 0x4000188c - 0x40001890 ieee80211_search_node = 0x40001890 - 0x40001894 roundup2 = 0x40001894 - 0x40001898 ieee80211_crypto_encap = 0x40001898 - 0x400018a4 ieee80211_set_tx_pti = 0x400018a4 - 0x400018a8 wifi_is_started = 0x400018a8 - 0x3fcdf86c net80211_funcs = 0x3fcdf86c - 0x3fcdf868 g_scan = 0x3fcdf868 - 0x3fcdf864 g_chm = 0x3fcdf864 - 0x3fcdf860 g_ic_ptr = 0x3fcdf860 - 0x3fcdf85c g_hmac_cnt_ptr = 0x3fcdf85c - 0x3fcdf858 g_tx_cacheq_ptr = 0x3fcdf858 - 0x3fcdf854 s_netstack_free = 0x3fcdf854 - 0x3fcdf850 mesh_rxcb = 0x3fcdf850 - 0x3fcdf84c sta_rxcb = 0x3fcdf84c - 0x400018ac esp_coex_rom_version_get = 0x400018ac - 0x400018b0 coex_bt_release = 0x400018b0 - 0x400018b4 coex_bt_request = 0x400018b4 - 0x400018b8 coex_core_ble_conn_dyn_prio_get = 0x400018b8 - 0x400018c0 coex_core_pti_get = 0x400018c0 - 0x400018c4 coex_core_release = 0x400018c4 - 0x400018c8 coex_core_request = 0x400018c8 - 0x400018cc coex_core_status_get = 0x400018cc - 0x400018d4 coex_event_duration_get = 0x400018d4 - 0x400018d8 coex_hw_timer_disable = 0x400018d8 - 0x400018dc coex_hw_timer_enable = 0x400018dc - 0x400018e0 coex_hw_timer_set = 0x400018e0 - 0x400018e4 coex_schm_interval_set = 0x400018e4 - 0x400018e8 coex_schm_lock = 0x400018e8 - 0x400018ec coex_schm_unlock = 0x400018ec - 0x400018f4 coex_wifi_release = 0x400018f4 - 0x400018f8 esp_coex_ble_conn_dynamic_prio_get = 0x400018f8 - 0x3fcdf848 coex_env_ptr = 0x3fcdf848 - 0x3fcdf844 coex_pti_tab_ptr = 0x3fcdf844 - 0x3fcdf840 coex_schm_env_ptr = 0x3fcdf840 - 0x3fcdf83c coexist_funcs = 0x3fcdf83c - 0x3fcdf838 g_coa_funcs_p = 0x3fcdf838 - 0x3fcdf834 g_coex_param_ptr = 0x3fcdf834 - 0x400018fc phy_get_romfuncs = 0x400018fc - 0x40001900 rom_abs_temp = 0x40001900 - 0x40001904 rom_bb_bss_cbw40_dig = 0x40001904 - 0x40001908 rom_bb_wdg_test_en = 0x40001908 - 0x4000190c rom_bb_wdt_get_status = 0x4000190c - 0x40001910 rom_bb_wdt_int_enable = 0x40001910 - 0x40001914 rom_bb_wdt_rst_enable = 0x40001914 - 0x40001918 rom_bb_wdt_timeout_clear = 0x40001918 - 0x4000191c rom_cbw2040_cfg = 0x4000191c - 0x40001920 rom_check_noise_floor = 0x40001920 - 0x40001924 rom_chip_i2c_readReg = 0x40001924 - 0x40001928 rom_chip_i2c_writeReg = 0x40001928 - 0x4000192c rom_correct_rf_ana_gain = 0x4000192c - 0x40001930 rom_dc_iq_est = 0x40001930 - 0x40001934 rom_disable_agc = 0x40001934 - 0x40001938 rom_en_pwdet = 0x40001938 - 0x4000193c rom_enable_agc = 0x4000193c - 0x40001940 rom_get_bbgain_db = 0x40001940 - 0x40001944 rom_get_data_sat = 0x40001944 - 0x40001948 rom_get_i2c_read_mask = 0x40001948 - 0x4000194c rom_get_pwctrl_correct = 0x4000194c - 0x40001950 rom_get_rf_gain_qdb = 0x40001950 - 0x40001954 rom_i2c_readReg = 0x40001954 - 0x40001958 rom_i2c_readReg_Mask = 0x40001958 - 0x4000195c rom_i2c_writeReg = 0x4000195c - 0x40001960 rom_i2c_writeReg_Mask = 0x40001960 - 0x40001968 rom_iq_est_disable = 0x40001968 - 0x4000196c rom_iq_est_enable = 0x4000196c - 0x40001970 rom_linear_to_db = 0x40001970 - 0x40001974 rom_loopback_mode_en = 0x40001974 - 0x40001978 rom_mhz2ieee = 0x40001978 - 0x4000197c rom_noise_floor_auto_set = 0x4000197c - 0x40001980 rom_pbus_debugmode = 0x40001980 - 0x40001984 rom_pbus_force_mode = 0x40001984 - 0x40001988 rom_pbus_force_test = 0x40001988 - 0x4000198c rom_pbus_rd = 0x4000198c - 0x40001990 rom_pbus_rd_addr = 0x40001990 - 0x40001994 rom_pbus_rd_shift = 0x40001994 - 0x40001998 rom_pbus_set_dco = 0x40001998 - 0x4000199c rom_pbus_set_rxgain = 0x4000199c - 0x400019a0 rom_pbus_workmode = 0x400019a0 - 0x400019a4 rom_pbus_xpd_rx_off = 0x400019a4 - 0x400019a8 rom_pbus_xpd_rx_on = 0x400019a8 - 0x400019ac rom_pbus_xpd_tx_off = 0x400019ac - 0x400019b4 rom_phy_byte_to_word = 0x400019b4 - 0x400019b8 rom_phy_disable_cca = 0x400019b8 - 0x400019bc rom_phy_enable_cca = 0x400019bc - 0x400019c0 rom_phy_get_noisefloor = 0x400019c0 - 0x400019c4 rom_phy_get_rx_freq = 0x400019c4 - 0x400019c8 rom_phy_set_bbfreq_init = 0x400019c8 - 0x400019cc rom_pow_usr = 0x400019cc - 0x400019d0 rom_pwdet_sar2_init = 0x400019d0 - 0x400019d4 rom_read_hw_noisefloor = 0x400019d4 - 0x400019d8 rom_read_sar_dout = 0x400019d8 - 0x400019dc rom_set_cal_rxdc = 0x400019dc - 0x400019e0 rom_set_chan_cal_interp = 0x400019e0 - 0x400019e4 rom_set_loopback_gain = 0x400019e4 - 0x400019e8 rom_set_noise_floor = 0x400019e8 - 0x400019ec rom_set_rxclk_en = 0x400019ec - 0x400019f8 rom_set_txclk_en = 0x400019f8 - 0x400019fc rom_spur_cal = 0x400019fc - 0x40001a00 rom_spur_reg_write_one_tone = 0x40001a00 - 0x40001a04 rom_target_power_add_backoff = 0x40001a04 - 0x40001a08 rom_tx_pwctrl_bg_init = 0x40001a08 - 0x40001a10 rom_wifi_11g_rate_chg = 0x40001a10 - 0x40001a14 rom_write_gain_mem = 0x40001a14 - 0x40001a18 chip726_phyrom_version = 0x40001a18 - 0x40001a1c rom_disable_wifi_agc = 0x40001a1c - 0x40001a20 rom_enable_wifi_agc = 0x40001a20 - 0x40001a24 rom_set_tx_gain_table = 0x40001a24 - 0x40001a28 rom_bt_index_to_bb = 0x40001a28 - 0x40001a2c rom_bt_bb_to_index = 0x40001a2c - 0x40001a30 rom_wr_bt_tx_atten = 0x40001a30 - 0x40001a34 rom_wr_bt_tx_gain_mem = 0x40001a34 - 0x40001a38 rom_spur_coef_cfg = 0x40001a38 - 0x40001a3c rom_bb_bss_cbw40 = 0x40001a3c - 0x40001a40 rom_set_cca = 0x40001a40 - 0x40001a44 rom_tx_paon_set = 0x40001a44 - 0x40001a48 rom_i2cmst_reg_init = 0x40001a48 - 0x40001a4c rom_iq_corr_enable = 0x40001a4c - 0x40001a50 rom_fe_reg_init = 0x40001a50 - 0x40001a5c rom_mac_enable_bb = 0x40001a5c - 0x40001a60 rom_bb_wdg_cfg = 0x40001a60 - 0x40001a64 rom_force_txon = 0x40001a64 - 0x40001a68 rom_fe_txrx_reset = 0x40001a68 - 0x40001a6c rom_set_rx_comp = 0x40001a6c - 0x40001a74 rom_write_chan_freq = 0x40001a74 - 0x40001a7c rom_set_xpd_sar = 0x40001a7c - 0x40001a80 rom_write_dac_gain2 = 0x40001a80 - 0x40001a84 rom_rtc_sar2_init = 0x40001a84 - 0x40001a88 rom_get_target_power_offset = 0x40001a88 - 0x40001a90 rom_get_rate_fcc_index = 0x40001a90 - 0x40001a94 rom_get_rate_target_power = 0x40001a94 - 0x40001a98 rom_write_wifi_dig_gain = 0x40001a98 - 0x40001a9c rom_bt_correct_rf_ana_gain = 0x40001a9c - 0x40001aa0 rom_pkdet_vol_start = 0x40001aa0 - 0x40001aa4 rom_read_sar2_code = 0x40001aa4 - 0x40001aa8 rom_get_sar2_vol = 0x40001aa8 - 0x40001aac rom_get_pll_vol = 0x40001aac - 0x40001ab0 rom_get_phy_target_power = 0x40001ab0 - 0x40001ab8 rom_phy_track_pll_cap = 0x40001ab8 - 0x40001abc rom_phy_pwdet_always_en = 0x40001abc - 0x40001ac0 rom_phy_pwdet_onetime_en = 0x40001ac0 - 0x40001ac4 rom_get_i2c_mst0_mask = 0x40001ac4 - 0x40001ac8 rom_get_i2c_hostid = 0x40001ac8 - 0x40001acc rom_enter_critical_phy = 0x40001acc - 0x40001ad0 rom_exit_critical_phy = 0x40001ad0 - 0x40001ad4 rom_chip_i2c_readReg_org = 0x40001ad4 - 0x40001ad8 rom_i2c_paral_set_mst0 = 0x40001ad8 - 0x40001adc rom_i2c_paral_set_read = 0x40001adc - 0x40001ae0 rom_i2c_paral_read = 0x40001ae0 - 0x40001ae4 rom_i2c_paral_write = 0x40001ae4 - 0x40001ae8 rom_i2c_paral_write_num = 0x40001ae8 - 0x40001aec rom_i2c_paral_write_mask = 0x40001aec - 0x40001af0 rom_bb_bss_cbw40_ana = 0x40001af0 - 0x40001af4 rom_chan_to_freq = 0x40001af4 - 0x40001afc rom_dac_rate_set = 0x40001afc - 0x40001b08 rom_tsens_index_to_dac = 0x40001b08 - 0x40001b0c rom_tsens_index_to_offset = 0x40001b0c - 0x40001b14 rom_code_to_temp = 0x40001b14 - 0x40001b18 rom_write_pll_cap_mem = 0x40001b18 - 0x40001b1c rom_pll_correct_dcap = 0x40001b1c - 0x40001b20 rom_phy_en_hw_set_freq = 0x40001b20 - 0x40001b24 rom_phy_dis_hw_set_freq = 0x40001b24 - 0x40000628 PROVIDE (esp_rom_crc32_le = crc32_le) - [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) - [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) - [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) - [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) - [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) - 0x400005c8 PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) - 0x400005c4 PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) - 0x400005cc PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) - [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) - 0x400005a0 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) - 0x400005a4 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) - [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) - 0x4000071c PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) - [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) - 0x4000072c PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) - [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) - [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) - [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) - 0x40000080 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) - 0x40000068 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) - 0x40000084 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) - 0x40000070 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) - 0x40000614 PROVIDE (esp_rom_md5_init = MD5Init) - 0x40000618 PROVIDE (esp_rom_md5_update = MD5Update) - 0x4000061c PROVIDE (esp_rom_md5_final = MD5Final) - 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) - 0x40000094 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) - 0x40000040 PROVIDE (esp_rom_printf = ets_printf) - 0x40000050 PROVIDE (esp_rom_delay_us = ets_delay_us) - 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) - 0x400005f4 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) - 0x40000584 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) - 0x40000588 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) - [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) - [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) - [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) - [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) - [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) - [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) - [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) - 0x40001954 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) - 0x40001958 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) - 0x4000195c PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) - 0x40001960 PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) - 0x400008dc bt_rf_coex_get_dft_cfg = 0x400008dc - 0x400008e0 bt_rf_coex_hooks_p_set = 0x400008e0 - 0x400008e4 btdm_con_maxevtime_cal_impl = 0x400008e4 - 0x400008e8 btdm_controller_get_compile_version_impl = 0x400008e8 - 0x400008ec btdm_controller_rom_data_init = 0x400008ec - 0x400008f0 btdm_dis_privacy_err_report_impl = 0x400008f0 - 0x400008f4 btdm_disable_adv_delay_impl = 0x400008f4 - 0x400008f8 btdm_enable_scan_continue_impl = 0x400008f8 - 0x400008fc btdm_enable_scan_forever_impl = 0x400008fc - 0x40000900 btdm_get_power_state_impl = 0x40000900 - 0x40000904 btdm_get_prevent_sleep_flag_impl = 0x40000904 - 0x40000908 btdm_power_state_active_impl = 0x40000908 - 0x4000090c btdm_switch_phy_coded_impl = 0x4000090c - 0x40000910 hci_acl_data_handler = 0x40000910 - 0x40000914 hci_disconnect_cmd_handler = 0x40000914 - 0x40000918 hci_le_con_upd_cmd_handler = 0x40000918 - 0x4000091c hci_le_ltk_req_neg_reply_cmd_handler = 0x4000091c - 0x40000920 hci_le_ltk_req_reply_cmd_handler = 0x40000920 - 0x40000924 hci_le_rd_chnl_map_cmd_handler = 0x40000924 - 0x40000928 hci_le_rd_phy_cmd_handler = 0x40000928 - 0x4000092c hci_le_rd_rem_feats_cmd_handler = 0x4000092c - 0x40000930 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40000930 - 0x40000934 hci_le_rem_con_param_req_reply_cmd_handler = 0x40000934 - 0x40000938 hci_le_set_data_len_cmd_handler = 0x40000938 - 0x4000093c hci_le_set_phy_cmd_handler = 0x4000093c - 0x40000940 hci_le_start_enc_cmd_handler = 0x40000940 - 0x40000944 hci_rd_auth_payl_to_cmd_handler = 0x40000944 - 0x40000948 hci_rd_rem_ver_info_cmd_handler = 0x40000948 - 0x4000094c hci_rd_rssi_cmd_handler = 0x4000094c - 0x40000950 hci_rd_tx_pwr_lvl_cmd_handler = 0x40000950 - 0x40000954 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40000954 - 0x40000958 hci_vs_set_pref_slave_latency_cmd_handler = 0x40000958 - 0x4000095c hci_wr_auth_payl_to_cmd_handler = 0x4000095c - 0x40000960 ll_channel_map_ind_handler = 0x40000960 - 0x40000964 ll_connection_param_req_handler = 0x40000964 - 0x40000968 ll_connection_param_rsp_handler = 0x40000968 - 0x4000096c ll_connection_update_ind_handler = 0x4000096c - 0x40000970 ll_enc_req_handler = 0x40000970 - 0x40000974 ll_enc_rsp_handler = 0x40000974 - 0x40000978 ll_feature_req_handler = 0x40000978 - 0x4000097c ll_feature_rsp_handler = 0x4000097c - 0x40000980 ll_length_req_handler = 0x40000980 - 0x40000984 ll_length_rsp_handler = 0x40000984 - 0x40000988 ll_min_used_channels_ind_handler = 0x40000988 - 0x4000098c ll_pause_enc_req_handler = 0x4000098c - 0x40000990 ll_pause_enc_rsp_handler = 0x40000990 - 0x40000994 ll_phy_req_handler = 0x40000994 - 0x40000998 ll_phy_rsp_handler = 0x40000998 - 0x4000099c ll_phy_update_ind_handler = 0x4000099c - 0x400009a0 ll_ping_req_handler = 0x400009a0 - 0x400009a4 ll_ping_rsp_handler = 0x400009a4 - 0x400009a8 ll_slave_feature_req_handler = 0x400009a8 - 0x400009ac ll_start_enc_req_handler = 0x400009ac - 0x400009b0 ll_start_enc_rsp_handler = 0x400009b0 - 0x400009b4 ll_terminate_ind_handler = 0x400009b4 - 0x400009b8 ll_version_ind_handler = 0x400009b8 - 0x400009bc llc_auth_payl_nearly_to_handler = 0x400009bc - 0x400009c0 llc_auth_payl_real_to_handler = 0x400009c0 - 0x400009c4 llc_encrypt_ind_handler = 0x400009c4 - 0x400009c8 llc_hci_command_handler_wrapper = 0x400009c8 - 0x400009cc llc_ll_connection_param_req_pdu_send = 0x400009cc - 0x400009d0 llc_ll_connection_param_rsp_pdu_send = 0x400009d0 - 0x400009d4 llc_ll_connection_update_ind_pdu_send = 0x400009d4 - 0x400009d8 llc_ll_enc_req_pdu_send = 0x400009d8 - 0x400009dc llc_ll_enc_rsp_pdu_send = 0x400009dc - 0x400009e0 llc_ll_feature_req_pdu_send = 0x400009e0 - 0x400009e4 llc_ll_feature_rsp_pdu_send = 0x400009e4 - 0x400009e8 llc_ll_length_req_pdu_send = 0x400009e8 - 0x400009ec llc_ll_length_rsp_pdu_send = 0x400009ec - 0x400009f0 llc_ll_pause_enc_req_pdu_send = 0x400009f0 - 0x400009f4 llc_ll_pause_enc_rsp_pdu_send = 0x400009f4 - 0x400009f8 llc_ll_phy_req_pdu_send = 0x400009f8 - 0x400009fc llc_ll_phy_rsp_pdu_send = 0x400009fc - 0x40000a00 llc_ll_ping_req_pdu_send = 0x40000a00 - 0x40000a04 llc_ll_ping_rsp_pdu_send = 0x40000a04 - 0x40000a08 llc_ll_start_enc_req_pdu_send = 0x40000a08 - 0x40000a0c llc_ll_start_enc_rsp_pdu_send = 0x40000a0c - 0x40000a10 llc_ll_terminate_ind_pdu_send = 0x40000a10 - 0x40000a14 llc_ll_unknown_rsp_pdu_send = 0x40000a14 - 0x40000a18 llc_llcp_ch_map_update_ind_pdu_send = 0x40000a18 - 0x40000a1c llc_llcp_phy_upd_ind_pdu_send = 0x40000a1c - 0x40000a20 llc_llcp_version_ind_pdu_send = 0x40000a20 - 0x40000a24 llc_op_ch_map_upd_ind_handler = 0x40000a24 - 0x40000a28 llc_op_con_upd_ind_handler = 0x40000a28 - 0x40000a2c llc_op_disconnect_ind_handler = 0x40000a2c - 0x40000a30 llc_op_dl_upd_ind_handler = 0x40000a30 - 0x40000a34 llc_op_encrypt_ind_handler = 0x40000a34 - 0x40000a38 llc_op_feats_exch_ind_handler = 0x40000a38 - 0x40000a3c llc_op_le_ping_ind_handler = 0x40000a3c - 0x40000a40 llc_op_phy_upd_ind_handler = 0x40000a40 - 0x40000a44 llc_op_ver_exch_ind_handler = 0x40000a44 - 0x40000a48 llc_stopped_ind_handler = 0x40000a48 - 0x40000a4c lld_acl_rx_ind_handler = 0x40000a4c - 0x40000a50 lld_acl_tx_cfm_handler = 0x40000a50 - 0x40000a54 lld_adv_end_ind_handler = 0x40000a54 - 0x40000a58 lld_adv_rep_ind_handler = 0x40000a58 - 0x40000a5c lld_ch_map_upd_cfm_handler = 0x40000a5c - 0x40000a60 lld_con_estab_ind_handler = 0x40000a60 - 0x40000a64 lld_con_evt_sd_evt_time_set = 0x40000a64 - 0x40000a68 lld_con_offset_upd_ind_handler = 0x40000a68 - 0x40000a6c lld_con_param_upd_cfm_handler = 0x40000a6c - 0x40000a70 lld_disc_ind_handler = 0x40000a70 - 0x40000a74 lld_init_end_ind_handler = 0x40000a74 - 0x40000a78 lld_llcp_rx_ind_handler_wrapper = 0x40000a78 - 0x40000a7c lld_llcp_tx_cfm_handler = 0x40000a7c - 0x40000a80 lld_per_adv_end_ind_handler = 0x40000a80 - 0x40000a84 lld_per_adv_rep_ind_handler = 0x40000a84 - 0x40000a88 lld_per_adv_rx_end_ind_handler = 0x40000a88 - 0x40000a8c lld_phy_coded_500k_get = 0x40000a8c - 0x40000a90 lld_phy_upd_cfm_handler = 0x40000a90 - 0x40000a94 lld_scan_end_ind_handler = 0x40000a94 - 0x40000a98 lld_scan_req_ind_handler = 0x40000a98 - 0x40000a9c lld_sync_start_req_handler = 0x40000a9c - 0x40000aa0 lld_test_end_ind_handler = 0x40000aa0 - 0x40000aa4 lld_update_rxbuf_handler = 0x40000aa4 - 0x40000aa8 llm_ch_map_update_ind_handler = 0x40000aa8 - 0x40000aac llm_hci_command_handler_wrapper = 0x40000aac - 0x40000ab0 llm_scan_period_to_handler = 0x40000ab0 - 0x40000ab4 r_Add2SelfBigHex256 = 0x40000ab4 - 0x40000ab8 r_AddBigHex256 = 0x40000ab8 - 0x40000abc r_AddBigHexModP256 = 0x40000abc - 0x40000ac0 r_AddP256 = 0x40000ac0 - 0x40000ac4 r_AddPdiv2_256 = 0x40000ac4 - 0x40000ac8 r_GF_Jacobian_Point_Addition256 = 0x40000ac8 - 0x40000acc r_GF_Jacobian_Point_Double256 = 0x40000acc - 0x40000ad0 r_GF_Point_Jacobian_To_Affine256 = 0x40000ad0 - 0x40000ad4 r_MultiplyBigHexByUint32_256 = 0x40000ad4 - 0x40000ad8 r_MultiplyBigHexModP256 = 0x40000ad8 - 0x40000adc r_MultiplyByU16ModP256 = 0x40000adc - 0x40000ae0 r_SubtractBigHex256 = 0x40000ae0 - 0x40000ae4 r_SubtractBigHexMod256 = 0x40000ae4 - 0x40000ae8 r_SubtractBigHexUint32_256 = 0x40000ae8 - 0x40000aec r_SubtractFromSelfBigHex256 = 0x40000aec - 0x40000af0 r_SubtractFromSelfBigHexSign256 = 0x40000af0 - 0x40000af4 r_aes_alloc = 0x40000af4 - 0x40000af8 r_aes_ccm_continue = 0x40000af8 - 0x40000afc r_aes_ccm_process_e = 0x40000afc - 0x40000b00 r_aes_ccm_xor_128_lsb = 0x40000b00 - 0x40000b04 r_aes_ccm_xor_128_msb = 0x40000b04 - 0x40000b08 r_aes_cmac_continue = 0x40000b08 - 0x40000b0c r_aes_cmac_start = 0x40000b0c - 0x40000b10 r_aes_k1_continue = 0x40000b10 - 0x40000b14 r_aes_k2_continue = 0x40000b14 - 0x40000b18 r_aes_k3_continue = 0x40000b18 - 0x40000b1c r_aes_k4_continue = 0x40000b1c - 0x40000b20 r_aes_shift_left_128 = 0x40000b20 - 0x40000b24 r_aes_start = 0x40000b24 - 0x40000b28 r_aes_xor_128 = 0x40000b28 - 0x40000b2c r_assert_err = 0x40000b2c - 0x40000b30 r_assert_param = 0x40000b30 - 0x40000b34 r_assert_warn = 0x40000b34 - 0x40000b38 r_bigHexInversion256 = 0x40000b38 - 0x40000b3c r_ble_sw_cca_check_isr = 0x40000b3c - 0x40000b40 r_ble_util_buf_acl_tx_alloc = 0x40000b40 - 0x40000b44 r_ble_util_buf_acl_tx_elt_get = 0x40000b44 - 0x40000b48 r_ble_util_buf_acl_tx_free = 0x40000b48 - 0x40000b4c r_ble_util_buf_acl_tx_free_in_isr = 0x40000b4c - 0x40000b50 r_ble_util_buf_adv_tx_alloc = 0x40000b50 - 0x40000b54 r_ble_util_buf_adv_tx_free = 0x40000b54 - 0x40000b58 r_ble_util_buf_adv_tx_free_in_isr = 0x40000b58 - 0x40000b5c r_ble_util_buf_env_deinit = 0x40000b5c - 0x40000b60 r_ble_util_buf_env_init = 0x40000b60 - 0x40000b64 r_ble_util_buf_get_rx_buf_nb = 0x40000b64 - 0x40000b68 r_ble_util_buf_get_rx_buf_size = 0x40000b68 - 0x40000b6c r_ble_util_buf_llcp_tx_alloc = 0x40000b6c - 0x40000b70 r_ble_util_buf_llcp_tx_free = 0x40000b70 - 0x40000b74 r_ble_util_buf_rx_alloc = 0x40000b74 - 0x40000b78 r_ble_util_buf_rx_alloc_in_isr = 0x40000b78 - 0x40000b7c r_ble_util_buf_rx_free = 0x40000b7c - 0x40000b80 r_ble_util_buf_rx_free_in_isr = 0x40000b80 - 0x40000b84 r_ble_util_buf_set_rx_buf_nb = 0x40000b84 - 0x40000b88 r_ble_util_buf_set_rx_buf_size = 0x40000b88 - 0x40000b8c r_ble_util_data_rx_buf_reset = 0x40000b8c - 0x40000b90 r_bt_bb_get_intr_mask = 0x40000b90 - 0x40000b94 r_bt_bb_intr_clear = 0x40000b94 - 0x40000b98 r_bt_bb_intr_mask_set = 0x40000b98 - 0x40000ba0 r_bt_rf_coex_cfg_set = 0x40000ba0 - 0x40000ba4 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x40000ba4 - 0x40000bac r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x40000bac - 0x40000bb0 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x40000bb0 - 0x40000bb4 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40000bb4 - 0x40000bb8 r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x40000bb8 - 0x40000bbc r_bt_rf_coex_pti_table_get = 0x40000bbc - 0x40000bc0 r_bt_rf_coex_st_param_get = 0x40000bc0 - 0x40000bc4 r_bt_rf_coex_st_param_set = 0x40000bc4 - 0x40000bc8 r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x40000bc8 - 0x40000bcc r_bt_rma_apply_rule_cs_fmt = 0x40000bcc - 0x40000bd0 r_bt_rma_apply_rule_cs_idx = 0x40000bd0 - 0x40000bd4 r_bt_rma_configure = 0x40000bd4 - 0x40000bd8 r_bt_rma_deregister_rule_cs_fmt = 0x40000bd8 - 0x40000bdc r_bt_rma_deregister_rule_cs_idx = 0x40000bdc - 0x40000be0 r_bt_rma_get_ant_by_act = 0x40000be0 - 0x40000be4 r_bt_rma_init = 0x40000be4 - 0x40000be8 r_bt_rma_register_rule_cs_fmt = 0x40000be8 - 0x40000bec r_bt_rma_register_rule_cs_idx = 0x40000bec - 0x40000bf0 r_bt_rtp_apply_rule_cs_fmt = 0x40000bf0 - 0x40000bf4 r_bt_rtp_apply_rule_cs_idx = 0x40000bf4 - 0x40000bf8 r_bt_rtp_deregister_rule_cs_fmt = 0x40000bf8 - 0x40000bfc r_bt_rtp_deregister_rule_cs_idx = 0x40000bfc - 0x40000c04 r_bt_rtp_init = 0x40000c04 - 0x40000c08 r_bt_rtp_register_rule_cs_fmt = 0x40000c08 - 0x40000c0c r_bt_rtp_register_rule_cs_idx = 0x40000c0c - 0x40000c10 r_btdm_isr = 0x40000c10 - 0x40000c20 r_cali_phase_match_p = 0x40000c20 - 0x40000c24 r_cmp_abs_time = 0x40000c24 - 0x40000c28 r_cmp_dest_id = 0x40000c28 - 0x40000c2c r_cmp_timer_id = 0x40000c2c - 0x40000c30 r_co_bdaddr_compare = 0x40000c30 - 0x40000c34 r_co_ble_pkt_dur_in_us = 0x40000c34 - 0x40000c38 r_co_list_extract = 0x40000c38 - 0x40000c3c r_co_list_extract_after = 0x40000c3c - 0x40000c40 r_co_list_extract_sublist = 0x40000c40 - 0x40000c44 r_co_list_find = 0x40000c44 - 0x40000c48 r_co_list_init = 0x40000c48 - 0x40000c4c r_co_list_insert_after = 0x40000c4c - 0x40000c50 r_co_list_insert_before = 0x40000c50 - 0x40000c54 r_co_list_merge = 0x40000c54 - 0x40000c58 r_co_list_pool_init = 0x40000c58 - 0x40000c5c r_co_list_pop_front = 0x40000c5c - 0x40000c60 r_co_list_push_back = 0x40000c60 - 0x40000c64 r_co_list_push_back_sublist = 0x40000c64 - 0x40000c68 r_co_list_push_front = 0x40000c68 - 0x40000c6c r_co_list_size = 0x40000c6c - 0x40000c70 r_co_nb_good_le_channels = 0x40000c70 - 0x40000c74 r_co_util_pack = 0x40000c74 - 0x40000c78 r_co_util_read_array_size = 0x40000c78 - 0x40000c7c r_co_util_unpack = 0x40000c7c - 0x40000c80 r_dbg_env_deinit = 0x40000c80 - 0x40000c84 r_dbg_env_init = 0x40000c84 - 0x40000c88 r_dbg_platform_reset_complete = 0x40000c88 - 0x40000c8c r_dl_upd_proc_start = 0x40000c8c - 0x40000c90 r_dump_data = 0x40000c90 - 0x40000c94 r_ecc_abort_key256_generation = 0x40000c94 - 0x40000c98 r_ecc_gen_new_public_key = 0x40000c98 - 0x40000c9c r_ecc_gen_new_secret_key = 0x40000c9c - 0x40000ca0 r_ecc_generate_key256 = 0x40000ca0 - 0x40000ca4 r_ecc_get_debug_Keys = 0x40000ca4 - 0x40000ca8 r_ecc_init = 0x40000ca8 - 0x40000cac r_ecc_is_valid_point = 0x40000cac - 0x40000cb0 r_ecc_multiplication_event_handler = 0x40000cb0 - 0x40000cb4 r_ecc_point_multiplication_win_256 = 0x40000cb4 - 0x40000cb8 r_emi_alloc_em_mapping_by_offset = 0x40000cb8 - 0x40000cbc r_emi_base_reg_lut_show = 0x40000cbc - 0x40000cc0 r_emi_em_base_reg_show = 0x40000cc0 - 0x40000cc4 r_emi_free_em_mapping_by_offset = 0x40000cc4 - 0x40000cc8 r_emi_get_em_mapping_idx_by_offset = 0x40000cc8 - 0x40000ccc r_emi_get_mem_addr_by_offset = 0x40000ccc - 0x40000cd0 r_emi_overwrite_em_mapping_by_offset = 0x40000cd0 - 0x40000cd4 r_esp_vendor_hci_command_handler = 0x40000cd4 - 0x40000cd8 r_get_stack_usage = 0x40000cd8 - 0x40000cdc r_h4tl_acl_hdr_rx_evt_handler = 0x40000cdc - 0x40000ce0 r_h4tl_cmd_hdr_rx_evt_handler = 0x40000ce0 - 0x40000ce4 r_h4tl_cmd_pld_rx_evt_handler = 0x40000ce4 - 0x40000ce8 r_h4tl_eif_io_event_post = 0x40000ce8 - 0x40000cec r_h4tl_eif_register = 0x40000cec - 0x40000cf0 r_h4tl_init = 0x40000cf0 - 0x40000cf4 r_h4tl_out_of_sync = 0x40000cf4 - 0x40000cf8 r_h4tl_out_of_sync_check = 0x40000cf8 - 0x40000cfc r_h4tl_read_hdr = 0x40000cfc - 0x40000d00 r_h4tl_read_next_out_of_sync = 0x40000d00 - 0x40000d04 r_h4tl_read_payl = 0x40000d04 - 0x40000d08 r_h4tl_read_start = 0x40000d08 - 0x40000d0c r_h4tl_rx_acl_hdr_extract = 0x40000d0c - 0x40000d10 r_h4tl_rx_cmd_hdr_extract = 0x40000d10 - 0x40000d14 r_h4tl_rx_done = 0x40000d14 - 0x40000d18 r_h4tl_start = 0x40000d18 - 0x40000d1c r_h4tl_stop = 0x40000d1c - 0x40000d20 r_h4tl_tx_done = 0x40000d20 - 0x40000d24 r_h4tl_tx_evt_handler = 0x40000d24 - 0x40000d28 r_h4tl_write = 0x40000d28 - 0x40000d2c r_hci_acl_tx_data_alloc = 0x40000d2c - 0x40000d30 r_hci_acl_tx_data_received = 0x40000d30 - 0x40000d34 r_hci_basic_cmd_send_2_controller = 0x40000d34 - 0x40000d38 r_hci_ble_adv_report_filter_check = 0x40000d38 - 0x40000d3c r_hci_ble_adv_report_tx_check = 0x40000d3c - 0x40000d40 r_hci_ble_conhdl_register = 0x40000d40 - 0x40000d44 r_hci_ble_conhdl_unregister = 0x40000d44 - 0x40000d48 r_hci_build_acl_data = 0x40000d48 - 0x40000d4c r_hci_build_cc_evt = 0x40000d4c - 0x40000d50 r_hci_build_cs_evt = 0x40000d50 - 0x40000d54 r_hci_build_evt = 0x40000d54 - 0x40000d58 r_hci_build_le_evt = 0x40000d58 - 0x40000d5c r_hci_cmd_get_max_param_size = 0x40000d5c - 0x40000d60 r_hci_cmd_received = 0x40000d60 - 0x40000d64 r_hci_cmd_reject = 0x40000d64 - 0x40000d68 r_hci_evt_mask_check = 0x40000d68 - 0x40000d6c r_hci_evt_mask_set = 0x40000d6c - 0x40000d70 r_hci_fc_acl_buf_size_set = 0x40000d70 - 0x40000d74 r_hci_fc_acl_en = 0x40000d74 - 0x40000d78 r_hci_fc_acl_packet_sent = 0x40000d78 - 0x40000d7c r_hci_fc_check_host_available_nb_acl_packets = 0x40000d7c - 0x40000d80 r_hci_fc_host_nb_acl_pkts_complete = 0x40000d80 - 0x40000d84 r_hci_fc_init = 0x40000d84 - 0x40000d88 r_hci_look_for_cmd_desc = 0x40000d88 - 0x40000d8c r_hci_look_for_evt_desc = 0x40000d8c - 0x40000d90 r_hci_look_for_le_evt_desc = 0x40000d90 - 0x40000d94 r_hci_look_for_le_evt_desc_esp = 0x40000d94 - 0x40000d98 r_hci_pack_bytes = 0x40000d98 - 0x40000da0 r_hci_send_2_controller = 0x40000da0 - 0x40000da4 r_hci_send_2_host = 0x40000da4 - 0x40000da8 r_hci_tl_c2h_data_flow_on = 0x40000da8 - 0x40000dac r_hci_tl_cmd_hdr_rx_evt_handler = 0x40000dac - 0x40000db0 r_hci_tl_cmd_pld_rx_evt_handler = 0x40000db0 - 0x40000db4 r_hci_tl_get_pkt = 0x40000db4 - 0x40000db8 r_hci_tl_hci_pkt_handler = 0x40000db8 - 0x40000dbc r_hci_tl_hci_tx_done_evt_handler = 0x40000dbc - 0x40000dc0 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40000dc0 - 0x40000dc4 r_hci_tl_save_pkt = 0x40000dc4 - 0x40000dc8 r_hci_tl_send = 0x40000dc8 - 0x40000dcc r_hci_tx_done = 0x40000dcc - 0x40000dd0 r_hci_tx_start = 0x40000dd0 - 0x40000dd4 r_hci_tx_trigger = 0x40000dd4 - 0x40000dd8 r_isValidSecretKey_256 = 0x40000dd8 - 0x40000ddc r_ke_check_malloc = 0x40000ddc - 0x40000de0 r_ke_event_callback_set = 0x40000de0 - 0x40000de4 r_ke_event_clear = 0x40000de4 - 0x40000de8 r_ke_event_flush = 0x40000de8 - 0x40000dec r_ke_event_get = 0x40000dec - 0x40000df0 r_ke_event_get_all = 0x40000df0 - 0x40000df4 r_ke_event_init = 0x40000df4 - 0x40000df8 r_ke_event_schedule = 0x40000df8 - 0x40000dfc r_ke_event_set = 0x40000dfc - 0x40000e00 r_ke_flush = 0x40000e00 - 0x40000e04 r_ke_free = 0x40000e04 - 0x40000e08 r_ke_handler_search = 0x40000e08 - 0x40000e0c r_ke_init = 0x40000e0c - 0x40000e10 r_ke_is_free = 0x40000e10 - 0x40000e14 r_ke_malloc = 0x40000e14 - 0x40000e18 r_ke_mem_init = 0x40000e18 - 0x40000e1c r_ke_mem_is_empty = 0x40000e1c - 0x40000e20 r_ke_mem_is_in_heap = 0x40000e20 - 0x40000e24 r_ke_msg_alloc = 0x40000e24 - 0x40000e28 r_ke_msg_dest_id_get = 0x40000e28 - 0x40000e2c r_ke_msg_discard = 0x40000e2c - 0x40000e30 r_ke_msg_forward = 0x40000e30 - 0x40000e34 r_ke_msg_forward_new_id = 0x40000e34 - 0x40000e38 r_ke_msg_free = 0x40000e38 - 0x40000e3c r_ke_msg_in_queue = 0x40000e3c - 0x40000e40 r_ke_msg_save = 0x40000e40 - 0x40000e44 r_ke_msg_send = 0x40000e44 - 0x40000e48 r_ke_msg_send_basic = 0x40000e48 - 0x40000e4c r_ke_msg_src_id_get = 0x40000e4c - 0x40000e50 r_ke_queue_extract = 0x40000e50 - 0x40000e54 r_ke_queue_insert = 0x40000e54 - 0x40000e58 r_ke_sleep_check = 0x40000e58 - 0x40000e5c r_ke_state_get = 0x40000e5c - 0x40000e60 r_ke_state_set = 0x40000e60 - 0x40000e64 r_ke_task_check = 0x40000e64 - 0x40000e68 r_ke_task_create = 0x40000e68 - 0x40000e6c r_ke_task_delete = 0x40000e6c - 0x40000e70 r_ke_task_handler_get = 0x40000e70 - 0x40000e74 r_ke_task_init = 0x40000e74 - 0x40000e78 r_ke_task_msg_flush = 0x40000e78 - 0x40000e7c r_ke_task_saved_update = 0x40000e7c - 0x40000e84 r_ke_time = 0x40000e84 - 0x40000e88 r_ke_time_cmp = 0x40000e88 - 0x40000e8c r_ke_time_past = 0x40000e8c - 0x40000e90 r_ke_timer_active = 0x40000e90 - 0x40000e94 r_ke_timer_adjust_all = 0x40000e94 - 0x40000e98 r_ke_timer_clear = 0x40000e98 - 0x40000e9c r_ke_timer_init = 0x40000e9c - 0x40000ea0 r_ke_timer_schedule = 0x40000ea0 - 0x40000ea4 r_ke_timer_set = 0x40000ea4 - 0x40000ea8 r_led_init = 0x40000ea8 - 0x40000eac r_led_set_all = 0x40000eac - 0x40000eb0 r_llc_aes_res_cb = 0x40000eb0 - 0x40000eb4 r_llc_ch_map_up_proc_err_cb = 0x40000eb4 - 0x40000eb8 r_llc_cleanup = 0x40000eb8 - 0x40000ebc r_llc_cmd_cmp_send = 0x40000ebc - 0x40000ec0 r_llc_cmd_stat_send = 0x40000ec0 - 0x40000ec4 r_llc_con_move_cbk = 0x40000ec4 - 0x40000ec8 r_llc_con_plan_set_update = 0x40000ec8 - 0x40000ecc r_llc_con_upd_param_in_range = 0x40000ecc - 0x40000ed0 r_llc_disconnect = 0x40000ed0 - 0x40000ed4 r_llc_disconnect_end = 0x40000ed4 - 0x40000ed8 r_llc_disconnect_proc_continue = 0x40000ed8 - 0x40000edc r_llc_disconnect_proc_err_cb = 0x40000edc - 0x40000ee0 r_llc_dl_chg_check = 0x40000ee0 - 0x40000ee4 r_llc_dle_proc_err_cb = 0x40000ee4 - 0x40000ee8 r_llc_feats_exch_proc_err_cb = 0x40000ee8 - 0x40000eec r_llc_hci_cmd_handler_tab_p_get = 0x40000eec - 0x40000ef4 r_llc_hci_con_param_req_evt_send = 0x40000ef4 - 0x40000ef8 r_llc_hci_con_upd_info_send = 0x40000ef8 - 0x40000efc r_llc_hci_disconnected_dis = 0x40000efc - 0x40000f00 r_llc_hci_dl_upd_info_send = 0x40000f00 - 0x40000f04 r_llc_hci_enc_evt_send = 0x40000f04 - 0x40000f08 r_llc_hci_feats_info_send = 0x40000f08 - 0x40000f0c r_llc_hci_le_phy_upd_cmp_evt_send = 0x40000f0c - 0x40000f10 r_llc_hci_ltk_request_evt_send = 0x40000f10 - 0x40000f14 r_llc_hci_nb_cmp_pkts_evt_send = 0x40000f14 - 0x40000f18 r_llc_hci_version_info_send = 0x40000f18 - 0x40000f1c r_llc_init_term_proc = 0x40000f1c - 0x40000f20 r_llc_iv_skd_rand_gen = 0x40000f20 - 0x40000f24 r_llc_le_ping_proc_continue = 0x40000f24 - 0x40000f28 r_llc_le_ping_proc_err_cb = 0x40000f28 - 0x40000f30 r_llc_le_ping_set = 0x40000f30 - 0x40000f34 r_llc_ll_pause_enc_rsp_ack_handler = 0x40000f34 - 0x40000f38 r_llc_ll_reject_ind_ack_handler = 0x40000f38 - 0x40000f3c r_llc_ll_reject_ind_pdu_send = 0x40000f3c - 0x40000f40 r_llc_ll_start_enc_rsp_ack_handler = 0x40000f40 - 0x40000f44 r_llc_ll_terminate_ind_ack = 0x40000f44 - 0x40000f48 r_llc_ll_unknown_ind_handler = 0x40000f48 - 0x40000f4c r_llc_llcp_send = 0x40000f4c - 0x40000f50 r_llc_llcp_state_set = 0x40000f50 - 0x40000f54 r_llc_llcp_trans_timer_set = 0x40000f54 - 0x40000f58 r_llc_llcp_tx_check = 0x40000f58 - 0x40000f64 r_llc_loc_con_upd_proc_err_cb = 0x40000f64 - 0x40000f68 r_llc_loc_dl_upd_proc_continue = 0x40000f68 - 0x40000f6c r_llc_loc_encrypt_proc_continue = 0x40000f6c - 0x40000f70 r_llc_loc_encrypt_proc_err_cb = 0x40000f70 - 0x40000f74 r_llc_loc_feats_exch_proc_continue = 0x40000f74 - 0x40000f7c r_llc_loc_phy_upd_proc_err_cb = 0x40000f7c - 0x40000f80 r_llc_msg_handler_tab_p_get = 0x40000f80 - 0x40000f84 r_llc_pref_param_compute = 0x40000f84 - 0x40000f88 r_llc_proc_collision_check = 0x40000f88 - 0x40000f8c r_llc_proc_err_ind = 0x40000f8c - 0x40000f90 r_llc_proc_get = 0x40000f90 - 0x40000f94 r_llc_proc_id_get = 0x40000f94 - 0x40000f98 r_llc_proc_reg = 0x40000f98 - 0x40000f9c r_llc_proc_state_get = 0x40000f9c - 0x40000fa0 r_llc_proc_state_set = 0x40000fa0 - 0x40000fa4 r_llc_proc_timer_pause_set = 0x40000fa4 - 0x40000fa8 r_llc_proc_timer_set = 0x40000fa8 - 0x40000fac r_llc_proc_unreg = 0x40000fac - 0x40000fb0 r_llc_rem_ch_map_proc_continue = 0x40000fb0 - 0x40000fb8 r_llc_rem_con_upd_proc_err_cb = 0x40000fb8 - 0x40000fbc r_llc_rem_dl_upd_proc = 0x40000fbc - 0x40000fc0 r_llc_rem_encrypt_proc_continue = 0x40000fc0 - 0x40000fc4 r_llc_rem_encrypt_proc_err_cb = 0x40000fc4 - 0x40000fc8 r_llc_rem_phy_upd_proc_continue = 0x40000fc8 - 0x40000fcc r_llc_rem_phy_upd_proc_err_cb = 0x40000fcc - 0x40000fd0 r_llc_role_get = 0x40000fd0 - 0x40000fd4 r_llc_sk_gen = 0x40000fd4 - 0x40000fd8 r_llc_start = 0x40000fd8 - 0x40000fdc r_llc_stop = 0x40000fdc - 0x40000fe0 r_llc_ver_exch_loc_proc_continue = 0x40000fe0 - 0x40000fe4 r_llc_ver_proc_err_cb = 0x40000fe4 - 0x40000fe8 r_llcp_pdu_handler_tab_p_get = 0x40000fe8 - 0x40000fec r_lld_aa_gen = 0x40000fec - 0x40000ff0 r_lld_adv_adv_data_set = 0x40000ff0 - 0x40000ff4 r_lld_adv_adv_data_update = 0x40000ff4 - 0x40000ff8 r_lld_adv_aux_ch_idx_set = 0x40000ff8 - 0x40000ffc r_lld_adv_aux_evt_canceled_cbk = 0x40000ffc - 0x40001000 r_lld_adv_aux_evt_start_cbk = 0x40001000 - 0x40001004 r_lld_adv_coex_check_ext_adv_synced = 0x40001004 - 0x40001008 r_lld_adv_coex_env_reset = 0x40001008 - 0x4000100c r_lld_adv_duration_update = 0x4000100c - 0x40001010 r_lld_adv_dynamic_pti_process = 0x40001010 - 0x40001014 r_lld_adv_end = 0x40001014 - 0x40001018 r_lld_adv_evt_canceled_cbk = 0x40001018 - 0x4000101c r_lld_adv_evt_start_cbk = 0x4000101c - 0x40001020 r_lld_adv_ext_chain_construct = 0x40001020 - 0x40001024 r_lld_adv_ext_pkt_prepare = 0x40001024 - 0x40001028 r_lld_adv_frm_cbk = 0x40001028 - 0x4000102c r_lld_adv_frm_isr = 0x4000102c - 0x40001030 r_lld_adv_frm_skip_isr = 0x40001030 - 0x40001034 r_lld_adv_init = 0x40001034 - 0x40001038 r_lld_adv_pkt_rx = 0x40001038 - 0x4000103c r_lld_adv_pkt_rx_connect_ind = 0x4000103c - 0x40001044 r_lld_adv_rand_addr_update = 0x40001044 - 0x40001048 r_lld_adv_restart = 0x40001048 - 0x4000104c r_lld_adv_scan_rsp_data_set = 0x4000104c - 0x40001050 r_lld_adv_scan_rsp_data_update = 0x40001050 - 0x40001054 r_lld_adv_set_tx_power = 0x40001054 - 0x40001058 r_lld_adv_start = 0x40001058 - 0x4000105c r_lld_adv_stop = 0x4000105c - 0x40001060 r_lld_adv_sync_info_set = 0x40001060 - 0x40001064 r_lld_adv_sync_info_update = 0x40001064 - 0x40001068 r_lld_calc_aux_rx = 0x40001068 - 0x4000106c r_lld_cca_alloc = 0x4000106c - 0x40001070 r_lld_cca_data_reset = 0x40001070 - 0x40001074 r_lld_cca_free = 0x40001074 - 0x40001078 r_lld_ch_assess_data_get = 0x40001078 - 0x4000107c r_lld_ch_idx_get = 0x4000107c - 0x40001080 r_lld_ch_map_set = 0x40001080 - 0x40001084 r_lld_channel_assess = 0x40001084 - 0x40001088 r_lld_con_activity_act_offset_compute = 0x40001088 - 0x4000108c r_lld_con_activity_offset_compute = 0x4000108c - 0x40001090 r_lld_con_ch_map_update = 0x40001090 - 0x40001094 r_lld_con_cleanup = 0x40001094 - 0x40001098 r_lld_con_current_tx_power_get = 0x40001098 - 0x4000109c r_lld_con_data_flow_set = 0x4000109c - 0x400010a0 r_lld_con_data_len_update = 0x400010a0 - 0x400010a4 r_lld_con_data_tx = 0x400010a4 - 0x400010a8 r_lld_con_enc_key_load = 0x400010a8 - 0x400010ac r_lld_con_event_counter_get = 0x400010ac - 0x400010b0 r_lld_con_evt_canceled_cbk = 0x400010b0 - 0x400010b4 r_lld_con_evt_duration_min_get = 0x400010b4 - 0x400010b8 r_lld_con_evt_max_eff_time_cal = 0x400010b8 - 0x400010bc r_lld_con_evt_sd_evt_time_get = 0x400010bc - 0x400010c0 r_lld_con_evt_start_cbk = 0x400010c0 - 0x400010c4 r_lld_con_evt_time_update = 0x400010c4 - 0x400010c8 r_lld_con_free_all_tx_buf = 0x400010c8 - 0x400010cc r_lld_con_frm_cbk = 0x400010cc - 0x400010d0 r_lld_con_frm_isr = 0x400010d0 - 0x400010d4 r_lld_con_frm_skip_isr = 0x400010d4 - 0x400010d8 r_lld_con_init = 0x400010d8 - 0x400010dc r_lld_con_llcp_tx = 0x400010dc - 0x400010e0 r_lld_con_max_lat_calc = 0x400010e0 - 0x400010e4 r_lld_con_offset_get = 0x400010e4 - 0x400010e8 r_lld_con_param_update = 0x400010e8 - 0x400010ec r_lld_con_phys_update = 0x400010ec - 0x400010f0 r_lld_con_pref_slave_evt_dur_set = 0x400010f0 - 0x400010f4 r_lld_con_pref_slave_latency_set = 0x400010f4 - 0x400010f8 r_lld_con_rssi_get = 0x400010f8 - 0x400010fc r_lld_con_rx = 0x400010fc - 0x40001104 r_lld_con_rx_enc = 0x40001104 - 0x40001108 r_lld_con_rx_isr = 0x40001108 - 0x4000110c r_lld_con_rx_link_info_check = 0x4000110c - 0x40001110 r_lld_con_rx_llcp_check = 0x40001110 - 0x40001114 r_lld_con_rx_sync_time_update = 0x40001114 - 0x4000111c r_lld_con_set_tx_power = 0x4000111c - 0x40001120 r_lld_con_start = 0x40001120 - 0x40001128 r_lld_con_tx = 0x40001128 - 0x4000112c r_lld_con_tx_enc = 0x4000112c - 0x40001130 r_lld_con_tx_isr = 0x40001130 - 0x40001134 r_lld_con_tx_len_update = 0x40001134 - 0x40001138 r_lld_con_tx_len_update_for_intv = 0x40001138 - 0x4000113c r_lld_con_tx_len_update_for_rate = 0x4000113c - 0x40001140 r_lld_con_tx_prog = 0x40001140 - 0x40001144 r_lld_conn_dynamic_pti_process = 0x40001144 - 0x40001148 r_lld_continue_scan_rx_isr_end_process = 0x40001148 - 0x4000114c r_lld_ext_scan_dynamic_pti_process = 0x4000114c - 0x40001150 r_lld_hw_cca_end_isr = 0x40001150 - 0x40001154 r_lld_hw_cca_evt_handler = 0x40001154 - 0x40001158 r_lld_hw_cca_isr = 0x40001158 - 0x4000115c r_lld_init_cal_anchor_point = 0x4000115c - 0x40001160 r_lld_init_compute_winoffset = 0x40001160 - 0x40001164 r_lld_init_connect_req_pack = 0x40001164 - 0x40001168 r_lld_init_end = 0x40001168 - 0x4000116c r_lld_init_evt_canceled_cbk = 0x4000116c - 0x40001170 r_lld_init_evt_start_cbk = 0x40001170 - 0x40001174 r_lld_init_frm_cbk = 0x40001174 - 0x40001178 r_lld_init_frm_eof_isr = 0x40001178 - 0x4000117c r_lld_init_frm_skip_isr = 0x4000117c - 0x40001180 r_lld_init_init = 0x40001180 - 0x40001184 r_lld_init_process_pkt_rx = 0x40001184 - 0x40001188 r_lld_init_process_pkt_rx_adv_ext_ind = 0x40001188 - 0x4000118c r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x4000118c - 0x40001190 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40001190 - 0x40001194 r_lld_init_process_pkt_tx = 0x40001194 - 0x40001198 r_lld_init_process_pkt_tx_cal_con_timestamp = 0x40001198 - 0x4000119c r_lld_init_sched = 0x4000119c - 0x400011a0 r_lld_init_set_tx_power = 0x400011a0 - 0x400011a4 r_lld_init_start = 0x400011a4 - 0x400011a8 r_lld_init_stop = 0x400011a8 - 0x400011ac r_lld_instant_proc_end = 0x400011ac - 0x400011b4 r_lld_per_adv_ch_map_update = 0x400011b4 - 0x400011b8 r_lld_per_adv_chain_construct = 0x400011b8 - 0x400011bc r_lld_per_adv_cleanup = 0x400011bc - 0x400011c0 r_lld_per_adv_coex_env_reset = 0x400011c0 - 0x400011c4 r_lld_per_adv_data_set = 0x400011c4 - 0x400011c8 r_lld_per_adv_data_update = 0x400011c8 - 0x400011cc r_lld_per_adv_dynamic_pti_process = 0x400011cc - 0x400011d0 r_lld_per_adv_evt_canceled_cbk = 0x400011d0 - 0x400011d4 r_lld_per_adv_evt_start_cbk = 0x400011d4 - 0x400011d8 r_lld_per_adv_ext_pkt_prepare = 0x400011d8 - 0x400011dc r_lld_per_adv_frm_cbk = 0x400011dc - 0x400011e0 r_lld_per_adv_frm_isr = 0x400011e0 - 0x400011e4 r_lld_per_adv_frm_skip_isr = 0x400011e4 - 0x400011e8 r_lld_per_adv_init = 0x400011e8 - 0x400011ec r_lld_per_adv_init_info_get = 0x400011ec - 0x400011f0 r_lld_per_adv_list_add = 0x400011f0 - 0x400011f4 r_lld_per_adv_list_rem = 0x400011f4 - 0x400011fc r_lld_per_adv_set_tx_power = 0x400011fc - 0x40001200 r_lld_per_adv_start = 0x40001200 - 0x40001204 r_lld_per_adv_stop = 0x40001204 - 0x40001208 r_lld_per_adv_sync_info_get = 0x40001208 - 0x4000120c r_lld_process_cca_data = 0x4000120c - 0x40001210 r_lld_ral_search = 0x40001210 - 0x40001214 r_lld_read_clock = 0x40001214 - 0x40001218 r_lld_res_list_add = 0x40001218 - 0x40001220 r_lld_res_list_is_empty = 0x40001220 - 0x40001224 r_lld_res_list_local_rpa_get = 0x40001224 - 0x40001228 r_lld_res_list_peer_rpa_get = 0x40001228 - 0x4000122c r_lld_res_list_peer_update = 0x4000122c - 0x40001238 r_lld_reset_reg = 0x40001238 - 0x4000123c r_lld_rpa_renew = 0x4000123c - 0x40001240 r_lld_rpa_renew_evt_canceled_cbk = 0x40001240 - 0x40001244 r_lld_rpa_renew_evt_start_cbk = 0x40001244 - 0x40001248 r_lld_rpa_renew_instant_cbk = 0x40001248 - 0x4000124c r_lld_rxdesc_check = 0x4000124c - 0x40001250 r_lld_rxdesc_free = 0x40001250 - 0x40001254 r_lld_scan_create_sync = 0x40001254 - 0x40001258 r_lld_scan_create_sync_cancel = 0x40001258 - 0x4000125c r_lld_scan_end = 0x4000125c - 0x40001260 r_lld_scan_evt_canceled_cbk = 0x40001260 - 0x40001264 r_lld_scan_evt_start_cbk = 0x40001264 - 0x40001268 r_lld_scan_frm_cbk = 0x40001268 - 0x4000126c r_lld_scan_frm_eof_isr = 0x4000126c - 0x40001270 r_lld_scan_frm_rx_isr = 0x40001270 - 0x40001274 r_lld_scan_frm_skip_isr = 0x40001274 - 0x40001278 r_lld_scan_init = 0x40001278 - 0x4000127c r_lld_scan_params_update = 0x4000127c - 0x40001288 r_lld_scan_process_pkt_rx_aux_adv_ind = 0x40001288 - 0x4000128c r_lld_scan_process_pkt_rx_aux_chain_ind = 0x4000128c - 0x40001290 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40001290 - 0x40001294 r_lld_scan_process_pkt_rx_ext_adv = 0x40001294 - 0x40001298 r_lld_scan_process_pkt_rx_ext_adv_ind = 0x40001298 - 0x4000129c r_lld_scan_process_pkt_rx_legacy_adv = 0x4000129c - 0x400012a0 r_lld_scan_restart = 0x400012a0 - 0x400012a4 r_lld_scan_sched = 0x400012a4 - 0x400012a8 r_lld_scan_set_tx_power = 0x400012a8 - 0x400012ac r_lld_scan_start = 0x400012ac - 0x400012b0 r_lld_scan_stop = 0x400012b0 - 0x400012b4 r_lld_scan_sync_accept = 0x400012b4 - 0x400012b8 r_lld_scan_sync_info_unpack = 0x400012b8 - 0x400012bc r_lld_scan_trunc_ind = 0x400012bc - 0x400012c0 r_lld_sw_cca_evt_handler = 0x400012c0 - 0x400012c4 r_lld_sw_cca_isr = 0x400012c4 - 0x400012c8 r_lld_sync_ch_map_update = 0x400012c8 - 0x400012cc r_lld_sync_cleanup = 0x400012cc - 0x400012d0 r_lld_sync_evt_canceled_cbk = 0x400012d0 - 0x400012d4 r_lld_sync_evt_start_cbk = 0x400012d4 - 0x400012d8 r_lld_sync_frm_cbk = 0x400012d8 - 0x400012dc r_lld_sync_frm_eof_isr = 0x400012dc - 0x400012e0 r_lld_sync_frm_rx_isr = 0x400012e0 - 0x400012e4 r_lld_sync_frm_skip_isr = 0x400012e4 - 0x400012e8 r_lld_sync_init = 0x400012e8 - 0x400012ec r_lld_sync_process_pkt_rx = 0x400012ec - 0x400012f0 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400012f0 - 0x400012f4 r_lld_sync_process_pkt_rx_pkt_check = 0x400012f4 - 0x400012f8 r_lld_sync_scan_dynamic_pti_process = 0x400012f8 - 0x400012fc r_lld_sync_sched = 0x400012fc - 0x40001300 r_lld_sync_start = 0x40001300 - 0x40001304 r_lld_sync_stop = 0x40001304 - 0x40001308 r_lld_sync_trunc_ind = 0x40001308 - 0x4000130c r_lld_test_cleanup = 0x4000130c - 0x40001310 r_lld_test_evt_canceled_cbk = 0x40001310 - 0x40001314 r_lld_test_evt_start_cbk = 0x40001314 - 0x40001318 r_lld_test_freq2chnl = 0x40001318 - 0x4000131c r_lld_test_frm_cbk = 0x4000131c - 0x40001320 r_lld_test_frm_isr = 0x40001320 - 0x40001324 r_lld_test_init = 0x40001324 - 0x40001328 r_lld_test_rx_isr = 0x40001328 - 0x4000132c r_lld_test_set_tx_power = 0x4000132c - 0x40001330 r_lld_test_start = 0x40001330 - 0x40001338 r_lld_update_rxbuf = 0x40001338 - 0x4000133c r_lld_update_rxbuf_isr = 0x4000133c - 0x40001340 r_lld_white_list_add = 0x40001340 - 0x40001344 r_lld_white_list_rem = 0x40001344 - 0x40001348 r_llm_activity_free_get = 0x40001348 - 0x4000134c r_llm_activity_free_set = 0x4000134c - 0x40001350 r_llm_activity_syncing_get = 0x40001350 - 0x40001354 r_llm_adv_con_len_check = 0x40001354 - 0x40001358 r_llm_adv_hdl_to_id = 0x40001358 - 0x4000135c r_llm_adv_rep_flow_control_check = 0x4000135c - 0x40001360 r_llm_adv_rep_flow_control_update = 0x40001360 - 0x40001364 r_llm_adv_reports_list_check = 0x40001364 - 0x40001368 r_llm_adv_set_all_release = 0x40001368 - 0x4000136c r_llm_adv_set_dft_params = 0x4000136c - 0x40001370 r_llm_adv_set_release = 0x40001370 - 0x40001374 r_llm_aes_res_cb = 0x40001374 - 0x40001378 r_llm_ble_update_adv_flow_control = 0x40001378 - 0x4000137c r_llm_ch_map_update = 0x4000137c - 0x40001380 r_llm_cmd_cmp_send = 0x40001380 - 0x40001384 r_llm_cmd_stat_send = 0x40001384 - 0x40001388 r_llm_dev_list_empty_entry = 0x40001388 - 0x4000138c r_llm_dev_list_search = 0x4000138c - 0x40001390 r_llm_env_adv_dup_filt_deinit = 0x40001390 - 0x40001394 r_llm_env_adv_dup_filt_init = 0x40001394 - 0x40001398 r_llm_init_ble_adv_report_flow_contol = 0x40001398 - 0x4000139c r_llm_is_dev_connected = 0x4000139c - 0x400013a0 r_llm_is_dev_synced = 0x400013a0 - 0x400013a4 r_llm_is_non_con_act_ongoing_check = 0x400013a4 - 0x400013a8 r_llm_is_wl_accessible = 0x400013a8 - 0x400013ac r_llm_le_evt_mask_check = 0x400013ac - 0x400013b4 r_llm_link_disc = 0x400013b4 - 0x400013b8 r_llm_master_ch_map_get = 0x400013b8 - 0x400013bc r_llm_msg_handler_tab_p_get = 0x400013bc - 0x400013c0 r_llm_no_activity = 0x400013c0 - 0x400013c4 r_llm_per_adv_slot_dur = 0x400013c4 - 0x400013c8 r_llm_plan_elt_get = 0x400013c8 - 0x400013cc r_llm_rx_path_comp_get = 0x400013cc - 0x400013d0 r_llm_scan_start = 0x400013d0 - 0x400013d4 r_llm_scan_sync_acad_attach = 0x400013d4 - 0x400013d8 r_llm_scan_sync_acad_detach = 0x400013d8 - 0x400013dc r_llm_send_adv_lost_event_to_host = 0x400013dc - 0x400013e0 r_llm_tx_path_comp_get = 0x400013e0 - 0x400013e4 r_misc_deinit = 0x400013e4 - 0x400013e8 r_misc_free_em_buf_in_isr = 0x400013e8 - 0x400013ec r_misc_init = 0x400013ec - 0x400013f0 r_misc_msg_handler_tab_p_get = 0x400013f0 - 0x400013f4 r_notEqual256 = 0x400013f4 - 0x400013f8 r_phy_upd_proc_start = 0x400013f8 - 0x400013fc r_platform_reset = 0x400013fc - 0x40001404 r_rf_em_init = 0x40001404 - 0x40001408 r_rf_force_agc_enable = 0x40001408 - 0x4000140c r_rf_reg_rd = 0x4000140c - 0x40001410 r_rf_reg_wr = 0x40001410 - 0x40001414 r_rf_reset = 0x40001414 - 0x40001418 r_rf_rssi_convert = 0x40001418 - 0x4000141c r_rf_rw_v9_le_disable = 0x4000141c - 0x40001420 r_rf_rw_v9_le_enable = 0x40001420 - 0x40001424 r_rf_sleep = 0x40001424 - 0x40001430 r_rf_util_cs_fmt_convert = 0x40001430 - 0x40001434 r_rw_crypto_aes_ccm = 0x40001434 - 0x40001438 r_rw_crypto_aes_encrypt = 0x40001438 - 0x4000143c r_rw_crypto_aes_init = 0x4000143c - 0x40001440 r_rw_crypto_aes_k1 = 0x40001440 - 0x40001444 r_rw_crypto_aes_k2 = 0x40001444 - 0x40001448 r_rw_crypto_aes_k3 = 0x40001448 - 0x4000144c r_rw_crypto_aes_k4 = 0x4000144c - 0x40001450 r_rw_crypto_aes_rand = 0x40001450 - 0x40001454 r_rw_crypto_aes_result_handler = 0x40001454 - 0x40001458 r_rw_crypto_aes_s1 = 0x40001458 - 0x4000145c r_rw_cryto_aes_cmac = 0x4000145c - 0x40001460 r_rw_v9_init_em_radio_table = 0x40001460 - 0x40001468 r_rwble_sleep_enter = 0x40001468 - 0x4000146c r_rwble_sleep_wakeup_end = 0x4000146c - 0x40001474 r_rwip_active_check = 0x40001474 - 0x40001478 r_rwip_aes_encrypt = 0x40001478 - 0x40001480 r_rwip_crypt_evt_handler = 0x40001480 - 0x40001484 r_rwip_crypt_isr_handler = 0x40001484 - 0x40001488 r_rwip_eif_get = 0x40001488 - 0x4000148c r_rwip_half_slot_2_lpcycles = 0x4000148c - 0x40001490 r_rwip_hus_2_lpcycles = 0x40001490 - 0x40001494 r_rwip_isr = 0x40001494 - 0x40001498 r_rwip_lpcycles_2_hus = 0x40001498 - 0x4000149c r_rwip_prevent_sleep_clear = 0x4000149c - 0x400014a0 r_rwip_prevent_sleep_set = 0x400014a0 - 0x400014a4 r_rwip_schedule = 0x400014a4 - 0x400014a8 r_rwip_sleep = 0x400014a8 - 0x400014ac r_rwip_sw_int_handler = 0x400014ac - 0x400014b0 r_rwip_sw_int_req = 0x400014b0 - 0x400014b4 r_rwip_time_get = 0x400014b4 - 0x400014b8 r_rwip_timer_10ms_handler = 0x400014b8 - 0x400014bc r_rwip_timer_10ms_set = 0x400014bc - 0x400014c0 r_rwip_timer_hs_handler = 0x400014c0 - 0x400014c4 r_rwip_timer_hs_set = 0x400014c4 - 0x400014c8 r_rwip_timer_hus_handler = 0x400014c8 - 0x400014cc r_rwip_timer_hus_set = 0x400014cc - 0x400014d0 r_rwip_wakeup = 0x400014d0 - 0x400014d8 r_rwip_wlcoex_set = 0x400014d8 - 0x400014dc r_sch_alarm_clear = 0x400014dc - 0x400014e0 r_sch_alarm_init = 0x400014e0 - 0x400014e4 r_sch_alarm_prog = 0x400014e4 - 0x400014e8 r_sch_alarm_set = 0x400014e8 - 0x400014ec r_sch_alarm_timer_isr = 0x400014ec - 0x400014f0 r_sch_arb_conflict_check = 0x400014f0 - 0x400014f4 r_sch_arb_elt_cancel = 0x400014f4 - 0x400014fc r_sch_arb_init = 0x400014fc - 0x40001500 r_sch_arb_insert = 0x40001500 - 0x40001504 r_sch_arb_prog_timer = 0x40001504 - 0x40001508 r_sch_arb_remove = 0x40001508 - 0x4000150c r_sch_arb_sw_isr = 0x4000150c - 0x40001510 r_sch_plan_chk = 0x40001510 - 0x40001514 r_sch_plan_clock_wrap_offset_update = 0x40001514 - 0x40001518 r_sch_plan_init = 0x40001518 - 0x4000151c r_sch_plan_interval_req = 0x4000151c - 0x40001520 r_sch_plan_offset_max_calc = 0x40001520 - 0x40001524 r_sch_plan_offset_req = 0x40001524 - 0x40001528 r_sch_plan_position_range_compute = 0x40001528 - 0x4000152c r_sch_plan_rem = 0x4000152c - 0x40001530 r_sch_plan_req = 0x40001530 - 0x4000153c r_sch_prog_init = 0x4000153c - 0x40001540 r_sch_prog_push = 0x40001540 - 0x40001544 r_sch_prog_rx_isr = 0x40001544 - 0x40001548 r_sch_prog_skip_isr = 0x40001548 - 0x4000154c r_sch_prog_tx_isr = 0x4000154c - 0x40001550 r_sch_slice_bg_add = 0x40001550 - 0x40001554 r_sch_slice_bg_remove = 0x40001554 - 0x40001558 r_sch_slice_compute = 0x40001558 - 0x4000155c r_sch_slice_fg_add = 0x4000155c - 0x40001560 r_sch_slice_fg_remove = 0x40001560 - 0x40001564 r_sch_slice_init = 0x40001564 - 0x40001568 r_sch_slice_per_add = 0x40001568 - 0x4000156c r_sch_slice_per_remove = 0x4000156c - 0x40001570 r_sdk_config_get_bt_sleep_enable = 0x40001570 - 0x40001574 r_sdk_config_get_hl_derived_opts = 0x40001574 - 0x40001578 r_sdk_config_get_opts = 0x40001578 - 0x4000157c r_sdk_config_get_priv_opts = 0x4000157c - 0x40001580 r_sdk_config_set_bt_sleep_enable = 0x40001580 - 0x40001584 r_sdk_config_set_hl_derived_opts = 0x40001584 - 0x40001588 r_sdk_config_set_opts = 0x40001588 - 0x4000158c r_specialModP256 = 0x4000158c - 0x40001590 r_unloaded_area_init = 0x40001590 - 0x40001594 r_vhci_flow_off = 0x40001594 - 0x40001598 r_vhci_flow_on = 0x40001598 - 0x4000159c r_vhci_notify_host_send_available = 0x4000159c - 0x400015a0 r_vhci_send_to_host = 0x400015a0 - 0x400015a4 r_vnd_hci_command_handler = 0x400015a4 - 0x400015a8 r_vshci_init = 0x400015a8 - 0x400015ac vnd_hci_command_handler_wrapper = 0x400015ac - 0x40001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 - 0x40001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 - 0x40001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 - 0x40001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c - 0x40001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 - 0x40001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 - 0x40001c7c r_lld_scan_sched_hook = 0x40001c7c - 0x40001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 - 0x40001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 - 0x40001c8c r_lld_adv_frm_isr_hook = 0x40001c8c - 0x40001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 - 0x40001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 - 0x40001c98 r_lld_con_frm_isr_hook = 0x40001c98 - 0x40001c9c r_lld_con_tx_hook = 0x40001c9c - 0x40001ca0 r_lld_con_rx_hook = 0x40001ca0 - 0x40001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 - 0x40001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac - 0x40001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 - 0x40001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 - 0x40001cbc r_lld_init_sched_hook = 0x40001cbc - 0x40001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 - 0x40001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 - 0x40001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 - 0x40001ccc r_lld_per_adv_start_hook = 0x40001ccc - 0x40001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 - 0x40001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 - 0x40001cd8 r_lld_sync_start_hook = 0x40001cd8 - 0x40001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc - 0x40001ce0 r_sch_arb_insert_hook = 0x40001ce0 - 0x40001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 - 0x40000764 __absvdi2 = 0x40000764 - 0x40000768 __absvsi2 = 0x40000768 - 0x4000076c __adddf3 = 0x4000076c - 0x40000770 __addsf3 = 0x40000770 - 0x40000774 __addvdi3 = 0x40000774 - 0x40000778 __addvsi3 = 0x40000778 - 0x4000077c __ashldi3 = 0x4000077c - 0x40000780 __ashrdi3 = 0x40000780 - 0x40000784 __bswapdi2 = 0x40000784 - 0x40000788 __bswapsi2 = 0x40000788 - 0x4000078c __clear_cache = 0x4000078c - 0x40000790 __clrsbdi2 = 0x40000790 - 0x40000794 __clrsbsi2 = 0x40000794 - 0x40000798 __clzdi2 = 0x40000798 - 0x4000079c __clzsi2 = 0x4000079c - 0x400007a0 __cmpdi2 = 0x400007a0 - 0x400007a4 __ctzdi2 = 0x400007a4 - 0x400007a8 __ctzsi2 = 0x400007a8 - 0x400007ac __divdc3 = 0x400007ac - 0x400007b0 __divdf3 = 0x400007b0 - 0x400007b4 __divdi3 = 0x400007b4 - 0x400007b8 __divsc3 = 0x400007b8 - 0x400007bc __divsf3 = 0x400007bc - 0x400007c0 __divsi3 = 0x400007c0 - 0x400007c4 __eqdf2 = 0x400007c4 - 0x400007c8 __eqsf2 = 0x400007c8 - 0x400007cc __extendsfdf2 = 0x400007cc - 0x400007d0 __ffsdi2 = 0x400007d0 - 0x400007d4 __ffssi2 = 0x400007d4 - 0x400007d8 __fixdfdi = 0x400007d8 - 0x400007dc __fixdfsi = 0x400007dc - 0x400007e0 __fixsfdi = 0x400007e0 - 0x400007e4 __fixsfsi = 0x400007e4 - 0x400007e8 __fixunsdfsi = 0x400007e8 - 0x400007ec __fixunssfdi = 0x400007ec - 0x400007f0 __fixunssfsi = 0x400007f0 - 0x400007f4 __floatdidf = 0x400007f4 - 0x400007f8 __floatdisf = 0x400007f8 - 0x400007fc __floatsidf = 0x400007fc - 0x40000800 __floatsisf = 0x40000800 - 0x40000804 __floatundidf = 0x40000804 - 0x40000808 __floatundisf = 0x40000808 - 0x4000080c __floatunsidf = 0x4000080c - 0x40000810 __floatunsisf = 0x40000810 - 0x40000814 __gcc_bcmp = 0x40000814 - 0x40000818 __gedf2 = 0x40000818 - 0x4000081c __gesf2 = 0x4000081c - 0x40000820 __gtdf2 = 0x40000820 - 0x40000824 __gtsf2 = 0x40000824 - 0x40000828 __ledf2 = 0x40000828 - 0x4000082c __lesf2 = 0x4000082c - 0x40000830 __lshrdi3 = 0x40000830 - 0x40000834 __ltdf2 = 0x40000834 - 0x40000838 __ltsf2 = 0x40000838 - 0x4000083c __moddi3 = 0x4000083c - 0x40000840 __modsi3 = 0x40000840 - 0x40000844 __muldc3 = 0x40000844 - 0x40000848 __muldf3 = 0x40000848 - 0x4000084c __muldi3 = 0x4000084c - 0x40000850 __mulsc3 = 0x40000850 - 0x40000854 __mulsf3 = 0x40000854 - 0x40000858 __mulsi3 = 0x40000858 - 0x4000085c __mulvdi3 = 0x4000085c - 0x40000860 __mulvsi3 = 0x40000860 - 0x40000864 __nedf2 = 0x40000864 - 0x40000868 __negdf2 = 0x40000868 - 0x4000086c __negdi2 = 0x4000086c - 0x40000870 __negsf2 = 0x40000870 - 0x40000874 __negvdi2 = 0x40000874 - 0x40000878 __negvsi2 = 0x40000878 - 0x4000087c __nesf2 = 0x4000087c - 0x40000880 __paritysi2 = 0x40000880 - 0x40000884 __popcountdi2 = 0x40000884 - 0x40000888 __popcountsi2 = 0x40000888 - 0x4000088c __powidf2 = 0x4000088c - 0x40000890 __powisf2 = 0x40000890 - 0x40000894 __subdf3 = 0x40000894 - 0x40000898 __subsf3 = 0x40000898 - 0x4000089c __subvdi3 = 0x4000089c - 0x400008a0 __subvsi3 = 0x400008a0 - 0x400008a4 __truncdfsf2 = 0x400008a4 - 0x400008a8 __ucmpdi2 = 0x400008a8 - 0x400008ac __udivdi3 = 0x400008ac - 0x400008b0 __udivmoddi4 = 0x400008b0 - 0x400008b4 __udivsi3 = 0x400008b4 - 0x400008b8 __udiv_w_sdiv = 0x400008b8 - 0x400008bc __umoddi3 = 0x400008bc - 0x400008c0 __umodsi3 = 0x400008c0 - 0x400008c4 __unorddf2 = 0x400008c4 - 0x400008c8 __unordsf2 = 0x400008c8 - 0x40000010 _rom_chip_id = 0x40000010 - 0x40000014 _rom_eco_version = 0x40000014 - 0x400017b4 wDevCheckBlockError = 0x400017b4 - 0x40001964 rom_index_to_txbbgain = 0x40001964 - 0x400019b0 rom_pbus_xpd_tx_on = 0x400019b0 - 0x400019f0 rom_set_tx_dig_gain = 0x400019f0 - 0x400019f4 rom_set_txcap_reg = 0x400019f4 - 0x40001a0c rom_txbbgain_to_index = 0x40001a0c - 0x40001a54 rom_agc_reg_init = 0x40001a54 - 0x40001a58 rom_bb_reg_init = 0x40001a58 - 0x40001a70 rom_set_pbus_reg = 0x40001a70 - 0x40001a78 rom_phy_xpd_rf = 0x40001a78 - 0x40001a8c rom_write_txrate_power_offset = 0x40001a8c - 0x40001ab4 rom_temp_to_power = 0x40001ab4 - 0x40001af8 rom_open_i2c_xpd = 0x40001af8 - 0x40001b00 rom_tsens_read_init = 0x40001b00 - 0x40001b04 rom_tsens_code_read = 0x40001b04 - 0x40001b10 rom_tsens_dac_cal = 0x40001b10 - 0x40001b28 rom_pll_vol_cal = 0x40001b28 - 0x40001b2c wdev_is_data_in_rxlist = 0x40001b2c - 0x40001b30 ppProcTxCallback = 0x40001b30 - 0x40001b34 ieee80211_gettid = 0x40001b34 - 0x40001bac rom_wrtie_pll_cap = 0x40001bac - 0x40001bb0 rom_set_tx_gain_mem = 0x40001bb0 - 0x40001bb4 rom_bt_tx_dig_gain = 0x40001bb4 - 0x40001bb8 rom_bt_get_tx_gain = 0x40001bb8 - 0x40001bbc rom_get_chan_target_power = 0x40001bbc - 0x40001bc0 rom_get_tx_gain_value = 0x40001bc0 - 0x40001bc4 rom_wifi_tx_dig_gain = 0x40001bc4 - 0x40001bc8 rom_wifi_get_tx_gain = 0x40001bc8 - 0x40001bcc rom_fe_i2c_reg_renew = 0x40001bcc - 0x40001bd0 rom_wifi_agc_sat_gain = 0x40001bd0 - 0x40001bd4 rom_i2c_master_reset = 0x40001bd4 - 0x40001bd8 rom_bt_filter_reg = 0x40001bd8 - 0x40001bdc rom_phy_bbpll_cal = 0x40001bdc - 0x40001be0 rom_i2c_sar2_init_code = 0x40001be0 - 0x40001be4 rom_phy_param_addr = 0x40001be4 - 0x40001be8 rom_phy_reg_init = 0x40001be8 - 0x40001bec rom_set_chan_reg = 0x40001bec - 0x40001bf0 rom_phy_wakeup_init = 0x40001bf0 - 0x40001bf4 rom_phy_i2c_init1 = 0x40001bf4 - 0x40001bf8 rom_tsens_temp_read = 0x40001bf8 - 0x40001bfc rom_bt_track_pll_cap = 0x40001bfc - 0x40001c00 rom_wifi_track_pll_cap = 0x40001c00 - 0x40001c04 rom_wifi_set_tx_gain = 0x40001c04 - 0x40001c08 rom_txpwr_cal_track = 0x40001c08 - 0x40001c0c rom_tx_pwctrl_background = 0x40001c0c - 0x40001c10 rom_bt_set_tx_gain = 0x40001c10 - 0x40001c14 rom_noise_check_loop = 0x40001c14 - 0x40001c18 rom_phy_close_rf = 0x40001c18 - 0x40001c1c rom_phy_xpd_tsens = 0x40001c1c - 0x40001c20 rom_phy_freq_mem_backup = 0x40001c20 - 0x40001c24 rom_phy_ant_init = 0x40001c24 - 0x40001c28 rom_bt_track_tx_power = 0x40001c28 - 0x40001c2c rom_wifi_track_tx_power = 0x40001c2c - 0x40001c30 rom_phy_dig_reg_backup = 0x40001c30 - 0x40001c34 chip726_phyrom_version_num = 0x40001c34 - 0x3fcdf830 phy_param_rom = 0x3fcdf830 - [!provide] PROVIDE (esp_flash_read_chip_id = 0x40001c38) - [!provide] PROVIDE (detect_spi_flash_chip = 0x40001c3c) - [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x40001c40) - 0x40001b38 r_lld_legacy_adv_dynamic_pti_get = 0x40001b38 - 0x40001b3c r_lld_legacy_adv_dynamic_pti_process = 0x40001b3c - 0x40001b40 r_lld_ext_adv_dynamic_pti_get = 0x40001b40 - 0x40001b44 r_lld_ext_adv_dynamic_aux_pti_process = 0x40001b44 - 0x40001b48 r_lld_ext_adv_dynamic_pti_process = 0x40001b48 - 0x40001b54 r_lld_adv_ext_chain_connectable_construct = 0x40001b54 - 0x40001b5c r_lld_adv_pkt_rx_connect_post = 0x40001b5c - 0x40001b60 r_lld_adv_start_init_evt_param = 0x40001b60 - 0x40001b64 r_lld_adv_start_set_cs = 0x40001b64 - 0x40001b6c r_lld_adv_start_schedule_asap = 0x40001b6c - 0x40001b70 r_lld_con_tx_prog_new_packet_coex = 0x40001b70 - 0x40001b78 r_lld_per_adv_dynamic_pti_get = 0x40001b78 - 0x40001b7c r_lld_per_adv_evt_start_chm_upd = 0x40001b7c - 0x40001b80 r_lld_ext_scan_dynamic_pti_get = 0x40001b80 - 0x40001b88 r_lld_sync_insert = 0x40001b88 - 0x40001b90 r_sch_prog_bt_push = 0x40001b90 - 0x40001b94 r_lld_init_evt_end_type_set = 0x40001b94 - 0x40001b98 r_lld_init_evt_end_type_get = 0x40001b98 - 0x40001b9c r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40001b9c - 0x40001ba0 r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x40001ba0 - 0x40001ba4 r_lld_init_evt_end_type_check_state_set = 0x40001ba4 - 0x40001ba8 r_lld_init_evt_end_type_check_state_get = 0x40001ba8 - 0x40000350 esp_rom_newlib_init_common_mutexes = 0x40000350 - 0x40000354 memset = 0x40000354 - 0x40000358 memcpy = 0x40000358 - 0x4000035c memmove = 0x4000035c - 0x40000360 memcmp = 0x40000360 - 0x40000364 strcpy = 0x40000364 - 0x40000368 strncpy = 0x40000368 - 0x4000036c strcmp = 0x4000036c - 0x40000370 strncmp = 0x40000370 - 0x40000374 strlen = 0x40000374 - 0x40000378 strstr = 0x40000378 - 0x4000037c bzero = 0x4000037c - 0x40000384 sbrk = 0x40000384 - 0x40000388 isalnum = 0x40000388 - 0x4000038c isalpha = 0x4000038c - 0x40000390 isascii = 0x40000390 - 0x40000394 isblank = 0x40000394 - 0x40000398 iscntrl = 0x40000398 - 0x4000039c isdigit = 0x4000039c - 0x400003a0 islower = 0x400003a0 - 0x400003a4 isgraph = 0x400003a4 - 0x400003a8 isprint = 0x400003a8 - 0x400003ac ispunct = 0x400003ac - 0x400003b0 isspace = 0x400003b0 - 0x400003b4 isupper = 0x400003b4 - 0x400003b8 toupper = 0x400003b8 - 0x400003bc tolower = 0x400003bc - 0x400003c0 toascii = 0x400003c0 - 0x400003c4 memccpy = 0x400003c4 - 0x400003c8 memchr = 0x400003c8 - 0x400003cc memrchr = 0x400003cc - 0x400003d0 strcasecmp = 0x400003d0 - 0x400003d4 strcasestr = 0x400003d4 - 0x400003d8 strcat = 0x400003d8 - 0x400003dc strdup = 0x400003dc - 0x400003e0 strchr = 0x400003e0 - 0x400003e4 strcspn = 0x400003e4 - 0x400003e8 strcoll = 0x400003e8 - 0x400003ec strlcat = 0x400003ec - 0x400003f0 strlcpy = 0x400003f0 - 0x400003f4 strlwr = 0x400003f4 - 0x400003f8 strncasecmp = 0x400003f8 - 0x400003fc strncat = 0x400003fc - 0x40000400 strndup = 0x40000400 - 0x40000404 strnlen = 0x40000404 - 0x40000408 strrchr = 0x40000408 - 0x4000040c strsep = 0x4000040c - 0x40000410 strspn = 0x40000410 - 0x40000414 strtok_r = 0x40000414 - 0x40000418 strupr = 0x40000418 - 0x4000041c longjmp = 0x4000041c - 0x40000420 setjmp = 0x40000420 - 0x40000424 abs = 0x40000424 - 0x40000428 div = 0x40000428 - 0x4000042c labs = 0x4000042c - 0x40000430 ldiv = 0x40000430 - 0x40000434 qsort = 0x40000434 - 0x40000438 rand_r = 0x40000438 - 0x4000043c rand = 0x4000043c - 0x40000440 srand = 0x40000440 - 0x40000444 utoa = 0x40000444 - 0x40000448 itoa = 0x40000448 - 0x4000044c atoi = 0x4000044c - 0x40000450 atol = 0x40000450 - 0x40000454 strtol = 0x40000454 - 0x40000458 strtoul = 0x40000458 - [!provide] PROVIDE (fflush = 0x4000045c) - [!provide] PROVIDE (_fflush_r = 0x40000460) - [!provide] PROVIDE (_fwalk = 0x40000464) - [!provide] PROVIDE (_fwalk_reent = 0x40000468) - [!provide] PROVIDE (__swbuf_r = 0x40000474) - 0x40000478 __swbuf = 0x40000478 - 0x3fcdffe0 syscall_table_ptr = 0x3fcdffe0 - 0x3fcdffdc _global_impure_ptr = 0x3fcdffdc - 0x40000000 _heap_end = 0x40000000 - 0x50000000 _data_seg_org = ORIGIN (rtc_data_seg) - 0x00000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) - -.rtc.text 0x50000000 0x200 - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_fast_start = ABSOLUTE (.) - *(.rtc.literal .rtc.text .rtc.text.*) - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - 0x50000010 . = (. + 0x10) - *fill* 0x50000000 0x10 - 0x50000200 . = ALIGN (0x200) - *fill* 0x50000010 0x1f0 - 0x50000200 _rtc_text_end = ABSOLUTE (.) - -.rtc.force_fast - 0x50000200 0x1c - 0x50000200 . = ALIGN (0x4) - 0x50000200 _rtc_force_fast_start = ABSOLUTE (.) - 0x50000200 _coredump_rtc_fast_start = ABSOLUTE (.) - *(.rtc.fast.coredump .rtc.fast.coredump.*) - 0x50000200 _coredump_rtc_fast_end = ABSOLUTE (.) - *(.rtc.force_fast .rtc.force_fast.*) - .rtc.force_fast.0 - 0x50000200 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - 0x5000021c . = ALIGN (0x4) - 0x5000021c _rtc_force_fast_end = ABSOLUTE (.) - -.rtc.data 0x5000021c 0x0 - 0x5000021c _rtc_data_start = ABSOLUTE (.) - 0x5000021c _coredump_rtc_start = ABSOLUTE (.) - *(.rtc.coredump .rtc.coredump.*) - 0x5000021c _coredump_rtc_end = ABSOLUTE (.) - *(.rtc.data .rtc.data.*) - *(.rtc.rodata .rtc.rodata.*) - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - 0x5000021c _rtc_data_end = ABSOLUTE (.) - -.rtc.bss 0x5000021c 0x0 - 0x5000021c _rtc_bss_start = ABSOLUTE (.) - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - *(.rtc.bss) - 0x5000021c _rtc_bss_end = ABSOLUTE (.) - -.rtc_noinit 0x5000021c 0x0 - 0x5000021c . = ALIGN (0x4) - 0x5000021c _rtc_noinit_start = ABSOLUTE (.) - *(.rtc_noinit .rtc_noinit.*) - 0x5000021c . = ALIGN (0x4) - 0x5000021c _rtc_noinit_end = ABSOLUTE (.) - -.rtc.force_slow - 0x5000021c 0x0 - 0x5000021c . = ALIGN (0x4) - 0x5000021c _rtc_force_slow_start = ABSOLUTE (.) - *(.rtc.force_slow .rtc.force_slow.*) - 0x5000021c . = ALIGN (0x4) - 0x5000021c _rtc_force_slow_end = ABSOLUTE (.) - -.rtc_reserved 0x50001fe8 0x18 - 0x50001fe8 . = ALIGN (0x4) - 0x50001fe8 _rtc_reserved_start = ABSOLUTE (.) - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - .rtc_timer_data_in_rtc_mem - 0x50001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) - 0x50002000 _rtc_reserved_end = ABSOLUTE (.) - 0x00000018 _rtc_reserved_length = (_rtc_reserved_end - _rtc_reserved_start) - 0x00000001 ASSERT ((_rtc_reserved_length <= LENGTH (rtc_reserved_seg)), RTC reserved segment data does not fit.) - 0x00000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) - 0x0000021c _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) - 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) - 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) - -.iram0.text 0x40380000 0x1aee4 - 0x40380000 _iram_start = ABSOLUTE (.) - 0x00000001 ASSERT (((ABSOLUTE (.) % 0x100) == 0x0), vector address must be 256 byte aligned) - *(.exception_vectors_table.text) - .exception_vectors_table.text - 0x40380000 0x102 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - 0x40380000 _vector_table - *(.exception_vectors.text) - .exception_vectors.text - 0x40380102 0x1d8 esp-idf/riscv/libriscv.a(vectors.S.obj) - 0x40380102 _panic_handler - 0x403801dc _interrupt_handler - 0x403802dc . = ALIGN (0x4) - *fill* 0x403802da 0x2 - 0x403802dc _invalid_pc_placeholder = ABSOLUTE (.) - 0x403802dc _iram_text_start = ABSOLUTE (.) - *(.iram1 .iram1.*) - .iram1.0 0x403802dc 0x312 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - 0x403802dc call_start_cpu0 - .iram1.1 0x403805ee 0x94 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .iram1.0 0x40380682 0x44 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x40380682 esp_reset_reason_set_hint - .iram1.0 0x403806c6 0x94 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x403806c6 esp_system_reset_modules_on_exit - .iram1.1 0x4038075a 0xe4 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x4038075a esp_restart_noos - .iram1.1 0x4038083e 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .iram1.0 0x40380858 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .iram1.0 0x40380872 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x40380872 panic_abort - .iram1.0 0x40380888 0x16 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .iram1.1 0x4038089e 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x4038089e panicHandler - .iram1.2 0x403808bc 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x403808bc xt_unhandled_exception - .iram1.0 0x403808da 0x1c esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403808da efuse_hal_chip_revision - .iram1.1 0x403808f6 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403808f6 efuse_hal_blk_version - .iram1.2 0x40380914 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40380914 efuse_hal_get_disable_wafer_version_major - .iram1.3 0x40380922 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40380922 efuse_hal_get_disable_blk_version_major - .iram1.4 0x40380932 0x24 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40380932 efuse_hal_flash_encryption_enabled - .iram1.0 0x40380956 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40380956 efuse_hal_get_major_chip_version - .iram1.1 0x40380966 0x1a esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40380966 efuse_hal_get_minor_chip_version - .iram1.0 0x40380980 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.9 0x40380996 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.1 0x403809d0 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x403809d0 heap_caps_malloc - .iram1.2 0x40380a04 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380a04 heap_caps_malloc_default - .iram1.4 0x40380a6c 0x6a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380a6c heap_caps_malloc_prefer - .iram1.7 0x40380ad6 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380ad6 heap_caps_realloc - .iram1.3 0x40380b0a 0x70 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380b0a heap_caps_realloc_default - .iram1.8 0x40380b7a 0x3c esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380b7a heap_caps_calloc - .iram1.11 0x40380bb6 0x4a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40380bb6 heap_caps_aligned_alloc - .iram1.0 0x40380c00 0xe6 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .iram1.2 0x40380ce6 0x1a esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .iram1.1 0x40380d00 0x68 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40380d00 heap_caps_free - .iram1.3 0x40380d68 0xe4 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40380d68 heap_caps_aligned_alloc_base - .iram1.4 0x40380e4c 0x12 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40380e4c heap_caps_malloc_base - .iram1.5 0x40380e5e 0x194 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40380e5e heap_caps_realloc_base - .iram1.6 0x40380ff2 0x42 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40380ff2 heap_caps_calloc_base - .iram1.1 0x40381034 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40381034 esp_clk_cpu_freq - .iram1.2 0x40381052 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40381052 esp_clk_apb_freq - .iram1.3 0x4038109a 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x4038109a esp_clk_xtal_freq - .iram1.0 0x403810b4 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.4 0x403810ee 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x403810ee esp_intr_noniram_disable - .iram1.5 0x40381170 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x40381170 esp_intr_noniram_enable - .iram1.8 0x403811d2 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x403811d2 esp_intr_enable_source - .iram1.2 0x403811f8 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x403811f8 esp_intr_enable - .iram1.9 0x4038129e 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x4038129e esp_intr_disable_source - .iram1.3 0x403812c4 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x403812c4 esp_intr_disable - .iram1.3 0x403813b8 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x403813b8 periph_rcc_enter - .iram1.4 0x403813d2 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x403813d2 periph_rcc_exit - .iram1.5 0x403813ec 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x403813ec wifi_bt_common_module_enable - .iram1.6 0x40381448 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x40381448 wifi_bt_common_module_disable - .iram1.5 0x4038149c 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .iram1.6 0x403814e6 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x403814e6 rtc_isr_noniram_disable - .iram1.7 0x4038151c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x4038151c rtc_isr_noniram_enable - .iram1.2 0x40381542 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40381542 regi2c_ctrl_read_reg_mask - .iram1.3 0x403815a0 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x403815a0 regi2c_ctrl_write_reg - .iram1.4 0x403815f2 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x403815f2 regi2c_ctrl_write_reg_mask - .iram1.5 0x40381654 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40381654 regi2c_enter_critical - .iram1.6 0x4038166e 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x4038166e regi2c_exit_critical - .iram1.0 0x40381688 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.16 0x403816ba 0x2c esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.4 0x403816e6 0xce esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.9 0x403817b4 0x86 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.3 0x4038183a 0x52 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038183a _lock_close - 0x4038183a _lock_close_recursive - .iram1.5 0x4038188c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038188c _lock_acquire - .iram1.6 0x4038189c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038189c _lock_acquire_recursive - .iram1.7 0x403818ac 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818ac _lock_try_acquire - .iram1.8 0x403818bc 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818bc _lock_try_acquire_recursive - .iram1.10 0x403818cc 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818cc _lock_release - .iram1.11 0x403818da 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818da _lock_release_recursive - .iram1.12 0x403818e8 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818e8 __retarget_lock_init - .iram1.13 0x403818fa 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403818fa __retarget_lock_init_recursive - .iram1.14 0x4038190c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038190c __retarget_lock_close - .iram1.15 0x4038191c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038191c __retarget_lock_close_recursive - .iram1.17 0x4038192c 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038192c __retarget_lock_acquire - .iram1.18 0x4038195e 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4038195e __retarget_lock_acquire_recursive - .iram1.19 0x40381990 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40381990 __retarget_lock_try_acquire - .iram1.20 0x403819c2 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403819c2 __retarget_lock_try_acquire_recursive - .iram1.21 0x403819f6 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x403819f6 __retarget_lock_release - .iram1.22 0x40381a0a 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40381a0a __retarget_lock_release_recursive - .iram1.0 0x40381a1e 0x3a esp-idf/newlib/libnewlib.a(reent_init.c.obj) - 0x40381a1e esp_reent_init - .iram1.1 0x40381a58 0x72 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x40381a58 _gettimeofday_r - .iram1.0 0x40381aca 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x40381aca _times_r - .iram1.0 0x40381b10 0x24 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x40381b10 esp_system_get_time - .iram1.1 0x40381b34 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - 0x40381b34 esp_timer_impl_get_min_period_us - .iram1.3 0x40381b3c 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.1 0x40381b60 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x40381b60 esp_timer_get_time - 0x40381b60 esp_timer_impl_get_time - .iram1.2 0x40381b84 0x96 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x40381b84 esp_timer_impl_set_alarm_id - .iram1.0 0x40381c1a 0x66 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .iram1.0 0x40381c80 0xe esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40381c80 phy_i2c_enter_critical - .iram1.1 0x40381c8e 0xe esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40381c8e phy_i2c_exit_critical - .iram1.2 0x40381c9c 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40381c9c phy_set_tsens_power - .iram1.3 0x40381cce 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381cce esp_coex_common_task_yield_from_isr_wrapper - .iram1.4 0x40381cdc 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381cdc esp_coex_common_timer_disarm_wrapper - .iram1.5 0x40381cea 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381cea esp_coex_common_timer_arm_us_wrapper - .iram1.6 0x40381cf8 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381cf8 esp_coex_common_malloc_internal_wrapper - .iram1.8 0x40381d0c 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .iram1.7 0x40381d1a 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .iram1.0 0x40381d2c 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381d2c esp_coex_common_env_is_chip_wrapper - .iram1.1 0x40381d30 0x1c esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381d30 esp_coex_common_int_disable_wrapper - .iram1.2 0x40381d4c 0x1a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x40381d4c esp_coex_common_int_restore_wrapper - .iram1.0 0x40381d66 0xc0 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .iram1.9 0x40381e26 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.10 0x40381e28 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.11 0x40381e2a 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.21 0x40381e2c 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.23 0x40381e2e 0x74 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.24 0x40381ea2 0x4a esp-idf/bt/libbt.a(bt.c.obj) - .iram1.25 0x40381eec 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.27 0x40381f00 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.22 0x40381f02 0xe esp-idf/bt/libbt.a(bt.c.obj) - .iram1.20 0x40381f10 0x60 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.19 0x40381f70 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.18 0x40381f82 0x10 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.15 0x40381f92 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.17 0x40381fa6 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.26 0x40381fb8 0x9e esp-idf/bt/libbt.a(bt.c.obj) - .iram1.16 0x40382056 0x10 esp-idf/bt/libbt.a(bt.c.obj) - .iram1.14 0x40382066 0xe esp-idf/bt/libbt.a(bt.c.obj) - .iram1.13 0x40382074 0x1a esp-idf/bt/libbt.a(bt.c.obj) - .iram1.12 0x4038208e 0x1a esp-idf/bt/libbt.a(bt.c.obj) - .iram1.0 0x403820a8 0x4a esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x403820a8 nimble_port_run - .iram1.1 0x403820f2 0xa esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x403820f2 nimble_port_get_dflt_eventq - .iram1.0 0x403820fc 0x8c esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - 0x403820fc bt_osi_mem_malloc - .iram1.1 0x40382188 0x14 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - 0x40382188 bt_osi_mem_calloc - .iram1.4 0x4038219c 0xe esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - 0x4038219c bt_osi_mem_free - .iram1.5 0x403821aa 0x70 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x403821aa btdm_sleep_clock_sync - .iram1.7 0x4038221a 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4038221a ble_try_turn_on_pll_track - .iram1.8 0x40382272 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .iram1.11 0x40382334 0x1ee /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x40382334 btdm_controller_task - .iram1.10 0x40382522 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x40382522 btdm_controller_is_enabled - .iram1.2 0x40382532 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x40382532 coex_schm_phase_end_ts_get - .iram1.3 0x4038253c 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x4038253c coex_schm_ble_scan_stop_interval_num_get - .iram1.4 0x40382590 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x40382590 coex_schm_btdm_callback - .iram1.5 0x403825ba 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .iram1.1 0x403825c8 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x403825c8 r_bt_bb_recorrect_is_dead - .iram1.2 0x403825ee 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x403825ee r_bt_bb_restart_hw_recorrect - .iram1.3 0x40382614 0x1d2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x40382614 r_bt_bb_isr - .iram1.4 0x403827e6 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x403827e6 r_rwbtdm_isr_wrapper - .iram1.1 0x4038280c 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4038280c r_llc_con_conflict_check - .iram1.1 0x4038288a 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4038288a r_llc_enc_state_get - .iram1.1 0x40382894 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40382894 r_ble_ll_qa_config_get - .iram1.3 0x4038289e 0x342 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x4038289e r_lld_adv_ext_chain_scannable_construct - .iram1.6 0x40382be0 0x36e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40382be0 r_lld_adv_ext_chain_none_construct - .iram1.2 0x40382f4e 0x13e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40382f4e r_lld_ext_adv_dynamic_aux_pti_process_eco - .iram1.8 0x4038308c 0xdc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x4038308c r_lld_adv_end_hack - .iram1.9 0x40383168 0x3f8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40383168 r_lld_adv_ext_pkt_prepare_set - .iram1.11 0x40383560 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40383560 r_lld_adv_pkt_rx_connect_ind_hack - .iram1.12 0x40383624 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x40383624 r_lld_adv_pkt_rx_send_scan_req_evt - .iram1.7 0x403837ec 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x403837ec r_lld_adv_evt_canceled_cbk_hack - .iram1.5 0x4038381c 0x17c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x4038381c r_lld_adv_frm_isr_eco - .iram1.2 0x40383998 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383998 ble_con_evt_status_update - .iram1.3 0x403839a8 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x403839a8 r_lld_con_cntl_pkt_info_get - .iram1.4 0x403839b2 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x403839b2 r_lld_con_count_get - .iram1.5 0x40383a02 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383a02 r_lld_update_con_offset - .iram1.6 0x40383a78 0x480 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383a78 r_lld_con_sched - .iram1.7 0x40383ef8 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383ef8 r_lld_con_update_terminte_info_init - .iram1.8 0x40383f30 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383f30 r_lld_con_terminate_max_evt_update - .iram1.12 0x40383fc6 0x460 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40383fc6 r_lld_con_tx_prog_new_packet - .iram1.15 0x40384426 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40384426 r_lld_con_llcp_ind_info_clear - .iram1.10 0x40384456 0x9e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40384456 r_lld_con_evt_time_update_eco - .iram1.19 0x403844f4 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x403844f4 r_lld_con_rx_channel_assess - .iram1.14 0x403845a4 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x403845a4 r_lld_con_tx_eco - .iram1.16 0x40384610 0x21e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40384610 r_lld_con_evt_start_cbk_eco - .iram1.9 0x4038482e 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x4038482e r_lld_con_evt_canceled_cbk_eco - .iram1.11 0x403848b4 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x403848b4 r_lld_con_frm_isr_eco - .iram1.20 0x40384944 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x40384944 r_lld_con_frm_skip_isr_hack - .iram1.4 0x40384972 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x40384972 lld_le_pkt_err_set - .iram1.3 0x40384a08 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x40384a08 r_lld_rxdesc_check_hack - .iram1.5 0x40384a44 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x40384a44 r_lld_ch_idx_get_hack - .iram1.2 0x40384a60 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x40384a60 r_lld_sw_cca_isr_eco - .iram1.1 0x40384ab6 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x40384ab6 r_lld_hw_cca_isr_eco - .iram1.1 0x40384b0c 0xf6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - 0x40384b0c r_lld_per_adv_sched - .iram1.2 0x40384c02 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - 0x40384c02 r_lld_per_adv_frm_isr_hack - .iram1.2 0x40384c6c 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .iram1.1 0x40384d04 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x40384d04 r_lld_ext_scan_dynamic_pti_reset - .iram1.5 0x40384d2c 0x29e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x40384d2c r_lld_scan_process_pkt_rx - .iram1.8 0x40384fca 0x290 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x40384fca r_lld_scan_process_pkt_rx_adv_rep - .iram1.9 0x4038525a 0x474 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x4038525a r_lld_scan_try_sched - .iram1.10 0x403856ce 0xae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x403856ce r_lld_scan_try_sched_eco - .iram1.11 0x4038577c 0x106 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x4038577c coex_lld_scan_stop - .iram1.4 0x40385882 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x40385882 r_lld_ext_scan_dynamic_pti_process_eco - .iram1.6 0x403858e0 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x403858e0 r_lld_scan_frm_eof_isr_eco - .iram1.7 0x40385928 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x40385928 r_lld_scan_frm_skip_isr_eco - .iram1.3 0x4038599e 0x150 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x4038599e r_lld_scan_evt_start_cbk_eco - .iram1.1 0x40385aee 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - 0x40385aee r_lld_sync_insert_eco - .iram1.1 0x40385b1e 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - 0x40385b1e r_lld_test_frm_isr_hack - .iram1.1 0x40385bf4 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x40385bf4 r_llm_le_scan_duplicate_opt_get - .iram1.1 0x40385bfe 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x40385bfe r_llm_update_duplicate_scan_count - .iram1.3 0x40385c90 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x40385c90 r_llm_adv_rep_flow_control_check_eco - .iram1.2 0x40385d0a 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x40385d0a r_llm_adv_rep_flow_control_update_eco - .iram1.1 0x40385d78 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - 0x40385d78 r_rf_txpwr_dbm_get - .iram1.2 0x40385d9e 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - 0x40385d9e r_rf_txpwr_cs_get - .iram1.3 0x40385dfc 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x40385dfc r_rf_pwr_tbl_get - .iram1.4 0x40385e06 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x40385e06 r_bt_rtp_get_txpwr_idx_by_act - .iram1.1 0x40385e60 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x40385e60 r_ble_isr_error_state_get - .iram1.2 0x40385e6a 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x40385e6a r_rwble_isr_hw_fixed - .iram1.4 0x40385ec2 0x31e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x40385ec2 r_rwble_isr - .iram1.2 0x403861e0 0x182 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - 0x403861e0 r_rwip_wakeup_end - .iram1.3 0x40386362 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - 0x40386362 r_rwip_timer_hus_handler_hack - .iram1.1 0x4038638c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - 0x4038638c r_rwip_wakeup_hack - .iram1.1 0x403863aa 0x26 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - 0x403863aa r_rwip_assert - .iram1.2 0x403863d0 0x13e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - 0x403863d0 r_sch_arb_event_start_isr - .iram1.1 0x4038650e 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - 0x4038650e r_sch_plan_conflict_check - .iram1.3 0x4038659a 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x4038659a ble_evt_kick_delay_update - .iram1.4 0x403865a4 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x403865a4 ble_evt_kick_delay_get - .iram1.5 0x403865ae 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x403865ae r_sch_prog_state_get - .iram1.6 0x403865b8 0x122 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x403865b8 r_sch_prog_end_isr_handler - .iram1.7 0x403866da 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x403866da r_sch_prog_hw_reset_try - .iram1.9 0x4038674e 0x17c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x4038674e r_sch_prog_et_state_reset - .iram1.11 0x403868ca 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x403868ca r_sch_prog_end_isr - .iram1.12 0x40386908 0x2f6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x40386908 r_sch_prog_ble_push - .iram1.1 0x40386bfe 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x40386bfe r_sdk_cfg_priv_opts_ext_get - .iram1.2 0x40386c08 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x40386c08 r_sdk_config_get_opts_ext - .iram1.1 0x40386c12 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386c12 r_btdm_vnd_ol_task_env_get - .iram1.2 0x40386c1c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386c1c r_btdm_task_recycle - .iram1.3 0x40386c38 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386c38 r_btdm_task_post_from_isr_impl - .iram1.4 0x40386cdc 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386cdc r_btdm_task_post_from_isr - .iram1.5 0x40386cfe 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386cfe r_btdm_vnd_offload_post_from_isr - .iram1.6 0x40386d20 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386d20 r_btdm_vnd_offload_post - .iram1.7 0x40386d44 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x40386d44 r_btdm_vnd_offload_process - .iram1.0 0x40386d62 0xda esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.1 0x40386e3c 0x2a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.0 0x40386e66 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x40386e66 esp_flash_encryption_enabled - .iram1.1 0x40386e74 0x2d2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40386e74 bootloader_flash_execute_command_common - .iram1.2 0x40387146 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40387146 bootloader_execute_flash_command - .iram1.4 0x40387160 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40387160 bootloader_read_flash_id - .iram1.12 0x40387194 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40387194 bootloader_flash_reset_chip - .iram1.2 0x40387214 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.3 0x40387222 0xce esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.4 0x403872f0 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.16 0x40387314 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.1 0x40387344 0x80 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x40387344 esp_mmu_paddr_find_caps - .iram1.0 0x403873c4 0x98 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - 0x403873c4 esp_heap_adjust_alignment_to_hw - .iram1.5 0x4038745c 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4038745c spi_flash_disable_cache - .iram1.0 0x4038746e 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4038746e spi_flash_disable_interrupts_caches_and_other_cpu - .iram1.6 0x40387490 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x40387490 spi_flash_restore_cache - .iram1.1 0x403874a2 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x403874a2 spi_flash_enable_interrupts_caches_and_other_cpu - .iram1.4 0x403874c4 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x403874c4 spi_flash_enable_cache - .iram1.7 0x403874d4 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x403874d4 spi_flash_cache_enabled - .iram1.0 0x403874e6 0x52 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.1 0x40387538 0x74 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x40387538 spi_flash_check_and_flush_cache - .iram1.2 0x403875ac 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x403875ac spi_flash_guard_set - .iram1.4 0x403875b6 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x403875b6 esp_mspi_pin_init - .iram1.5 0x403875b8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x403875b8 spi_flash_init_chip_state - .iram1.7 0x403875bc 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x403875bc esp_mspi_32bit_address_flash_feature_check - .iram1.3 0x403875c0 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.4 0x403875e8 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.6 0x4038760a 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.7 0x40387666 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387666 esp_flash_chip_driver_initialized - .iram1.5 0x40387672 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.12 0x4038769a 0xae esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.10 0x40387748 0x8a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.13 0x403877d2 0x70 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x403877d2 esp_flash_get_physical_size - .iram1.9 0x40387842 0x1da esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387842 esp_flash_init_main - .iram1.16 0x40387a1c 0x23e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387a1c esp_flash_erase_region - .iram1.21 0x40387c5a 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387c5a esp_flash_read - .iram1.22 0x40387da0 0x1d2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387da0 esp_flash_write - .iram1.25 0x40387f72 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40387f72 esp_flash_read_encrypted - .iram1.28 0x40388004 0x24c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x40388004 esp_flash_write_encrypted - .iram1.9 0x40388250 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.17 0x4038827a 0x3e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.8 0x403882b8 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.12 0x403882fe 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.11 0x4038830e 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.10 0x40388376 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.14 0x4038838c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.13 0x4038839c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.0 0x403883e8 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.7 0x403883f6 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.1 0x40388412 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.6 0x40388420 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.2 0x40388430 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.1 0x40388446 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.0 0x4038845a 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.1 0x4038846e 0x54 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.2 0x403884c2 0x5c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.3 0x4038851e 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x4038851e esp_crosscore_int_send_yield - .iram1.0 0x4038852e 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x4038852e esp_vApplicationTickHook - .iram1.0 0x4038855e 0x4a esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .iram1.0 0x403885a8 0x90 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - 0x403885a8 esp_backtrace_print - .iram1.0 0x40388638 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - 0x40388638 esp_random - .iram1.0 0x4038868a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x4038868a adc_set_hw_calibration_code - .iram1.6 0x403886b0 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.7 0x403886be 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.4 0x403886d8 0xc2 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.8 0x4038879a 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.5 0x403887b4 0x86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.9 0x4038883a 0x2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.1 0x40388864 0x8c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x40388864 esp_timer_start_once - .iram1.2 0x403888f0 0xbc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x403888f0 esp_timer_start_periodic - .iram1.3 0x403889ac 0x56 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x403889ac esp_timer_stop - .iram1.14 0x40388a02 0x5e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x40388a02 esp_timer_get_expiry_time - .iram1.15 0x40388a60 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x40388a60 esp_timer_is_active - .iram1.0 0x40388a74 0x12 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .iram1.1 0x40388a86 0xa4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x40388a86 ets_timer_arm_us - 0x40388a86 os_timer_arm_us - .iram1.2 0x40388b2a 0xb2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x40388b2a os_timer_arm - 0x40388b2a ets_timer_arm - .iram1.3 0x40388bdc 0x1e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x40388bdc os_timer_disarm - 0x40388bdc ets_timer_disarm - .iram1.0 0x40388bfa 0x2e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .iram1.1 0x40388c28 0x62a esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .iram1.4 0x40389252 0xe esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x40389252 esp_phy_common_clock_enable - .iram1.5 0x40389260 0xe esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x40389260 esp_phy_common_clock_disable - .iram1.6 0x4038926e 0x8a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x4038926e esp_wifi_bt_power_domain_on - 0x4038926e esp_wifi_power_domain_on - .iram1.1 0x403892f8 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x403892f8 phy_ant_need_update - .iram1.4 0x40389302 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.8 0x40389314 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.9 0x40389324 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.10 0x40389326 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.12 0x40389328 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.13 0x4038932a 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.21 0x4038932c 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.0 0x4038932e 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x4038932e wifi_malloc - .iram1.1 0x4038933c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x4038933c wifi_realloc - .iram1.2 0x4038934a 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x4038934a wifi_calloc - .iram1.3 0x40389358 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.20 0x4038936a 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.19 0x4038937c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.18 0x4038938e 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.17 0x403893a0 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.16 0x403893b0 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.15 0x403893c8 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.14 0x403893dc 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.11 0x403893f0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.7 0x403893fe 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.6 0x4038940e 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.5 0x4038941c 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.0 0x4038942c 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .iram1.0 0x40389456 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .iram1.3 0x40389482 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - 0x40389482 coex_dbg_output - .iram1.2 0x40389492 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - 0x40389492 pm_get_null_max_tx_time - .iram1.4 0x40389524 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - 0x40389524 wifi_gpio_debug - .iram1.43 0x40389534 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403895a8 wdev_record_rx_linked_list - .iram1.38 0x403895b2 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403895b2 wdev_process_tbtt - .iram1.39 0x403895be 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403895be wdev_process_tsf_timer - .iram1.40 0x403895ca 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403895ca wdev_process_beacon_filter - .iram1.41 0x403895d6 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403895d6 wDev_ProcessFiq - .iram1.44 0x40389682 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x40389682 wdev_dump_rx_linked_list - .iram1.15 0x4038972a 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x4038972a hal_mac_interrupt_get_event - .iram1.16 0x40389734 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x40389734 hal_mac_interrupt_clr_event - .iram1.2 0x4038973e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x4038973e hal_pwr_interrupt_get_event - .iram1.3 0x40389748 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x40389748 hal_pwr_interrupt_clr_event - .iram1 0x40389752 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x40389752 phy_wakeup_init - 0x4038979a phy_close_rf - 0x403897ca phy_xpd_tsens - .iram1 0x403897f6 0x2bc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x40389904 ram1_phy_wakeup_init - 0x40389a6c ram1_phy_close_rf - .iram1 0x40389ab2 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x40389ab2 wait_freq_set_busy - 0x40389ac0 ram1_phy_dis_hw_set_freq - 0x40389adc rom1_phy_en_hw_set_freq - .iram1 0x40389af2 0x110 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x40389af2 phy_freq_mem_backup - 0x40389bfa phy_dig_reg_backup - .iram1 0x40389c02 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - 0x40389c02 rom1_i2c_master_reset - .iram1 0x40389d08 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x40389d08 rom1_wifi_tx_dig_gain - .iram1 0x40389d98 0x64a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x40389d98 ram1_set_pbus_reg - 0x40389dd6 rom1_tx_paon_set - 0x40389e2a btbb_wifi_bb_cfg2 - 0x40389e3c rx_agc_reg_opt - 0x40389e7e rx_11b_opt - 0x4038a2b2 rom1_disable_wifi_agc - 0x4038a2de rom1_enable_wifi_agc - 0x4038a308 ram1_fe_i2c_reg_renew - 0x4038a3ce phy_wifi_enable_set - .iram1 0x4038a3e2 0x44a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - 0x4038a41e bias_dreg_i2c_set - 0x4038a45e rom1_get_i2c_hostid - 0x4038a528 rom1_chip_i2c_readReg - 0x4038a596 rom1_chip_i2c_writeReg - 0x4038a60c rom1_phy_i2c_init1 - 0x4038a7d6 phy_i2c_bbtop_wakeup - *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) - *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) - *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) - *libcoexist.a:(.coexiram .coexiram.*) - .coexiram.10 0x4038a82c 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x4038a82c coex_status_get - .coexiram.3 0x4038a856 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x4038a856 coex_schm_status_bitmap_get - *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) - *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) - *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) - *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) - .text.esp_cpu_wait_for_intr - 0x4038a87c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x4038a87c esp_cpu_wait_for_intr - *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) - .text.esp_ptr_byte_accessible - 0x4038a898 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - 0x4038a898 esp_ptr_byte_accessible - *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) - *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) - .text.gdma_start - 0x4038a8b6 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4038a8b6 gdma_start - *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) - *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) - .text.periph_module_reset - 0x4038a98c 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4038a98c periph_module_reset - *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) - .text.wifi_module_disable - 0x4038a9ec 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4038a9ec wifi_module_disable - *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) - .text.wifi_module_enable - 0x4038aa26 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4038aa26 wifi_module_enable - *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) - .text.rtc_clk_bbpll_disable - 0x4038aa60 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_enable - 0x4038aa76 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_configure - 0x4038aa84 0x156 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_add_consumer - 0x4038abda 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038abda rtc_clk_bbpll_add_consumer - .text.rtc_clk_bbpll_remove_consumer - 0x4038abea 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038abea rtc_clk_bbpll_remove_consumer - .text.rtc_clk_32k_enable - 0x4038abfa 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038abfa rtc_clk_32k_enable - .text.rtc_clk_32k_enable_external - 0x4038ac7e 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ac7e rtc_clk_32k_enable_external - .text.rtc_clk_8m_enable - 0x4038acaa 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038acaa rtc_clk_8m_enable - .text.rtc_clk_8md256_enabled - 0x4038ad26 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ad26 rtc_clk_8md256_enabled - .text.rtc_clk_slow_src_set - 0x4038ad36 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ad36 rtc_clk_slow_src_set - .text.rtc_clk_slow_src_get - 0x4038ae06 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ae06 rtc_clk_slow_src_get - .text.rtc_clk_slow_freq_get_hz - 0x4038ae20 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ae20 rtc_clk_slow_freq_get_hz - .text.rtc_clk_fast_src_set - 0x4038ae54 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ae54 rtc_clk_fast_src_set - .text.rtc_clk_xtal_freq_get - 0x4038ae94 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038ae94 rtc_get_xtal - 0x4038ae94 rtc_clk_xtal_freq_get - .text.rtc_clk_cpu_freq_mhz_to_config - 0x4038aef4 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038aef4 rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_get_config - 0x4038af60 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038af60 rtc_clk_cpu_freq_get_config - .text.rtc_clk_apb_freq_update - 0x4038b072 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038b072 rtc_clk_apb_freq_update - .text.rtc_clk_cpu_freq_to_xtal - 0x4038b088 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_set_to_default_config - 0x4038b104 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038b104 rtc_clk_cpu_set_to_default_config - .text.rtc_clk_cpu_freq_set_xtal - 0x4038b118 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038b118 rtc_clk_cpu_freq_set_xtal - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x4038b12a 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_8m - 0x4038b19a 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config - 0x4038b1da 0x92 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038b1da rtc_clk_cpu_freq_set_config - .text.rtc_dig_clk8m_disable - 0x4038b26c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4038b26c rtc_dig_clk8m_disable - *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) - .text.rtc_sleep_pu - 0x4038b28c 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - 0x4038b28c rtc_sleep_pu - *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) - .text.rtc_clk_cal_32k_valid - 0x4038b3c4 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_clk_cal_internal - 0x4038b45c 0x21e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x4038b45c rtc_clk_cal_internal - .text.rtc_clk_cal - 0x4038b67a 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x4038b67a rtc_clk_cal - .text.rtc_time_us_to_slowclk - 0x4038b71a 0xae esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x4038b71a rtc_time_us_to_slowclk - .text.rtc_time_get - 0x4038b7c8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x4038b7c8 rtc_time_get - .text.rtc_clk_freq_cal - 0x4038b7e0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x4038b7e0 rtc_clk_freq_cal - .text.enable_timer_group0_for_calibration - 0x4038b800 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) - *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) - .text.systimer_ticks_to_us - 0x4038b864 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x4038b864 systimer_ticks_to_us - .text.systimer_us_to_ticks - 0x4038b870 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x4038b870 systimer_us_to_ticks - *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) - .text.esp_cache_get_alignment - 0x4038b87c 0x56 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - 0x4038b87c esp_cache_get_alignment - *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - .text.prvCheckItemAvail - 0x4038b8d2 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeNoSplit - 0x4038b918 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeAllowSplit - 0x4038b956 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeByteBuf - 0x4038b9a0 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReturnItemByteBuf - 0x4038b9be 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetItemByteBuf - 0x4038ba24 0x102 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCheckItemFitsByteBuffer - 0x4038bb26 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReturnItemDefault - 0x4038bb8c 0x192 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetItemDefault - 0x4038bd1e 0x1a2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvAcquireItemNoSplit - 0x4038bec0 0xda esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvSendItemDoneNoSplit - 0x4038bf9a 0x178 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCheckItemFitsDefault - 0x4038c112 0xb8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvInitializeNewRingbuffer - 0x4038c1ca 0x11c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemByteBuf - 0x4038c2e6 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemAllowSplit - 0x4038c394 0x148 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemNoSplit - 0x4038c4dc 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReceiveGeneric - 0x4038c518 0x134 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReceiveGenericFromISR - 0x4038c64c 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvSendAcquireGeneric - 0x4038c732 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreate - 0x4038c818 0xaa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038c818 xRingbufferCreate - .text.xRingbufferCreateStatic - 0x4038c8c2 0xba esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038c8c2 xRingbufferCreateStatic - .text.xRingbufferSend - 0x4038c97c 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038c97c xRingbufferSend - .text.xRingbufferSendFromISR - 0x4038c9ec 0xfe esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038c9ec xRingbufferSendFromISR - .text.xRingbufferReceive - 0x4038caea 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038caea xRingbufferReceive - .text.xRingbufferReceiveFromISR - 0x4038cb34 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cb34 xRingbufferReceiveFromISR - .text.xRingbufferReceiveUpTo - 0x4038cb7c 0x76 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cb7c xRingbufferReceiveUpTo - .text.vRingbufferReturnItem - 0x4038cbf2 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cbf2 vRingbufferReturnItem - .text.vRingbufferReturnItemFromISR - 0x4038cc74 0x8c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cc74 vRingbufferReturnItemFromISR - .text.vRingbufferDelete - 0x4038cd00 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cd00 vRingbufferDelete - .text.xRingbufferGetMaxItemSize - 0x4038cd46 0x2e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cd46 xRingbufferGetMaxItemSize - .text.xRingbufferGetCurFreeSize - 0x4038cd74 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cd74 xRingbufferGetCurFreeSize - .text.vRingbufferGetInfo - 0x4038cdb8 0x96 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cdb8 vRingbufferGetInfo - .text.xRingbufferGetStaticBuffer - 0x4038ce4e 0x42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038ce4e xRingbufferGetStaticBuffer - .text.xRingbufferCreateWithCaps - 0x4038ce90 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038ce90 xRingbufferCreateWithCaps - .text.vRingbufferDeleteWithCaps - 0x4038cef4 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x4038cef4 vRingbufferDeleteWithCaps - *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) - .text.esp_error_check_failed_print - 0x4038cf48 0x92 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .text._esp_error_check_failed - 0x4038cfda 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - 0x4038cfda _esp_error_check_failed - *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) - .text.esp_system_abort - 0x4038cffa 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - 0x4038cffa esp_system_abort - *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) - *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) - .text.__ubsan_include - 0x4038d002 0x2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - 0x4038d002 __ubsan_include - *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) - .text.coex_pti_get_wrapper - 0x4038d004 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) - .text.wifi_sta_receive - 0x4038d016 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) - .text.wifi_transmit_wrap - 0x4038d038 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text.*) - .text.prvGetDisinheritPriorityAfterTimeout - 0x4038d050 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvIsQueueFull - 0x4038d060 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvIsQueueEmpty - 0x4038d088 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataToQueue - 0x4038d0ac 0x9a esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataFromQueue - 0x4038d146 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvNotifyQueueSetContainer - 0x4038d172 0xde esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvUnlockQueue - 0x4038d250 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericReset - 0x4038d2e2 0xc8 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d2e2 xQueueGenericReset - .text.prvInitialiseNewQueue - 0x4038d3aa 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericCreateStatic - 0x4038d3d2 0x9c esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d3d2 xQueueGenericCreateStatic - .text.xQueueGenericGetStaticBuffers - 0x4038d46e 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d46e xQueueGenericGetStaticBuffers - .text.xQueueGenericCreate - 0x4038d4d4 0x7e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d4d4 xQueueGenericCreate - .text.xQueueGetMutexHolder - 0x4038d552 0x46 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d552 xQueueGetMutexHolder - .text.xQueueCreateCountingSemaphoreStatic - 0x4038d598 0x46 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d598 xQueueCreateCountingSemaphoreStatic - .text.xQueueCreateCountingSemaphore - 0x4038d5de 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d5de xQueueCreateCountingSemaphore - .text.xQueueGenericSend - 0x4038d620 0x1be esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d620 xQueueGenericSend - .text.prvInitialiseMutex - 0x4038d7de 0x48 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateMutex - 0x4038d826 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d826 xQueueCreateMutex - .text.xQueueCreateMutexStatic - 0x4038d846 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d846 xQueueCreateMutexStatic - .text.xQueueGiveMutexRecursive - 0x4038d86a 0x5e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d86a xQueueGiveMutexRecursive - .text.xQueueGenericSendFromISR - 0x4038d8c8 0x174 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038d8c8 xQueueGenericSendFromISR - .text.xQueueGiveFromISR - 0x4038da3c 0x142 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038da3c xQueueGiveFromISR - .text.xQueueReceive - 0x4038db7e 0x16a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038db7e xQueueReceive - .text.xQueueSemaphoreTake - 0x4038dce8 0x18a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038dce8 xQueueSemaphoreTake - .text.xQueueTakeMutexRecursive - 0x4038de72 0x62 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038de72 xQueueTakeMutexRecursive - .text.xQueueReceiveFromISR - 0x4038ded4 0x110 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038ded4 xQueueReceiveFromISR - .text.uxQueueMessagesWaiting - 0x4038dfe4 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038dfe4 uxQueueMessagesWaiting - .text.uxQueueSpacesAvailable - 0x4038e020 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038e020 uxQueueSpacesAvailable - .text.uxQueueMessagesWaitingFromISR - 0x4038e062 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038e062 uxQueueMessagesWaitingFromISR - .text.vQueueDelete - 0x4038e092 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038e092 vQueueDelete - .text.xQueueIsQueueEmptyFromISR - 0x4038e0ca 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038e0ca xQueueIsQueueEmptyFromISR - .text.vQueueWaitForMessageRestricted - 0x4038e102 0x60 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4038e102 vQueueWaitForMessageRestricted - .text.vPortTaskWrapper - 0x4038e162 0x52 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortTLSPointersDelCb - 0x4038e1b4 0xa4 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.pxPortInitialiseStack - 0x4038e258 0xe0 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e258 pxPortInitialiseStack - .text.xPortInIsrContext - 0x4038e338 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e338 xPortInIsrContext - .text.vPortAssertIfInISR - 0x4038e342 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e342 vPortAssertIfInISR - .text.xPortSetInterruptMaskFromISR - 0x4038e372 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e372 xPortSetInterruptMaskFromISR - .text.vPortClearInterruptMaskFromISR - 0x4038e38c 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e38c vPortClearInterruptMaskFromISR - .text.vPortEnterCritical - 0x4038e39c 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e39c vPortEnterCritical - .text.vPortExitCritical - 0x4038e3cc 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e3cc vPortExitCritical - .text.vPortYieldFromISR - 0x4038e42c 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e42c vPortYieldFromISR - .text.vPortYield - 0x4038e440 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e440 vPortYield - .text.xPortStartScheduler - 0x4038e47c 0x76 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e47c xPortStartScheduler - .text.vApplicationStackOverflowHook - 0x4038e4f2 0x56 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e4f2 vApplicationStackOverflowHook - .text.vPortTCBPreDeleteHook - 0x4038e548 0xe esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4038e548 vPortTCBPreDeleteHook - .text.pvPortMalloc - 0x4038e556 0x14 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4038e556 pvPortMalloc - .text.vPortFree - 0x4038e56a 0xe esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4038e56a vPortFree - .text.xPortCheckValidTCBMem - 0x4038e578 0x36 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4038e578 xPortCheckValidTCBMem - .text.xPortcheckValidStackMem - 0x4038e5ae 0x36 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4038e5ae xPortcheckValidStackMem - .text.vApplicationGetIdleTaskMemory - 0x4038e5e4 0x84 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x4038e5e4 vApplicationGetIdleTaskMemory - .text.vApplicationGetTimerTaskMemory - 0x4038e668 0x88 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x4038e668 vApplicationGetTimerTaskMemory - .text.vSystimerSetup - 0x4038e6f0 0x15c esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x4038e6f0 vSystimerSetup - .text.vPortSetupTimer - 0x4038e84c 0xe esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x4038e84c vPortSetupTimer - .text.xPortSysTickHandler - 0x4038e85a 0x32 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x4038e85a xPortSysTickHandler - .text.SysTickIsrHandler - 0x4038e88c 0x74 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x4038e88c SysTickIsrHandler - .text.vListInitialise - 0x4038e900 0x14 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4038e900 vListInitialise - .text.vListInitialiseItem - 0x4038e914 0x6 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4038e914 vListInitialiseItem - .text.vListInsertEnd - 0x4038e91a 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4038e91a vListInsertEnd - .text.vListInsert - 0x4038e932 0x32 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4038e932 vListInsert - .text.uxListRemove - 0x4038e964 0x28 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4038e964 uxListRemove - .text.prvGetNextExpireTime - 0x4038e98c 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvInsertTimerInActiveList - 0x4038e9a8 0x50 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvReloadTimer - 0x4038e9f8 0x38 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvProcessExpiredTimer - 0x4038ea30 0x50 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvSwitchTimerLists - 0x4038ea80 0x36 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvSampleTimeNow - 0x4038eab6 0x3e esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvProcessTimerOrBlockTask - 0x4038eaf4 0x70 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvProcessReceivedCommands - 0x4038eb64 0x13e esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvTimerTask - 0x4038eca2 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvCheckForValidListAndQueue - 0x4038ecb8 0x78 esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.prvInitialiseNewTimer - 0x4038ed30 0x7a esp-idf/freertos/libfreertos.a(timers.c.obj) - .text.xTimerCreateTimerTask - 0x4038edaa 0x76 esp-idf/freertos/libfreertos.a(timers.c.obj) - 0x4038edaa xTimerCreateTimerTask - .text.xTimerCreate - 0x4038ee20 0x4e esp-idf/freertos/libfreertos.a(timers.c.obj) - 0x4038ee20 xTimerCreate - .text.xTimerGenericCommand - 0x4038ee6e 0x8c esp-idf/freertos/libfreertos.a(timers.c.obj) - 0x4038ee6e xTimerGenericCommand - .text.pvTimerGetTimerID - 0x4038eefa 0x3e esp-idf/freertos/libfreertos.a(timers.c.obj) - 0x4038eefa pvTimerGetTimerID - .text.prvTestWaitCondition - 0x4038ef38 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .text.xEventGroupCreate - 0x4038ef54 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - 0x4038ef54 xEventGroupCreate - .text.xEventGroupWaitBits - 0x4038efa4 0x164 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - 0x4038efa4 xEventGroupWaitBits - .text.xEventGroupClearBits - 0x4038f108 0x7c esp-idf/freertos/libfreertos.a(event_groups.c.obj) - 0x4038f108 xEventGroupClearBits - .text.xEventGroupSetBits - 0x4038f184 0xd2 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - 0x4038f184 xEventGroupSetBits - .text.vEventGroupDelete - 0x4038f256 0x82 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - 0x4038f256 vEventGroupDelete - .text 0x4038f2d8 0xd8 esp-idf/freertos/libfreertos.a(portasm.S.obj) - 0x4038f2e2 rtos_int_enter - 0x4038f344 rtos_int_exit - *libfreertos.a:tasks.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) - .text.prvResetNextTaskUnblockTime - 0x4038f3b0 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvDeleteTCB - 0x4038f3de 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvCheckTasksWaitingTermination - 0x4038f446 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvAddCurrentTaskToDelayedList - 0x4038f49e 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvIdleTask - 0x4038f590 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvInitialiseNewTask - 0x4038f5a2 0xde esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvInitialiseTaskLists - 0x4038f680 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvAddNewTaskToReadyList - 0x4038f722 0xfc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskDelete - 0x4038f81e 0x104 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038f81e vTaskDelete - .text.eTaskGetState - 0x4038f922 0xba esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038f922 eTaskGetState - .text.uxTaskPriorityGet - 0x4038f9dc 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038f9dc uxTaskPriorityGet - .text.vTaskSuspendAll - 0x4038fa04 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa04 vTaskSuspendAll - .text.xTaskGetTickCount - 0x4038fa14 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa14 xTaskGetTickCount - .text.xTaskGetTickCountFromISR - 0x4038fa1e 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa1e xTaskGetTickCountFromISR - .text.uxTaskGetNumberOfTasks - 0x4038fa28 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa28 uxTaskGetNumberOfTasks - .text.pcTaskGetName - 0x4038fa32 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa32 pcTaskGetName - .text.xTaskGetStaticBuffers - 0x4038fa6e 0x86 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fa6e xTaskGetStaticBuffers - .text.xTaskIncrementTick - 0x4038faf4 0x1ce esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038faf4 xTaskIncrementTick - .text.xTaskResumeAll - 0x4038fcc2 0x184 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fcc2 xTaskResumeAll - .text.vTaskDelay - 0x4038fe46 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fe46 vTaskDelay - .text.vTaskSwitchContext - 0x4038fe98 0x126 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038fe98 vTaskSwitchContext - .text.vTaskSuspend - 0x4038ffbe 0x11a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4038ffbe vTaskSuspend - .text.vTaskPlaceOnEventList - 0x403900d8 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403900d8 vTaskPlaceOnEventList - .text.vTaskPlaceOnUnorderedEventList - 0x40390122 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390122 vTaskPlaceOnUnorderedEventList - .text.vTaskPlaceOnEventListRestricted - 0x403901c4 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403901c4 vTaskPlaceOnEventListRestricted - .text.xTaskRemoveFromEventList - 0x4039023a 0x11c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4039023a xTaskRemoveFromEventList - .text.vTaskRemoveFromUnorderedEventList - 0x40390356 0x11a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390356 vTaskRemoveFromUnorderedEventList - .text.vTaskInternalSetTimeOutState - 0x40390470 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390470 vTaskInternalSetTimeOutState - .text.xTaskCheckForTimeOut - 0x40390486 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390486 xTaskCheckForTimeOut - .text.vTaskMissedYield - 0x4039055a 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4039055a vTaskMissedYield - .text.pvTaskGetThreadLocalStoragePointer - 0x40390566 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390566 pvTaskGetThreadLocalStoragePointer - .text.xTaskGetCurrentTaskHandle - 0x40390586 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390586 xTaskGetCurrentTaskHandle - .text.xTaskGetSchedulerState - 0x40390590 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390590 xTaskGetSchedulerState - .text.xTaskPriorityInherit - 0x403905b0 0x102 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403905b0 xTaskPriorityInherit - .text.xTaskPriorityDisinherit - 0x403906b2 0x104 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403906b2 xTaskPriorityDisinherit - .text.vTaskPriorityDisinheritAfterTimeout - 0x403907b6 0x120 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403907b6 vTaskPriorityDisinheritAfterTimeout - .text.uxTaskResetEventItemValue - 0x403908d6 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403908d6 uxTaskResetEventItemValue - .text.pvTaskIncrementMutexHeldCount - 0x403908f2 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403908f2 pvTaskIncrementMutexHeldCount - .text.ulTaskGenericNotifyTake - 0x40390914 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390914 ulTaskGenericNotifyTake - .text.vTaskGenericNotifyGiveFromISR - 0x403909ec 0x186 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x403909ec vTaskGenericNotifyGiveFromISR - .text.xTaskCreatePinnedToCore - 0x40390b72 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390b72 xTaskCreatePinnedToCore - .text.xTaskCreateStaticPinnedToCore - 0x40390c30 0x126 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390c30 xTaskCreateStaticPinnedToCore - .text.prvCreateIdleTasks - 0x40390d56 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskStartScheduler - 0x40390db6 0x72 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390db6 vTaskStartScheduler - .text.xTaskGetCoreID - 0x40390e28 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390e28 xTaskGetCoreID - .text.xTaskGetIdleTaskHandleForCore - 0x40390e2c 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390e2c xTaskGetIdleTaskHandleForCore - .text.xTaskGetCurrentTaskHandleForCore - 0x40390e88 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390e88 xTaskGetCurrentTaskHandleForCore - .text.vTaskSetThreadLocalStoragePointerAndDelCallback - 0x40390ec2 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390ec2 vTaskSetThreadLocalStoragePointerAndDelCallback - .text.__getreent - 0x40390ee8 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390ee8 __getreent - .text.vTaskGetSnapshot - 0x40390f06 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40390f06 vTaskGetSnapshot - *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) - *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) - *libgcov.a:(.literal .literal.* .text .text.*) - *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) - .text.s_cache_hal_init_ctx - 0x40390f38 0x6e esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40390f38 s_cache_hal_init_ctx - .text.cache_hal_init - 0x40390fa6 0x3e esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40390fa6 cache_hal_init - .text.cache_hal_suspend - 0x40390fe4 0x36 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40390fe4 cache_hal_suspend - .text.cache_hal_resume - 0x4039101a 0x46 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4039101a cache_hal_resume - .text.cache_hal_is_cache_enabled - 0x40391060 0xa esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40391060 cache_hal_is_cache_enabled - .text.cache_hal_vaddr_to_cache_level_id - 0x4039106a 0x6c esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4039106a cache_hal_vaddr_to_cache_level_id - .text.cache_hal_invalidate_addr - 0x403910d6 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x403910d6 cache_hal_invalidate_addr - .text.cache_hal_get_cache_line_size - 0x40391110 0x42 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40391110 cache_hal_get_cache_line_size - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) - .text.gdma_ahb_hal_append - 0x40391152 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x40391152 gdma_ahb_hal_append - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) - .text.gdma_ahb_hal_clear_intr - 0x40391190 0x26 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x40391190 gdma_ahb_hal_clear_intr - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) - .text.gdma_ahb_hal_get_eof_desc_addr - 0x403911b6 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x403911b6 gdma_ahb_hal_get_eof_desc_addr - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) - .text.gdma_ahb_hal_read_intr_status - 0x403911f4 0x46 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x403911f4 gdma_ahb_hal_read_intr_status - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) - .text.gdma_ahb_hal_reset - 0x4039123a 0x4e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4039123a gdma_ahb_hal_reset - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) - .text.gdma_ahb_hal_start_with_desc - 0x40391288 0x8a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x40391288 gdma_ahb_hal_start_with_desc - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) - .text.gdma_ahb_hal_stop - 0x40391312 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x40391312 gdma_ahb_hal_stop - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) - .text.gdma_hal_clear_intr - 0x40391350 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x40391350 gdma_hal_clear_intr - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) - .text.gdma_hal_start_with_desc - 0x4039135e 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4039135e gdma_hal_start_with_desc - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) - *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) - *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) - .text.mmu_ll_check_entry_valid - 0x4039136c 0x46 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_ll_find_entry_id_based_on_map_value - 0x403913b2 0x7e esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_ll_entry_id_to_paddr_base - 0x40391430 0x46 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_pages_to_bytes - 0x40391476 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40391476 mmu_hal_pages_to_bytes - .text.mmu_hal_paddr_to_vaddr - 0x4039147c 0x8a esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x4039147c mmu_hal_paddr_to_vaddr - .text.mmu_hal_check_valid_ext_vaddr_region - 0x40391506 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40391506 mmu_hal_check_valid_ext_vaddr_region - .text.mmu_hal_map_region - 0x40391566 0x14e esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40391566 mmu_hal_map_region - .text.mmu_hal_unmap_region - 0x403916b4 0xa8 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x403916b4 mmu_hal_unmap_region - .text.mmu_hal_vaddr_to_paddr - 0x4039175c 0x8c esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x4039175c mmu_hal_vaddr_to_paddr - *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) - .text.spi_flash_encrypt_ll_plaintext_save - 0x403917e8 0x44 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .text.spi_flash_encryption_hal_enable - 0x4039182c 0x16 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x4039182c spi_flash_encryption_hal_enable - .text.spi_flash_encryption_hal_disable - 0x40391842 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40391842 spi_flash_encryption_hal_disable - .text.spi_flash_encryption_hal_prepare - 0x4039184e 0x22 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x4039184e spi_flash_encryption_hal_prepare - .text.spi_flash_encryption_hal_done - 0x40391870 0x22 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40391870 spi_flash_encryption_hal_done - .text.spi_flash_encryption_hal_destroy - 0x40391892 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40391892 spi_flash_encryption_hal_destroy - .text.spi_flash_encryption_hal_check - 0x4039189c 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x4039189c spi_flash_encryption_hal_check - *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - .text.gpspi_flash_ll_set_read_mode - 0x403918a6 0xac esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text.gpspi_flash_ll_set_buffer_data - 0x40391952 0x66 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text.gpspi_flash_ll_get_buffer_data - 0x403919b8 0x80 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text.spi_flash_hal_gpspi_poll_cmd_done - 0x40391a38 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391a38 spi_flash_hal_gpspi_poll_cmd_done - .text.spi_flash_hal_gpspi_device_config - 0x40391a44 0xd2 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391a44 spi_flash_hal_gpspi_device_config - .text.spi_flash_hal_gpspi_configure_host_io_mode - 0x40391b16 0x124 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391b16 spi_flash_hal_gpspi_configure_host_io_mode - .text.spi_flash_hal_gpspi_common_command - 0x40391c3a 0x148 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391c3a spi_flash_hal_gpspi_common_command - .text.spi_flash_hal_gpspi_read - 0x40391d82 0xb4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391d82 spi_flash_hal_gpspi_read - .text.spi_flash_hal_gpspi_supports_direct_write - 0x40391e36 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391e36 spi_flash_hal_gpspi_supports_direct_write - .text.spi_flash_hal_gpspi_supports_direct_read - 0x40391e3a 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391e3a spi_flash_hal_gpspi_supports_direct_read - .text.spi_flash_hal_gpspi_check_status - 0x40391e3e 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40391e3e spi_flash_hal_gpspi_check_status - *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - .text.spimem_flash_ll_set_read_mode - 0x40391e4c 0x86 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spimem_flash_ll_get_source_freq_mhz - 0x40391ed2 0x3a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spimem_flash_ll_program_page - 0x40391f0c 0x80 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spi_flash_hal_poll_cmd_done - 0x40391f8c 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40391f8c spi_flash_hal_poll_cmd_done - .text.spi_flash_hal_configure_host_io_mode - 0x40391f94 0x144 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40391f94 spi_flash_hal_configure_host_io_mode - .text.spi_flash_hal_common_command - 0x403920d8 0x1dc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403920d8 spi_flash_hal_common_command - .text.spi_flash_hal_read - 0x403922b4 0xe6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403922b4 spi_flash_hal_read - .text.spi_flash_hal_erase_chip - 0x4039239a 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x4039239a spi_flash_hal_erase_chip - .text.spi_flash_hal_erase_sector - 0x403923bc 0x4a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403923bc spi_flash_hal_erase_sector - .text.spi_flash_hal_erase_block - 0x40392406 0x48 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40392406 spi_flash_hal_erase_block - .text.spi_flash_hal_program_page - 0x4039244e 0x4e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x4039244e spi_flash_hal_program_page - .text.spi_flash_hal_set_write_protect - 0x4039249c 0x2c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x4039249c spi_flash_hal_set_write_protect - .text.spi_flash_hal_check_status - 0x403924c8 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403924c8 spi_flash_hal_check_status - .text.spi_flash_hal_setup_read_suspend - 0x403924de 0xda esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403924de spi_flash_hal_setup_read_suspend - .text.spi_flash_hal_setup_auto_suspend_mode - 0x403925b8 0x1a4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403925b8 spi_flash_hal_setup_auto_suspend_mode - .text.spi_flash_hal_setup_auto_resume_mode - 0x4039275c 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x4039275c spi_flash_hal_setup_auto_resume_mode - .text.spi_flash_hal_disable_auto_suspend_mode - 0x40392772 0x90 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40392772 spi_flash_hal_disable_auto_suspend_mode - .text.spi_flash_hal_disable_auto_resume_mode - 0x40392802 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40392802 spi_flash_hal_disable_auto_resume_mode - .text.spi_flash_hal_device_config - 0x40392818 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40392818 spi_flash_hal_device_config - .text.spi_flash_hal_resume - 0x403928c0 0x1e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403928c0 spi_flash_hal_resume - .text.spi_flash_hal_suspend - 0x403928de 0x1e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x403928de spi_flash_hal_suspend - *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) - .text.systimer_hal_init - 0x403928fc 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x403928fc systimer_hal_init - .text.systimer_hal_set_tick_rate_ops - 0x40392912 0xa esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392912 systimer_hal_set_tick_rate_ops - .text.systimer_hal_get_counter_value - 0x4039291c 0x4e esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x4039291c systimer_hal_get_counter_value - .text.systimer_hal_set_alarm_target - 0x4039296a 0x68 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x4039296a systimer_hal_set_alarm_target - .text.systimer_hal_set_alarm_period - 0x403929d2 0x9c esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x403929d2 systimer_hal_set_alarm_period - .text.systimer_hal_enable_alarm_int - 0x40392a6e 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392a6e systimer_hal_enable_alarm_int - .text.systimer_hal_enable_counter - 0x40392a7e 0x14 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392a7e systimer_hal_enable_counter - .text.systimer_hal_select_alarm_mode - 0x40392a92 0x34 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392a92 systimer_hal_select_alarm_mode - .text.systimer_hal_connect_alarm_counter - 0x40392ac6 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392ac6 systimer_hal_connect_alarm_counter - .text.systimer_hal_counter_can_stall_by_cpu - 0x40392ae0 0x3a esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x40392ae0 systimer_hal_counter_can_stall_by_cpu - *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) - *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) - .text.wdt_hal_init - 0x40392b1a 0x232 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392b1a wdt_hal_init - .text.wdt_hal_config_stage - 0x40392d4c 0x14a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392d4c wdt_hal_config_stage - .text.wdt_hal_write_protect_disable - 0x40392e96 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392e96 wdt_hal_write_protect_disable - .text.wdt_hal_write_protect_enable - 0x40392eb8 0x14 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392eb8 wdt_hal_write_protect_enable - .text.wdt_hal_enable - 0x40392ecc 0x36 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392ecc wdt_hal_enable - .text.wdt_hal_disable - 0x40392f02 0x28 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392f02 wdt_hal_disable - .text.wdt_hal_handle_intr - 0x40392f2a 0x32 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392f2a wdt_hal_handle_intr - .text.wdt_hal_feed - 0x40392f5c 0x1e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392f5c wdt_hal_feed - .text.wdt_hal_set_flashboot_en - 0x40392f7a 0x3a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392f7a wdt_hal_set_flashboot_en - .text.wdt_hal_is_enabled - 0x40392fb4 0x16 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x40392fb4 wdt_hal_is_enabled - *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) - .text.assert_valid_block - 0x40392fca 0x44 esp-idf/heap/libheap.a(multi_heap.c.obj) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) - .text.multi_heap_aligned_alloc_impl_offs - 0x4039300e 0x72 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4039300e multi_heap_aligned_alloc_impl_offs - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) - .text.multi_heap_aligned_alloc_offs - 0x40393080 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40393080 multi_heap_aligned_alloc_offs - *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) - .text.multi_heap_free_impl - 0x4039308e 0x40 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4039308e multi_heap_aligned_free - 0x4039308e multi_heap_free - 0x4039308e multi_heap_free_impl - *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) - .text.multi_heap_get_allocated_size_impl - 0x403930ce 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x403930ce multi_heap_get_allocated_size - 0x403930ce multi_heap_get_allocated_size_impl - *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) - *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) - *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) - .text.multi_heap_internal_lock - 0x403930dc 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x403930dc multi_heap_internal_lock - *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) - .text.multi_heap_internal_unlock - 0x403930fa 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x403930fa multi_heap_internal_unlock - *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) - *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) - .text.multi_heap_malloc_impl - 0x40393118 0x54 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40393118 multi_heap_malloc - 0x40393118 multi_heap_malloc_impl - *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) - .text.multi_heap_realloc_impl - 0x4039316c 0x94 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4039316c multi_heap_realloc_impl - 0x4039316c multi_heap_realloc - *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) - .text.multi_heap_set_lock - 0x40393200 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40393200 multi_heap_set_lock - *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) - .text.tlsf_alloc_overhead - 0x40393204 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x40393204 tlsf_alloc_overhead - *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) - .text.tlsf_block_size - 0x40393208 0xe esp-idf/heap/libheap.a(tlsf.c.obj) - 0x40393208 tlsf_block_size - *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) - .text.tlsf_free - 0x40393216 0x5a0 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x40393216 tlsf_free - *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) - .text.tlsf_get_pool - 0x403937b6 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x403937b6 tlsf_get_pool - *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) - .text.tlsf_malloc - 0x403937cc 0x54a esp-idf/heap/libheap.a(tlsf.c.obj) - 0x403937cc tlsf_malloc - *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) - *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) - .text.tlsf_memalign_offs - 0x40393d16 0x8e8 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x40393d16 tlsf_memalign_offs - *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) - .text.tlsf_realloc - 0x403945fe 0x734 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x403945fe tlsf_realloc - *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) - .text.tlsf_size - 0x40394d32 0xa esp-idf/heap/libheap.a(tlsf.c.obj) - 0x40394d32 tlsf_size - *liblog.a:log_lock.*(.literal .literal.* .text .text.*) - .text.esp_log_impl_lock - 0x40394d3c 0x3c esp-idf/log/liblog.a(log_lock.c.obj) - 0x40394d3c esp_log_impl_lock - .text.esp_log_impl_lock_timeout - 0x40394d78 0x46 esp-idf/log/liblog.a(log_lock.c.obj) - 0x40394d78 esp_log_impl_lock_timeout - .text.esp_log_impl_unlock - 0x40394dbe 0x26 esp-idf/log/liblog.a(log_lock.c.obj) - 0x40394dbe esp_log_impl_unlock - *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - .text.esp_log_early_timestamp - 0x40394de4 0x26 esp-idf/log/liblog.a(log_timestamp.c.obj) - 0x40394de4 esp_log_early_timestamp - *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) - .text.esp_log_timestamp - 0x40394e0a 0x54 esp-idf/log/liblog.a(log_timestamp.c.obj) - 0x40394e0a esp_log_timestamp - *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) - .text.esp_log_write - 0x40394e5e 0x20 esp-idf/log/liblog.a(log_write.c.obj) - 0x40394e5e esp_log_write - *libnet80211.a:(.wifi0iram .wifi0iram.*) - .wifi0iram.20 0x40394e7e 0x516 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x40394e7e ieee80211_encap_esfbuf - .wifi0iram.10 0x40395394 0x294 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x40395394 ieee80211_output_process - .wifi0iram.55 0x40395628 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x40395628 wifi_softap_cur_max_ap_bss_num - *libnet80211.a:(.wifirxiram .wifirxiram.*) - .wifirxiram.50 - 0x40395634 0x568 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x40395634 sta_input - .wifirxiram.56 - 0x40395b9c 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x40395b9c sta_rx_cb - .wifirxiram.46 - 0x40395bae 0x276 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x40395bae ieee80211_ampdu_reorder - *libnet80211.a:(.wifislprxiram .wifislprxiram.*) - .wifislprxiram.113 - 0x40395e24 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x40395e24 sta_reset_beacon_timeout - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - .text.abort 0x40395e92 0x86 esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x40395e92 abort - *libnewlib.a:assert.*(.literal .literal.* .text .text.*) - .text.ra_to_str - 0x40395f18 0x2c esp-idf/newlib/libnewlib.a(assert.c.obj) - .text.__assert_func - 0x40395f44 0x128 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x40395f44 __assert_func - .text.newlib_include_assert_impl - 0x4039606c 0x2 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x4039606c newlib_include_assert_impl - *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - .text.malloc 0x4039606e 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4039606e malloc - 0x4039606e pvalloc - 0x4039606e valloc - .text.realloc 0x4039607c 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4039607c realloc - .text.free 0x4039608a 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4039608a cfree - 0x4039608a free - .text._malloc_r - 0x40396098 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x40396098 _malloc_r - .text._free_r 0x403960a8 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x403960a8 _free_r - .text._realloc_r - 0x403960b8 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x403960b8 _realloc_r - .text._calloc_r - 0x403960ca 0x3e esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x403960ca _calloc_r - .text.calloc 0x40396108 0x22 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x40396108 calloc - .text.newlib_include_heap_impl - 0x4039612a 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4039612a newlib_include_heap_impl - *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) - .text.__atomic_fetch_add_8 - 0x4039612c 0x4e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x4039612c __atomic_fetch_add_8 - .text.__atomic_fetch_sub_8 - 0x4039617a 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x4039617a __atomic_fetch_sub_8 - .text.__atomic_fetch_or_8 - 0x403961ca 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x403961ca __atomic_fetch_or_8 - .text.__atomic_load_8 - 0x4039620e 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x4039620e __atomic_load_8 - .text.__atomic_store_8 - 0x40396232 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x40396232 __atomic_store_8 - *libpp.a:(.wifi0iram .wifi0iram.*) - .wifi0iram.22 0x4039625e 0x164 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x4039625e pp_coex_tx_request - .wifi0iram.65 0x403963c2 0x15c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x403963c2 ppMapTxQueue - .wifi0iram.68 0x4039651e 0x14a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x4039651e ppProcTxSecFrame - .wifi0iram.41 0x40396668 0x2ee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x40396668 ppCalTxAMPDULength - .wifi0iram.23 0x40396956 0x162 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x40396956 ppProcessTxQ - .wifi0iram.74 0x40396ab8 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x40396ab8 ppProcessLifeTime - .wifi0iram.41 0x40396b68 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x40396b68 lmacMSDUAged - .wifi0iram.57 0x40396bc4 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x40396bc4 lmacAdjustTimestamp - .wifi0iram.58 0x40396c10 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x40396c10 lmacTxFrame - .wifi0iram.62 0x40396e00 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x40396e00 lmacTxDone - .wifi0iram.25 0x40396ef2 0x312 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x40396ef2 lmacEndFrameExchangeSequence - .wifi0iram.8 0x40397204 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x40397204 rcUpdateTxDone - .wifi0iram.10 0x403972a8 0x2da /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x403972a8 rcUpdateTxDoneAmpdu2 - .wifi0iram.11 0x40397582 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x40397582 rcGetSched - .wifi0iram.4 0x40397666 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x40397666 hal_mac_tx_config_timeout - .wifi0iram.5 0x4039768c 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x4039768c hal_mac_tx_config_edca - .wifi0iram.6 0x403976de 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x403976de hal_mac_txq_enable - .wifi0iram.9 0x403976f8 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x403976f8 hal_random - .wifi0iram.20 0x40397700 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x40397700 hal_mac_deinit - .wifi0iram.3 0x40397740 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x40397740 hal_mac_tx_is_cbw40 - *libpp.a:(.wifiorslpiram .wifiorslpiram.*) - *libpp.a:(.wifirxiram .wifirxiram.*) - .wifirxiram.48 - 0x4039775e 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x4039775e pm_rx_data_process - .wifirxiram.49 - 0x403977ec 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403977ec pm_hmac_rx_data_process - .wifirxiram.26 - 0x403977ee 0x400 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x403977ee ppRxFragmentProc - .wifirxiram.28 - 0x40397bee 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x40397bee is_fragmented_pkt - .wifirxiram.9 0x40397c14 0x144 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x40397c14 esf_buf_recycle - .wifirxiram.2 0x40397d58 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x40397d58 hal_clear_rx_beacon_pti - .wifirxiram.3 0x40397d6a 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - 0x40397d6a hal_mac_rx_get_last_dscr - .wifirxiram.4 0x40397d84 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - 0x40397d84 hal_mac_rx_is_dscr_reload - .wifirxiram.5 0x40397d90 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - 0x40397d90 hal_mac_rx_set_dscr_reload - *libpp.a:(.wifislprxiram .wifislprxiram.*) - .wifislprxiram.25 - 0x40397da2 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40397da2 pm_get_tbtt_count - .wifislprxiram.26 - 0x40397e5c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40397e5c pm_save_tbtt_info - .wifislprxiram.28 - 0x40397e80 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40397e80 pm_beacon_monitor_tbtt_start - .wifislprxiram.29 - 0x40397fa0 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40397fa0 pm_beacon_monitor_tbtt_stop - .wifislprxiram.30 - 0x40397fb2 0x12a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40397fb2 pm_enable_beacon_monitor_timer - .wifislprxiram.31 - 0x403980dc 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403980dc pm_disable_beacon_monitor_timer - .wifislprxiram.32 - 0x40398120 0x15c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40398120 pm_dream - .wifislprxiram.33 - 0x4039827c 0x206 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x4039827c pm_sleep - .wifislprxiram.34 - 0x40398482 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40398482 pm_check_state - .wifislprxiram.39 - 0x403984d4 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403984d4 pm_keep_alive - .wifislprxiram.41 - 0x4039854e 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x4039854e pm_beacon_monitor_timeout_process - .wifislprxiram.40 - 0x403985d0 0x1d6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403985d0 pm_process_tim - .wifislprxiram.46 - 0x403987a6 0xb8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403987a6 pm_rx_beacon_process - .wifislprxiram.45 - 0x4039885e 0x168 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x4039885e pm_tbtt_process - .wifislprxiram.42 - 0x403989c6 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403989c6 pm_beacon_monitor_tbtt_timeout_process - .wifislprxiram.51 - 0x403989e6 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403989e6 pm_on_tsf_timer - .wifislprxiram.6 - 0x403989f4 0xde /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x403989f4 pm_scale_listen_interval - .wifislprxiram.10 - 0x40398ad2 0x24c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40398ad2 pm_parse_beacon - .wifislprxiram.53 - 0x40398d1e 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x40398d1e pm_on_beacon_rx - .wifislprxiram.12 - 0x40398e60 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x40398e60 ic_mac_deinit - .wifislprxiram.29 - 0x40398e70 0x108 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x40398e70 ppRxPkt - .wifislprxiram.7 - 0x40398f78 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x40398f78 esf_buf_alloc - .wifislprxiram.4 - 0x40399100 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - 0x40399100 pm_coex_schm_overall_period_get - .wifislprxiram.5 - 0x40399138 0x9a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - 0x40399138 pm_coex_pwr_update - .wifislprxiram.24 - 0x403991d2 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403991d2 wDev_record_ftm_data - .wifislprxiram.48 - 0x403991f4 0x134 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x403991f4 wDev_AppendRxBlocks - .wifislprxiram.19 - 0x40399328 0x2ec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x40399328 wDev_IndicateFrame - .wifislprxiram.25 - 0x40399614 0x36e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x40399614 wDev_ProcessRxSucData - .wifislprxiram.12 - 0x40399982 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x40399982 hal_mac_rx_read_rxdscrnext - .wifislprxiram.13 - 0x4039998c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x4039998c hal_mac_rx_set_base - *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item .text.intr_handler_get_arg) - .text.intr_get_item - 0x40399996 0x38 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text._global_interrupt_handler - 0x403999ce 0x3c esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x403999ce _global_interrupt_handler - *libriscv.a:vectors.*(.literal .literal.* .text .text.*) - *librtc.a:(.literal .literal.* .text .text.*) - *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) - *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) - .text.spi_flash_needs_reset_check - 0x40399a0a 0x22 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x40399a0a spi_flash_needs_reset_check - .text.spi_flash_set_erasing_flag - 0x40399a2c 0xa esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x40399a2c spi_flash_set_erasing_flag - .text.spi_flash_brownout_need_reset - 0x40399a36 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x40399a36 spi_flash_brownout_need_reset - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - .text.memspi_host_read_status_hs - 0x40399a56 0x40 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399a56 memspi_host_read_status_hs - .text.memspi_host_erase_chip - 0x40399a96 0x28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399a96 memspi_host_erase_chip - .text.memspi_host_set_write_protect - 0x40399abe 0x2e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399abe memspi_host_set_write_protect - .text.memspi_host_write_data_slicer - 0x40399aec 0x42 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399aec memspi_host_write_data_slicer - .text.memspi_host_read_data_slicer - 0x40399b2e 0x36 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399b2e memspi_host_read_data_slicer - .text.memspi_host_read_id_hs - 0x40399b64 0x8e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399b64 memspi_host_read_id_hs - .text.memspi_host_flush_cache - 0x40399bf2 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399bf2 memspi_host_flush_cache - .text.memspi_host_erase_sector - 0x40399c18 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399c18 memspi_host_erase_sector - .text.memspi_host_erase_block - 0x40399c70 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399c70 memspi_host_erase_block - .text.memspi_host_program_page - 0x40399cc8 0x62 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399cc8 memspi_host_program_page - .text.memspi_host_init_pointers - 0x40399d2a 0x52 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x40399d2a memspi_host_init_pointers - *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_boya_probe - 0x40399d7c 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x40399d7c spi_flash_chip_boya_probe - .text.spi_flash_chip_boya_get_caps - 0x40399da6 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x40399da6 spi_flash_chip_boya_get_caps - *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_gd_get_caps - 0x40399daa 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399daa spi_flash_chip_gd_get_caps - .text.spi_flash_chip_gd_detect_size - 0x40399dc0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399dc0 spi_flash_chip_gd_detect_size - .text.spi_flash_chip_gd_probe - 0x40399df4 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399df4 spi_flash_chip_gd_probe - .text.spi_flash_chip_gd_suspend_cmd_conf - 0x40399e28 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399e28 spi_flash_chip_gd_suspend_cmd_conf - .text.spi_flash_chip_gd_set_io_mode - 0x40399e5e 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399e5e spi_flash_chip_gd_set_io_mode - .text.spi_flash_chip_gd_get_io_mode - 0x40399eb2 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x40399eb2 spi_flash_chip_gd_get_io_mode - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_generic_detect_size - 0x40399ed2 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x40399ed2 spi_flash_chip_generic_detect_size - .text.spi_flash_chip_generic_probe - 0x40399f12 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x40399f12 spi_flash_chip_generic_probe - .text.spi_flash_chip_generic_reset - 0x40399f16 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x40399f16 spi_flash_chip_generic_reset - .text.spi_flash_chip_generic_erase_chip - 0x40399f76 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x40399f76 spi_flash_chip_generic_erase_chip - .text.spi_flash_chip_generic_erase_sector - 0x40399ff8 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x40399ff8 spi_flash_chip_generic_erase_sector - .text.spi_flash_chip_generic_erase_block - 0x4039a082 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a082 spi_flash_chip_generic_erase_block - .text.spi_flash_chip_generic_page_program - 0x4039a10c 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a10c spi_flash_chip_generic_page_program - .text.spi_flash_chip_generic_set_write_protect - 0x4039a178 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a178 spi_flash_chip_generic_set_write_protect - .text.spi_flash_chip_generic_read_reg - 0x4039a1c6 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a1c6 spi_flash_chip_generic_read_reg - .text.spi_flash_chip_generic_wait_idle - 0x4039a1da 0xae esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a1da spi_flash_chip_generic_wait_idle - .text.spi_flash_chip_generic_config_host_io_mode - 0x4039a288 0x194 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a288 spi_flash_chip_generic_config_host_io_mode - .text.spi_flash_chip_generic_write_encrypted - 0x4039a41c 0x102 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a41c spi_flash_chip_generic_write_encrypted - .text.spi_flash_chip_generic_get_caps - 0x4039a51e 0x92 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a51e spi_flash_chip_generic_get_caps - .text.spi_flash_common_read_qe_sr - 0x4039a5b0 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_write_qe_sr - 0x4039a5ec 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_read_status_16b_rdsr_rdsr2 - 0x4039a61e 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a61e spi_flash_common_read_status_16b_rdsr_rdsr2 - .text.spi_flash_common_write_status_16b_wrsr - 0x4039a662 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a662 spi_flash_common_write_status_16b_wrsr - .text.spi_flash_chip_generic_suspend_cmd_conf - 0x4039a676 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a676 spi_flash_chip_generic_suspend_cmd_conf - .text.spi_flash_chip_generic_read - 0x4039a6ac 0xe4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a6ac spi_flash_chip_generic_read - .text.spi_flash_chip_generic_write - 0x4039a790 0xba esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a790 spi_flash_chip_generic_write - .text.spi_flash_chip_generic_get_write_protect - 0x4039a84a 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a84a spi_flash_chip_generic_get_write_protect - .text.spi_flash_chip_generic_yield - 0x4039a894 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a894 spi_flash_chip_generic_yield - .text.spi_flash_chip_generic_read_unique_id - 0x4039a8da 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a8da spi_flash_chip_generic_read_unique_id - .text.spi_flash_chip_generic_read_unique_id_none - 0x4039a98a 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a98a spi_flash_chip_generic_read_unique_id_none - .text.spi_flash_common_read_status_8b_rdsr2 - 0x4039a990 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a990 spi_flash_common_read_status_8b_rdsr2 - .text.spi_flash_chip_generic_get_io_mode - 0x4039a9a6 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a9a6 spi_flash_chip_generic_get_io_mode - .text.spi_flash_common_read_status_8b_rdsr - 0x4039a9c6 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a9c6 spi_flash_common_read_status_8b_rdsr - .text.spi_flash_common_write_status_8b_wrsr - 0x4039a9da 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a9da spi_flash_common_write_status_8b_wrsr - .text.spi_flash_common_write_status_8b_wrsr2 - 0x4039a9ee 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039a9ee spi_flash_common_write_status_8b_wrsr2 - .text.spi_flash_common_set_io_mode - 0x4039aa04 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039aa04 spi_flash_common_set_io_mode - .text.spi_flash_chip_generic_set_io_mode - 0x4039aaac 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4039aaac spi_flash_chip_generic_set_io_mode - *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_issi_probe - 0x4039aace 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x4039aace spi_flash_chip_issi_probe - .text.spi_flash_chip_issi_get_caps - 0x4039aaf8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x4039aaf8 spi_flash_chip_issi_get_caps - .text.spi_flash_chip_issi_set_io_mode - 0x4039aafc 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x4039aafc spi_flash_chip_issi_set_io_mode - .text.spi_flash_chip_issi_get_io_mode - 0x4039ab1e 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x4039ab1e spi_flash_chip_issi_get_io_mode - *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_mxic_probe - 0x4039ab3e 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x4039ab3e spi_flash_chip_mxic_probe - .text.spi_flash_chip_mxic_detect_size - 0x4039ab60 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x4039ab60 spi_flash_chip_mxic_detect_size - .text.spi_flash_chip_mxic_get_caps - 0x4039aba2 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x4039aba2 spi_flash_chip_mxic_get_caps - *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_th_probe - 0x4039aba6 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x4039aba6 spi_flash_chip_th_probe - .text.spi_flash_chip_th_get_caps - 0x4039abd0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x4039abd0 spi_flash_chip_th_get_caps - *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_winbond_probe - 0x4039abd4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039abd4 spi_flash_chip_winbond_probe - .text.spi_flash_chip_winbond_get_caps - 0x4039abe8 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039abe8 spi_flash_chip_winbond_get_caps - .text.spi_flash_command_winbond_program_4B - 0x4039abfe 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_page_program - 0x4039ac52 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039ac52 spi_flash_chip_winbond_page_program - .text.spi_flash_command_winbond_erase_sector_4B - 0x4039ac9c 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_erase_sector - 0x4039acee 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039acee spi_flash_chip_winbond_erase_sector - .text.spi_flash_command_erase_block_4B - 0x4039ad46 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_erase_block - 0x4039ad98 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039ad98 spi_flash_chip_winbond_erase_block - .text.spi_flash_chip_winbond_read - 0x4039adf0 0xf4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4039adf0 spi_flash_chip_winbond_read - *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) - -.dram0.dummy 0x3fc80000 0x1b000 - 0x3fc9b000 . = ((ORIGIN (dram0_0_seg) + _iram_end) - _iram_start) - *fill* 0x3fc80000 0x1b000 - -.dram0.data 0x3fc9b000 0x39b8 - 0x3fc9b000 _data_start = ABSOLUTE (.) - *(.gnu.linkonce.d.*) - *(.data1) - 0x3fc9b800 __global_pointer$ = (. + 0x800) - *(.sdata) - .sdata 0x3fc9b000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - 0x3fc9b000 environ - .sdata 0x3fc9b004 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - 0x3fc9b004 optopt - 0x3fc9b008 opterr - .sdata 0x3fc9b00c 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - 0x3fc9b00c _tzname - .sdata 0x3fc9b014 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - 0x3fc9b014 __global_locale_ptr - .sdata 0x3fc9b018 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - 0x3fc9b018 _impure_ptr - .sdata 0x3fc9b01c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - 0x3fc9b01c __atexit_recursive_mutex - *(.sdata.*) - .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM - 0x3fc9b020 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b020 ESP_EFUSE_USER_DATA_MAC_CUSTOM - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 - 0x3fc9b028 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b028 ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 - 0x3fc9b030 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b030 ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 - 0x3fc9b038 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b038 ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 - 0x3fc9b040 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b040 ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 - .sdata.ESP_EFUSE_BLK_VERSION_MAJOR - 0x3fc9b048 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b048 ESP_EFUSE_BLK_VERSION_MAJOR - .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID - 0x3fc9b050 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b050 ESP_EFUSE_OPTIONAL_UNIQUE_ID - .sdata.ESP_EFUSE_SECURE_VERSION - 0x3fc9b058 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b058 ESP_EFUSE_SECURE_VERSION - .sdata.s_panic_uart - 0x3fc9b060 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sdata.rtc_wdt_ctx - 0x3fc9b064 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sdata.wdt0_context - 0x3fc9b06c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .sdata.s_memp_intr - 0x3fc9b074 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .sdata.s_log_print_func - 0x3fc9b07c 0x4 esp-idf/log/liblog.a(log_write.c.obj) - .sdata.esp_log_default_level - 0x3fc9b080 0x4 esp-idf/log/liblog.a(log_level.c.obj) - 0x3fc9b080 esp_log_default_level - .sdata.malloc_alwaysinternal_limit - 0x3fc9b084 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sdata.first_call.0 - 0x3fc9b088 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - *fill* 0x3fc9b089 0x3 - .sdata.uart_selectlock - 0x3fc9b08c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .sdata.g_power - 0x3fc9b094 0x1 esp-idf/main/libmain.a(app_driver.c.obj) - *fill* 0x3fc9b095 0x1 - .sdata.g_value - 0x3fc9b096 0x2 esp-idf/main/libmain.a(app_driver.c.obj) - .sdata.g_saturation - 0x3fc9b098 0x2 esp-idf/main/libmain.a(app_driver.c.obj) - .sdata.g_hue 0x3fc9b09a 0x2 esp-idf/main/libmain.a(app_driver.c.obj) - .sdata.max_node_params_size - 0x3fc9b09c 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .sdata.mqtt_budget - 0x3fc9b0a0 0x2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - *fill* 0x3fc9b0a2 0x2 - .sdata.cookie_session_id - 0x3fc9b0a4 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .sdata.sock_session_id - 0x3fc9b0a8 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .sdata.__compound_literal.6 - 0x3fc9b0ac 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.5 - 0x3fc9b0b0 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.4 - 0x3fc9b0b4 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.3 - 0x3fc9b0b8 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.2 - 0x3fc9b0bc 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.1 - 0x3fc9b0c0 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.__compound_literal.0 - 0x3fc9b0c4 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sdata.perm_flags - 0x3fc9b0c8 0x1 esp-idf/bt/libbt.a(ble_gatts.c.obj) - *fill* 0x3fc9b0c9 0x3 - .sdata.g_os_mempool_list - 0x3fc9b0cc 0x8 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x3fc9b0cc g_os_mempool_list - .sdata.g_msys_pool_list - 0x3fc9b0d4 0x8 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x3fc9b0d4 g_msys_pool_list - .sdata.alpn_protocols - 0x3fc9b0dc 0x8 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .sdata.s_verbose_level - 0x3fc9b0e4 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .sdata.s_panic - 0x3fc9b0e8 0x4 esp-idf/console/libconsole.a(arg_utils.c.obj) - .sdata._gpio_hal - 0x3fc9b0ec 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .sdata.esp_flash_registered_chips - 0x3fc9b0f0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - 0x3fc9b0f0 esp_flash_registered_chips - *fill* 0x3fc9b0f4 0x4 - .sdata.s_reserved_pin_mask - 0x3fc9b0f8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .sdata.s_tsens_idx - 0x3fc9b100 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - *fill* 0x3fc9b101 0x3 - .sdata.s_record_max - 0x3fc9b104 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sdata.s_record_min - 0x3fc9b108 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sdata.s_sync_interval - 0x3fc9b10c 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sdata.tcp_port - 0x3fc9b110 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) - .sdata.udp_port - 0x3fc9b112 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) - .sdata.retrans_timer - 0x3fc9b114 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fc9b114 retrans_timer - .sdata.reachable_time - 0x3fc9b118 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fc9b118 reachable_time - .sdata.ssl_tls12_preset_suiteb_sig_algs - 0x3fc9b11c 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x3fc9b122 0x2 - .sdata.mbedtls_free_func - 0x3fc9b124 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .sdata.mbedtls_calloc_func - 0x3fc9b128 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .sdata.s_previous_init_code - 0x3fc9b12c 0x8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .sdata._g_esp_netif_netstack_default_wifi_ap - 0x3fc9b134 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - 0x3fc9b134 _g_esp_netif_netstack_default_wifi_ap - .sdata._g_esp_netif_netstack_default_wifi_sta - 0x3fc9b138 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - 0x3fc9b138 _g_esp_netif_netstack_default_wifi_sta - .sdata.g_allowed_groups - 0x3fc9b13c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x3fc9b13c g_allowed_groups - .sdata.gdma_ahb_hal_priv_data - 0x3fc9b144 0x4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .sdata.DW.ref.__gxx_personality_v0 - 0x3fc9b148 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3fc9b148 DW.ref.__gxx_personality_v0 - .sdata._ZN10__cxxabiv119__terminate_handlerE - 0x3fc9b14c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - 0x3fc9b14c __cxxabiv1::__terminate_handler - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - *(EXCLUDE_FILE(*libbtdm_app.a *libbt.a) .data EXCLUDE_FILE(*libbtdm_app.a *libbt.a) .data.*) - .data.ESP_EFUSE_MAC - 0x3fc9b150 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x3fc9b150 ESP_EFUSE_MAC - .data.s_stub_table - 0x3fc9b16c 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .data.timestamp_id - 0x3fc9b208 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - 0x3fc9b208 timestamp_id - .data.s_context - 0x3fc9b218 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .data.uart_context - 0x3fc9b268 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .data.s_ctx 0x3fc9b288 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .data.s_fd_table - 0x3fc9b2b8 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data.g_coex_adapter_funcs - 0x3fc9b378 0x50 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x3fc9b378 g_coex_adapter_funcs - .data.https_conf.1 - 0x3fc9b3c8 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .data.s_esp_netifs - 0x3fc9b458 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .data.protobuf_c__allocator - 0x3fc9b488 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .data.global_hooks - 0x3fc9b494 0xc esp-idf/json/libjson.a(cJSON.c.obj) - .data.skutable.1 - 0x3fc9b4a0 0x24 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .data.s_config - 0x3fc9b4c4 0x14 esp-idf/console/libconsole.a(commands.c.obj) - .data.gpio_context - 0x3fc9b4d8 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .data.default_registered_chips - 0x3fc9b4f8 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .data.s_mac_table - 0x3fc9b518 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .data.rmt_contex - 0x3fc9b550 0x24 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .data.g_wifi_osi_funcs - 0x3fc9b574 0x1dc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x3fc9b574 g_wifi_osi_funcs - .data.ssl_tls12_preset_default_sig_algs - 0x3fc9b750 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .data.mbedtls_cipher_base_lookup_table - 0x3fc9b764 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x3fc9b764 mbedtls_cipher_base_lookup_table - .data.libcoexist_reversion_git - 0x3fc9b780 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x3fc9b780 libcoexist_reversion_git - .data.g_coex_param - 0x3fc9b784 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x3fc9b784 g_coex_param - .data.coex_schm_all_default - 0x3fc9b798 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b798 coex_schm_all_default - *fill* 0x3fc9b7a2 0x2 - .data.coex_schm_ble_default_bt_a2dp_wifi_conn - 0x3fc9b7a4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7a4 coex_schm_ble_default_bt_a2dp_wifi_conn - *fill* 0x3fc9b7ae 0x2 - .data.coex_schm_ble_default_bt_a2dp_wifi_connecting - 0x3fc9b7b0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7b0 coex_schm_ble_default_bt_a2dp_wifi_connecting - *fill* 0x3fc9b7ba 0x2 - .data.coex_schm_ble_default_bt_a2dp_wifi_scan - 0x3fc9b7bc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7bc coex_schm_ble_default_bt_a2dp_wifi_scan - *fill* 0x3fc9b7c6 0x2 - .data.coex_schm_ble_default_bt_default_wifi_conn - 0x3fc9b7c8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7c8 coex_schm_ble_default_bt_default_wifi_conn - *fill* 0x3fc9b7d2 0x2 - .data.coex_schm_ble_default_bt_default_wifi_connecting - 0x3fc9b7d4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7d4 coex_schm_ble_default_bt_default_wifi_connecting - *fill* 0x3fc9b7de 0x2 - .data.coex_schm_ble_default_bt_default_wifi_scan - 0x3fc9b7e0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7e0 coex_schm_ble_default_bt_default_wifi_scan - *fill* 0x3fc9b7ea 0x2 - .data.coex_schm_ble_default_bt_idle_wifi_conn - 0x3fc9b7ec 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7ec coex_schm_ble_default_bt_idle_wifi_conn - *fill* 0x3fc9b7f6 0x2 - .data.coex_schm_ble_default_bt_idle_wifi_connecting - 0x3fc9b7f8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b7f8 coex_schm_ble_default_bt_idle_wifi_connecting - *fill* 0x3fc9b802 0x2 - .data.coex_schm_ble_default_bt_idle_wifi_scan - 0x3fc9b804 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b804 coex_schm_ble_default_bt_idle_wifi_scan - *fill* 0x3fc9b80e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn - 0x3fc9b810 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b810 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn - *fill* 0x3fc9b81e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting - 0x3fc9b820 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b820 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting - *fill* 0x3fc9b82e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan - 0x3fc9b830 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b830 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan - *fill* 0x3fc9b83e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn - 0x3fc9b840 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b840 coex_schm_ble_mesh_config_bt_a2dp_wifi_conn - *fill* 0x3fc9b84e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting - 0x3fc9b850 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b850 coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting - *fill* 0x3fc9b85e 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan - 0x3fc9b860 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b860 coex_schm_ble_mesh_config_bt_a2dp_wifi_scan - *fill* 0x3fc9b86e 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn - 0x3fc9b870 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b870 coex_schm_ble_mesh_config_bt_conn_wifi_conn - *fill* 0x3fc9b87e 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting - 0x3fc9b880 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b880 coex_schm_ble_mesh_config_bt_conn_wifi_connecting - *fill* 0x3fc9b88e 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan - 0x3fc9b890 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b890 coex_schm_ble_mesh_config_bt_conn_wifi_scan - *fill* 0x3fc9b89e 0x2 - .data.coex_schm_ble_mesh_config_bt_default_wifi_conn - 0x3fc9b8a0 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8a0 coex_schm_ble_mesh_config_bt_default_wifi_conn - *fill* 0x3fc9b8ae 0x2 - .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting - 0x3fc9b8b0 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8b0 coex_schm_ble_mesh_config_bt_default_wifi_connecting - *fill* 0x3fc9b8be 0x2 - .data.coex_schm_ble_mesh_config_bt_default_wifi_scan - 0x3fc9b8c0 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8c0 coex_schm_ble_mesh_config_bt_default_wifi_scan - *fill* 0x3fc9b8ce 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn - 0x3fc9b8d0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8d0 coex_schm_ble_mesh_config_bt_iscan_wifi_conn - *fill* 0x3fc9b8da 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting - 0x3fc9b8dc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8dc coex_schm_ble_mesh_config_bt_iscan_wifi_connecting - *fill* 0x3fc9b8e6 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan - 0x3fc9b8e8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8e8 coex_schm_ble_mesh_config_bt_iscan_wifi_scan - *fill* 0x3fc9b8f2 0x2 - .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn - 0x3fc9b8f4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b8f4 coex_schm_ble_mesh_config_bt_sniff_wifi_conn - *fill* 0x3fc9b8fe 0x2 - .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting - 0x3fc9b900 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b900 coex_schm_ble_mesh_config_bt_sniff_wifi_connecting - *fill* 0x3fc9b90a 0x2 - .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan - 0x3fc9b90c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b90c coex_schm_ble_mesh_config_bt_sniff_wifi_scan - *fill* 0x3fc9b916 0x2 - .data.coex_schm_ble_mesh_config_wifi_conn - 0x3fc9b918 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b918 coex_schm_ble_mesh_config_wifi_conn - *fill* 0x3fc9b922 0x2 - .data.coex_schm_ble_mesh_config_wifi_connecting - 0x3fc9b924 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b924 coex_schm_ble_mesh_config_wifi_connecting - *fill* 0x3fc9b92e 0x2 - .data.coex_schm_ble_mesh_config_wifi_scan - 0x3fc9b930 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b930 coex_schm_ble_mesh_config_wifi_scan - *fill* 0x3fc9b93a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn - 0x3fc9b93c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b93c coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn - *fill* 0x3fc9b94a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting - 0x3fc9b94c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b94c coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting - *fill* 0x3fc9b95a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan - 0x3fc9b95c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b95c coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan - *fill* 0x3fc9b96a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn - 0x3fc9b96c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b96c coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn - *fill* 0x3fc9b97a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting - 0x3fc9b97c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b97c coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting - *fill* 0x3fc9b992 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan - 0x3fc9b994 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b994 coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan - *fill* 0x3fc9b9aa 0x2 - .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn - 0x3fc9b9ac 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b9ac coex_schm_ble_mesh_standby_bt_conn_wifi_conn - *fill* 0x3fc9b9ba 0x2 - .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting - 0x3fc9b9bc 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b9bc coex_schm_ble_mesh_standby_bt_conn_wifi_connecting - *fill* 0x3fc9b9ca 0x2 - .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan - 0x3fc9b9cc 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b9cc coex_schm_ble_mesh_standby_bt_conn_wifi_scan - *fill* 0x3fc9b9da 0x2 - .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn - 0x3fc9b9dc 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b9dc coex_schm_ble_mesh_standby_bt_default_wifi_conn - *fill* 0x3fc9b9ea 0x2 - .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting - 0x3fc9b9ec 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9b9ec coex_schm_ble_mesh_standby_bt_default_wifi_connecting - *fill* 0x3fc9ba02 0x2 - .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan - 0x3fc9ba04 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba04 coex_schm_ble_mesh_standby_bt_default_wifi_scan - *fill* 0x3fc9ba1a 0x2 - .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn - 0x3fc9ba1c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba1c coex_schm_ble_mesh_standby_bt_iscan_wifi_conn - *fill* 0x3fc9ba26 0x2 - .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting - 0x3fc9ba28 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba28 coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting - *fill* 0x3fc9ba32 0x2 - .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan - 0x3fc9ba34 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba34 coex_schm_ble_mesh_standby_bt_iscan_wifi_scan - *fill* 0x3fc9ba3e 0x2 - .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn - 0x3fc9ba40 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba40 coex_schm_ble_mesh_standby_bt_sniff_wifi_conn - *fill* 0x3fc9ba4a 0x2 - .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting - 0x3fc9ba4c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba4c coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting - *fill* 0x3fc9ba56 0x2 - .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan - 0x3fc9ba58 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba58 coex_schm_ble_mesh_standby_bt_sniff_wifi_scan - *fill* 0x3fc9ba62 0x2 - .data.coex_schm_ble_mesh_standby_wifi_conn - 0x3fc9ba64 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba64 coex_schm_ble_mesh_standby_wifi_conn - *fill* 0x3fc9ba6e 0x2 - .data.coex_schm_ble_mesh_standby_wifi_connecting - 0x3fc9ba70 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba70 coex_schm_ble_mesh_standby_wifi_connecting - *fill* 0x3fc9ba7a 0x2 - .data.coex_schm_ble_mesh_standby_wifi_scan - 0x3fc9ba7c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba7c coex_schm_ble_mesh_standby_wifi_scan - *fill* 0x3fc9ba86 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn - 0x3fc9ba88 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba88 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn - *fill* 0x3fc9ba96 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting - 0x3fc9ba98 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9ba98 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting - *fill* 0x3fc9baa6 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan - 0x3fc9baa8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9baa8 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan - *fill* 0x3fc9bab6 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn - 0x3fc9bab8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bab8 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn - *fill* 0x3fc9bac6 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting - 0x3fc9bac8 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bac8 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting - *fill* 0x3fc9bade 0x2 - .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan - 0x3fc9bae0 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bae0 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan - *fill* 0x3fc9baf6 0x2 - .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn - 0x3fc9baf8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9baf8 coex_schm_ble_mesh_traffic_bt_conn_wifi_conn - *fill* 0x3fc9bb06 0x2 - .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting - 0x3fc9bb08 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb08 coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting - *fill* 0x3fc9bb16 0x2 - .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan - 0x3fc9bb18 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb18 coex_schm_ble_mesh_traffic_bt_conn_wifi_scan - *fill* 0x3fc9bb26 0x2 - .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn - 0x3fc9bb28 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb28 coex_schm_ble_mesh_traffic_bt_default_wifi_conn - *fill* 0x3fc9bb36 0x2 - .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting - 0x3fc9bb38 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb38 coex_schm_ble_mesh_traffic_bt_default_wifi_connecting - *fill* 0x3fc9bb4e 0x2 - .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan - 0x3fc9bb50 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb50 coex_schm_ble_mesh_traffic_bt_default_wifi_scan - *fill* 0x3fc9bb66 0x2 - .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn - 0x3fc9bb68 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb68 coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn - *fill* 0x3fc9bb72 0x2 - .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting - 0x3fc9bb74 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb74 coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting - *fill* 0x3fc9bb7e 0x2 - .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan - 0x3fc9bb80 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb80 coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan - *fill* 0x3fc9bb8a 0x2 - .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn - 0x3fc9bb8c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb8c coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn - *fill* 0x3fc9bb96 0x2 - .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting - 0x3fc9bb98 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bb98 coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting - *fill* 0x3fc9bba2 0x2 - .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan - 0x3fc9bba4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bba4 coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan - *fill* 0x3fc9bbae 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_conn - 0x3fc9bbb0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbb0 coex_schm_ble_mesh_traffic_wifi_conn - *fill* 0x3fc9bbba 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_connecting - 0x3fc9bbbc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbbc coex_schm_ble_mesh_traffic_wifi_connecting - *fill* 0x3fc9bbc6 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_scan - 0x3fc9bbc8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbc8 coex_schm_ble_mesh_traffic_wifi_scan - *fill* 0x3fc9bbd2 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_conn - 0x3fc9bbd4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbd4 coex_schm_bt_a2dp_paused_wifi_conn - *fill* 0x3fc9bbde 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_connecting - 0x3fc9bbe0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbe0 coex_schm_bt_a2dp_paused_wifi_connecting - *fill* 0x3fc9bbea 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_scan - 0x3fc9bbec 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbec coex_schm_bt_a2dp_paused_wifi_scan - *fill* 0x3fc9bbf6 0x2 - .data.coex_schm_bt_a2dp_wifi_conn - 0x3fc9bbf8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bbf8 coex_schm_bt_a2dp_wifi_conn - *fill* 0x3fc9bc02 0x2 - .data.coex_schm_bt_a2dp_wifi_connecting - 0x3fc9bc04 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc04 coex_schm_bt_a2dp_wifi_connecting - *fill* 0x3fc9bc0e 0x2 - .data.coex_schm_bt_a2dp_wifi_scan - 0x3fc9bc10 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc10 coex_schm_bt_a2dp_wifi_scan - *fill* 0x3fc9bc1a 0x2 - .data.coex_schm_bt_conn_wifi_conn - 0x3fc9bc1c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc1c coex_schm_bt_conn_wifi_conn - *fill* 0x3fc9bc26 0x2 - .data.coex_schm_bt_conn_wifi_connecting - 0x3fc9bc28 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc28 coex_schm_bt_conn_wifi_connecting - *fill* 0x3fc9bc32 0x2 - .data.coex_schm_bt_conn_wifi_scan - 0x3fc9bc34 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc34 coex_schm_bt_conn_wifi_scan - *fill* 0x3fc9bc3e 0x2 - .data.coex_schm_bt_default_wifi_conn - 0x3fc9bc40 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc40 coex_schm_bt_default_wifi_conn - *fill* 0x3fc9bc4a 0x2 - .data.coex_schm_bt_default_wifi_connecting - 0x3fc9bc4c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc4c coex_schm_bt_default_wifi_connecting - *fill* 0x3fc9bc56 0x2 - .data.coex_schm_bt_default_wifi_scan - 0x3fc9bc58 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc58 coex_schm_bt_default_wifi_scan - *fill* 0x3fc9bc62 0x2 - .data.coex_schm_bt_idle_wifi_conn - 0x3fc9bc64 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc64 coex_schm_bt_idle_wifi_conn - *fill* 0x3fc9bc6a 0x2 - .data.coex_schm_bt_idle_wifi_connecting - 0x3fc9bc6c 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc6c coex_schm_bt_idle_wifi_connecting - *fill* 0x3fc9bc72 0x2 - .data.coex_schm_bt_idle_wifi_scan - 0x3fc9bc74 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc74 coex_schm_bt_idle_wifi_scan - *fill* 0x3fc9bc7a 0x2 - .data.coex_schm_bt_inq_wifi_conn - 0x3fc9bc7c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc7c coex_schm_bt_inq_wifi_conn - *fill* 0x3fc9bc86 0x2 - .data.coex_schm_bt_inq_wifi_connecting - 0x3fc9bc88 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc88 coex_schm_bt_inq_wifi_connecting - *fill* 0x3fc9bc92 0x2 - .data.coex_schm_bt_inq_wifi_scan - 0x3fc9bc94 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bc94 coex_schm_bt_inq_wifi_scan - *fill* 0x3fc9bc9e 0x2 - .data.coex_schm_bt_iscan_wifi_conn - 0x3fc9bca0 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bca0 coex_schm_bt_iscan_wifi_conn - *fill* 0x3fc9bca6 0x2 - .data.coex_schm_bt_iscan_wifi_connecting - 0x3fc9bca8 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bca8 coex_schm_bt_iscan_wifi_connecting - *fill* 0x3fc9bcae 0x2 - .data.coex_schm_bt_iscan_wifi_scan - 0x3fc9bcb0 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcb0 coex_schm_bt_iscan_wifi_scan - *fill* 0x3fc9bcb6 0x2 - .data.coex_schm_bt_page_wifi_conn - 0x3fc9bcb8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcb8 coex_schm_bt_page_wifi_conn - *fill* 0x3fc9bcc2 0x2 - .data.coex_schm_bt_page_wifi_connecting - 0x3fc9bcc4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcc4 coex_schm_bt_page_wifi_connecting - *fill* 0x3fc9bcce 0x2 - .data.coex_schm_bt_page_wifi_scan - 0x3fc9bcd0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcd0 coex_schm_bt_page_wifi_scan - *fill* 0x3fc9bcda 0x2 - .data.coex_schm_bt_sniff_wifi_conn - 0x3fc9bcdc 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcdc coex_schm_bt_sniff_wifi_conn - *fill* 0x3fc9bce2 0x2 - .data.coex_schm_bt_sniff_wifi_connecting - 0x3fc9bce4 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bce4 coex_schm_bt_sniff_wifi_connecting - *fill* 0x3fc9bcea 0x2 - .data.coex_schm_bt_sniff_wifi_scan - 0x3fc9bcec 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcec coex_schm_bt_sniff_wifi_scan - *fill* 0x3fc9bcf2 0x2 - .data.coex_schm_env - 0x3fc9bcf4 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bcf4 coex_schm_env - .data.coex_schm_external_coex_wifi_connecting - 0x3fc9bd30 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bd30 coex_schm_external_coex_wifi_connecting - *fill* 0x3fc9bd36 0x2 - .data.coex_schm_external_coex_wifi_default - 0x3fc9bd38 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bd38 coex_schm_external_coex_wifi_default - *fill* 0x3fc9bd42 0x2 - .data.coex_schm_external_coex_wifi_scan - 0x3fc9bd44 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x3fc9bd44 coex_schm_external_coex_wifi_scan - .data.s_raw_seq.14616 - 0x3fc9bd4a 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .data.TmpSTAAPCloseAP - 0x3fc9bd4c 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fc9bd4c TmpSTAAPCloseAP - *fill* 0x3fc9bd4d 0x3 - .data.ieee80211_11a_table - 0x3fc9bd50 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .data.country_info_24ghz - 0x3fc9be24 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - 0x3fc9be24 country_info_24ghz - .data.g_mesh_self_organized - 0x3fc9bf0a 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fc9bf0a g_mesh_self_organized - .data.join_deny_flag - 0x3fc9bf0b 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .data.g_wifi_nvs - 0x3fc9bf0c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x3fc9bf0c g_wifi_nvs - .data.s_ap_igtk_active_idx - 0x3fc9bf10 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .data.s_sta_igtk_active_idx - 0x3fc9bf12 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .data.g_timer_info - 0x3fc9bf14 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x3fc9bf14 g_timer_info - .data.gcmp 0x3fc9bfe4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - 0x3fc9bfe4 gcmp - .data.WIFI_MESH_EVENT - 0x3fc9bffc 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x3fc9bffc WIFI_MESH_EVENT - .data.g_wifi_event_mask - 0x3fc9c000 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x3fc9c000 g_wifi_event_mask - .data.s_wifi_init_state - 0x3fc9c004 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .data.g_dynamic_cs - 0x3fc9c008 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fc9c008 g_dynamic_cs - .data.send_deauth - 0x3fc9c014 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fc9c014 send_deauth - .data.g_phy_cap_rx_stbc - 0x3fc9c015 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x3fc9c015 g_phy_cap_rx_stbc - *fill* 0x3fc9c016 0x2 - .data.ccmp 0x3fc9c018 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x3fc9c018 ccmp - .data.ba_recv_action - 0x3fc9c030 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.ba_send_action - 0x3fc9c03c 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.ht_recv_action - 0x3fc9c048 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.ht_send_action - 0x3fc9c04c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.public_recv_action - 0x3fc9c050 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.public_send_action - 0x3fc9c0d8 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.sa_query_recv_action - 0x3fc9c160 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.sa_query_send_action - 0x3fc9c168 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.vendor_recv_action - 0x3fc9c170 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.vendor_send_action - 0x3fc9c174 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .data.tkip 0x3fc9c178 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - 0x3fc9c178 tkip - .data.g_scan_chan_list - 0x3fc9c190 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3fc9c19e 0x2 - .data.wep 0x3fc9c1a0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - 0x3fc9c1a0 wep - .data.sms4 0x3fc9c1b8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - 0x3fc9c1b8 sms4 - .data.g_pm_cfg - 0x3fc9c1d0 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x3fc9c1d0 g_pm_cfg - .data.TxRxCxt 0x3fc9c214 0x3c0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x3fc9c214 TxRxCxt - .data.g_eb_list_desc - 0x3fc9c5d4 0xdc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x3fc9c5d4 g_eb_list_desc - .data.g_txop_queue_status - 0x3fc9c6b0 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x3fc9c6b0 g_txop_queue_status - *fill* 0x3fc9c6b3 0x1 - .data.lmacConfMib - 0x3fc9c6b4 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x3fc9c6b4 lmacConfMib - .data.BasicOFDMSched - 0x3fc9c6e4 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c6e4 BasicOFDMSched - .data.rc11BSchedTbl - 0x3fc9c6f0 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c6f0 rc11BSchedTbl - .data.rc11GSchedTbl - 0x3fc9c738 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c738 rc11GSchedTbl - .data.rc11NSchedTbl - 0x3fc9c7d4 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c7d4 rc11NSchedTbl - .data.rcLoRaSchedTbl - 0x3fc9c87c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c87c rcLoRaSchedTbl - .data.rcP2P11GSchedTbl - 0x3fc9c894 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c894 rcP2P11GSchedTbl - .data.rcP2P11NSchedTbl - 0x3fc9c8f4 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c8f4 rcP2P11NSchedTbl - .data.trc_ctl 0x3fc9c96c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fc9c96c trc_ctl - .data.BcnInterval - 0x3fc9c988 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fc9c988 BcnInterval - .data.wDevCtrl - 0x3fc9c98c 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fc9c98c wDevCtrl - .data.g_pp_timer_info - 0x3fc9c9c4 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - 0x3fc9c9c4 g_pp_timer_info - .data.s_platform - 0x3fc9ca34 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data.phy_param - 0x3fc9ca44 0x340 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x3fc9ca44 phy_param - .data.wifi_ht20 - 0x3fc9cd84 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - 0x3fc9cd84 wifi_ht20 - .data.wifi_ht40 - 0x3fc9cd86 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - 0x3fc9cd86 wifi_ht40 - .data 0x3fc9cd88 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - 0x3fc9cd88 __sglue - .data 0x3fc9cd94 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - 0x3fc9cd94 _impure_data - *fill* 0x3fc9ce84 0x4 - .data 0x3fc9ce88 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - *(.dram1 .dram1.*) - .dram1.2 0x3fc9cee0 0x2b esp-idf/esp_system/libesp_system.a(brownout.c.obj) - *fill* 0x3fc9cf0b 0x1 - .dram1.0 0x3fc9cf0c 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .dram1.3 0x3fc9cf10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.2 0x3fc9cf14 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.1 0x3fc9cf18 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.0 0x3fc9cf1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.0 0x3fc9cf20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.0 0x3fc9cf24 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x3fc9cf24 FreeRTOS_openocd_params - .dram1.0 0x3fc9cf2c 0x50 esp-idf/freertos/libfreertos.a(port.c.obj) - .dram1.8 0x3fc9cf7c 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.7 0x3fc9cf80 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.6 0x3fc9cf84 0x1 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3fc9cf85 0x3 - .dram1.5 0x3fc9cf88 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.4 0x3fc9cf8c 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.3 0x3fc9cf90 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.1 0x3fc9cf94 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.0 0x3fc9cf98 0x4 esp-idf/bt/libbt.a(bt.c.obj) - .dram1.9 0x3fc9cf9c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .dram1.1 0x3fc9cfa0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x3fc9cfa0 con_evt_func_cb - .dram1.13 0x3fc9cfa4 0x1b /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - *fill* 0x3fc9cfbf 0x1 - .dram1.17 0x3fc9cfc0 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .dram1.1 0x3fc9cfdc 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .dram1.2 0x3fc9cfe4 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .dram1.10 0x3fc9cff4 0xd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - *fill* 0x3fc9d001 0x3 - .dram1.5 0x3fc9d004 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - *fill* 0x3fc9d017 0x1 - .dram1.6 0x3fc9d018 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .dram1.7 0x3fc9d03c 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - *fill* 0x3fc9d04f 0x1 - .dram1.8 0x3fc9d050 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - *fill* 0x3fc9d07a 0x2 - .dram1.9 0x3fc9d07c 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - *fill* 0x3fc9d08e 0x2 - .dram1.1 0x3fc9d090 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - 0x3fc9d090 sch_prog_state - *fill* 0x3fc9d091 0x3 - .dram1.10 0x3fc9d094 0xd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - *fill* 0x3fc9d0a1 0x3 - .dram1.13 0x3fc9d0a4 0x15 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .dram1.2 0x3fc9d0b9 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - *fill* 0x3fc9d0ba 0x2 - .dram1.8 0x3fc9d0bc 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .dram1.0 0x3fc9d0c8 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .dram1.0 0x3fc9d0cc 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x3fc9d0cc g_flash_guard_default_ops - .dram1.32 0x3fc9d0d4 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d0ef 0x1 - .dram1.31 0x3fc9d0f0 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d111 0x3 - .dram1.30 0x3fc9d114 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d14f 0x1 - .dram1.29 0x3fc9d150 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d18e 0x2 - .dram1.23 0x3fc9d190 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d1ab 0x1 - .dram1.2 0x3fc9d1ac 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x3fc9d1ac rom_spiflash_api_funcs - .dram1.1 0x3fc9d1b0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .dram1.0 0x3fc9d1c0 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3fc9d1ca 0x2 - .dram1.2 0x3fc9d1cc 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.1 0x3fc9d1ec 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.16 0x3fc9d21c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.15 0x3fc9d244 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.4 0x3fc9d254 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x3fc9d254 esp_flash_noos_functions - .dram1.5 0x3fc9d27c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x3fc9d27c spi_flash_chip_generic_timeout - .dram1.4 0x3fc9d290 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .dram1.3 0x3fc9d2a8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x3fc9d2a8 rom_flash_chip_dummy_hpm - .dram1.2 0x3fc9d2ac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x3fc9d2ac rom_flash_chip_dummy - .dram1.1 0x3fc9d2b0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x3fc9d2b6 0x2 - .dram1.0 0x3fc9d2b8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x3fc9d2be 0x2 - .dram1.0 0x3fc9d2c0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .dram1.0 0x3fc9d318 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3fc9d331 0x3 - .dram1.4 0x3fc9d334 0x22 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3fc9d356 0x2 - .dram1.3 0x3fc9d358 0x1b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3fc9d373 0x1 - .dram1.2 0x3fc9d374 0x1a esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3fc9d38e 0x2 - .dram1.0 0x3fc9d390 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .dram1.0 0x3fc9d398 0x1 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - *fill* 0x3fc9d399 0x3 - .dram1.4 0x3fc9d39c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.3 0x3fc9d3ac 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.2 0x3fc9d3bc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.1 0x3fc9d3c8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.1 0x3fc9d3d4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.0 0x3fc9d3e0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.1 0x3fc9d3ec 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x3fc9d3ec coex_env - .dram1.2 0x3fc9d3fc 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x3fc9d3fc coex_pti_tab - *fill* 0x3fc9d425 0x3 - .dram1.6 0x3fc9d428 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - *fill* 0x3fc9d44a 0x2 - .dram1.7 0x3fc9d44c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .dram1.1 0x3fc9d46c 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - *fill* 0x3fc9d49a 0x2 - .dram1.7 0x3fc9d49c 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - *fill* 0x3fc9d4c3 0x1 - .dram1.2 0x3fc9d4c4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .dram1.2 0x3fc9d4c8 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fc9d4c8 g_mesh_is_started - *fill* 0x3fc9d4c9 0x3 - .dram1.3 0x3fc9d4cc 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fc9d4cc g_mesh_init_ps_type - .dram1.4 0x3fc9d4d0 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fc9d4d0 g_mesh_is_root - .dram1.2 0x3fc9d4d1 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fc9d4d1 g_sta_connected_flag - *fill* 0x3fc9d4d2 0x2 - .dram1.3 0x3fc9d4d4 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x3fc9d4d4 pp_sig_cnt - *fill* 0x3fc9d4f5 0x3 - .dram1.4 0x3fc9d4f8 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x3fc9d4f8 bars - .dram1.16 0x3fc9d598 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - 0x3fc9d598 ptr_beacon_offset_funcs - .dram1.3 0x3fc9d59c 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x3fc9d59c eb_txdesc_space - .dram1.3 0x3fc9d62c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .dram1.3 0x3fc9d630 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .dram1.42 0x3fc9d634 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fc9d634 s_record_list - .dram1.0 0x3fc9d6b8 0x64 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - 0x3fc9d6b8 temperature_sensor_attributes - 0x3fc9d71c _coredump_dram_start = ABSOLUTE (.) - *(.dram2.coredump .dram2.coredump.*) - 0x3fc9d71c _coredump_dram_end = ABSOLUTE (.) - *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - 0x3fc9d71c . = ALIGN (0x4) - 0x3fc9d71c _bt_data_start = ABSOLUTE (.) - *libbt.a:(.data .data.*) - .data.ble_svc_gap_name - 0x3fc9d71c 0x20 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .data.ble_hs_cfg - 0x3fc9d73c 0x30 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - 0x3fc9d73c ble_hs_cfg - .data.ble_uuid_base - 0x3fc9d76c 0x10 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x3fc9d77c . = ALIGN (0x4) - 0x3fc9d77c _bt_data_end = ABSOLUTE (.) - 0x3fc9d77c . = ALIGN (0x4) - 0x3fc9d77c _bt_controller_data_start = ABSOLUTE (.) - *libbtdm_app.a:(.data .data.*) - .data.s_hli_null_funcs - 0x3fc9d77c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .data.first_boot.19753 - 0x3fc9d794 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .data.s_coex_dynamic_pti_en - 0x3fc9d795 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .data.s_rw_use_irq_fifo - 0x3fc9d796 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - *fill* 0x3fc9d797 0x1 - .data.sdk_cfg_priv_opts_extend - 0x3fc9d798 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x3fc9d798 sdk_cfg_priv_opts_extend - *fill* 0x3fc9d79a 0x2 - .data.hci_command_handler_tab_esp_hack - 0x3fc9d79c 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x3fc9d79c hci_command_handler_tab_esp_hack - .data.r_vs_funcs_p - 0x3fc9d7d4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x3fc9d7d4 r_vs_funcs_p - .data.hci_cmd_desc_tab_vs_esp_hack - 0x3fc9d7d8 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - 0x3fc9d7d8 hci_cmd_desc_tab_vs_esp_hack - .data.bt_rf_coex_hooks - 0x3fc9d82c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .data.coex_hook_wifi_sleep_flag - 0x3fc9d834 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - 0x3fc9d848 . = ALIGN (0x4) - *fill* 0x3fc9d846 0x2 - 0x3fc9d848 _bt_controller_data_end = ABSOLUTE (.) - *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:save.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.rtc_clk_xtal_freq_get.str1.4 - 0x3fc9d848 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.rtc_clk_cpu_freq_get_config.str1.4 - 0x3fc9d848 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 - 0x3fc9d848 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.__func__.0 - 0x3fc9d848 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_cache_aligned_malloc_internal.str1.4 - 0x3fc9d85f 0x5b esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - *fill* 0x3fc9d85f 0x1 - .rodata.__FUNCTION__.0 - 0x3fc9d860 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_error_check_failed_print.str1.4 - 0x3fc9d878 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .rodata._esp_error_check_failed.str1.4 - 0x3fc9d878 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.cache_hal_disable.str1.4 - 0x3fc9d878 0x54 esp-idf/hal/libhal.a(cache_hal.c.obj) - .rodata.cache_hal_get_cache_line_size.str1.4 - 0x3fc9d878 0x23 esp-idf/hal/libhal.a(cache_hal.c.obj) - .rodata.__func__.0 - 0x3fc9d878 0x1e esp-idf/hal/libhal.a(cache_hal.c.obj) - *fill* 0x3fc9d896 0x2 - .rodata.__func__.1 - 0x3fc9d898 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) - *fill* 0x3fc9d8a9 0x3 - .rodata.__func__.2 - 0x3fc9d8ac 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) - *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.mmu_ll_check_entry_valid.str1.4 - 0x3fc9d8be 0x51 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.mmu_hal_paddr_to_vaddr.str1.4 - 0x3fc9d8be 0x52 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.mmu_hal_map_region.str1.4 - 0x3fc9d8be 0xf4 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.mmu_hal_vaddr_to_paddr.str1.4 - 0x3fc9d8be 0x5f esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d8be 0x2 - .rodata.__func__.0 - 0x3fc9d8c0 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d8d7 0x1 - .rodata.__func__.1 - 0x3fc9d8d8 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d8f6 0x2 - .rodata.__func__.2 - 0x3fc9d8f8 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.__func__.3 - 0x3fc9d910 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d929 0x3 - .rodata.__func__.4 - 0x3fc9d92c 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d943 0x1 - .rodata.__func__.5 - 0x3fc9d944 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d959 0x3 - .rodata.__func__.6 - 0x3fc9d95c 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *fill* 0x3fc9d96f 0x1 - .rodata.__func__.7 - 0x3fc9d970 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) - *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 - 0x3fc9d983 0x81 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - *fill* 0x3fc9d983 0x1 - .rodata.__func__.0 - 0x3fc9d984 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.systimer_hal_set_alarm_period.str1.4 - 0x3fc9d9a8 0x4a esp-idf/hal/libhal.a(systimer_hal.c.obj) - .rodata.__func__.0 - 0x3fc9d9a8 0x1d esp-idf/hal/libhal.a(systimer_hal.c.obj) - *libhal.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x3fc9d9c5 0x3 - .rodata.wdt_hal_config_stage.str1.4 - 0x3fc9d9c8 0x971 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x56 (size before relaxing) - *fill* 0x3fc9e339 0x3 - .rodata.__func__.0 - 0x3fc9e33c 0x15 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.abort.str1.4 - 0x3fc9e351 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) - *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.__assert_func.str1.4 - 0x3fc9e351 0x36 esp-idf/newlib/libnewlib.a(assert.c.obj) - *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.ram2_rfpll_cap_track.str1.4 - 0x3fc9e351 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .rodata.rfcal_track.str1.4 - 0x3fc9e351 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .rodata.rom1_txpwr_cal_track.str1.4 - 0x3fc9e351 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .rodata.rom2_ulp_code_track.str1.4 - 0x3fc9e351 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - *fill* 0x3fc9e351 0x3 - .rodata 0x3fc9e354 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .rodata.freq_i2c_write_set - 0x3fc9e35c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .rodata.freq_get_i2c_data - 0x3fc9e380 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .rodata.set_pbus_mem - 0x3fc9e3a8 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .rodata 0x3fc9e3d0 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .rodata 0x3fc9e414 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - *fill* 0x3fc9e41d 0x3 - .rodata.CSWTCH.51 - 0x3fc9e420 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .rodata.ram2_rfpll_cap_correct.str1.4 - 0x3fc9e423 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .rodata.wait_rfpll_cal_end.str1.4 - 0x3fc9e423 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - *fill* 0x3fc9e423 0x1 - .rodata.phy_tsens_attribute - 0x3fc9e424 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - 0x3fc9e424 phy_tsens_attribute - *fill* 0x3fc9e442 0x2 - .rodata.CSWTCH.21 - 0x3fc9e444 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - *fill* 0x3fc9e447 0x1 - .rodata.rc_cal.cst8 - 0x3fc9e448 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .rodata 0x3fc9e460 0x57 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .rodata.gen_rx_gain_table.str1.4 - 0x3fc9e4b7 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .rodata.get_phy_version_str.str1.4 - 0x3fc9e4b7 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - *fill* 0x3fc9e4b7 0x1 - .rodata 0x3fc9e4b8 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .rodata.rom1_bt_get_tx_gain_new.str1.4 - 0x3fc9e520 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .rodata.rom1_wifi_get_tx_gain.str1.4 - 0x3fc9e520 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .rodata.dco_gain_coarse.4660 - 0x3fc9e520 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.get_rfcal_rxiq_data.str1.4 - 0x3fc9e526 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.pbus_rx_dco_cal.str1.4 - 0x3fc9e526 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.rxiq_get_mis.str1.4 - 0x3fc9e526 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .rodata.set_rx_gain_cal_iq.str1.4 - 0x3fc9e526 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - *fill* 0x3fc9e526 0x2 - .rodata.CSWTCH.164 - 0x3fc9e528 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - *fill* 0x3fc9e52b 0x1 - .rodata.CSWTCH.165 - 0x3fc9e52c 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .rodata.get_power_atten.str1.4 - 0x3fc9e52f 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .rodata.rfcal_pwrctrl.str1.4 - 0x3fc9e52f 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .rodata.rfcal_txcap.str1.4 - 0x3fc9e52f 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.memspi_host_read_id_hs.str1.4 - 0x3fc9e52f 0x1a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.memspi_host_erase_sector.str1.4 - 0x3fc9e52f 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.memspi_host_program_page.str1.4 - 0x3fc9e52f 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x3fc9e52f 0x1 - .rodata.__func__.0 - 0x3fc9e530 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x3fc9e549 0x3 - .rodata.__func__.1 - 0x3fc9e54c 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.__func__.2 - 0x3fc9e564 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x3fc9e57d 0x3 - .srodata.TAG 0x3fc9e580 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x3fc9e587 0x1 - .rodata.esp_flash_gpspi_host - 0x3fc9e588 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_flash_chip_boya - 0x3fc9e5e0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x3fc9e5e0 esp_flash_chip_boya - .srodata.chip_name - 0x3fc9e65c 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x3fc9e661 0x3 - .rodata.esp_flash_chip_gd - 0x3fc9e664 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x3fc9e664 esp_flash_chip_gd - .srodata.chip_name - 0x3fc9e6e0 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.spi_flash_chip_generic_read.str1.4 - 0x3fc9e6e3 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_get_write_protect.str1.4 - 0x3fc9e6e3 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_read_unique_id.str1.4 - 0x3fc9e6e3 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x3fc9e6e3 0x1 - .rodata.__func__.0 - 0x3fc9e6e4 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x3fc9e70d 0x3 - .rodata.esp_flash_chip_generic - 0x3fc9e710 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x3fc9e710 esp_flash_chip_generic - .srodata.chip_name - 0x3fc9e78c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.TAG 0x3fc9e794 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x3fc9e7a1 0x3 - .rodata.esp_flash_chip_issi - 0x3fc9e7a4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x3fc9e7a4 esp_flash_chip_issi - .srodata.chip_name - 0x3fc9e820 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x3fc9e825 0x3 - .rodata.esp_flash_chip_mxic - 0x3fc9e828 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x3fc9e828 esp_flash_chip_mxic - .srodata.chip_name - 0x3fc9e8a4 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x3fc9e8a9 0x3 - .rodata.esp_flash_chip_th - 0x3fc9e8ac 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x3fc9e8ac esp_flash_chip_th - .srodata.chip_name - 0x3fc9e928 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.spi_flash_chip_winbond_read.str1.4 - 0x3fc9e92b 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - *fill* 0x3fc9e92b 0x1 - .rodata.esp_flash_chip_winbond - 0x3fc9e92c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x3fc9e92c esp_flash_chip_winbond - .srodata.chip_name - 0x3fc9e9a8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .srodata.TAG 0x3fc9e9b0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - 0x3fc9e9b8 _data_end = ABSOLUTE (.) - -.noinit 0x3fc9e9b8 0x0 - 0x3fc9e9b8 . = ALIGN (0x4) - 0x3fc9e9b8 _noinit_start = ABSOLUTE (.) - *(.noinit .noinit.*) - 0x3fc9e9b8 . = ALIGN (0x4) - 0x3fc9e9b8 _noinit_end = ABSOLUTE (.) - -.dram0.bss 0x3fc9e9c0 0x7428 - 0x3fc9e9c0 . = ALIGN (0x8) - 0x3fc9e9c0 _bss_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libbtdm_app.a *libbt.a) .bss EXCLUDE_FILE(*libbtdm_app.a *libbt.a) .bss.*) - .bss.app_elf_sha256_str - 0x3fc9e9c0 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x3fc9e9c0 app_elf_sha256_str - *fill* 0x3fc9e9ca 0x2 - .bss.shutdown_handlers - 0x3fc9e9cc 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .bss.s_log_cache - 0x3fc9e9e0 0xf8 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .bss.ref_counts - 0x3fc9ead8 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x3fc9eaf5 0x3 - .bss.s_dslp_phy_cb - 0x3fc9eaf8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss.xSuspendedTaskList - 0x3fc9eb04 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xTasksWaitingTermination - 0x3fc9eb18 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xPendingReadyList - 0x3fc9eb2c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList2 - 0x3fc9eb40 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList1 - 0x3fc9eb54 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.pxReadyTasksLists - 0x3fc9eb68 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3fc9ed5c 0x4 - .bss.xIsrStack - 0x3fc9ed60 0x600 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fc9ed60 xIsrStack - .bss.systimer_hal.1 - 0x3fc9f360 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .bss.s_common_recursive_mutex - 0x3fc9f36c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x3fc9f36c __lock___malloc_recursive_mutex - 0x3fc9f36c __lock___atexit_recursive_mutex - 0x3fc9f36c __lock___sinit_recursive_mutex - 0x3fc9f36c __lock___sfp_recursive_mutex - 0x3fc9f36c __lock___env_recursive_mutex - .bss.s_common_mutex - 0x3fc9f3c0 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x3fc9f3c0 __lock___at_quick_exit_mutex - 0x3fc9f3c0 __lock___arc4random_mutex - 0x3fc9f3c0 __lock___dd_hash_mutex - 0x3fc9f3c0 __lock___tz_mutex - .bss.systimer_hal - 0x3fc9f414 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .bss.s_vfs 0x3fc9f420 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss.resp_data - 0x3fc9f440 0x64 esp-idf/main/libmain.a(app_main.c.obj) - .bss.esp_rmaker_cmd_list - 0x3fc9f4a4 0x28 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .bss.publish_topic - 0x3fc9f4cc 0x96 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - *fill* 0x3fc9f562 0x2 - .bss.g_mqtt_config - 0x3fc9f564 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .bss.g_ota_fetch_state - 0x3fc9f588 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .bss.mdns_task_buffer.14 - 0x3fc9f59c 0x150 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .bss.buf.19 0x3fc9f6ec 0x41 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3fc9f72d 0x3 - .bss.packet.20 - 0x3fc9f730 0x5b4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .bss.buf.21 0x3fc9fce4 0x41 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3fc9fd25 0x3 - .bss.n.22 0x3fc9fd28 0x107 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3fc9fe2f 0x1 - .bss._mdns_self_host - 0x3fc9fe30 0xc esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .bss.s_interfaces - 0x3fc9fe3c 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .bss.resp_data - 0x3fc9fe54 0xa4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .bss.adv_data 0x3fc9fef8 0xa4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .bss.adv_params - 0x3fc9ff9c 0xa esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - *fill* 0x3fc9ffa6 0x2 - .bss.ble_uuid_base - 0x3fc9ffa8 0x10 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .bss.ppistring.0 - 0x3fc9ffb8 0x41 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - *fill* 0x3fc9fff9 0x3 - .bss.mac_str.2 - 0x3fc9fffc 0xd esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - *fill* 0x3fca0009 0x3 - .bss.help_args - 0x3fca000c 0xc esp-idf/console/libconsole.a(commands.c.obj) - .bss.s_intr_handlers - 0x3fca0018 0x100 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .bss.s_mmu_ctx - 0x3fca0118 0x2c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .bss.tick_cb 0x3fca0144 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss.idle_cb 0x3fca0164 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss.init_context - 0x3fca0184 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .bss.s_adc_cali_param - 0x3fca0190 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss.xStaticTimerQueue.14 - 0x3fca01b0 0x54 esp-idf/freertos/libfreertos.a(timers.c.obj) - .bss.ucStaticTimerQueueStorage.15 - 0x3fca0204 0xa0 esp-idf/freertos/libfreertos.a(timers.c.obj) - .bss.xActiveTimerList2 - 0x3fca02a4 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .bss.xActiveTimerList1 - 0x3fca02b8 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) - .bss._ZL13s_nvs_handles - 0x3fca02cc 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss.p_rmt_obj - 0x3fca02d8 0x10 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .bss.s_phy_ant_config - 0x3fca02e8 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .bss.sockets 0x3fca02f8 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) - .bss.socket_ipv6_multicast_memberships - 0x3fca03c0 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) - .bss.socket_ipv4_multicast_memberships - 0x3fca04d8 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) - .bss.sntp_servers - 0x3fca0550 0x20 esp-idf/lwip/liblwip.a(sntp.c.obj) - .bss.dns_servers - 0x3fca0570 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss.dns_requests - 0x3fca05b8 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss.dns_table - 0x3fca05e8 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss.dns_pcbs 0x3fca0a88 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss.ip_data 0x3fca0a98 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x3fca0a98 ip_data - .bss.loop_netif - 0x3fca0adc 0x104 esp-idf/lwip/liblwip.a(netif.c.obj) - .bss.inseg 0x3fca0be0 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.dhcp_rx_options_given - 0x3fca0bf0 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3fca0bfb 0x1 - .bss.dhcp_rx_options_val - 0x3fca0bfc 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) - .bss.arp_table - 0x3fca0c28 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .bss.nd6_ra_buffer - 0x3fca0d18 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) - .bss.multicast_address - 0x3fca0d38 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) - .bss.default_router_list - 0x3fca0d4c 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fca0d4c default_router_list - .bss.prefix_list - 0x3fca0d70 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fca0d70 prefix_list - .bss.destination_cache - 0x3fca0dfc 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fca0dfc destination_cache - .bss.neighbor_cache - 0x3fca0fdc 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x3fca0fdc neighbor_cache - .bss.input 0x3fca10b8 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .bss.s_wifi_netifs - 0x3fca10f8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .bss.s_wifi_netifs - 0x3fca1104 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .bss.s_wifi_rxcbs - 0x3fca1110 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .bss.supported_ciphersuites - 0x3fca111c 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .bss.ecp_supported_grp_id - 0x3fca1208 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .bss.op_sem_buf.1 - 0x3fca123c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .bss.op_sem_buf.2 - 0x3fca1290 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .bss.s_set_lpclk_source_cb - 0x3fca12e4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .bss.coex_enabled_ref - 0x3fca12e8 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .bss.s_coex_rom_data_init - 0x3fca12e9 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .bss.len_dh_ie - 0x3fca12ea 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x3fca12ea len_dh_ie - *fill* 0x3fca12eb 0x1 - .bss.s_netstack_ref - 0x3fca12ec 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x3fca12ec s_netstack_ref - .bss.s_tx_cacheq - 0x3fca12f0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x3fca12f0 s_tx_cacheq - .bss.BcnIntvl 0x3fca12f8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss.ap_rxcb 0x3fca12fc 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fca12fc ap_rxcb - .bss.beacon_send_start_flag - 0x3fca1300 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3fca1301 0x3 - .bss.beacon_timer - 0x3fca1304 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss.g_beacon_dtim_send_mc - 0x3fca1318 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3fca1319 0x3 - .bss.g_beacon_eb - 0x3fca131c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fca131c g_beacon_eb - .bss.g_beacon_eb_allocated - 0x3fca1324 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .bss.g_beacon_idx - 0x3fca1325 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fca1325 g_beacon_idx - *fill* 0x3fca1326 0x2 - .bss.g_deauth_mac_list - 0x3fca1328 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fca1328 g_deauth_mac_list - .bss.g_sa_query_mac_list - 0x3fca1334 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x3fca1334 g_sa_query_mac_list - .bss.tim_offset - 0x3fca1340 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3fca1341 0x3 - .bss.wpa_crypto_funcs - 0x3fca1344 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x3fca1344 wpa_crypto_funcs - .bss.gChmCxt 0x3fca1370 0x250 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x3fca1370 gChmCxt - .bss.ctx 0x3fca15c0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - 0x3fca15c0 ctx - .bss.esp_mesh_quick_funcs - 0x3fca15c8 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fca15c8 esp_mesh_quick_funcs - .bss.g_mesh_topology - 0x3fca1678 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x3fca1678 g_mesh_topology - .bss.g_hmac_cnt - 0x3fca167c 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - 0x3fca167c g_hmac_cnt - .bss.ap_no_lr 0x3fca16bc 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca16bc ap_no_lr - *fill* 0x3fca16bd 0x3 - .bss.cnx_csa_timer - 0x3fca16c0 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .bss.g_authmode_incompatible - 0x3fca16d4 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca16d4 g_authmode_incompatible - .bss.g_authmode_threshold_failure - 0x3fca16d5 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca16d5 g_authmode_threshold_failure - *fill* 0x3fca16d6 0x2 - .bss.g_cnxMgr 0x3fca16d8 0xf28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca16d8 g_cnxMgr - .bss.g_cnx_probe_rc_list_cb - 0x3fca2600 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca2600 g_cnx_probe_rc_list_cb - .bss.g_in_blacklist_flag - 0x3fca2604 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca2604 g_in_blacklist_flag - .bss.g_rssi_threshold_failure - 0x3fca2605 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca2605 g_rssi_threshold_failure - .bss.is_connected_sync - 0x3fca2606 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .bss.reconnect_flag - 0x3fca2607 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca2607 reconnect_flag - .bss.s_csa_timer_bss - 0x3fca2608 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .bss.s_sta_last_start_txseq - 0x3fca260c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3fca260e 0x2 - .bss.sta_con_timer - 0x3fca2610 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x3fca2610 sta_con_timer - .bss.g_wifi_nvs_cfg - 0x3fca2624 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .bss.s_wifi_nvs - 0x3fca2628 0x514 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x3fca2628 s_wifi_nvs - .bss.s_ap_igtk - 0x3fca2b3c 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .bss.s_sta_igtk - 0x3fca2b8c 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .bss.ap_id.14977 - 0x3fca2bdc 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .bss.g_mac_sleep_en - 0x3fca2bdd 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x3fca2bdd g_mac_sleep_en - *fill* 0x3fca2bde 0x2 - .bss.g_wifi_menuconfig - 0x3fca2be0 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x3fca2be0 g_wifi_menuconfig - .bss.mac_list_lock - 0x3fca2c48 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x3fca2c48 mac_list_lock - .bss.s_wifi_task_hdl - 0x3fca2c4c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x3fca2c4c s_wifi_task_hdl - .bss.s_wpa2_start - 0x3fca2c50 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .bss.s_wps_start - 0x3fca2c51 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3fca2c52 0x2 - .bss.ftm_req_expiry_timer - 0x3fca2c54 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.ftm_resp_ctx - 0x3fca2c68 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x3fca2c68 ftm_resp_ctx - .bss.ftmr_timer - 0x3fca2c74 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.g_ftm_report_data - 0x3fca2c88 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.g_ftm_using_get_report_api - 0x3fca2c8c 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - *fill* 0x3fca2c8d 0x3 - .bss.s_ftm_initiator - 0x3fca2c90 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .bss.old_scan_id.16749 - 0x3fca2c94 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .bss.s_net80211_data_init - 0x3fca2c95 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3fca2c96 0x2 - .bss.s_wifi_api_lock - 0x3fca2c98 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x3fca2c98 s_wifi_api_lock - .bss.s_wifi_stop_in_progress - 0x3fca2c9c 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x3fca2c9c s_wifi_stop_in_progress - *fill* 0x3fca2c9d 0x3 - .bss.g_ic 0x3fca2ca0 0x2a4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x3fca2ca0 g_ic - .bss.avs_cb 0x3fca2f44 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .bss.avs_rx_content - 0x3fca2f48 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .bss.get_key_cb - 0x3fca2f4c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .bss.in_rssi_adjust - 0x3fca2f50 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fca2f50 in_rssi_adjust - .bss.rssi_index - 0x3fca2f51 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fca2f51 rssi_index - *fill* 0x3fca2f52 0x2 - .bss.rssi_saved - 0x3fca2f54 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fca2f54 rssi_saved - .bss.s_eapol_txdone_cb - 0x3fca2f5c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fca2f5c s_eapol_txdone_cb - .bss.sta_csa_timer - 0x3fca2f60 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x3fca2f60 sta_csa_timer - .bss.g_wifi_improve_contention_ability - 0x3fca2f74 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - 0x3fca2f74 g_wifi_improve_contention_ability - *fill* 0x3fca2f75 0x3 - .bss.tokens.12562 - 0x3fca2f78 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .bss.app_scan_params - 0x3fca2f7c 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x3fca2f7c app_scan_params - .bss.connect_scan_flag - 0x3fca2f8c 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x3fca2f8c connect_scan_flag - *fill* 0x3fca2f8d 0x3 - .bss.gScanStruct - 0x3fca2f90 0x11c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x3fca2f90 gScanStruct - .bss.s_ch.12977 - 0x3fca30ac 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3fca30ae 0x2 - .bss.s_owe_scan_flag - 0x3fca30b0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .bss.scannum 0x3fca30b4 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x3fca30b4 scannum - *fill* 0x3fca30b6 0x2 - .bss.beacon_monitor_data.13115 - 0x3fca30b8 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3fca30cc 0x4 - .bss.beacon_monitor_tbtt_time.13091 - 0x3fca30d0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .bss.g_pm 0x3fca30d8 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x3fca30d8 g_pm - .bss.g_pm_tx_null_func - 0x3fca32c8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .bss.if_ctrl 0x3fca32cc 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x3fca32cc if_ctrl - .bss.s_is_6m 0x3fca32f4 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x3fca32f4 s_is_6m - *fill* 0x3fca32f5 0x3 - .bss.s_fragment - 0x3fca32f8 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x3fca32f8 s_fragment - .bss.eb_space 0x3fca3308 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x3fca3308 eb_space - .bss.s_fix_rate - 0x3fca33c8 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fca33c8 s_fix_rate - .bss.s_fix_rate_mask - 0x3fca33d0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x3fca33d0 s_fix_rate_mask - .bss.g_lmac_cnt - 0x3fca33d4 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - 0x3fca33d4 g_lmac_cnt - *fill* 0x3fca3494 0x4 - .bss.g_pm_cnt 0x3fca3498 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - 0x3fca3498 g_pm_cnt - .bss.BcnSendTick - 0x3fca34e0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34e0 BcnSendTick - .bss.g_wdev_csi_rx - 0x3fca34e4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34e4 g_wdev_csi_rx - .bss.g_wdev_csi_rx_ctx - 0x3fca34e8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34e8 g_wdev_csi_rx_ctx - .bss.g_wdev_record_t1t4_cb - 0x3fca34ec 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34ec g_wdev_record_t1t4_cb - .bss.g_wdev_record_t2t3_cb - 0x3fca34f0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34f0 g_wdev_record_t2t3_cb - .bss.g_wdev_set_t1t4_cb - 0x3fca34f4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34f4 g_wdev_set_t1t4_cb - .bss.wDevMacSleep - 0x3fca34f8 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x3fca34f8 wDevMacSleep - *fill* 0x3fca356c 0x4 - .bss.s_tbttstart - 0x3fca3570 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x3fca3570 s_tbttstart - .bss.s_timer_post - 0x3fca3578 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - *fill* 0x3fca357c 0x4 - .bss.g_wpa_supp - 0x3fca3580 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x3fca3580 g_wpa_supp - .bss.g_sae_data - 0x3fca3628 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .bss.eloop 0x3fca36a8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .bss.s_sm_table - 0x3fca36c8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .bss.assoc_ie_buf - 0x3fca3708 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x3fca3708 assoc_ie_buf - .bss.gWpaSm 0x3fca3738 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x3fca3738 gWpaSm - .bss.g_log_level - 0x3fca3a70 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x3fca3a70 g_log_level - .bss.g_misc_nvs - 0x3fca3a74 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x3fca3a74 g_misc_nvs - .bss.g_misc_nvs_init - 0x3fca3a78 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - *fill* 0x3fca3a79 0x3 - .bss.s_sta_cnx_times - 0x3fca3a7c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .bss.chip7_phy_init_ctrl - 0x3fca3a80 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x3fca3a80 chip7_phy_init_ctrl - *fill* 0x3fca3aaa 0x2 - .bss.g_phyFuns - 0x3fca3aac 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x3fca3aac g_phyFuns - .bss.new_rom.4593 - 0x3fca3ab0 0x1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - *fill* 0x3fca3ab1 0x3 - .bss.phy_version_str - 0x3fca3ab4 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - 0x3fca3ab4 phy_version_str - .bss 0x3fca3adc 0x138 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - 0x3fca3adc __sf - .bss 0x3fca3c14 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) - .sbss.s_burn_counter - 0x3fca3c2c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .sbss.s_reset_reason - 0x3fca3c30 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .sbss.s_usbserial_timeout - 0x3fca3c34 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sbss.g_panic_abort_details - 0x3fca3c38 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x3fca3c38 g_panic_abort_details - .sbss.g_panic_abort - 0x3fca3c3c 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x3fca3c3c g_panic_abort - *fill* 0x3fca3c3d 0x3 - .sbss.g_startup_time - 0x3fca3c40 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x3fca3c40 g_startup_time - .sbss.g_exc_frames - 0x3fca3c48 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x3fca3c48 g_exc_frames - .sbss.ctx 0x3fca3c4c 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) - .sbss.base.0 0x3fca3c50 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) - .sbss.s_log_tags - 0x3fca3c54 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) - .sbss.s_log_cache_misses - 0x3fca3c58 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .sbss.s_log_cache_entry_count - 0x3fca3c5c 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .sbss.s_log_cache_max_generation - 0x3fca3c60 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .sbss.s_log_mutex - 0x3fca3c64 0x4 esp-idf/log/liblog.a(log_lock.c.obj) - .sbss.alloc_failed_callback - 0x3fca3c68 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sbss.registered_heaps - 0x3fca3c6c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x3fca3c6c registered_heaps - .sbss.non_iram_int_disabled_flag - 0x3fca3c70 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3fca3c71 0x3 - .sbss.non_iram_int_disabled - 0x3fca3c74 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.non_iram_int_mask - 0x3fca3c78 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.vector_desc_head - 0x3fca3c7c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.s_rtc_isr_handle - 0x3fca3c80 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .sbss.s_i2c_saradc_enable_cnt - 0x3fca3c84 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .sbss.s_bbpll_digi_consumers_ref_count - 0x3fca3c88 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_cur_pll_freq - 0x3fca3c8c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_saradc_power_on_cnt - 0x3fca3c90 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .sbss.s_pwdet_power_on_cnt - 0x3fca3c94 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .sbss.s_calibrated_freq - 0x3fca3c98 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .sbss.uxSchedulerSuspended - 0x3fca3ca0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xIdleTaskHandle - 0x3fca3ca4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNextTaskUnblockTime - 0x3fca3ca8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTaskNumber - 0x3fca3cac 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNumOfOverflows - 0x3fca3cb0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xYieldPending - 0x3fca3cb4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xPendedTicks - 0x3fca3cb8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xSchedulerRunning - 0x3fca3cbc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTopReadyPriority - 0x3fca3cc0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xTickCount - 0x3fca3cc4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxCurrentNumberOfTasks - 0x3fca3cc8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxDeletedTasksWaitingCleanUp - 0x3fca3ccc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxOverflowDelayedTaskList - 0x3fca3cd0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxDelayedTaskList - 0x3fca3cd4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxCurrentTCBs - 0x3fca3cd8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x3fca3cd8 pxCurrentTCBs - .sbss.xIsrStackBottom - 0x3fca3cdc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3cdc xIsrStackBottom - .sbss.xIsrStackTop - 0x3fca3ce0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3ce0 xIsrStackTop - .sbss.xPortSwitchFlag - 0x3fca3ce4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3ce4 xPortSwitchFlag - .sbss.port_uxOldInterruptState - 0x3fca3ce8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3ce8 port_uxOldInterruptState - .sbss.port_uxCriticalNesting - 0x3fca3cec 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3cec port_uxCriticalNesting - .sbss.port_uxInterruptNesting - 0x3fca3cf0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3cf0 port_uxInterruptNesting - .sbss.port_xSchedulerRunning - 0x3fca3cf4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x3fca3cf4 port_xSchedulerRunning - .sbss.s_handled_systicks - 0x3fca3cf8 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .sbss.s_time_lock - 0x3fca3cfc 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_adjtime_total_correction_us - 0x3fca3d00 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_adjtime_start_us - 0x3fca3d08 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_boot_time_lock - 0x3fca3d10 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - *fill* 0x3fca3d14 0x4 - .sbss.s_microseconds_offset - 0x3fca3d18 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x3fca3d18 s_microseconds_offset - .sbss.s_keys 0x3fca3d20 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x3fca3d20 s_keys - *fill* 0x3fca3d24 0x4 - .sbss.s_correction_us - 0x3fca3d28 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .sbss.s_alarm_handler - 0x3fca3d30 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_timer_interrupt_handle - 0x3fca3d34 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_uart_select_count - 0x3fca3d38 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.s_registered_select_num - 0x3fca3d40 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.s_registered_selects - 0x3fca3d44 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.pat_flg.38 - 0x3fca3d48 0x1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3fca3d49 0x3 - .sbss.p_uart_obj - 0x3fca3d4c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .sbss.remaining_allowed_no_sof_ticks - 0x3fca3d54 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .sbss.s_usb_serial_jtag_conn_status - 0x3fca3d58 0x1 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - *fill* 0x3fca3d59 0x3 - .sbss.s_registered_select_num - 0x3fca3d5c 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .sbss.s_registered_selects - 0x3fca3d60 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .sbss.p_usb_serial_jtag_obj - 0x3fca3d64 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .sbss.s_wifi_tsens_xpd_flag - 0x3fca3d68 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.s_wifi_pwdet_xpd_flag - 0x3fca3d69 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - *fill* 0x3fca3d6a 0x2 - .sbss.vfs_console - 0x3fca3d6c 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.primary_vfs - 0x3fca3d74 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.secondary_vfs - 0x3fca3d78 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.s_fd_table_lock - 0x3fca3d7c 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.s_vfs_count - 0x3fca3d80 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.g_fds 0x3fca3d84 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .sbss.light_device - 0x3fca3d88 0x4 esp-idf/main/libmain.a(app_main.c.obj) - 0x3fca3d88 light_device - .sbss.esp_rmaker_priv_data - 0x3fca3d8c 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .sbss.rmaker_core_event_group - 0x3fca3d90 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .sbss.node_created.0 - 0x3fca3d94 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - *fill* 0x3fca3d95 0x3 - .sbss.s_param_buf_size.0 - 0x3fca3d98 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .sbss.s_node_params_buf.1 - 0x3fca3d9c 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .sbss.esp_rmaker_params_mqtt_init_done - 0x3fca3da0 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - *fill* 0x3fca3da1 0x3 - .sbss.esp_rmaker_user_mapping_lock - 0x3fca3da4 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x3fca3da4 esp_rmaker_user_mapping_lock - .sbss.rmaker_user_mapping_state - 0x3fca3da8 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x3fca3da8 rmaker_user_mapping_state - .sbss.rmaker_user_mapping_data - 0x3fca3dac 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .sbss.schedule_priv_data - 0x3fca3db0 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .sbss.scenes_priv_data - 0x3fca3db4 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .sbss.enabled.0 - 0x3fca3db8 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .sbss.cmd_resp_topic_subscribed - 0x3fca3db9 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - *fill* 0x3fca3dba 0x2 - .sbss.claim_event_group - 0x3fca3dbc 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .sbss.wait_for_provisioning - 0x3fca3dc0 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - *fill* 0x3fca3dc1 0x3 - .sbss.g_serv_name - 0x3fca3dc4 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .sbss.g_local_ctrl_is_started - 0x3fca3dc8 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - *fill* 0x3fca3dc9 0x3 - .sbss.mqtt_budget_lock - 0x3fca3dcc 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .sbss.mqtt_budget_timer - 0x3fca3dd0 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .sbss.ota_init_done.0 - 0x3fca3dd4 0x1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - *fill* 0x3fca3dd5 0x3 - .sbss.g_ota_priv - 0x3fca3dd8 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .sbss.failed_cnt.0 - 0x3fca3ddc 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.custom_pop - 0x3fca3de0 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.custom_mfg_data_len - 0x3fca3de4 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.custom_mfg_data - 0x3fca3de8 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.prov_stop_timer - 0x3fca3dec 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.network_event_group - 0x3fca3df0 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .sbss.retries.2 - 0x3fca3df4 0x4 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .sbss.g_strip 0x3fca3df8 0x4 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .sbss.ws2812_t1l_ticks - 0x3fca3dfc 0x4 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .sbss.ws2812_t0l_ticks - 0x3fca3e00 0x4 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .sbss.ws2812_t1h_ticks - 0x3fca3e04 0x4 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .sbss.ws2812_t0h_ticks - 0x3fca3e08 0x4 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .sbss.local_ctrl_inst_ctx - 0x3fca3e0c 0x4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x3fca3e0c local_ctrl_inst_ctx - .sbss.server_handle - 0x3fca3e10 0x4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .sbss.share_step.17 - 0x3fca3e14 0x1 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3fca3e15 0x3 - .sbss._mdns_stack_buffer - 0x3fca3e18 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .sbss._mdns_service_semaphore - 0x3fca3e1c 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .sbss._mdns_service_task_handle - 0x3fca3e20 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .sbss._mdns_host_list - 0x3fca3e24 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .sbss._mdns_server - 0x3fca3e28 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x3fca3e28 _mdns_server - .sbss._pcb_main - 0x3fca3e2c 0x4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .sbss.init_done - 0x3fca3e30 0x1 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .sbss.nvs_enabled - 0x3fca3e31 0x1 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - *fill* 0x3fca3e32 0x2 - .sbss.esp_schedule_nvs_partition - 0x3fca3e34 0x4 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .sbss.sec1_params.4 - 0x3fca3e38 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .sbss.prov_ctx - 0x3fca3e40 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .sbss.prov_ctx_lock - 0x3fca3e44 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .sbss.custom_manufacturer_data_len - 0x3fca3e48 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .sbss.custom_manufacturer_data - 0x3fca3e4c 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .sbss.custom_service_uuid - 0x3fca3e50 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .sbss.pc_ext_httpd_handle_provided - 0x3fca3e54 0x1 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - *fill* 0x3fca3e55 0x3 - .sbss.pc_httpd - 0x3fca3e58 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .sbss.ble_cfg_p - 0x3fca3e5c 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.uuid128_name_list - 0x3fca3e60 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.protocomm_ble_addr - 0x3fca3e64 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.protocomm_ble_mfg_data_len - 0x3fca3e68 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.protocomm_ble_mfg_data - 0x3fca3e6c 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.protocomm_ble_device_name - 0x3fca3e70 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.protoble_internal - 0x3fca3e74 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.own_addr_type - 0x3fca3e78 0x1 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - *fill* 0x3fca3e79 0x3 - .sbss.data_mbuf_list - 0x3fca3e7c 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.s_cached_conn_handle - 0x3fca3e80 0x2 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - *fill* 0x3fca3e82 0x2 - .sbss.num_chr_dsc - 0x3fca3e84 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .sbss.ble_hs_id_rnd - 0x3fca3e88 0x6 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - *fill* 0x3fca3e8e 0x2 - .sbss.ble_hs_id_pub - 0x3fca3e90 0x6 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .sbss.ble_hs_max_client_configs - 0x3fca3e96 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca3e96 ble_hs_max_client_configs - .sbss.ble_hs_max_services - 0x3fca3e98 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca3e98 ble_hs_max_services - .sbss.ble_hs_max_attrs - 0x3fca3e9a 0x2 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca3e9a ble_hs_max_attrs - .sbss.ble_hs_mutex - 0x3fca3e9c 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_evq - 0x3fca3ea0 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_timer - 0x3fca3ea4 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_parent_task - 0x3fca3ea8 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_reset_reason - 0x3fca3eac 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_enabled_state - 0x3fca3eb0 0x1 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca3eb0 ble_hs_enabled_state - .sbss.ble_hs_sync_state - 0x3fca3eb1 0x1 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca3eb1 ble_hs_sync_state - *fill* 0x3fca3eb2 0x2 - .sbss.ble_hs_ev_start_stage2 - 0x3fca3eb4 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_ev_start_stage1 - 0x3fca3eb8 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_ev_reset - 0x3fca3ebc 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.ble_hs_ev_tx_notifications - 0x3fca3ec0 0x4 esp-idf/bt/libbt.a(ble_hs.c.obj) - .sbss.reattempt_conn - 0x3fca3ec4 0x8 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - 0x3fca3ec4 reattempt_conn - .sbss.ble_att_preferred_mtu_val - 0x3fca3ecc 0x2 esp-idf/bt/libbt.a(ble_att.c.obj) - *fill* 0x3fca3ece 0x2 - .sbss.error.2 0x3fca3ed0 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .sbss.ble_gattc_resume_at - 0x3fca3ed4 0x4 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .sbss.ble_gattc_procs - 0x3fca3ed8 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .sbss.ble_l2cap_sig_cur_id - 0x3fca3ee0 0x1 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - *fill* 0x3fca3ee1 0x3 - .sbss.ble_l2cap_sig_procs - 0x3fca3ee4 0x8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .sbss.preempt_done_mutex - 0x3fca3eec 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .sbss.g_max_rx_octets - 0x3fca3ef0 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca3ef0 g_max_rx_octets - .sbss.g_max_tx_octets - 0x3fca3ef8 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca3ef8 g_max_tx_octets - .sbss.g_max_rx_time - 0x3fca3f00 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca3f00 g_max_rx_time - .sbss.g_max_tx_time - 0x3fca3f08 0x8 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca3f08 g_max_tx_time - .sbss.ble_gap_update_entries - 0x3fca3f10 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .sbss.ble_gap_event_listener_list - 0x3fca3f14 0x4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .sbss.rpa_timeout - 0x3fca3f18 0x2 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x3fca3f18 rpa_timeout - .sbss.ble_hs_pvcy_started - 0x3fca3f1a 0x1 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - *fill* 0x3fca3f1b 0x1 - .sbss.ble_gatts_num_cfgable_chrs - 0x3fca3f1c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_gatts_clt_cfgs - 0x3fca3f20 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_gatts_clt_cfg_mem - 0x3fca3f24 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_gatts_num_svc_entries - 0x3fca3f28 0x2 esp-idf/bt/libbt.a(ble_gatts.c.obj) - *fill* 0x3fca3f2a 0x2 - .sbss.ble_gatts_svc_entries - 0x3fca3f2c 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_gatts_num_svc_defs - 0x3fca3f30 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_gatts_svc_defs - 0x3fca3f34 0x4 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .sbss.ble_hs_hci_avail_pkts - 0x3fca3f38 0x2 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x3fca3f38 ble_hs_hci_avail_pkts - .sbss.ble_hs_hci_version - 0x3fca3f3a 0x1 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - *fill* 0x3fca3f3b 0x1 - .sbss.ble_hs_hci_sup_feat - 0x3fca3f3c 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .sbss.ble_hs_hci_max_pkts - 0x3fca3f40 0x1 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - *fill* 0x3fca3f41 0x1 - .sbss.ble_hs_hci_buf_sz - 0x3fca3f42 0x2 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .sbss.ble_hs_hci_ack - 0x3fca3f44 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .sbss.ble_hs_hci_sem - 0x3fca3f48 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .sbss.ble_hs_hci_mutex - 0x3fca3f4c 0x4 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .sbss.ble_store_config_num_local_irks - 0x3fca3f50 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f50 ble_store_config_num_local_irks - .sbss.ble_store_config_num_rpa_recs - 0x3fca3f54 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f54 ble_store_config_num_rpa_recs - .sbss.ble_store_config_num_csfcs - 0x3fca3f58 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f58 ble_store_config_num_csfcs - .sbss.ble_store_config_num_cccds - 0x3fca3f5c 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f5c ble_store_config_num_cccds - .sbss.ble_store_config_num_peer_secs - 0x3fca3f60 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f60 ble_store_config_num_peer_secs - .sbss.ble_store_config_peer_bond_count - 0x3fca3f64 0x2 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f64 ble_store_config_peer_bond_count - .sbss.ble_store_config_our_bond_count - 0x3fca3f66 0x2 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f66 ble_store_config_our_bond_count - .sbss.ble_store_config_num_our_secs - 0x3fca3f68 0x4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca3f68 ble_store_config_num_our_secs - .sbss.ble_hs_ev_stop - 0x3fca3f6c 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) - .sbss.ble_hs_stop_sem - 0x3fca3f70 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) - .sbss.g_eventq_dflt - 0x3fca3f74 0x4 esp-idf/bt/libbt.a(nimble_port.c.obj) - .sbss.host_task_h - 0x3fca3f78 0x4 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .sbss.log_count - 0x3fca3f7c 0x1 esp-idf/bt/libbt.a(os_mbuf.c.obj) - *fill* 0x3fca3f7d 0x3 - .sbss.os_msys_init_2_data - 0x3fca3f80 0x4 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .sbss.os_msys_init_1_data - 0x3fca3f84 0x4 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .sbss.npl_funcs - 0x3fca3f88 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca3f88 npl_funcs - .sbss.hw_critical_state_status - 0x3fca3f8c 0x1 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca3f8c hw_critical_state_status - *fill* 0x3fca3f8d 0x3 - .sbss.vhci_send_sem - 0x3fca3f90 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .sbss.log_count - 0x3fca3f94 0x1 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - *fill* 0x3fca3f95 0x3 - .sbss.pool_acl_buf - 0x3fca3f98 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .sbss.pool_evt_lo_buf - 0x3fca3f9c 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .sbss.pool_evt_buf - 0x3fca3fa0 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .sbss.pool_cmd_buf - 0x3fca3fa4 0x4 esp-idf/bt/libbt.a(transport.c.obj) - .sbss.ble_hs_conns - 0x3fca3fa8 0x4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .sbss.ble_sm_procs - 0x3fca3fac 0x8 esp-idf/bt/libbt.a(ble_sm.c.obj) - .sbss.ble_att_svr_entry_mem - 0x3fca3fb4 0x4 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .sbss.ble_att_svr_id - 0x3fca3fb8 0x2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - *fill* 0x3fca3fba 0x2 - .sbss.ble_att_svr_hidden_list - 0x3fca3fbc 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .sbss.ble_att_svr_list - 0x3fca3fc4 0x8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .sbss.ble_hs_stop_terminate_tmo - 0x3fca3fcc 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .sbss.ble_hs_stop_conn_cnt - 0x3fca3fd0 0x1 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - *fill* 0x3fca3fd1 0x3 - .sbss.ble_hs_stop_listeners - 0x3fca3fd4 0x4 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .sbss.ble_sm_sc_keys_generated - 0x3fca3fd8 0x1 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - *fill* 0x3fca3fd9 0x3 - .sbss.queue_state - 0x3fca3fdc 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .sbss.work_queue - 0x3fca3fe0 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .sbss.esp_rmaker_storage_init_done.0 - 0x3fca3fe4 0x1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .sbss.init_done - 0x3fca3fe5 0x1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - *fill* 0x3fca3fe6 0x2 - .sbss.reset_timer - 0x3fca3fe8 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .sbss.reboot_timer - 0x3fca3fec 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .sbss.cli_started.0 - 0x3fca3ff0 0x1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - *fill* 0x3fca3ff1 0x3 - .sbss.long_data.0 - 0x3fca3ff4 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .sbss.mqtt_data - 0x3fca3ff8 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - 0x3fca3ff8 mqtt_data - .sbss.registered.0 - 0x3fca3ffc 0x1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - *fill* 0x3fca3ffd 0x3 - .sbss.s_tmp_line_buf - 0x3fca4000 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .sbss.s_cmd_list - 0x3fca4004 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .sbss.s_crt_bundle - 0x3fca4008 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .sbss.curr_partition.2 - 0x3fca400c 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_ota_ops_last_handle - 0x3fca4010 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_ota_ops_entries_head - 0x3fca4014 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_partition_list_lock - 0x3fca4018 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .sbss.s_partition_list - 0x3fca401c 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .sbss.map 0x3fca4020 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .sbss.flash_erasing - 0x3fca4024 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .sbss.flash_brownout_needs_reset - 0x3fca4025 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - *fill* 0x3fca4026 0x2 - .sbss.s_flash_op_cache_state - 0x3fca4028 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .sbss.s_flash_guard_ops - 0x3fca4030 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .sbss.esp_flash_default_chip - 0x3fca4034 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x3fca4034 esp_flash_default_chip - .sbss.reason 0x3fca4038 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .sbss.iwdt_context - 0x3fca403c 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .sbss.p_twdt_obj - 0x3fca4044 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .sbss.g_twdt_isr - 0x3fca4048 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x3fca4048 g_twdt_isr - *fill* 0x3fca4049 0x3 - .sbss.s_crypto_sha_aes_lock - 0x3fca404c 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_mpi_lock - 0x3fca4050 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_hmac_lock - 0x3fca4054 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_ds_lock - 0x3fca4058 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_rc_fast_freq - 0x3fca405c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .sbss.s_periph_ref_counts - 0x3fca4060 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - *fill* 0x3fca4061 0x3 - .sbss.last_ccount.1 - 0x3fca4064 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .sbss.s_temperature_sensor_power_cnt - 0x3fca4068 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sbss.s_adc_digi_ctrlr_cnt - 0x3fca406c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.xLastTime.17 - 0x3fca4070 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .sbss.xTimerTaskHandle - 0x3fca4074 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .sbss.xTimerQueue - 0x3fca4078 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .sbss.pxOverflowTimerList - 0x3fca407c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .sbss.pxCurrentTimerList - 0x3fca4080 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .sbss.s_timer_task - 0x3fca4084 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss.s_timers - 0x3fca4088 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss.s_default_loop - 0x3fca408c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .sbss._ZN14NVSHandleEntry17s_nvs_next_handleE - 0x3fca4090 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x3fca4090 NVSHandleEntry::s_nvs_next_handle - .sbss._ZN3nvs19NVSPartitionManager8instanceE - 0x3fca4094 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x3fca4094 nvs::NVSPartitionManager::instance - .sbss._ZN3nvs4Lock10mSemaphoreE - 0x3fca4098 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x3fca4098 nvs::Lock::mSemaphore - .sbss._ZN3nvs4Page8SEC_SIZEE - 0x3fca409c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x3fca409c nvs::Page::SEC_SIZE - .sbss.s_rmt_source_clock_hz - 0x3fca40a0 0x4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .sbss.s_phy_modem_init_ref - 0x3fca40a4 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3fca40a5 0x3 - .sbss.s_phy_digital_regs_mem - 0x3fca40a8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .sbss.s_is_phy_reg_stored - 0x3fca40ac 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .sbss.s_is_phy_calibrated - 0x3fca40ad 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3fca40ae 0x2 - .sbss.s_phy_access_lock - 0x3fca40b0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3fca40b4 0x4 - .sbss.s_bt_154_prev_timestamp - 0x3fca40b8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.s_wifi_prev_timestamp - 0x3fca40c0 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.phy_track_pll_timer - 0x3fca40c8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.s_phy_modem_flag - 0x3fca40cc 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - *fill* 0x3fca40ce 0x2 - .sbss.time_sync_notification_cb - 0x3fca40d0 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.sntp_sync_status - 0x3fca40d4 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.sntp_sync_mode - 0x3fca40d8 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.select_cb_list - 0x3fca40dc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) - .sbss.select_cb_ctr - 0x3fca40e0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) - .sbss.tcpip_mbox - 0x3fca40e4 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .sbss.tcpip_init_done_arg - 0x3fca40e8 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .sbss.tcpip_init_done - 0x3fca40ec 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .sbss.sntp_retry_timeout - 0x3fca40f0 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.sntp_pcb - 0x3fca40f4 0x4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.sntp_opmode - 0x3fca40f8 0x1 esp-idf/lwip/liblwip.a(sntp.c.obj) - .sbss.dns_seqno - 0x3fca40f9 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) - .sbss.dns_last_pcb_idx - 0x3fca40fa 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) - .sbss.s_is_tmr_start - 0x3fca40fb 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) - .sbss.num_tcp_pcb - 0x3fca40fc 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) - .sbss.netif_num - 0x3fca4100 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3fca4101 0x3 - .sbss.netif_default - 0x3fca4104 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x3fca4104 netif_default - .sbss.netif_list - 0x3fca4108 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x3fca4108 netif_list - .sbss.ext_callback - 0x3fca410c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) - .sbss.pbuf_free_ooseq_pending - 0x3fca4110 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x3fca4110 pbuf_free_ooseq_pending - *fill* 0x3fca4111 0x3 - .sbss.raw_pcbs - 0x3fca4114 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) - .sbss.tcp_timer_ctr - 0x3fca4118 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) - .sbss.tcp_timer - 0x3fca4119 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) - .sbss.tcp_active_pcbs_changed - 0x3fca411a 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca411a tcp_active_pcbs_changed - *fill* 0x3fca411b 0x1 - .sbss.tcp_tw_pcbs - 0x3fca411c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca411c tcp_tw_pcbs - .sbss.tcp_active_pcbs - 0x3fca4120 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca4120 tcp_active_pcbs - .sbss.tcp_listen_pcbs - 0x3fca4124 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca4124 tcp_listen_pcbs - .sbss.tcp_bound_pcbs - 0x3fca4128 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca4128 tcp_bound_pcbs - .sbss.tcp_ticks - 0x3fca412c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3fca412c tcp_ticks - .sbss.tcp_input_pcb - 0x3fca4130 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - 0x3fca4130 tcp_input_pcb - .sbss.recv_data - 0x3fca4134 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.recv_flags - 0x3fca4138 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.flags 0x3fca4139 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcplen 0x3fca413a 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.recv_acked - 0x3fca413c 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3fca413e 0x2 - .sbss.ackno 0x3fca4140 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.seqno 0x3fca4144 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcp_optidx - 0x3fca4148 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3fca414a 0x2 - .sbss.tcphdr_opt2 - 0x3fca414c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcphdr_opt1len - 0x3fca4150 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcphdr_optlen - 0x3fca4152 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcphdr 0x3fca4154 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .sbss.tcpip_tcp_timer_active - 0x3fca4158 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .sbss.current_timeout_due_time - 0x3fca415c 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .sbss.next_timeout - 0x3fca4160 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .sbss.udp_pcbs - 0x3fca4164 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x3fca4164 udp_pcbs - .sbss.xid.13 0x3fca4168 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .sbss.dhcp_pcb_refcount - 0x3fca416c 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3fca416d 0x3 - .sbss.dhcp_pcb - 0x3fca4170 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .sbss.etharp_cached_entry - 0x3fca4174 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) - .sbss.is_tmr_start - 0x3fca4175 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x3fca4176 0x2 - .sbss.allrouters - 0x3fca4178 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) - .sbss.allsystems - 0x3fca417c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) - .sbss.ip4_default_multicast_netif - 0x3fca4180 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) - .sbss.ip_id 0x3fca4184 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) - *fill* 0x3fca4186 0x2 - .sbss.identification.1 - 0x3fca4188 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .sbss.is_tmr_start - 0x3fca418c 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) - .sbss.last_router.1 - 0x3fca418d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - .sbss.nd6_tmr_rs_reduction - 0x3fca418e 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - .sbss.nd6_cached_destination_index - 0x3fca418f 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - .sbss.nd6_queue_size - 0x3fca4190 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3fca4191 0x3 - .sbss.base_time - 0x3fca4194 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .sbss.lwip_task.1 - 0x3fca4198 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .sbss.sys_thread_sem_key - 0x3fca419c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .sbss.g_lwip_protect_mutex - 0x3fca41a0 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .sbss.s_esp_netif_counter - 0x3fca41a4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .sbss.s_head 0x3fca41a8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x3fca41a8 s_head - .sbss.api_lock_sem - 0x3fca41ac 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .sbss.api_sync_sem - 0x3fca41b0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .sbss.netif_callback - 0x3fca41b4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .sbss.s_is_last_default_esp_netif_overridden - 0x3fca41bc 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x3fca41bd 0x3 - .sbss.s_last_default_esp_netif - 0x3fca41c0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .sbss.s_wifi_inited - 0x3fca41c4 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .sbss.wifi_default_handlers_set - 0x3fca41c5 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x3fca41c6 0x2 - .sbss.s_wifi_thread_sem_key.0 - 0x3fca41c8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .sbss.s_wifi_thread_sem_key_init.1 - 0x3fca41cc 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x3fca41cd 0x3 - .sbss.global_cacert - 0x3fca41d0 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .sbss.supported_init - 0x3fca41d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .sbss.init_done.1 - 0x3fca41d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .sbss.mul_count - 0x3fca41dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .sbss.dbl_count - 0x3fca41e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .sbss.add_count - 0x3fca41e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .sbss.s_timeout_ms - 0x3fca41e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .sbss.s_ds_lock - 0x3fca41ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .sbss.s_ds_data - 0x3fca41f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .sbss.s_esp_ds_hmac_key_id - 0x3fca41f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .sbss.op_complete_sem - 0x3fca41f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .sbss.op_complete_sem - 0x3fca41fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .sbss.tx_channel - 0x3fca4200 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .sbss.rx_channel - 0x3fca4204 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .sbss.wpa_cb 0x3fca4208 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x3fca4208 wpa_cb - .sbss.wifi_funcs - 0x3fca420c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x3fca420c wifi_funcs - .sbss.g_wpa_pmk_caching_disabled - 0x3fca4210 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x3fca4210 g_wpa_pmk_caching_disabled - *fill* 0x3fca4211 0x3 - .sbss.s_wps_sm_cb - 0x3fca4214 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .sbss.g_wpa3_hostap_auth_api_lock - 0x3fca4218 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x3fca4218 g_wpa3_hostap_auth_api_lock - .sbss.g_wpa3_hostap_evt_queue - 0x3fca421c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.g_wpa3_hostap_task_hdl - 0x3fca4220 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.g_sae_confirm - 0x3fca4224 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.g_sae_commit - 0x3fca4228 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.g_sae_token - 0x3fca422c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.g_sae_pt - 0x3fca4230 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .sbss.global_hapd - 0x3fca4234 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x3fca4234 global_hapd - .sbss.eloop_data_lock - 0x3fca4238 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .sbss.s_sm_valid_bitmap - 0x3fca423c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .sbss.gEapSm 0x3fca4240 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .sbss._ZN12_GLOBAL__N_113__new_handlerE - 0x3fca4244 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .sbss._ZN12_GLOBAL__N_12mxE - 0x3fca4248 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .sbss._ZL4init - 0x3fca424c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .sbss._ZN17__eh_globals_init7_S_initE - 0x3fca4250 0x1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - 0x3fca4250 __eh_globals_init::_S_init - *fill* 0x3fca4251 0x3 - .sbss._ZN12_GLOBAL__N_110eh_globalsE - 0x3fca4254 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .sbss._ZN12_GLOBAL__N_12mxE - 0x3fca425c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .sbss 0x3fca4260 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .sbss 0x3fca4264 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - 0x3fca4270 optind - 0x3fca4274 optarg - .sbss 0x3fca4278 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .sbss 0x3fca427c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - 0x3fca427c __stdio_exit_handler - .sbss 0x3fca4280 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .sbss 0x3fca4284 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - 0x3fca4284 _timezone - 0x3fca4288 _daylight - .sbss 0x3fca428c 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - 0x3fca428c __atexit - *(.ext_ram.bss .ext_ram.bss.*) - *(EXCLUDE_FILE(*libbtdm_app.a *libbt.a) COMMON) - 0x3fca4290 . = ALIGN (0x4) - 0x3fca4290 _bt_bss_start = ABSOLUTE (.) - *libbt.a:(.bss .bss.*) - .bss.ble_hs_rx_q - 0x3fca4290 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) - .bss.ble_hs_hci_os_event_buf - 0x3fca429c 0x98 esp-idf/bt/libbt.a(ble_hs.c.obj) - .bss.ble_hs_hci_ev_pool - 0x3fca4334 0x1c esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x3fca4334 ble_hs_hci_ev_pool - .bss.ble_gattc_proc_pool - 0x3fca4350 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .bss.ble_gattc_proc_mem - 0x3fca436c 0xf0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .bss.ble_l2cap_sig_proc_pool - 0x3fca445c 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .bss.ble_l2cap_sig_proc_mem - 0x3fca4478 0x14 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .bss.slaves.0 0x3fca448c 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.slave_conn - 0x3fca449c 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca449c slave_conn - .bss.ble_gap_update_entry_pool - 0x3fca44ac 0x1c esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.ble_gap_update_entry_mem - 0x3fca44c8 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.ble_gap_slave - 0x3fca44e0 0x20 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.ble_gap_master - 0x3fca4500 0x14 esp-idf/bt/libbt.a(ble_gap.c.obj) - .bss.ble_adv_reattempt - 0x3fca4514 0xcc esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca4514 ble_adv_reattempt - .bss.ble_conn_reattempt - 0x3fca45e0 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x3fca45e0 ble_conn_reattempt - .bss.ble_hs_pvcy_default_irk - 0x3fca4608 0x10 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x3fca4608 ble_hs_pvcy_default_irk - .bss.ble_hs_pvcy_irk - 0x3fca4618 0x10 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .bss.ble_l2cap_chan_mem - 0x3fca4628 0xfc esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .bss.ble_l2cap_chan_pool - 0x3fca4724 0x1c esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x3fca4724 ble_l2cap_chan_pool - .bss.ble_gatts_clt_cfg_pool - 0x3fca4740 0x1c esp-idf/bt/libbt.a(ble_gatts.c.obj) - .bss.ble_hs_hci_frag_mempool - 0x3fca475c 0x1c esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .bss.ble_hs_hci_frag_mbuf_pool - 0x3fca4778 0xc esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .bss.ble_hs_hci_frag_data - 0x3fca4784 0x12c esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .bss.ble_hs_hci_sup_cmd - 0x3fca48b0 0x40 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .bss.ble_store_config_local_irks - 0x3fca48f0 0x45 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca48f0 ble_store_config_local_irks - *fill* 0x3fca4935 0x3 - .bss.ble_store_config_rpa_recs - 0x3fca4938 0x2a esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca4938 ble_store_config_rpa_recs - *fill* 0x3fca4962 0x2 - .bss.ble_store_config_csfcs - 0x3fca4964 0x18 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca4964 ble_store_config_csfcs - .bss.ble_store_config_cccds - 0x3fca497c 0x80 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca497c ble_store_config_cccds - *fill* 0x3fca49fc 0x4 - .bss.ble_store_config_peer_secs - 0x3fca4a00 0x108 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca4a00 ble_store_config_peer_secs - .bss.ble_store_config_our_secs - 0x3fca4b08 0x108 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x3fca4b08 ble_store_config_our_secs - .bss.stop_listener - 0x3fca4c10 0xc esp-idf/bt/libbt.a(nimble_port.c.obj) - .bss.os_msys_init_2_mempool - 0x3fca4c1c 0x1c esp-idf/bt/libbt.a(os_msys_init.c.obj) - .bss.os_msys_init_2_mbuf_pool - 0x3fca4c38 0xc esp-idf/bt/libbt.a(os_msys_init.c.obj) - .bss.os_msys_init_1_mempool - 0x3fca4c44 0x1c esp-idf/bt/libbt.a(os_msys_init.c.obj) - .bss.os_msys_init_1_mbuf_pool - 0x3fca4c60 0xc esp-idf/bt/libbt.a(os_msys_init.c.obj) - .bss.ble_freertos_mutex_buf - 0x3fca4c6c 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss.ble_freertos_mutex_pool - 0x3fca4c94 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca4c94 ble_freertos_mutex_pool - .bss.ble_freertos_sem_buf - 0x3fca4cb0 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss.ble_freertos_sem_pool - 0x3fca4cd8 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca4cd8 ble_freertos_sem_pool - .bss.ble_freertos_co_buf - 0x3fca4cf4 0x1e0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss.ble_freertos_co_pool - 0x3fca4ed4 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca4ed4 ble_freertos_co_pool - .bss.ble_freertos_evq_buf - 0x3fca4ef0 0x28 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss.ble_freertos_evq_pool - 0x3fca4f18 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca4f18 ble_freertos_evq_pool - .bss.ble_freertos_ev_buf - 0x3fca4f34 0x3c0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .bss.ble_freertos_ev_pool - 0x3fca52f4 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3fca52f4 ble_freertos_ev_pool - .bss.mpool_acl - 0x3fca5310 0xc esp-idf/bt/libbt.a(transport.c.obj) - .bss.pool_acl 0x3fca531c 0x24 esp-idf/bt/libbt.a(transport.c.obj) - .bss.pool_evt_lo - 0x3fca5340 0x1c esp-idf/bt/libbt.a(transport.c.obj) - .bss.pool_evt 0x3fca535c 0x1c esp-idf/bt/libbt.a(transport.c.obj) - .bss.pool_cmd 0x3fca5378 0x1c esp-idf/bt/libbt.a(transport.c.obj) - .bss.ble_hs_conn_elem_mem - 0x3fca5394 0x168 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .bss.ble_hs_conn_pool - 0x3fca54fc 0x1c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .bss.ble_sm_proc_pool - 0x3fca5518 0x1c esp-idf/bt/libbt.a(ble_sm.c.obj) - .bss.ble_sm_proc_mem - 0x3fca5534 0x190 esp-idf/bt/libbt.a(ble_sm.c.obj) - .bss.ble_att_svr_prep_entry_pool - 0x3fca56c4 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .bss.ble_att_svr_prep_entry_mem - 0x3fca56e0 0x300 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .bss.ble_att_svr_entry_pool - 0x3fca59e0 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .bss.keypair 0x3fca59fc 0x80 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .bss.ble_hs_stop_gap_listener - 0x3fca5a7c 0xc esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .bss.ble_sm_sc_priv_key - 0x3fca5a88 0x20 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .bss.ble_sm_sc_pub_key - 0x3fca5aa8 0x40 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x3fca5ae8 . = ALIGN (0x4) - 0x3fca5ae8 _bt_bss_end = ABSOLUTE (.) - 0x3fca5ae8 . = ALIGN (0x4) - 0x3fca5ae8 _bt_common_start = ABSOLUTE (.) - *libbt.a:(COMMON) - 0x3fca5ae8 . = ALIGN (0x4) - 0x3fca5ae8 _bt_common_end = ABSOLUTE (.) - 0x3fca5ae8 . = ALIGN (0x4) - 0x3fca5ae8 _bt_controller_bss_start = ABSOLUTE (.) - *libbtdm_app.a:(.bss .bss.*) - .bss.counter.20655 - 0x3fca5ae8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .bss.pll_track_state - 0x3fca5aec 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x3fca5aec pll_track_state - .bss.coex_schm_btdm_env - 0x3fca5afc 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x3fca5afc coex_schm_btdm_env - .bss.bt_bb_intr_handle - 0x3fca5b08 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .bss.rwble_intr_handle - 0x3fca5b0c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .bss.ble_acl_data_rx_cb - 0x3fca5b10 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x3fca5b10 ble_acl_data_rx_cb - .bss.llc_enc_state - 0x3fca5b14 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x3fca5b14 llc_enc_state - *fill* 0x3fca5b16 0x2 - .bss.adv_adv_data_need_to_set - 0x3fca5b18 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x3fca5b18 adv_adv_data_need_to_set - *fill* 0x3fca5b22 0x2 - .bss.adv_scan_rsp_data_need_to_set - 0x3fca5b24 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x3fca5b24 adv_scan_rsp_data_need_to_set - *fill* 0x3fca5b2e 0x2 - .bss.g_ble_ext_config - 0x3fca5b30 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x3fca5b30 g_ble_ext_config - .bss.lld_con_cntl_pkt_info - 0x3fca5b50 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x3fca5b50 lld_con_cntl_pkt_info - .bss.aux_chan_idx - 0x3fca5ba4 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .bss.fixed_chan_idx - 0x3fca5ba5 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - *fill* 0x3fca5ba6 0x2 - .bss.lld_le_pkt_env - 0x3fca5ba8 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x3fca5ba8 lld_le_pkt_env - .bss.lld_pkt_record_en - 0x3fca5bd8 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - *fill* 0x3fca5bd9 0x3 - .bss.lld_rpa_res_list - 0x3fca5bdc 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x3fca5bdc lld_rpa_res_list - *fill* 0x3fca5c5e 0x2 - .bss.lld_wl_res_list - 0x3fca5c60 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x3fca5c60 lld_wl_res_list - .bss.periodic_adv_data_need_to_set - 0x3fca5c90 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - 0x3fca5c90 periodic_adv_data_need_to_set - *fill* 0x3fca5c9a 0x2 - .bss.lld_scan_evt_end_reason - 0x3fca5c9c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .bss.scan_anchor_point - 0x3fca5ca0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .bss.llm_hci_command_handler_tab - 0x3fca5ca8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x3fca5ca8 llm_hci_command_handler_tab - .bss.le_scan_duplicate_option - 0x3fca5cac 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x3fca5cac le_scan_duplicate_option - .bss.llm_csa 0x3fca5ce8 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .bss.nvds_env 0x3fca5cec 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .bss.nvds_temp_buf - 0x3fca5d04 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .bss.g_rf_pwr_tbl_desc - 0x3fca5d08 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x3fca5d08 g_rf_pwr_tbl_desc - .bss.ble_isr_state - 0x3fca5d14 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x3fca5d14 ble_isr_state - .bss.enc_in_buf.17693 - 0x3fca5d70 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .bss.g_waking_sleeping_sem - 0x3fca5d80 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - 0x3fca5d80 g_waking_sleeping_sem - .bss.rwip_rst_state - 0x3fca5d84 0x1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - *fill* 0x3fca5d85 0x3 - .bss.sdk_cfg_mask - 0x3fca5d88 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .bss.sdk_cfg_opts_ext - 0x3fca5d8c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .bss.btdm_ol_task_env - 0x3fca5db4 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x3fca5db4 btdm_ol_task_env - .bss.r_vs_funcs - 0x3fca5dc0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x3fca5dc0 r_vs_funcs - .bss.flash_env - 0x3fca5dc4 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - .bss.vflash_mem - 0x3fca5dd0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x3fca5dd0 vflash_mem - .bss.coex_hook_act_id_map - 0x3fca5dd4 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - *fill* 0x3fca5dd6 0x2 - .bss.s_ble_st_group_map - 0x3fca5dd8 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - 0x3fca5de4 . = ALIGN (0x4) - *fill* 0x3fca5de2 0x2 - 0x3fca5de4 _bt_controller_bss_end = ABSOLUTE (.) - 0x3fca5de4 . = ALIGN (0x4) - 0x3fca5de4 _bt_controller_common_start = ABSOLUTE (.) - *libbtdm_app.a:(COMMON) - 0x3fca5de4 . = ALIGN (0x4) - 0x3fca5de4 _bt_controller_common_end = ABSOLUTE (.) - 0x3fca5de8 . = ALIGN (0x8) - *fill* 0x3fca5de4 0x4 - 0x3fca5de8 _bss_end = ABSOLUTE (.) - 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) - -.flash.text 0x42000020 0x12c536 - 0x42000020 _stext = . - 0x42000020 _instruction_reserved_start = ABSOLUTE (.) - 0x42000020 _text_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_write.* *liblog.a:log_timestamp.* *liblog.a:log_lock.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_gptimer.a:gptimer.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) - .text.esp_app_format_init_elf_sha256 - 0x42000020 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.esp_app_get_description - 0x42000090 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x42000090 esp_app_get_description - .text.esp_app_get_elf_sha256 - 0x4200009a 0x50 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x4200009a esp_app_get_elf_sha256 - .text.__esp_system_init_fn_init_show_app_info - 0x420000ea 0x152 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.init_efuse_secure - 0x4200023c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.__esp_system_init_fn_init_efuse_check - 0x42000240 0x12 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.__esp_system_init_fn_init_efuse_show_app_info - 0x42000252 0xe6 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.__esp_system_init_fn_init_efuse - 0x42000338 0x4c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.esp_efuse_startup_include_func - 0x42000384 0x2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - 0x42000384 esp_efuse_startup_include_func - .text.esp_efuse_read_field_blob - 0x42000386 0x7e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x42000386 esp_efuse_read_field_blob - .text.esp_efuse_get_field_size - 0x42000404 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x42000404 esp_efuse_get_field_size - .text.esp_efuse_check_errors - 0x42000426 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x42000426 esp_efuse_check_errors - .text.get_mask - 0x42000432 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.check_range_of_bits - 0x4200044e 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_process - 0x42000460 0x18e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000460 esp_efuse_utility_process - .text.esp_efuse_utility_get_number_of_items - 0x420005ee 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420005ee esp_efuse_utility_get_number_of_items - .text.esp_efuse_utility_read_reg - 0x420005fe 0x78 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420005fe esp_efuse_utility_read_reg - .text.esp_efuse_utility_fill_buff - 0x42000676 0xea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000676 esp_efuse_utility_fill_buff - .text.esp_efuse_utility_count_once - 0x42000760 0x54 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000760 esp_efuse_utility_count_once - .text.esp_efuse_utility_check_errors - 0x420007b4 0x94 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420007b4 esp_efuse_utility_check_errors - .text.esp_register_shutdown_handler - 0x42000848 0x3e esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x42000848 esp_register_shutdown_handler - .text.esp_unregister_shutdown_handler - 0x42000886 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x42000886 esp_unregister_shutdown_handler - .text.esp_restart - 0x420008be 0x36 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x420008be esp_restart - .text.__esp_system_init_fn_init_show_cpu_freq - 0x420008f4 0x78 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_brownout - 0x4200096c 0xe esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_newlib_time - 0x4200097a 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_flash - 0x4200098a 0x42 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_apb_dma - 0x420009cc 0xe esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_coexist - 0x420009da 0x18 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_disable_rtc_wdt - 0x420009f2 0x3c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.esp_system_include_startup_funcs - 0x42000a2e 0x2 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - 0x42000a2e esp_system_include_startup_funcs - .text.core_intr_matrix_clear - 0x42000a30 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text.esp_brownout_init - 0x42000a5a 0x54 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - 0x42000a5a esp_brownout_init - .text.select_rtc_slow_clk - 0x42000aae 0xd8 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text.esp_rtc_init - 0x42000b86 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000b86 esp_rtc_init - .text.esp_clk_init - 0x42000bbe 0x1a4 esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000bbe esp_clk_init - .text.esp_perip_clk_init - 0x42000d62 0xe2 esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000d62 esp_perip_clk_init - .text.get_reset_reason - 0x42000e44 0xda esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_reset_reason_get_hint - 0x42000f1e 0x26 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x42000f1e esp_reset_reason_get_hint - .text.esp_reset_reason_init - 0x42000f44 0x32 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_cache_err_panic_string - 0x42000f76 0x6e esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x42000f76 esp_cache_err_panic_string - .text.esp_cache_err_has_active_err - 0x42000fe4 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x42000fe4 esp_cache_err_has_active_err - .text.esp_cache_err_int_init - 0x4200100c 0x8e esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x4200100c esp_cache_err_int_init - .text.esp_cache_err_get_cpuid - 0x4200109a 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x4200109a esp_cache_err_get_cpuid - .text.esp_apb_backup_dma_lock_init - 0x4200109e 0x22 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - 0x4200109e esp_apb_backup_dma_lock_init - .text.semihosting_call_noerrno - 0x420010c0 0xe esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.panic_print_char_uart - 0x420010ce 0x34 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.panic_print_char_usb_serial_jtag - 0x42001102 0x90 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.disable_all_wdts - 0x42001192 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.panic_print_char - 0x420011fa 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x420011fa panic_print_char - .text.panic_print_str - 0x42001210 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42001210 panic_print_str - .text.print_abort_details - 0x42001236 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.panic_print_hex - 0x4200124a 0x3a esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x4200124a panic_print_hex - .text.panic_print_dec - 0x42001284 0x54 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42001284 panic_print_dec - .text.esp_panic_handler_reconfigure_wdts - 0x420012d8 0xa4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x420012d8 esp_panic_handler_reconfigure_wdts - .text.esp_panic_handler - 0x4200137c 0x220 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x4200137c esp_panic_handler - .text.do_global_ctors - 0x4200159c 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_system_init_fn - 0x420015e2 0x7c esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_core_init - 0x4200165e 0xe esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_secondary_init - 0x4200166c 0xe esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.start_cpu0_default - 0x4200167a 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x4200167a start_cpu0 - .text.frame_to_panic_info - 0x4200168e 0x5c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.panic_handler - 0x420016ea 0x7e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.print_state_for_core - 0x42001768 0x28 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.print_state - 0x42001790 0x18 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.panic_restart - 0x420017a8 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x420017a8 panic_restart - .text.esp_mprot_mem_type_to_str - 0x420017b4 0x78 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_print_register_array - 0x4200182c 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_print_basic_backtrace - 0x4200189c 0x92 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_memprot_err_details - 0x4200192e 0x18c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_assist_debug_details - 0x42001aba 0xd8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_cache_err_details - 0x42001b92 0x2e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_print_registers - 0x42001bc0 0x6c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001bc0 panic_print_registers - .text.panic_soc_check_pseudo_cause - 0x42001c2c 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001c2c panic_soc_check_pseudo_cause - .text.panic_soc_fill_info - 0x42001c60 0xbc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001c60 panic_soc_fill_info - .text.panic_arch_fill_info - 0x42001d1c 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001d1c panic_arch_fill_info - .text.panic_print_backtrace - 0x42001d50 0xe esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001d50 panic_print_backtrace - .text.panic_get_cause - 0x42001d5e 0x6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001d5e panic_get_cause - .text.panic_prepare_frame_from_ctx - 0x42001d64 0x2a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001d64 panic_prepare_frame_from_ctx - .text.__esp_system_init_fn_esp_hw_stack_guard_init - 0x42001d8e 0x74 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_get_bounds - 0x42001e02 0x16 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x42001e02 esp_hw_stack_guard_get_bounds - .text.esp_hw_stack_guard_get_fired_cpu - 0x42001e18 0x18 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x42001e18 esp_hw_stack_guard_get_fired_cpu - .text.esp_hw_stack_guard_get_pc - 0x42001e30 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x42001e30 esp_hw_stack_guard_get_pc - .text.esp_err_to_name - 0x42001e38 0x3a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - 0x42001e38 esp_err_to_name - .text.efuse_hal_set_timing - 0x42001e72 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x42001e72 efuse_hal_set_timing - .text.efuse_hal_read - 0x42001ec6 0x56 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x42001ec6 efuse_hal_read - .text.uart_hal_rxfifo_rst - 0x42001f1c 0x18 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x42001f1c uart_hal_rxfifo_rst - .text.uart_hal_tx_break - 0x42001f34 0x32 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x42001f34 uart_hal_tx_break - .text.uart_hal_write_txfifo - 0x42001f66 0x38 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x42001f66 uart_hal_write_txfifo - .text.uart_hal_read_rxfifo - 0x42001f9e 0x2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x42001f9e uart_hal_read_rxfifo - .text.brownout_ll_set_threshold - 0x42001fca 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .text.brownout_hal_config - 0x42001fea 0xec esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x42001fea brownout_hal_config - .text.esp_log_set_default_level - 0x420020d6 0x6 esp-idf/log/liblog.a(log_level.c.obj) - 0x420020d6 esp_log_set_default_level - .text.log_level_set - 0x420020dc 0x54 esp-idf/log/liblog.a(tag_log_level.c.obj) - .text.log_level_get - 0x42002130 0x4e esp-idf/log/liblog.a(tag_log_level.c.obj) - .text.esp_log_level_set - 0x4200217e 0xc esp-idf/log/liblog.a(tag_log_level.c.obj) - 0x4200217e esp_log_level_set - .text.esp_log_level_get_timeout - 0x4200218a 0xe esp-idf/log/liblog.a(tag_log_level.c.obj) - 0x4200218a esp_log_level_get_timeout - .text.set_log_level - 0x42002198 0x42 esp-idf/log/liblog.a(log_linked_list.c.obj) - .text.add_to_list - 0x420021da 0x60 esp-idf/log/liblog.a(log_linked_list.c.obj) - .text.esp_log_linked_list_set_level - 0x4200223a 0x26 esp-idf/log/liblog.a(log_linked_list.c.obj) - 0x4200223a esp_log_linked_list_set_level - .text.esp_log_linked_list_get_level - 0x42002260 0x46 esp-idf/log/liblog.a(log_linked_list.c.obj) - 0x42002260 esp_log_linked_list_get_level - .text.esp_log_linked_list_clean - 0x420022a6 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) - 0x420022a6 esp_log_linked_list_clean - .text.fix_cache_generation_overflow - 0x420022ce 0x32 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .text.heap_swap - 0x42002300 0x2a esp-idf/log/liblog.a(log_binary_heap.c.obj) - .text.heap_bubble_down - 0x4200232a 0x4c esp-idf/log/liblog.a(log_binary_heap.c.obj) - .text.esp_log_cache_set_level - 0x42002376 0xac esp-idf/log/liblog.a(log_binary_heap.c.obj) - 0x42002376 esp_log_cache_set_level - .text.esp_log_cache_get_level - 0x42002422 0x100 esp-idf/log/liblog.a(log_binary_heap.c.obj) - 0x42002422 esp_log_cache_get_level - .text.esp_log_cache_clean - 0x42002522 0x1a esp-idf/log/liblog.a(log_binary_heap.c.obj) - 0x42002522 esp_log_cache_clean - .text.esp_log_cache_add - 0x4200253c 0x8c esp-idf/log/liblog.a(log_binary_heap.c.obj) - 0x4200253c esp_log_cache_add - .text.heap_caps_match - 0x420025c8 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x420025c8 heap_caps_match - .text.heap_caps_get_free_size - 0x420025f6 0x40 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x420025f6 heap_caps_get_free_size - .text.heap_caps_get_minimum_free_size - 0x42002636 0x40 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x42002636 heap_caps_get_minimum_free_size - .text.heap_caps_get_info - 0x42002676 0x86 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x42002676 heap_caps_get_info - .text.heap_caps_get_largest_free_block - 0x420026fc 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x420026fc heap_caps_get_largest_free_block - .text.heap_caps_aligned_calloc - 0x4200270e 0x48 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x4200270e heap_caps_aligned_calloc - .text.register_heap - 0x42002756 0x4e esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_enable_nonos_stack_heaps - 0x420027a4 0x36 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x420027a4 heap_caps_enable_nonos_stack_heaps - .text.heap_caps_init - 0x420027da 0x3e8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x420027da heap_caps_init - .text.__esp_system_init_fn_init_heap - 0x42002bc2 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_check_add_region_allowed - 0x42002bd2 0x4c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x42002bd2 heap_caps_check_add_region_allowed - .text.heap_caps_add_region_with_caps - 0x42002c1e 0x194 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x42002c1e heap_caps_add_region_with_caps - .text.heap_caps_add_region - 0x42002db2 0x7e esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x42002db2 heap_caps_add_region - .text.s_get_num_reserved_regions - 0x42002e30 0x18 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.s_compare_reserved_regions - 0x42002e48 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.s_prepare_reserved_regions - 0x42002e50 0x11e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.soc_get_available_memory_region_max_count - 0x42002f6e 0x16 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x42002f6e soc_get_available_memory_region_max_count - .text.soc_get_available_memory_regions - 0x42002f84 0x168 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x42002f84 soc_get_available_memory_regions - .text.__esp_system_init_fn_esp_security_init - 0x420030ec 0x4 esp-idf/esp_security/libesp_security.a(init.c.obj) - .text.esp_security_init_include_impl - 0x420030f0 0x2 esp-idf/esp_security/libesp_security.a(init.c.obj) - 0x420030f0 esp_security_init_include_impl - .text.calc_checksum - 0x420030f2 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_slowclk_cal_get - 0x4200311c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x4200311c esp_clk_slowclk_cal_get - .text.esp_rtc_get_time_us - 0x42003124 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x42003124 esp_rtc_get_time_us - .text.esp_clk_slowclk_cal_set - 0x4200322a 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x4200322a esp_clk_slowclk_cal_set - .text.insert_vector_desc - 0x42003242 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.find_desc_for_int - 0x4200329a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.get_desc_for_int - 0x420032c0 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.find_desc_for_source - 0x42003350 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.is_vect_desc_usable - 0x420033d6 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.get_available_int - 0x420034b2 0x15a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_ptr_in_isr_region - 0x4200360c 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x4200360c esp_intr_ptr_in_isr_region - .text.esp_intr_get_cpu - 0x42003646 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42003646 esp_intr_get_cpu - .text.esp_intr_alloc_intrstatus - 0x4200365c 0x420 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x4200365c esp_intr_alloc_intrstatus - .text.esp_intr_alloc - 0x42003a7c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42003a7c esp_intr_alloc - .text.intr_free_for_current_cpu - 0x42003a94 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_free - 0x42003baa 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42003baa esp_intr_free - .text.s_rtc_isr_noniram_hook - 0x42003bbe 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.s_rtc_isr_noniram_hook_relieve - 0x42003bce 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_ensure_installed - 0x42003be2 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_register - 0x42003c4e 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x42003c4e rtc_isr_register - .text.gpio_ll_hold_dis - 0x42003cda 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text.gpio_ll_deepsleep_wakeup_is_enabled - 0x42003d1c 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text.gpio_ll_deepsleep_wakeup_disable - 0x42003d66 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text.esp_sleep_config_gpio_isolate - 0x42003dc6 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x42003dc6 esp_sleep_config_gpio_isolate - .text.esp_sleep_enable_gpio_switch - 0x42003e3e 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x42003e3e esp_sleep_enable_gpio_switch - .text.__esp_system_init_fn_esp_sleep_startup_init - 0x42003ee2 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text.esp_deep_sleep_wakeup_io_reset - 0x42003ef4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x42003ef4 esp_deep_sleep_wakeup_io_reset - .text.esp_sleep_gpio_include - 0x42003f50 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x42003f50 esp_sleep_gpio_include - .text.regi2c_saradc_enable - 0x42003f52 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x42003f52 regi2c_saradc_enable - .text.regi2c_saradc_disable - 0x42003f9e 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x42003f9e regi2c_saradc_disable - .text.set_ocode_by_efuse - 0x4200401a 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.get_dig_dbias_by_efuse - 0x42004086 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.calibrate_ocode - 0x420040c8 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.get_rtc_dbias_by_efuse - 0x420041f4 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - 0x420041f4 get_rtc_dbias_by_efuse - .text.set_rtc_dig_dbias - 0x420042e8 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.rtc_init - 0x42004360 0x450 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - 0x42004360 rtc_init - .text.memprot_ll_set_iram0_split_line - 0x420047b0 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_iram0_set_pms_area_0 - 0x42004826 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_iram0_set_pms_area_1 - 0x42004852 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_iram0_set_pms_area_2 - 0x42004884 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_iram0_set_pms_area_3 - 0x420048b6 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_set_rtcfast_split_line - 0x420048f0 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_rtcfast_set_pms_area - 0x4200495a 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_set_dram0_split_line - 0x42004a16 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_dram0_set_pms_area_0 - 0x42004a8c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_dram0_set_pms_area_1 - 0x42004ab2 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_dram0_set_pms_area_2 - 0x42004ada 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.memprot_ll_dram0_set_pms_area_3 - 0x42004b06 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_memprot_iram0_get_def_split_addr - 0x42004b32 0xa esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_memprot_dram0_get_def_split_addr - 0x42004b3c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_memprot_rtcfast_get_min_split_addr - 0x42004b4c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_set_intr_matrix - 0x42004b56 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_set_split_addr - 0x42004be0 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004be0 esp_mprot_set_split_addr - .text.esp_mprot_get_default_main_split_addr - 0x42004ca2 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004ca2 esp_mprot_get_default_main_split_addr - .text.esp_mprot_set_split_addr_lock - 0x42004ce8 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004ce8 esp_mprot_set_split_addr_lock - .text.esp_mprot_get_split_addr_lock - 0x42004d1e 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004d1e esp_mprot_get_split_addr_lock - .text.esp_mprot_set_pms_lock - 0x42004d6c 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004d6c esp_mprot_set_pms_lock - .text.esp_mprot_get_pms_lock - 0x42004dae 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004dae esp_mprot_get_pms_lock - .text.esp_mprot_set_pms_area - 0x42004e10 0xde esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004e10 esp_mprot_set_pms_area - .text.esp_mprot_set_monitor_lock - 0x42004eee 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004eee esp_mprot_set_monitor_lock - .text.esp_mprot_get_monitor_lock - 0x42004f30 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004f30 esp_mprot_get_monitor_lock - .text.esp_mprot_set_monitor_en - 0x42004f92 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42004f92 esp_mprot_set_monitor_en - .text.esp_mprot_monitor_clear_intr - 0x42005022 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42005022 esp_mprot_monitor_clear_intr - .text.esp_mprot_get_active_intr - 0x42005094 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42005094 esp_mprot_get_active_intr - .text.esp_mprot_is_conf_locked_any - 0x420050e4 0xe2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x420050e4 esp_mprot_is_conf_locked_any - .text.esp_mprot_get_violate_addr - 0x420051c6 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x420051c6 esp_mprot_get_violate_addr - .text.esp_mprot_get_violate_world - 0x4200523c 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x4200523c esp_mprot_get_violate_world - .text.esp_mprot_get_violate_operation - 0x420052ac 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x420052ac esp_mprot_get_violate_operation - .text.esp_mprot_has_byte_enables - 0x42005330 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42005330 esp_mprot_has_byte_enables - .text.esp_mprot_get_violate_byte_enables - 0x42005338 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x42005338 esp_mprot_get_violate_byte_enables - .text.esp_mprot_set_prot - 0x4200535e 0x31c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x4200535e esp_mprot_set_prot - .text.esp_mprot_ll_err_to_esp_err - 0x4200567a 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x4200567a esp_mprot_ll_err_to_esp_err - .text.esp_mprot_ll_world_to_hl_world - 0x420056c6 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x420056c6 esp_mprot_ll_world_to_hl_world - .text.esp_mprot_oper_type_to_str - 0x420056e0 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x420056e0 esp_mprot_oper_type_to_str - .text.esp_mprot_pms_world_to_str - 0x42005734 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x42005734 esp_mprot_pms_world_to_str - .text.esp_riscv_intr_num_flags - 0x4200579c 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .text.esp_cpu_intr_get_desc - 0x420057e0 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - 0x420057e0 esp_cpu_intr_get_desc - .text.s_sleep_hook_register - 0x42005802 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_register_phy_hook - 0x4200587c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - 0x4200587c esp_deep_sleep_register_phy_hook - .text.esp_sleep_sub_mode_config - 0x42005890 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - 0x42005890 esp_sleep_sub_mode_config - .text.clk_tree_rtc_slow_calibration - 0x42005954 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .text.esp_clk_tree_rc_fast_d256_get_freq_hz - 0x420059c0 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x420059c0 esp_clk_tree_rc_fast_d256_get_freq_hz - .text.esp_clk_tree_xtal32k_get_freq_hz - 0x42005a36 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42005a36 esp_clk_tree_xtal32k_get_freq_hz - .text.esp_clk_tree_lp_slow_get_freq_hz - 0x42005ab0 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42005ab0 esp_clk_tree_lp_slow_get_freq_hz - .text.esp_clk_tree_rc_fast_get_freq_hz - 0x42005af2 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42005af2 esp_clk_tree_rc_fast_get_freq_hz - .text.esp_clk_tree_lp_fast_get_freq_hz - 0x42005b10 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42005b10 esp_clk_tree_lp_fast_get_freq_hz - .text.esp_newlib_locks_init - 0x42005b72 0xa0 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x42005b72 esp_newlib_locks_init - .text.newlib_include_pthread_impl - 0x42005c12 0x2 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x42005c12 newlib_include_pthread_impl - .text.newlib_include_getentropy_impl - 0x42005c14 0x2 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - 0x42005c14 newlib_include_getentropy_impl - .text.esp_cleanup_r - 0x42005c16 0x5c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.raise_r_stub - 0x42005c72 0xe esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.esp_newlib_init - 0x42005c80 0x6c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x42005c80 esp_newlib_init - 0x42005c80 esp_setup_newlib_syscalls - .text.__esp_system_init_fn_init_newlib - 0x42005cec 0xe esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.esp_newlib_init_global_stdio - 0x42005cfa 0xb2 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x42005cfa esp_newlib_init_global_stdio - .text.__esp_system_init_fn_init_newlib_stdio - 0x42005dac 0x16 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.newlib_include_init_funcs - 0x42005dc2 0x2 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x42005dc2 newlib_include_init_funcs - .text.syscall_not_implemented - 0x42005dc4 0x1c esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x42005dc4 _kill_r - 0x42005dc4 _getpid_r - 0x42005dc4 _system_r - 0x42005dc4 _isatty_r - .text.syscall_not_implemented_aborts - 0x42005de0 0xc esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x42005de0 _raise_r - 0x42005de0 _sbrk_r - 0x42005de0 _exit - 0x42005de0 raise - .text.fcntl 0x42005dec 0x42 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x42005dec fcntl - .text.newlib_include_syscalls_impl - 0x42005e2e 0x2 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x42005e2e newlib_include_syscalls_impl - .text.adjust_boot_time - 0x42005e30 0x16e esp-idf/newlib/libnewlib.a(time.c.obj) - .text.get_adjusted_boot_time - 0x42005f9e 0x3e esp-idf/newlib/libnewlib.a(time.c.obj) - .text.adjtime_corr_stop - 0x42005fdc 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.adjtime 0x4200602e 0x14c esp-idf/newlib/libnewlib.a(time.c.obj) - 0x4200602e adjtime - .text.settimeofday - 0x4200617a 0x5a esp-idf/newlib/libnewlib.a(time.c.obj) - 0x4200617a settimeofday - .text.usleep 0x420061d4 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x420061d4 usleep - .text.sleep 0x4200621a 0x1a esp-idf/newlib/libnewlib.a(time.c.obj) - 0x4200621a sleep - .text.clock_gettime - 0x42006234 0xaa esp-idf/newlib/libnewlib.a(time.c.obj) - 0x42006234 clock_gettime - .text.esp_newlib_time_init - 0x420062de 0xc esp-idf/newlib/libnewlib.a(time.c.obj) - 0x420062de esp_newlib_time_init - .text.esp_time_impl_get_time_since_boot - 0x420062ea 0x2a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x420062ea esp_time_impl_get_time_since_boot - .text.esp_time_impl_get_time - 0x42006314 0x12 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42006314 esp_time_impl_get_time - .text.esp_time_impl_set_boot_time - 0x42006326 0x3e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42006326 esp_time_impl_set_boot_time - .text.esp_time_impl_get_boot_time - 0x42006364 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42006364 esp_time_impl_get_boot_time - .text.esp_set_time_from_rtc - 0x420063a4 0x3a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x420063a4 esp_set_time_from_rtc - .text.esp_sync_timekeeping_timers - 0x420063de 0x72 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x420063de esp_sync_timekeeping_timers - .text.esp_time_impl_init - 0x42006450 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42006450 esp_time_impl_init - .text.getrandom - 0x4200645c 0x28 esp-idf/newlib/libnewlib.a(random.c.obj) - 0x4200645c getrandom - .text.mutexattr_check - 0x42006484 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_lock_internal - 0x42006494 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_init - 0x42006514 0x84 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x42006514 pthread_mutex_init - .text.pthread_mutex_init_if_static - 0x42006598 0x44 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_lock - 0x420065dc 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x420065dc pthread_mutex_lock - .text.pthread_mutex_unlock - 0x42006600 0x96 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x42006600 pthread_mutex_unlock - .text.pthread_include_pthread_impl - 0x42006696 0x2 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x42006696 pthread_include_pthread_impl - .text.pthread_include_pthread_cond_var_impl - 0x42006698 0x2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - 0x42006698 pthread_include_pthread_cond_var_impl - .text.find_value - 0x4200669a 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.find_key - 0x420066aa 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_cleanup_thread_specific_data_callback - 0x420066e4 0x66 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_key_create - 0x4200674a 0x66 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x4200674a pthread_key_create - .text.pthread_getspecific - 0x420067b0 0x28 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x420067b0 pthread_getspecific - .text.pthread_setspecific - 0x420067d8 0xe0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x420067d8 pthread_setspecific - .text.pthread_include_pthread_local_storage_impl - 0x420068b8 0x2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x420068b8 pthread_include_pthread_local_storage_impl - .text.pthread_include_pthread_rwlock_impl - 0x420068ba 0x2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - 0x420068ba pthread_include_pthread_rwlock_impl - .text.pthread_include_pthread_semaphore_impl - 0x420068bc 0x2 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - 0x420068bc pthread_include_pthread_semaphore_impl - .text.__cxa_guard_dummy - 0x420068be 0x2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - 0x420068be __cxa_guard_dummy - .text.__cxx_init_dummy - 0x420068c0 0x2 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - 0x420068c0 __cxx_init_dummy - .text.esp_timer_early_init - 0x420068c2 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - 0x420068c2 esp_timer_early_init - .text.__esp_system_init_fn_esp_timer_init_nonos - 0x420068d2 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .text.esp_timer_init_include_func - 0x420068de 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - 0x420068de esp_timer_init_include_func - .text.esp_timer_impl_init_system_time - 0x420068e0 0x8c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x420068e0 esp_timer_impl_init_system_time - .text.esp_timer_impl_early_init - 0x4200696c 0xd6 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x4200696c esp_timer_impl_early_init - .text.esp_timer_impl_init - 0x42006a42 0x104 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x42006a42 esp_timer_impl_init - .text.uart_get_avail_data_len - 0x42006b46 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tx_char - 0x42006b5e 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_rx_char - 0x42006ba4 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_read_char - 0x42006be0 0x2e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.unregister_select - 0x42006c0e 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_end_select - 0x42006c8e 0xac esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.register_select - 0x42006d3a 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_start_select - 0x42006dac 0x242 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.select_notif_callback_isr - 0x42006fee 0x10a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcflush - 0x420070f8 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcdrain - 0x42007140 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcgetattr - 0x42007178 0x39c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcsetattr - 0x42007514 0x39e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_access - 0x420078b2 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_open - 0x42007932 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fcntl - 0x420079aa 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fstat - 0x42007a36 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_close - 0x42007a86 0x36 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_return_char - 0x42007abc 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fsync - 0x42007b00 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_read - 0x42007b72 0x1a2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_write - 0x42007d14 0xec esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.esp_vfs_uart_get_vfs - 0x42007e00 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x42007e00 esp_vfs_uart_get_vfs - .text.uart_vfs_dev_register - 0x42007e0a 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x42007e0a uart_vfs_dev_register - 0x42007e0a esp_vfs_dev_uart_register - .text.__esp_system_init_fn_init_vfs_uart - 0x42007e52 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_include_dev_init - 0x42007e62 0x2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x42007e62 uart_vfs_include_dev_init - .text.uart_pattern_queue_update - 0x42007e64 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_find_pattern_from_last - 0x42007ea8 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_reenable_intr_mask - 0x42007ece 0x90 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_ll_enable_bus_clock - 0x42007f5e 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_ll_reset_register - 0x42007fa4 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_enqueue - 0x4200802a 0x6c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_link_free - 0x42008096 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_module_enable - 0x420080e0 0xc0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_module_disable - 0x420081a0 0x96 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_tx_write_fifo - 0x42008236 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_check_buf_full - 0x420082b6 0x82 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_rx_intr_handler_default - 0x42008338 0x7be esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_free_driver_obj - 0x42008af6 0x84 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_alloc_driver_obj - 0x42008b7a 0x100 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_word_length - 0x42008c7a 0xb6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008c7a uart_set_word_length - .text.uart_get_word_length - 0x42008d30 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008d30 uart_get_word_length - .text.uart_set_stop_bits - 0x42008d88 0xb6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008d88 uart_set_stop_bits - .text.uart_get_stop_bits - 0x42008e3e 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008e3e uart_get_stop_bits - .text.uart_set_parity - 0x42008eb6 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008eb6 uart_set_parity - .text.uart_get_parity - 0x42008f2e 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008f2e uart_get_parity - .text.uart_set_baudrate - 0x42008fa6 0x16a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42008fa6 uart_set_baudrate - .text.uart_get_baudrate - 0x42009110 0xca esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009110 uart_get_baudrate - .text.uart_disable_intr_mask - 0x420091da 0x90 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420091da uart_disable_intr_mask - .text.uart_pattern_queue_reset - 0x4200926a 0xf6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200926a uart_pattern_queue_reset - .text.uart_disable_rx_intr - 0x42009360 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009360 uart_disable_rx_intr - .text.uart_disable_tx_intr - 0x42009372 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009372 uart_disable_tx_intr - .text.uart_enable_tx_intr - 0x42009382 0xc6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009382 uart_enable_tx_intr - .text.uart_tx_all - 0x42009448 0x1e2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_intr_config - 0x4200962a 0x12e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200962a uart_intr_config - .text.uart_wait_tx_done - 0x42009758 0x22a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009758 uart_wait_tx_done - .text.uart_write_bytes - 0x42009982 0xd4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009982 uart_write_bytes - .text.uart_read_bytes - 0x42009a56 0x1c0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009a56 uart_read_bytes - .text.uart_get_buffered_data_len - 0x42009c16 0xc2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009c16 uart_get_buffered_data_len - .text.uart_flush_input - 0x42009cd8 0x1f8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009cd8 uart_flush_input - 0x42009cd8 uart_flush - .text.uart_driver_delete - 0x42009ed0 0xea esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009ed0 uart_driver_delete - .text.uart_driver_install - 0x42009fba 0x376 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42009fba uart_driver_install - .text.uart_is_driver_installed - 0x4200a330 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200a330 uart_is_driver_installed - .text.uart_set_select_notif_callback - 0x4200a352 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200a352 uart_set_select_notif_callback - .text.uart_get_selectlock - 0x4200a36e 0x6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200a36e uart_get_selectlock - .text.__esp_system_init_fn_usb_serial_jtag_conn_status_init - 0x4200a374 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text.usb_serial_jtag_connection_monitor_include - 0x4200a3a4 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - 0x4200a3a4 usb_serial_jtag_connection_monitor_include - .text.usb_serial_jtag_open - 0x4200a3a6 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_rx_char_no_driver - 0x4200a3ba 0x3c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_read_char - 0x4200a3f6 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_close - 0x4200a41c 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_wait_tx_done_no_driver - 0x4200a420 0x7e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tx_char_no_driver - 0x4200a49e 0xa6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.unregister_select - 0x4200a544 0x88 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_end_select - 0x4200a5cc 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.register_select - 0x4200a5f4 0x8e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_start_select - 0x4200a682 0x114 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.select_notif_callback_isr - 0x4200a796 0xb0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcflush - 0x4200a846 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fcntl - 0x4200a85e 0x4e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcgetattr - 0x4200a8ac 0x60 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fstat - 0x4200a90c 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fsync - 0x4200a932 0x4a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcdrain - 0x4200a97c 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcsetattr - 0x4200a98c 0x74 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_write - 0x4200aa00 0x8c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_return_char - 0x4200aa8c 0x3a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_read - 0x4200aac6 0xb8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.__esp_system_init_fn_init_vfs_usj_sec - 0x4200ab7e 0x24 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.esp_vfs_usb_serial_jtag_get_vfs - 0x4200aba2 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - 0x4200aba2 esp_vfs_usb_serial_jtag_get_vfs - .text.usb_serial_jtag_vfs_include_dev_init - 0x4200abac 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - 0x4200abac usb_serial_jtag_vfs_include_dev_init - .text.usb_serial_jtag_is_driver_installed - 0x4200abae 0xe esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x4200abae usb_serial_jtag_is_driver_installed - .text.usb_serial_jtag_set_select_notif_callback - 0x4200abbc 0x20 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x4200abbc usb_serial_jtag_set_select_notif_callback - .text.usb_serial_jtag_read_ready - 0x4200abdc 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x4200abdc usb_serial_jtag_read_ready - .text.usb_serial_jtag_write_ready - 0x4200ac0a 0x20 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x4200ac0a usb_serial_jtag_write_ready - .text.include_esp_phy_override - 0x4200ac2a 0x2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x4200ac2a include_esp_phy_override - .text.phy_set_pwdet_power - 0x4200ac2c 0x32 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x4200ac2c phy_set_pwdet_power - .text.phy_get_tsens_value - 0x4200ac5e 0x10 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x4200ac5e phy_get_tsens_value - .text.console_start_select - 0x4200ac6e 0x2a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text.console_end_select - 0x4200ac98 0x20 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ac98 console_end_select - .text.console_open - 0x4200acb8 0x4c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200acb8 console_open - .text.console_write - 0x4200ad04 0x3c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ad04 console_write - .text.console_fstat - 0x4200ad40 0x1a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ad40 console_fstat - .text.console_close - 0x4200ad5a 0x2c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ad5a console_close - .text.console_read - 0x4200ad86 0x1a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ad86 console_read - .text.console_fcntl - 0x4200ada0 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ada0 console_fcntl - .text.console_fsync - 0x4200adb6 0x2a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200adb6 console_fsync - .text.console_access - 0x4200ade0 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ade0 console_access - .text.console_tcsetattr - 0x4200adf6 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200adf6 console_tcsetattr - .text.console_tcgetattr - 0x4200ae0c 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ae0c console_tcgetattr - .text.console_tcdrain - 0x4200ae22 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ae22 console_tcdrain - .text.console_tcflush - 0x4200ae38 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ae38 console_tcflush - .text.esp_vfs_dev_console_register - 0x4200ae4e 0x20 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text.esp_vfs_console_register - 0x4200ae6e 0x26 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200ae6e esp_vfs_console_register - .text.__esp_system_init_fn_init_vfs_console - 0x4200ae94 0xe esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text.esp_vfs_include_console_register - 0x4200aea2 0x2 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200aea2 esp_vfs_include_console_register - .text.esp_get_free_index - 0x4200aea4 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_safe_fd_isset - 0x4200aec6 0x34 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.set_global_fd_sets - 0x4200aefa 0x12c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.free_proxy_members - 0x4200b026 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_duplicate_fs_ops - 0x4200b054 0xde esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_free_fs_ops - 0x4200b132 0x38 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs_common - 0x4200b16a 0x166 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_minify_vfs - 0x4200b2d0 0x160 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_make_fs_ops - 0x4200b430 0x114 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.translate_path - 0x4200b544 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs - 0x4200b5ac 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b5ac esp_vfs_register_fs - .text.esp_vfs_register_common - 0x4200b634 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b634 esp_vfs_register_common - .text.esp_vfs_register_fd_range - 0x4200b69e 0x14e esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b69e esp_vfs_register_fd_range - .text.get_vfs_for_index - 0x4200b7ec 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b7ec get_vfs_for_index - .text.get_vfs_for_fd - 0x4200b814 0x2a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.call_end_selects - 0x4200b83e 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.get_vfs_for_path - 0x4200b896 0xaa esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b896 get_vfs_for_path - .text.esp_vfs_open - 0x4200b940 0x14a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200b940 _open_r - 0x4200b940 esp_vfs_open - .text.esp_vfs_write - 0x4200ba8a 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200ba8a esp_vfs_write - 0x4200ba8a _write_r - .text.esp_vfs_lseek - 0x4200bb0e 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bb0e _lseek_r - 0x4200bb0e esp_vfs_lseek - .text.esp_vfs_read - 0x4200bb92 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bb92 _read_r - 0x4200bb92 esp_vfs_read - .text.esp_vfs_close - 0x4200bc16 0xf4 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bc16 esp_vfs_close - 0x4200bc16 _close_r - .text.esp_vfs_fstat - 0x4200bd0a 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bd0a _fstat_r - 0x4200bd0a esp_vfs_fstat - .text.esp_vfs_fcntl_r - 0x4200bd80 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bd80 _fcntl_r - 0x4200bd80 esp_vfs_fcntl_r - .text.esp_vfs_fsync - 0x4200be04 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200be04 esp_vfs_fsync - 0x4200be04 fsync - .text.esp_vfs_stat - 0x4200be78 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200be78 _stat_r - 0x4200be78 esp_vfs_stat - .text.esp_vfs_link - 0x4200bedc 0x96 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bedc _link_r - 0x4200bedc esp_vfs_link - .text.esp_vfs_unlink - 0x4200bf72 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bf72 _unlink_r - 0x4200bf72 esp_vfs_unlink - .text.esp_vfs_rename - 0x4200bfe6 0xb0 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200bfe6 esp_vfs_rename - 0x4200bfe6 _rename_r - .text.esp_vfs_access - 0x4200c096 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c096 esp_vfs_access - 0x4200c096 access - .text.esp_vfs_select - 0x4200c100 0x492 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c100 esp_vfs_select - 0x4200c100 select - .text.esp_vfs_select_triggered - 0x4200c592 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c592 esp_vfs_select_triggered - .text.esp_vfs_select_triggered_isr - 0x4200c5ea 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c5ea esp_vfs_select_triggered_isr - .text.tcgetattr - 0x4200c63e 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c63e tcgetattr - .text.tcsetattr - 0x4200c6c0 0x8c esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c6c0 tcsetattr - .text.tcdrain 0x4200c74c 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c74c tcdrain - .text.tcflush 0x4200c7c4 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c7c4 tcflush - .text.vfs_include_syscalls_impl - 0x4200c846 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4200c846 vfs_include_syscalls_impl - .text.vfs_null_get_empty_fd - 0x4200c848 0x24 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fsync - 0x4200c86c 0x22 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_ioctl - 0x4200c88e 0x2e esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fcntl - 0x4200c8bc 0x2e esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_close - 0x4200c8ea 0x22 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_open - 0x4200c90c 0xcc esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_pwrite - 0x4200c9d8 0x36 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_pread - 0x4200ca0e 0x34 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_read - 0x4200ca42 0x34 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_lseek - 0x4200ca76 0x4a esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_write - 0x4200cac0 0x36 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_stat - 0x4200caf6 0x58 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fstat - 0x4200cb4e 0x46 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_null_register - 0x4200cb94 0x22 esp-idf/vfs/libvfs.a(nullfs.c.obj) - 0x4200cb94 esp_vfs_null_register - .text.__esp_system_init_fn_init_vfs_nullfs - 0x4200cbb6 0xe esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_include_nullfs_register - 0x4200cbc4 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - 0x4200cbc4 esp_vfs_include_nullfs_register - .text.esp_coexist_debug_matrix_init_wrapper - 0x4200cbc6 0x6 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .text.esp_coex_common_semphr_create_wrapper - 0x4200cbcc 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cbcc esp_coex_common_semphr_create_wrapper - .text.esp_coex_common_semphr_delete_wrapper - 0x4200cbde 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cbde esp_coex_common_semphr_delete_wrapper - .text.esp_coex_common_semphr_take_wrapper - 0x4200cbf0 0x24 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cbf0 esp_coex_common_semphr_take_wrapper - .text.esp_coex_common_semphr_give_wrapper - 0x4200cc14 0x18 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cc14 esp_coex_common_semphr_give_wrapper - .text.esp_coex_common_timer_done_wrapper - 0x4200cc2c 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cc2c esp_coex_common_timer_done_wrapper - .text.esp_coex_common_timer_setfn_wrapper - 0x4200cc3a 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cc3a esp_coex_common_timer_setfn_wrapper - .text.esp_coex_common_spin_lock_create_wrapper - 0x4200cc48 0x60 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cc48 esp_coex_common_spin_lock_create_wrapper - .text.esp_coex_common_clk_slowclk_cal_get_wrapper - 0x4200cca8 0x22 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - 0x4200cca8 esp_coex_common_clk_slowclk_cal_get_wrapper - .text.nvs_sec_provider_include_impl - 0x4200ccca 0x2 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - 0x4200ccca nvs_sec_provider_include_impl - .text.led_light_cmd_handler - 0x4200cccc 0x26c esp-idf/main/libmain.a(app_main.c.obj) - 0x4200cccc led_light_cmd_handler - .text.bulk_write_cb - 0x4200cf38 0x240 esp-idf/main/libmain.a(app_main.c.obj) - .text.app_main - 0x4200d178 0x1e4 esp-idf/main/libmain.a(app_main.c.obj) - 0x4200d178 app_main - .text.app_light_set_led - 0x4200d35c 0x68 esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d35c app_light_set_led - .text.app_light_set_power - 0x4200d3c4 0x28 esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d3c4 app_light_set_power - .text.push_btn_cb - 0x4200d3ec 0x4a esp-idf/main/libmain.a(app_driver.c.obj) - .text.app_light_init - 0x4200d436 0x34 esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d436 app_light_init - .text.app_light_set_brightness - 0x4200d46a 0x1c esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d46a app_light_set_brightness - .text.app_light_set_hue - 0x4200d486 0x1a esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d486 app_light_set_hue - .text.app_light_set_saturation - 0x4200d4a0 0x1c esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d4a0 app_light_set_saturation - .text.app_driver_init - 0x4200d4bc 0x38 esp-idf/main/libmain.a(app_driver.c.obj) - 0x4200d4bc app_driver_init - .text.get_u16_le - 0x4200d4f4 0x10 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.put_u16_le - 0x4200d504 0xc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_tlv_data_init - 0x4200d510 0xa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_get_tlv_length - 0x4200d51a 0x62 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_add_tlv - 0x4200d57c 0xa6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_get_value_from_tlv - 0x4200d622 0xbc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_get_cmd_info - 0x4200d6de 0xa0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_cmd_prepare_response - 0x4200d77e 0xf6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .text.esp_rmaker_get_user_role_string - 0x4200d874 0x3a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - 0x4200d874 esp_rmaker_get_user_role_string - .text.esp_rmaker_cmd_prepare_empty_response - 0x4200d8ae 0x70 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - 0x4200d8ae esp_rmaker_cmd_prepare_empty_response - .text.esp_rmaker_cmd_register - 0x4200d91e 0x15c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - 0x4200d91e esp_rmaker_cmd_register - .text.esp_rmaker_cmd_response_handler - 0x4200da7a 0x250 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - 0x4200da7a esp_rmaker_cmd_response_handler - .text.esp_rmaker_cmd_resp_test_send - 0x4200dcca 0x10c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - 0x4200dcca esp_rmaker_cmd_resp_test_send - .text.jsmn_alloc_token - 0x4200ddd6 0x2a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.jsmn_fill_token - 0x4200de00 0xc esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.jsmn_parse_primitive - 0x4200de0c 0xc8 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.jsmn_parse_string - 0x4200ded4 0x12a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.jsmn_parse - 0x4200dffe 0x2ca esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.jsmn_init - 0x4200e2c8 0xe esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_skip_elem - 0x4200e2d6 0x1e esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_search - 0x4200e2f4 0x42 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_arr_get_val_tok - 0x4200e336 0x20 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.token_matches_str - 0x4200e356 0x5a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_obj_search - 0x4200e3b0 0x5a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_obj_get_val_tok - 0x4200e40a 0x24 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_tok_to_bool - 0x4200e42e 0x74 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_tok_to_int - 0x4200e4a2 0x38 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_tok_to_int64 - 0x4200e4da 0x3a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_tok_to_float - 0x4200e514 0x36 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_tok_to_string - 0x4200e54a 0x42 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .text.json_obj_get_array - 0x4200e58c 0x2a esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e58c json_obj_get_array - .text.json_obj_leave_array - 0x4200e5b6 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e5b6 json_obj_leave_array - .text.json_obj_get_object - 0x4200e5ea 0x20 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e5ea json_obj_get_object - .text.json_obj_leave_object - 0x4200e60a 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e60a json_obj_leave_object - .text.json_obj_get_bool - 0x4200e63e 0x2c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e63e json_obj_get_bool - .text.json_obj_get_int - 0x4200e66a 0x2c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e66a json_obj_get_int - .text.json_obj_get_int64 - 0x4200e696 0x2c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e696 json_obj_get_int64 - .text.json_obj_get_float - 0x4200e6c2 0x2c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e6c2 json_obj_get_float - .text.json_obj_get_string - 0x4200e6ee 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e6ee json_obj_get_string - .text.json_obj_get_strlen - 0x4200e722 0x26 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e722 json_obj_get_strlen - .text.json_obj_get_object_str - 0x4200e748 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e748 json_obj_get_object_str - .text.json_obj_get_object_strlen - 0x4200e77c 0x26 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e77c json_obj_get_object_strlen - .text.json_obj_get_array_str - 0x4200e7a2 0x34 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e7a2 json_obj_get_array_str - .text.json_obj_get_array_strlen - 0x4200e7d6 0x26 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e7d6 json_obj_get_array_strlen - .text.json_arr_get_object - 0x4200e7fc 0x20 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e7fc json_arr_get_object - .text.json_arr_leave_object - 0x4200e81c 0x1e esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e81c json_arr_leave_object - .text.json_parse_start - 0x4200e83a 0x94 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e83a json_parse_start - .text.json_parse_end - 0x4200e8ce 0x2c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - 0x4200e8ce json_parse_end - .text.esp_rmaker_mqtt_event_handler - 0x4200e8fa 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_register_node - 0x4200e930 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_deinit_priv_data - 0x4200e9d8 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.reset_event_handler - 0x4200ea2a 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_event_handler - 0x4200ea4a 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_populate_node_id - 0x4200eada 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_mqtt_conn_params_init - 0x4200eb72 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_init - 0x4200ebd6 0x2ca esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_is_mqtt_connected - 0x4200eea0 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200eea0 esp_rmaker_is_mqtt_connected - .text.esp_rmaker_get_state - 0x4200eeb4 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200eeb4 esp_rmaker_get_state - .text.esp_rmaker_get_node_id - 0x4200eec6 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200eec6 esp_rmaker_get_node_id - .text.esp_rmaker_node_init - 0x4200eed4 0x6e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200eed4 esp_rmaker_node_init - .text.esp_rmaker_get_node - 0x4200ef42 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200ef42 esp_rmaker_get_node - .text.esp_rmaker_task - 0x4200ef88 0x53c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .text.esp_rmaker_start - 0x4200f4c4 0xec esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x4200f4c4 esp_rmaker_start - .text.esp_rmaker_node_info_free - 0x4200f5b0 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .text.esp_rmaker_attribute_delete - 0x4200f614 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200f614 esp_rmaker_attribute_delete - .text.esp_rmaker_node_delete - 0x4200f650 0x4c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200f650 esp_rmaker_node_delete - .text.esp_rmaker_node_create - 0x4200f69c 0x224 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200f69c esp_rmaker_node_create - .text.esp_rmaker_node_add_attribute - 0x4200f8c0 0x170 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200f8c0 esp_rmaker_node_add_attribute - .text.esp_rmaker_node_add_device - 0x4200fa30 0xc0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200fa30 esp_rmaker_node_add_device - .text.esp_rmaker_node_get_device_by_name - 0x4200faf0 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200faf0 esp_rmaker_node_get_device_by_name - .text.esp_rmaker_node_get_first_device - 0x4200fb4a 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200fb4a esp_rmaker_node_get_first_device - .text.esp_rmaker_node_get_info - 0x4200fb8a 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200fb8a esp_rmaker_node_get_info - .text.esp_rmaker_node_get_first_attribute - 0x4200fbca 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - 0x4200fbca esp_rmaker_node_get_first_attribute - .text.esp_rmaker_default_bulk_write_cb - 0x4200fc0a 0xec esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_delete - 0x4200fcf6 0xa6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4200fcf6 esp_rmaker_device_delete - .text.__esp_rmaker_device_create - 0x4200fd9c 0x17e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .text.esp_rmaker_device_create - 0x4200ff1a 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4200ff1a esp_rmaker_device_create - .text.esp_rmaker_service_create - 0x4200ff2a 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4200ff2a esp_rmaker_service_create - .text.esp_rmaker_device_add_param - 0x4200ff3a 0x138 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4200ff3a esp_rmaker_device_add_param - .text.esp_rmaker_device_add_attribute - 0x42010072 0x14a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x42010072 esp_rmaker_device_add_attribute - .text.esp_rmaker_device_assign_primary_param - 0x420101bc 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x420101bc esp_rmaker_device_assign_primary_param - .text.esp_rmaker_device_add_cb - 0x420101fc 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x420101fc esp_rmaker_device_add_cb - .text.esp_rmaker_device_add_bulk_cb - 0x4201023c 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4201023c esp_rmaker_device_add_bulk_cb - .text.esp_rmaker_device_get_name - 0x4201027c 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x4201027c esp_rmaker_device_get_name - .text.esp_rmaker_device_get_param_by_type - 0x420102bc 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - 0x420102bc esp_rmaker_device_get_param_by_type - .text.esp_rmaker_param_get_buf - 0x42010316 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_populate_params - 0x420103c4 0xe0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_allocate_and_populate_params - 0x420104a4 0xca esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_report_param_internal - 0x4201056e 0x134 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_report_updated_params - 0x420106a2 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_device_set_params - 0x420106b2 0x2b8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.__esp_rmaker_param_report_time_series_records - 0x4201096a 0x56 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.__esp_rmaker_param_report_time_series - 0x420109c0 0xa2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_report_time_series - 0x42010a62 0x1a4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_register_for_set_params - 0x42010c06 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_device_cb_src_to_str - 0x42010c82 0x1a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010c82 esp_rmaker_device_cb_src_to_str - .text.esp_rmaker_bool - 0x42010c9c 0x1a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010c9c esp_rmaker_bool - .text.esp_rmaker_int - 0x42010cb6 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010cb6 esp_rmaker_int - .text.esp_rmaker_str - 0x42010cc8 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010cc8 esp_rmaker_str - .text.esp_rmaker_array - 0x42010cda 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010cda esp_rmaker_array - .text.esp_rmaker_get_node_params - 0x42010cec 0xd0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010cec esp_rmaker_get_node_params - .text.esp_rmaker_handle_set_params - 0x42010dbc 0x94 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010dbc esp_rmaker_handle_set_params - .text.esp_rmaker_set_params_callback - 0x42010e50 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_get_stored_value - 0x42010e64 0xf6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010e64 esp_rmaker_param_get_stored_value - .text.esp_rmaker_param_store_value - 0x42010f5a 0x8e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010f5a esp_rmaker_param_store_value - .text.esp_rmaker_param_delete - 0x42010fe8 0x5e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42010fe8 esp_rmaker_param_delete - .text.esp_rmaker_param_create - 0x42011046 0x1ee esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011046 esp_rmaker_param_create - .text.esp_rmaker_param_add_bounds - 0x42011234 0x132 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011234 esp_rmaker_param_add_bounds - .text.esp_rmaker_param_add_array_max_count - 0x42011366 0xd8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011366 esp_rmaker_param_add_array_max_count - .text.esp_rmaker_param_add_ui_type - 0x4201143e 0x6a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x4201143e esp_rmaker_param_add_ui_type - .text.esp_rmaker_param_update - 0x420114a8 0xe4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x420114a8 esp_rmaker_param_update - .text.esp_rmaker_simple_ts_data_report_internal - 0x4201158c 0x2ba esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_report_simple_time_series - 0x42011846 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_report_all_ts_params - 0x420118c2 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .text.esp_rmaker_param_update_and_report - 0x4201190a 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x4201190a esp_rmaker_param_update_and_report - .text.esp_rmaker_report_node_state - 0x4201195c 0xd0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x4201195c esp_rmaker_report_node_state - .text.esp_rmaker_params_mqtt_init - 0x42011a2c 0x50 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011a2c esp_rmaker_params_mqtt_init - .text.esp_rmaker_param_get_name - 0x42011a7c 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011a7c esp_rmaker_param_get_name - .text.esp_rmaker_param_get_type - 0x42011abc 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - 0x42011abc esp_rmaker_param_get_type - .text.esp_rmaker_report_attribute - 0x42011afc 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text.esp_rmaker_report_info - 0x42011b3e 0xdc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text.esp_rmaker_report_node_attributes - 0x42011c1a 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text.esp_rmaker_report_value - 0x42011c5e 0x92 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - 0x42011c5e esp_rmaker_report_value - .text.esp_rmaker_report_data_type - 0x42011cf0 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - 0x42011cf0 esp_rmaker_report_data_type - .text.esp_rmaker_report_param_config - 0x42011d88 0x16a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text.esp_rmaker_report_devices_or_services - 0x42011ef2 0x12c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .text.__esp_rmaker_get_node_config - 0x4201201e 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - 0x4201201e __esp_rmaker_get_node_config - .text.esp_rmaker_get_node_config - 0x4201207e 0xf4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - 0x4201207e esp_rmaker_get_node_config - .text.esp_rmaker_report_node_config - 0x42012172 0x88 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - 0x42012172 esp_rmaker_report_node_config - .text.esp_rmaker_get_mqtt_host - 0x420121fa 0x2a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x420121fa esp_rmaker_get_mqtt_host - .text.esp_rmaker_get_client_cert - 0x42012224 0x16 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x42012224 esp_rmaker_get_client_cert - .text.esp_rmaker_get_client_cert_len - 0x4201223a 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x4201223a esp_rmaker_get_client_cert_len - .text.esp_rmaker_get_client_key - 0x42012252 0x16 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x42012252 esp_rmaker_get_client_key - .text.esp_rmaker_get_client_key_len - 0x42012268 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x42012268 esp_rmaker_get_client_key_len - .text.esp_rmaker_clean_mqtt_conn_params - 0x42012280 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x42012280 esp_rmaker_clean_mqtt_conn_params - .text.esp_rmaker_get_mqtt_conn_params - 0x420122b6 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - 0x420122b6 esp_rmaker_get_mqtt_conn_params - .text.esp_rmaker_time_add_service - 0x4201231e 0xa2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .text.esp_rmaker_time_service_cb - 0x420123c0 0x134 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .text.esp_rmaker_timezone_service_enable - 0x420124f4 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - 0x420124f4 esp_rmaker_timezone_service_enable - .text.esp_rmaker_post_event - 0x42012538 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_mapping_detect_reset - 0x4201255a 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_mapping_cleanup_data - 0x42012602 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_mapping_endpoint_create - 0x42012644 0x16 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x42012644 esp_rmaker_user_mapping_endpoint_create - .text.esp_rmaker_user_mapping_endpoint_register - 0x4201265a 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x4201265a esp_rmaker_user_mapping_endpoint_register - .text.esp_rmaker_user_mapping_event_handler - 0x4201267a 0x1e2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_mapping_prov_init - 0x4201285c 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x4201285c esp_rmaker_user_mapping_prov_init - .text.esp_rmaker_user_mapping_prov_deinit - 0x420128a2 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x420128a2 esp_rmaker_user_mapping_prov_deinit - .text.esp_rmaker_start_user_node_mapping - 0x420128e2 0x22a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x420128e2 esp_rmaker_start_user_node_mapping - .text.esp_rmaker_reset_user_node_mapping - 0x42012b0c 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x42012b0c esp_rmaker_reset_user_node_mapping - .text.esp_rmaker_user_mapping_handler - 0x42012b2a 0x1c8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x42012b2a esp_rmaker_user_mapping_handler - .text.esp_rmaker_user_node_mapping_get_state - 0x42012cf2 0xa esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x42012cf2 esp_rmaker_user_node_mapping_get_state - .text.esp_rmaker_user_mapping_cb - 0x42012cfc 0x1ee esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .text.esp_rmaker_user_node_mapping_init - 0x42012eea 0x9c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - 0x42012eea esp_rmaker_user_node_mapping_init - .text.esp_rmaker_schedule_get_schedule_from_index - 0x42012f86 0x1a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_get_schedule_from_id - 0x42012fa0 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timestamp_common_cb - 0x42012fdc 0x50 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_add_to_list - 0x4201302c 0xa2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_remove_from_list - 0x420130ce 0xce esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_prepare_config - 0x4201319c 0x124 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_find_or_create - 0x420132c0 0x1a8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_free - 0x42013468 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_parse_action - 0x4201349c 0x9a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_parse_trigger - 0x42013536 0x138 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_parse_info_and_flags - 0x4201366e 0xb0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_parse_validity - 0x4201371e 0x50 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_add - 0x4201376e 0x3e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_operation_add - 0x420137ac 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_trigger_common_cb - 0x420137ca 0x16 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timesync_timer_cb - 0x420137e0 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_process_action - 0x420137f8 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_is_expired - 0x4201380c 0x15a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_remove - 0x42013966 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_operation_remove - 0x42013976 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timesync_timer_init - 0x42013994 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timesync_timer_deinit - 0x42013a06 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timesync_timer_start - 0x42013a38 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_operation_disable - 0x42013a6c 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.__esp_rmaker_schedule_get_params - 0x42013a90 0x25e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_get_params - 0x42013cee 0xc2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_report_params - 0x42013db0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_trigger_work_cb - 0x42013df4 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_operation_enable - 0x42013e58 0xc8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_operation_edit - 0x42013f20 0x4e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_perform_operation - 0x42013f6e 0xe8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_timesync_timer_work_cb - 0x42014056 0x6a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_get_operation_from_str - 0x420140c0 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - 0x420140c0 esp_rmaker_schedule_get_operation_from_str - .text.esp_rmaker_schedule_parse_operation - 0x42014168 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_parse_json - 0x42014216 0x182 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.write_cb - 0x42014398 0xde esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .text.esp_rmaker_schedule_enable - 0x42014476 0x100 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - 0x42014476 esp_rmaker_schedule_enable - .text.esp_rmaker_scenes_get_scene_from_id - 0x42014576 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_add_to_list - 0x420145b2 0xa2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_remove_from_list - 0x42014654 0xce esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_find_or_create - 0x42014722 0x194 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_free - 0x420148b6 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_parse_info_and_flags - 0x420148ea 0xb0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_parse_action - 0x4201499a 0x9a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_perform_operation - 0x42014a34 0x11c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.__esp_rmaker_scenes_get_params - 0x42014b50 0xf2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_get_params - 0x42014c42 0xc2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_report_params - 0x42014d04 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_get_operation_from_str - 0x42014d48 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - 0x42014d48 esp_rmaker_scenes_get_operation_from_str - .text.esp_rmaker_scenes_parse_operation - 0x42014df0 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_parse_json - 0x42014e9e 0x15c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.write_cb - 0x42014ffa 0xec esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .text.esp_rmaker_scenes_enable - 0x420150e6 0xee esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - 0x420150e6 esp_rmaker_scenes_enable - .text.esp_rmaker_publish_response - 0x420151d4 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .text.esp_rmaker_cmd_resp_check_pending - 0x42015282 0xce esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .text.event_handler - 0x42015350 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .text.esp_rmaker_cmd_callback - 0x4201535e 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .text.esp_rmaker_test_cmd_resp - 0x42015384 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - 0x42015384 esp_rmaker_test_cmd_resp - .text.esp_rmaker_cmd_response_enable - 0x420153b8 0xc8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - 0x420153b8 esp_rmaker_cmd_response_enable - .text.esp_rmaker_secure_boot_digest_free - 0x42015480 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - 0x42015480 esp_rmaker_secure_boot_digest_free - .text.esp_rmaker_get_secure_boot_digest - 0x42015484 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - 0x42015484 esp_rmaker_get_secure_boot_digest - .text.unescape_new_line - 0x420154b8 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.generate_claim_init_request - 0x420154fa 0xae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_perform_common - 0x420155a8 0x23e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.read_hmac_key - 0x420157e6 0x84 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.hmac_challenge - 0x4201586a 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.handle_self_claim_init_response - 0x420158e6 0x1c2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_perform_init - 0x42015aa8 0x96 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.handle_claim_verify_response - 0x42015b3e 0x194 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_perform_verify - 0x42015cd2 0x62 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_generate_key - 0x42015d34 0x1fe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_generate_csr - 0x42015f32 0x1b2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.escape_new_line - 0x420160e4 0x8a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_init - 0x4201616e 0xe6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .text.esp_rmaker_claim_data_free - 0x42016254 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - 0x42016254 esp_rmaker_claim_data_free - .text.esp_rmaker_self_claim_perform - 0x4201627a 0xdc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - 0x4201627a esp_rmaker_self_claim_perform - .text.__esp_rmaker_claim_init - 0x42016356 0x1ba esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - 0x42016356 __esp_rmaker_claim_init - .text.esp_rmaker_claim_task - 0x42016510 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - 0x42016510 esp_rmaker_claim_task - .text.esp_rmaker_self_claim_init - 0x420165b8 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - 0x420165b8 esp_rmaker_self_claim_init - .text.esp_rmaker_local_ctrl_get_security_type - 0x420165ee 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.set_property_values - 0x420165f2 0x9e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.get_property_values - 0x42016690 0x170 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.__esp_rmaker_local_ctrl_get_nvs - 0x42016800 0x6c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.__esp_rmaker_local_ctrl_set_nvs - 0x4201686c 0x5e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_get_pop - 0x420168ca 0xc6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_post_event - 0x42016990 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.__esp_rmaker_start_local_ctrl_service - 0x420169b2 0x29e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_prov_event_handler - 0x42016c50 0xc2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_local_ctrl_service_enable - 0x42016d12 0x104 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .text.esp_rmaker_init_local_ctrl_service - 0x42016e16 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - 0x42016e16 esp_rmaker_init_local_ctrl_service - .text.esp_rmaker_start_local_ctrl_service - 0x42016e5a 0x6a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - 0x42016e5a esp_rmaker_start_local_ctrl_service - .text.esp_rmaker_local_ctrl_enable - 0x42016ec4 0x84 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - 0x42016ec4 esp_rmaker_local_ctrl_enable - .text.esp_rmaker_mqtt_init - 0x42016f48 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x42016f48 esp_rmaker_mqtt_init - .text.esp_rmaker_mqtt_connect - 0x42016fe0 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x42016fe0 esp_rmaker_mqtt_connect - .text.esp_rmaker_mqtt_disconnect - 0x42017032 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x42017032 esp_rmaker_mqtt_disconnect - .text.esp_rmaker_mqtt_subscribe - 0x42017078 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x42017078 esp_rmaker_mqtt_subscribe - .text.esp_rmaker_mqtt_unsubscribe - 0x420170bc 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x420170bc esp_rmaker_mqtt_unsubscribe - .text.esp_rmaker_mqtt_publish - 0x42017100 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x42017100 esp_rmaker_mqtt_publish - .text.esp_rmaker_create_mqtt_topic - 0x420171a8 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - 0x420171a8 esp_rmaker_create_mqtt_topic - .text.esp_rmaker_mqtt_is_budget_available - 0x420171e8 0xa0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x420171e8 esp_rmaker_mqtt_is_budget_available - .text.esp_rmaker_mqtt_increase_budget - 0x42017288 0xbc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x42017288 esp_rmaker_mqtt_increase_budget - .text.esp_rmaker_mqtt_revive_budget - 0x42017344 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .text.esp_rmaker_mqtt_decrease_budget - 0x42017354 0xb4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x42017354 esp_rmaker_mqtt_decrease_budget - .text.esp_rmaker_mqtt_budgeting_start - 0x42017408 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x42017408 esp_rmaker_mqtt_budgeting_start - .text.esp_rmaker_mqtt_budgeting_stop - 0x42017440 0x2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x42017440 esp_rmaker_mqtt_budgeting_stop - .text.esp_rmaker_mqtt_budgeting_init - 0x4201746c 0xbe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - 0x4201746c esp_rmaker_mqtt_budgeting_init - .text.esp_rmaker_erase_rollback_flag - 0x4201752a 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_ota_check_for_mqtt - 0x4201756c 0x9c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_rmaker_ota_status_to_string - 0x42017608 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42017608 esp_rmaker_ota_status_to_string - .text.esp_rmaker_ota_status_to_event - 0x42017670 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42017670 esp_rmaker_ota_status_to_event - .text.esp_rmaker_ota_report_status - 0x420176ac 0xc0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x420176ac esp_rmaker_ota_report_status - .text.validate_image_header - 0x4201776c 0x136 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_rmaker_ota_perform_with_validation - 0x420178a2 0x376 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_rmaker_ota_common_cb - 0x42017c18 0x54 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42017c18 esp_rmaker_ota_common_cb - .text.esp_rmaker_ota_handle_time - 0x42017c6c 0x35a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42017c6c esp_rmaker_ota_handle_time - .text.esp_rmaker_ota_handle_metadata - 0x42017fc6 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42017fc6 esp_rmaker_ota_handle_metadata - .text.esp_rmaker_ota_default_cb - 0x42018018 0x248 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42018018 esp_rmaker_ota_default_cb - .text.esp_rmaker_ota_mark_valid - 0x42018260 0xfe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x42018260 esp_rmaker_ota_mark_valid - .text.esp_rmaker_ota_mark_invalid - 0x4201835e 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x4201835e esp_rmaker_ota_mark_invalid - .text.event_handler - 0x420183b0 0x84 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_rmaker_ota_manage_rollback - 0x42018434 0x162 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_ota_rollback - 0x42018596 0x3a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .text.esp_rmaker_ota_enable - 0x420185d0 0x16a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x420185d0 esp_rmaker_ota_enable - .text.esp_rmaker_ota_enable_default - 0x4201873a 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - 0x4201873a esp_rmaker_ota_enable_default - .text.esp_rmaker_ota_finish_using_params - 0x4201874c 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - 0x4201874c esp_rmaker_ota_finish_using_params - .text.esp_rmaker_ota_service_cb - 0x4201878c 0x138 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .text.esp_rmaker_ota_report_status_using_params - 0x420188c4 0x82 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - 0x420188c4 esp_rmaker_ota_report_status_using_params - .text.esp_rmaker_ota_enable_using_params - 0x42018946 0x94 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - 0x42018946 esp_rmaker_ota_enable_using_params - .text.ota_fetch_cleanup - 0x420189da 0x8e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.__esp_rmaker_ota_fetch - 0x42018a68 0x32e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.ota_fetch_mqtt_event_handler - 0x42018d96 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_ota_subscribe - 0x42018dc8 0xaa esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_ota_report_status_using_topics - 0x42018e72 0x1ea esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - 0x42018e72 esp_rmaker_ota_report_status_using_topics - .text.esp_rmaker_ota_finish_using_topics - 0x4201905c 0x58 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - 0x4201905c esp_rmaker_ota_finish_using_topics - .text.ota_url_handler - 0x420190b4 0x4ae esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_ota_enable_using_topics - 0x42019562 0x4c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - 0x42019562 esp_rmaker_ota_enable_using_topics - .text.esp_rmaker_ota_fetch_with_delay - 0x420195ae 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - 0x420195ae esp_rmaker_ota_fetch_with_delay - .text.ota_fetch_schedule_retry - 0x4201960e 0xe0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_ota_fetch - 0x420196ee 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - 0x420196ee esp_rmaker_ota_fetch - .text.esp_rmaker_ota_fetch_timer_cb - 0x42019756 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.ota_fetch_timeout_timer_cb - 0x4201977c 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_ota_work_fn - 0x420197e0 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .text.esp_rmaker_name_param_create - 0x42019848 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019848 esp_rmaker_name_param_create - .text.esp_rmaker_power_param_create - 0x42019876 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019876 esp_rmaker_power_param_create - .text.esp_rmaker_brightness_param_create - 0x420198b6 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x420198b6 esp_rmaker_brightness_param_create - .text.esp_rmaker_hue_param_create - 0x42019928 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019928 esp_rmaker_hue_param_create - .text.esp_rmaker_saturation_param_create - 0x4201999a 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x4201999a esp_rmaker_saturation_param_create - .text.esp_rmaker_ota_status_param_create - 0x42019a0c 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019a0c esp_rmaker_ota_status_param_create - .text.esp_rmaker_ota_info_param_create - 0x42019a40 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019a40 esp_rmaker_ota_info_param_create - .text.esp_rmaker_ota_url_param_create - 0x42019a74 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019a74 esp_rmaker_ota_url_param_create - .text.esp_rmaker_timezone_param_create - 0x42019aa8 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019aa8 esp_rmaker_timezone_param_create - .text.esp_rmaker_timezone_posix_param_create - 0x42019ad6 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019ad6 esp_rmaker_timezone_posix_param_create - .text.esp_rmaker_schedules_param_create - 0x42019b04 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019b04 esp_rmaker_schedules_param_create - .text.esp_rmaker_scenes_param_create - 0x42019b48 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019b48 esp_rmaker_scenes_param_create - .text.esp_rmaker_local_control_pop_param_create - 0x42019b8c 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019b8c esp_rmaker_local_control_pop_param_create - .text.esp_rmaker_local_control_type_param_create - 0x42019bba 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - 0x42019bba esp_rmaker_local_control_type_param_create - .text.esp_rmaker_lightbulb_device_create - 0x42019be8 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - 0x42019be8 esp_rmaker_lightbulb_device_create - .text.esp_rmaker_ota_service_create - 0x42019c4c 0x5e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - 0x42019c4c esp_rmaker_ota_service_create - .text.esp_rmaker_time_service_create - 0x42019caa 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - 0x42019caa esp_rmaker_time_service_create - .text.esp_rmaker_create_schedule_service - 0x42019d04 0x52 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - 0x42019d04 esp_rmaker_create_schedule_service - .text.esp_rmaker_create_scenes_service - 0x42019d56 0x7a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - 0x42019d56 esp_rmaker_create_scenes_service - .text.esp_rmaker_create_local_control_service - 0x42019dd0 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - 0x42019dd0 esp_rmaker_create_local_control_service - .text.esp_rmaker_console_init - 0x42019e2a 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - 0x42019e2a esp_rmaker_console_init - .text.register_user_node_mapping - 0x42019e3c 0x66 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.register_get_node_id - 0x42019ea2 0x66 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.register_wifi_prov - 0x42019f08 0x66 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.register_cmd_resp_command - 0x42019f6e 0x66 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.register_sign_data_command - 0x42019fd4 0x66 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.user_node_mapping_handler - 0x4201a03a 0x4c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.get_node_id_handler - 0x4201a086 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.wifi_prov_handler - 0x4201a0ac 0x126 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.cmd_resp_cli_handler - 0x4201a1d2 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.sign_data_command - 0x4201a24e 0xa6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .text.register_commands - 0x4201a2f4 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - 0x4201a2f4 register_commands - .text.rainmaker__cmd_set_user_mapping__init - 0x4201a312 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a312 rainmaker__cmd_set_user_mapping__init - .text.rainmaker__resp_set_user_mapping__init - 0x4201a330 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a330 rainmaker__resp_set_user_mapping__init - .text.rainmaker__rmaker_config_payload__init - 0x4201a34e 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a34e rainmaker__rmaker_config_payload__init - .text.rainmaker__rmaker_config_payload__get_packed_size - 0x4201a36e 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a36e rainmaker__rmaker_config_payload__get_packed_size - .text.rainmaker__rmaker_config_payload__pack - 0x4201a3ae 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a3ae rainmaker__rmaker_config_payload__pack - .text.rainmaker__rmaker_config_payload__unpack - 0x4201a3ee 0x1c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a3ee rainmaker__rmaker_config_payload__unpack - .text.rainmaker__rmaker_config_payload__free_unpacked - 0x4201a40a 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x4201a40a rainmaker__rmaker_config_payload__free_unpacked - .text.bytes_to_hex - 0x4201a44c 0x58 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .text.myrand 0x4201a4a4 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .text.esp_rmaker_node_auth_sign_msg - 0x4201a4b8 0x380 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - 0x4201a4b8 esp_rmaker_node_auth_sign_msg - .text.app_insights_enable - 0x4201a838 0x34 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - 0x4201a838 app_insights_enable - .text.app_network_prov_stop - 0x4201a86c 0x4e esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.network_event_handler - 0x4201a8ba 0x17c esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.read_random_bytes_from_nvs - 0x4201aa36 0x96 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.get_device_pop - 0x4201aacc 0x188 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.get_device_service_name - 0x4201ac54 0x90 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.qrcode_display - 0x4201ace4 0x26 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.app_network_print_qr - 0x4201ad0a 0x102 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .text.app_network_set_custom_mfg_data - 0x4201ae0c 0xdc esp-idf/app_network/libapp_network.a(app_network.c.obj) - 0x4201ae0c app_network_set_custom_mfg_data - .text.app_network_init - 0x4201aee8 0x174 esp-idf/app_network/libapp_network.a(app_network.c.obj) - 0x4201aee8 app_network_init - .text.app_network_start_timer - 0x4201b05c 0xb0 esp-idf/app_network/libapp_network.a(app_network.c.obj) - 0x4201b05c app_network_start_timer - .text.app_network_start - 0x4201b10c 0xc4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - 0x4201b10c app_network_start - .text.event_handler - 0x4201b1d0 0x1b4 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .text.wifi_init_sta - 0x4201b384 0x60 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .text.wifi_init - 0x4201b3e4 0x15e esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - 0x4201b3e4 wifi_init - .text.wifi_start - 0x4201b542 0x1f2 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - 0x4201b542 wifi_start - .text.button_gpio_isr_handler - 0x4201b734 0xe2 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.button_tap_psh_cb - 0x4201b816 0xc2 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.button_press_serial_cb - 0x4201b8d8 0x4e esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.button_tap_rls_cb - 0x4201b926 0xd4 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.button_press_cb - 0x4201b9fa 0x7a esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .text.iot_button_create - 0x4201ba74 0x188 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - 0x4201ba74 iot_button_create - .text.iot_button_set_serial_cb - 0x4201bbfc 0x96 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - 0x4201bbfc iot_button_set_serial_cb - .text.iot_button_set_evt_cb - 0x4201bc92 0xc2 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - 0x4201bc92 iot_button_set_evt_cb - .text.iot_button_add_on_press_cb - 0x4201bd54 0x152 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - 0x4201bd54 iot_button_add_on_press_cb - .text.iot_button_add_on_release_cb - 0x4201bea6 0x152 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - 0x4201bea6 iot_button_add_on_release_cb - .text.factory_reset_indicate - 0x4201bff8 0x32 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text.wifi_reset_indicate - 0x4201c02a 0x32 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text.factory_reset_trigger - 0x4201c05c 0x12 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text.wifi_reset_trigger - 0x4201c06e 0x12 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .text.app_reset_button_register - 0x4201c080 0xa2 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - 0x4201c080 app_reset_button_register - .text.ws2812_led_hsv2rgb - 0x4201c122 0x13a esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .text.ws2812_led_set_rgb - 0x4201c25c 0x3c esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - 0x4201c25c ws2812_led_set_rgb - .text.ws2812_led_set_hsv - 0x4201c298 0x34 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - 0x4201c298 ws2812_led_set_hsv - .text.ws2812_led_clear - 0x4201c2cc 0x24 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - 0x4201c2cc ws2812_led_clear - .text.ws2812_led_init - 0x4201c2f0 0x104 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - 0x4201c2f0 ws2812_led_init - .text.ws2812_set_pixel - 0x4201c3f4 0x6c esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .text.ws2812_del - 0x4201c460 0x14 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .text.ws2812_refresh - 0x4201c474 0x80 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .text.ws2812_clear - 0x4201c4f4 0x32 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .text.led_strip_new_rmt_ws2812 - 0x4201c526 0x19c esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - 0x4201c526 led_strip_new_rmt_ws2812 - .text.esp_local_ctrl_get_property_index - 0x4201c6c2 0x56 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .text.esp_local_ctrl_stop - 0x4201c718 0xd0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201c718 esp_local_ctrl_stop - .text.esp_local_ctrl_start - 0x4201c7e8 0x496 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201c7e8 esp_local_ctrl_start - .text.esp_local_ctrl_add_property - 0x4201cc7e 0x1e0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201cc7e esp_local_ctrl_add_property - .text.esp_local_ctrl_get_prop_count - 0x4201ce5e 0x50 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201ce5e esp_local_ctrl_get_prop_count - .text.esp_local_ctrl_get_prop_values - 0x4201ceae 0x16a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201ceae esp_local_ctrl_get_prop_values - .text.esp_local_ctrl_set_prop_values - 0x4201d018 0x1e6 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - 0x4201d018 esp_local_ctrl_set_prop_values - .text.err_to_status - 0x4201d1fe 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.lookup_cmd_handler - 0x4201d21e 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.esp_local_ctrl_command_dispatcher - 0x4201d246 0x9c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.esp_local_ctrl_command_cleanup - 0x4201d2e2 0xd6 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.cmd_set_prop_vals_handler - 0x4201d3b8 0x144 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.cmd_get_prop_vals_handler - 0x4201d4fc 0x1f2 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.cmd_get_prop_count_handler - 0x4201d6ee 0x6c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .text.esp_local_ctrl_data_handler - 0x4201d75a 0x14c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - 0x4201d75a esp_local_ctrl_data_handler - .text.cmd_get_property_count__init - 0x4201d8a6 0x14 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d8a6 cmd_get_property_count__init - .text.resp_get_property_count__init - 0x4201d8ba 0x1c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d8ba resp_get_property_count__init - .text.property_info__init - 0x4201d8d6 0x3e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d8d6 property_info__init - .text.cmd_get_property_values__init - 0x4201d914 0x1c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d914 cmd_get_property_values__init - .text.resp_get_property_values__init - 0x4201d930 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d930 resp_get_property_values__init - .text.property_value__init - 0x4201d950 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d950 property_value__init - .text.cmd_set_property_values__init - 0x4201d970 0x1c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d970 cmd_set_property_values__init - .text.resp_set_property_values__init - 0x4201d98c 0x18 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d98c resp_set_property_values__init - .text.local_ctrl_message__init - 0x4201d9a4 0x20 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d9a4 local_ctrl_message__init - .text.local_ctrl_message__get_packed_size - 0x4201d9c4 0x40 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201d9c4 local_ctrl_message__get_packed_size - .text.local_ctrl_message__pack - 0x4201da04 0x40 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201da04 local_ctrl_message__pack - .text.local_ctrl_message__unpack - 0x4201da44 0x1c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201da44 local_ctrl_message__unpack - .text.local_ctrl_message__free_unpacked - 0x4201da60 0x42 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x4201da60 local_ctrl_message__free_unpacked - .text.free_config - 0x4201daa2 0x22 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .text.copy_httpd_config - 0x4201dac4 0x9c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .text.stop_httpd_transport - 0x4201db60 0x40 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .text.start_httpd_transport - 0x4201dba0 0x1b4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .text.esp_local_ctrl_get_transport_httpd - 0x4201dd54 0xa esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - 0x4201dd54 esp_local_ctrl_get_transport_httpd - .text.free_secure_context - 0x4201dd5e 0xa2 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.create_secure_context - 0x4201de00 0x260 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.http_dispatch_event_to_event_loop - 0x4201e060 0x6c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_open - 0x4201e0cc 0x1cc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_pending - 0x4201e298 0x9a esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_recv - 0x4201e332 0xb4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_send - 0x4201e3e6 0xb4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_close - 0x4201e49a 0x6a esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .text.httpd_ssl_start - 0x4201e504 0x14c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - 0x4201e504 httpd_ssl_start - .text.httpd_ssl_stop - 0x4201e650 0x24 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - 0x4201e650 httpd_ssl_stop - .text.json_gen_add_to_str - 0x4201e674 0x88 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_handle_comma - 0x4201e6fc 0x1e esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_handle_name - 0x4201e71a 0x38 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_bool - 0x4201e752 0x2c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_string - 0x4201e77e 0x3e esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_long_string - 0x4201e7bc 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_null - 0x4201e7ec 0x1c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_int - 0x4201e808 0x36 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_set_float - 0x4201e83e 0x42 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .text.json_gen_str_start - 0x4201e880 0x44 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e880 json_gen_str_start - .text.json_gen_str_end - 0x4201e8c4 0x3c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e8c4 json_gen_str_end - .text.json_gen_start_object - 0x4201e900 0x26 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e900 json_gen_start_object - .text.json_gen_end_object - 0x4201e926 0x1c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e926 json_gen_end_object - .text.json_gen_start_array - 0x4201e942 0x26 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e942 json_gen_start_array - .text.json_gen_end_array - 0x4201e968 0x1c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e968 json_gen_end_array - .text.json_gen_push_object - 0x4201e984 0x34 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e984 json_gen_push_object - .text.json_gen_pop_object - 0x4201e9b8 0x1c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e9b8 json_gen_pop_object - .text.json_gen_push_object_str - 0x4201e9d4 0x36 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201e9d4 json_gen_push_object_str - .text.json_gen_push_array - 0x4201ea0a 0x34 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ea0a json_gen_push_array - .text.json_gen_pop_array - 0x4201ea3e 0x1c esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ea3e json_gen_pop_array - .text.json_gen_push_array_str - 0x4201ea5a 0x36 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ea5a json_gen_push_array_str - .text.json_gen_obj_set_bool - 0x4201ea90 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ea90 json_gen_obj_set_bool - .text.json_gen_obj_set_int - 0x4201eac0 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eac0 json_gen_obj_set_int - .text.json_gen_obj_set_float - 0x4201eaf0 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eaf0 json_gen_obj_set_float - .text.json_gen_obj_set_string - 0x4201eb20 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eb20 json_gen_obj_set_string - .text.json_gen_arr_set_string - 0x4201eb50 0x22 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eb50 json_gen_arr_set_string - .text.json_gen_obj_start_long_string - 0x4201eb72 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eb72 json_gen_obj_start_long_string - .text.json_gen_add_to_long_string - 0x4201eba2 0xe esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201eba2 json_gen_add_to_long_string - .text.json_gen_end_long_string - 0x4201ebb0 0x16 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ebb0 json_gen_end_long_string - .text.json_gen_obj_set_null - 0x4201ebc6 0x28 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - 0x4201ebc6 json_gen_obj_set_null - .text.esp_netif_ip_addr_copy - 0x4201ebee 0x3e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_if_from_preset_if - 0x4201ec2c 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_can_add_more_services - 0x4201ec5c 0x24 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_default_instance_name - 0x4201ec80 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_service_instance_name - 0x4201eca8 0x1a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_u16 - 0x4201ecc2 0x54 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_u32 - 0x4201ed16 0x9c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_type - 0x4201edb2 0xe0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_other_if - 0x4201ee92 0x16 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_if_is_dup - 0x4201eea8 0x6a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._ipv6_address_is_zero - 0x4201ef12 0x22 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_next_pcb_packet - 0x4201ef34 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_question_exists - 0x4201ef54 0x32 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_read_u32 - 0x4201ef86 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_txt_items_count_get - 0x4201efa6 0x3c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_txt_item_name_get_len - 0x4201efe2 0x32 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_add - 0x4201f014 0x14 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.set_default_duplicated_interfaces - 0x4201f028 0x68 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.esp_netif_from_preset_if - 0x4201f090 0x44 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_if_from_esp_netif - 0x4201f0d4 0x68 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_add_browse_result - 0x4201f13c 0x7c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_alloc_answer - 0x4201f1b8 0xce esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host - 0x4201f286 0x44 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_finish - 0x4201f2ca 0x5a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_finish_done - 0x4201f324 0x34 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.free_address_list - 0x4201f358 0x1a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.copy_address_list - 0x4201f372 0x64 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_dealloc_answer - 0x4201f3d6 0x54 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host_question - 0x4201f42a 0xbc esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host_questions_for_services - 0x4201f4e6 0x62 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_remove_scheduled_answer - 0x4201f548 0x94 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_sync_browse_action - 0x4201f5dc 0x94 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_search_action - 0x4201f670 0x94 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_query_results_free - 0x4201f704 0x7c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_item_free - 0x4201f780 0x2a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_sync_browse_result_link_free - 0x4201f7aa 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_dealloc_scheduled_service_answers - 0x4201f7d2 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_subtype - 0x4201f822 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_service_subtype - 0x4201f84a 0x1a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_service - 0x4201f864 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_linked_txt - 0x4201f8ba 0x2e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_post_custom_action_tcpip_if - 0x4201f8e8 0xb2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.post_mdns_disable_pcb - 0x4201f99a 0x24 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.post_mdns_enable_pcb - 0x4201f9be 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.post_mdns_announce_pcb - 0x4201f9de 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_strdup_check - 0x4201f9fe 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_alloc_packet_default - 0x4201fa2e 0xe2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_result_txt_create - 0x4201fb10 0x28c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_result_addr_create_ip - 0x4201fd9c 0x8a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_result_add_ip - 0x4201fe26 0x64 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.is_txt_item_in_list - 0x4201fe8a 0x76 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_remap_self_service_hostname - 0x4201ff00 0x54 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_name_is_discovery - 0x4201ff54 0xaa esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._hostname_is_ours - 0x4201fffe 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_delegate_hostname_add - 0x42020054 0x46 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_match - 0x4202009a 0x88 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_service_item - 0x42020122 0x40 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_service_item_subtype - 0x42020162 0x5c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_instance_name_match - 0x420201be 0x3a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_match_instance - 0x420201f8 0x8a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_service_item_instance - 0x42020282 0x58 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_name_is_ours - 0x420202da 0xf8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_copy_address_in_previous_result - 0x420203d2 0x6a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_get_host_item - 0x4202043c 0x5c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host_list_in_services - 0x42020498 0x7a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_answer_from_service - 0x42020512 0x168 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_answer_from_hostname - 0x4202067a 0x4e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host_list - 0x420206c8 0x62 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_question_matches - 0x4202072a 0x168 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_remove_parsed_question - 0x42020892 0x86 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_name_is_selfhosted - 0x42020918 0x74 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_match_ptr_question - 0x4202098c 0x6a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_delegate_hostname_set_address - 0x420209f6 0x66 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_read_fqdn - 0x42020a5c 0x1cc esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_string - 0x42020c28 0x80 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.append_one_txt_record_entry - 0x42020ca8 0xd4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_finish - 0x42020d7c 0xda esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_allocate_txt - 0x42020e56 0xc0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_check_srv_collision - 0x42020f16 0x240 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_check_txt_collision - 0x42021156 0xd4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_fqdn - 0x4202122a 0x186 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_question - 0x420213b0 0xb0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_subtype_ptr_record - 0x42021460 0xd4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_ptr_record - 0x42021534 0xc2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_service_ptr_answers - 0x420215f6 0x88 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_srv_record - 0x4202167e 0x164 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_txt_record - 0x420217e2 0x110 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_sdptr_record - 0x420218f2 0xd8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_a_record - 0x420219ca 0x148 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_aaaa_record - 0x42021b12 0xde esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_host_answer - 0x42021bf0 0x82 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_free_tx_packet - 0x42021c72 0x86 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_clear_pcb_tx_queue_head - 0x42021cf8 0x5e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_announce_packet - 0x42021d56 0xd4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_clear_tx_queue_head - 0x42021e2a 0x20 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_probe_packet - 0x42021e4a 0x166 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_announce_from_probe - 0x42021fb0 0x102 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_remove_scheduled_service_packets - 0x420220b2 0x238 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_pcb_deinit_local - 0x420222ea 0x5a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_schedule_tx_packet - 0x42022344 0x62 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_mangle_name - 0x420223a6 0x11e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_init_pcb_probe_new_service - 0x420224c4 0x1c6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_init_pcb_probe - 0x4202268a 0x106 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_probe_all_pcbs - 0x42022790 0x9e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_restart_all_pcbs_no_instance - 0x4202282e 0x70 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_restart_all_pcbs - 0x4202289e 0x6e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_announce_pcb - 0x4202290c 0x16a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_dup_interface - 0x42022a76 0x82 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_announce_all_pcbs - 0x42022af8 0x52 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_restart_pcb - 0x42022b4a 0x66 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_scheduler_run - 0x42022bb0 0x102 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_run - 0x42022cb2 0xc6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_timer_cb - 0x42022d78 0x12 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_start_timer - 0x42022d8a 0x58 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_task_create_with_caps - 0x42022de2 0xd2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_stop_timer - 0x42022eb4 0x32 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_task_start - 0x42022ee6 0x14a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.unregister_predefined_handlers - 0x42023030 0x54 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_service - 0x42023084 0x114 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_parse_fqdn - 0x42023198 0xc8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_get_esp_netif - 0x42023260 0x52 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42023260 _mdns_get_esp_netif - .text._mdns_browse_find_from - 0x420232b2 0xf2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_result_add_srv - 0x420233a4 0x260 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_result_add_srv - 0x42023604 0x132 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_append_answer - 0x42023736 0x36a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_dispatch_tx_packet - 0x42023aa0 0x14c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_pcb_send_bye - 0x42023bec 0x86 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_bye - 0x42023c72 0x8a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_bye_all_pcbs_no_instance - 0x42023cfc 0x6e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_delegate_hostname_remove - 0x42023d6a 0xc6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_answer_from_parsed_packet - 0x42023e30 0x336 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_tx_handle_packet - 0x42024166 0x12e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_result_add_txt - 0x42024294 0x24e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_result_add_ptr - 0x420244e2 0x12a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_result_add_txt - 0x4202460c 0x132 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_check_aaaa_collision - 0x4202473e 0xa8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_result_add_ip - 0x420247e6 0xe8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_result_add_ip - 0x420248ce 0x198 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_find_from - 0x42024a66 0x182 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_check_a_collision - 0x42024be8 0x86 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_create_search_packet - 0x42024c6e 0x182 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_send_pcb - 0x42024df0 0x5a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_browse_send - 0x42024e4a 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_preset_if_handle_system_event - 0x42024ea0 0x154 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42024ea0 mdns_preset_if_handle_system_event - .text._mdns_browse_add - 0x42024ff4 0xd6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_search_send - 0x420250ca 0x5a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_send_rx_action - 0x42025124 0x8e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42025124 _mdns_send_rx_action - .text.mdns_parse_packet - 0x420251b2 0x151a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x420251b2 mdns_parse_packet - .text._mdns_enable_pcb - 0x420266cc 0x48 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x420266cc _mdns_enable_pcb - .text._mdns_disable_pcb - 0x42026714 0x94 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026714 _mdns_disable_pcb - .text.perform_event_action - 0x420267a8 0x8c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_init - 0x42026834 0x220 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026834 mdns_init - .text.mdns_hostname_set - 0x42026a54 0xfc esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026a54 mdns_hostname_set - .text.mdns_service_add_for_host - 0x42026b50 0x272 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026b50 mdns_service_add_for_host - .text.mdns_service_add - 0x42026dc2 0x26 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026dc2 mdns_service_add - .text.mdns_service_txt_item_set_for_host_with_explicit_value_len - 0x42026de8 0x2ac esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42026de8 mdns_service_txt_item_set_for_host_with_explicit_value_len - .text.mdns_service_txt_item_set - 0x42027094 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42027094 mdns_service_txt_item_set - .text.mdns_service_instance_name_set_for_host - 0x420270e4 0x19c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x420270e4 mdns_service_instance_name_set_for_host - .text.mdns_service_instance_name_set - 0x42027280 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42027280 mdns_service_instance_name_set - .text.mdns_service_remove_for_host - 0x420272a8 0x1d8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x420272a8 mdns_service_remove_for_host - .text.mdns_service_remove - 0x42027480 0x26 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x42027480 mdns_service_remove - .text.mdns_query_results_free - 0x420274a6 0x3e esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - 0x420274a6 mdns_query_results_free - .text._mdns_browse_sync - 0x420274e4 0x64 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_execute_action - 0x42027548 0x1aa esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text._mdns_service_task - 0x420276f2 0xb0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .text.mdns_mem_malloc - 0x420277a2 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x420277a2 mdns_mem_malloc - .text.mdns_mem_calloc - 0x420277ba 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x420277ba mdns_mem_calloc - .text.mdns_mem_free - 0x420277d2 0x12 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x420277d2 mdns_mem_free - .text.mdns_mem_strdup - 0x420277e4 0x4c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x420277e4 mdns_mem_strdup - .text.mdns_mem_strndup - 0x42027830 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x42027830 mdns_mem_strndup - .text.mdns_mem_task_malloc - 0x42027880 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x42027880 mdns_mem_task_malloc - .text.mdns_mem_task_free - 0x420278d0 0x12 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - 0x420278d0 mdns_mem_task_free - .text._udp_join_group - 0x420278e2 0xca esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._udp_pcb_main_init - 0x420279ac 0xd4 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._udp_recv - 0x42027a80 0x184 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._udp_pcb_main_deinit - 0x42027c04 0x38 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text.mdns_is_netif_ready - 0x42027c3c 0x38 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027c3c mdns_is_netif_ready - .text._udp_pcb_init - 0x42027c74 0x62 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._mdns_pcb_init_api - 0x42027cd6 0x22 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._udp_pcb_is_in_use - 0x42027cf8 0x38 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._udp_pcb_deinit - 0x42027d30 0x56 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._mdns_pcb_deinit_api - 0x42027d86 0x1e esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._mdns_udp_pcb_write_api - 0x42027da4 0x5c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .text._mdns_pcb_init - 0x42027e00 0x2c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027e00 _mdns_pcb_init - .text._mdns_pcb_deinit - 0x42027e2c 0x2c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027e2c _mdns_pcb_deinit - .text._mdns_udp_pcb_write - 0x42027e58 0xa6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027e58 _mdns_udp_pcb_write - .text._mdns_get_packet_data - 0x42027efe 0x6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027efe _mdns_get_packet_data - .text._mdns_get_packet_len - 0x42027f04 0x8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027f04 _mdns_get_packet_len - .text._mdns_packet_free - 0x42027f0c 0x1c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - 0x42027f0c _mdns_packet_free - .text.esp_schedule_get_next_year - 0x42027f28 0x18 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_stop_timer - 0x42027f40 0x1c esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_delete_timer - 0x42027f5c 0x1c esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_get_no_of_days - 0x42027f78 0xcc esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_get_next_month - 0x42028044 0x130 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_get_next_schedule_time_diff - 0x42028174 0x2ba esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_start_timer - 0x4202842e 0xdc esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_set - 0x4202850a 0x8a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_create_timer - 0x42028594 0x44 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_is_expired - 0x420285d8 0x156 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_common_timer_cb - 0x4202872e 0x198 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .text.esp_schedule_enable - 0x420288c6 0x18 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x420288c6 esp_schedule_enable - .text.esp_schedule_disable - 0x420288de 0x28 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x420288de esp_schedule_disable - .text.esp_schedule_edit - 0x42028906 0x86 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x42028906 esp_schedule_edit - .text.esp_schedule_delete - 0x4202898c 0x62 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x4202898c esp_schedule_delete - .text.esp_schedule_create - 0x420289ee 0xd4 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x420289ee esp_schedule_create - .text.esp_schedule_init - 0x42028ac2 0x172 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - 0x42028ac2 esp_schedule_init - .text.esp_schedule_nvs_get_count - 0x42028c34 0xe6 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .text.esp_schedule_nvs_get - 0x42028d1a 0x170 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .text.esp_schedule_nvs_add - 0x42028e8a 0x21c esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - 0x42028e8a esp_schedule_nvs_add - .text.esp_schedule_nvs_remove - 0x420290a6 0x17e esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - 0x420290a6 esp_schedule_nvs_remove - .text.esp_schedule_nvs_get_all - 0x42029224 0x178 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - 0x42029224 esp_schedule_nvs_get_all - .text.esp_schedule_nvs_is_enabled - 0x4202939c 0xa esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - 0x4202939c esp_schedule_nvs_is_enabled - .text.esp_schedule_nvs_init - 0x420293a6 0xc4 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - 0x420293a6 esp_schedule_nvs_init - .text.debug_print_wifi_credentials - 0x4202946a 0x4a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.execute_event_cb - 0x420294b4 0x118 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.wifi_connect_timer_cb - 0x420295cc 0x3a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.update_wifi_scan_results - 0x42029606 0x2a4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.prov_stop_and_notify - 0x420298aa 0x1f4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_stop_service - 0x42029a9e 0x320 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_event_handler_internal - 0x42029dbe 0x37c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.cleanup_delay_timer_cb - 0x4202a13a 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_get_info_json - 0x4202a19a 0x16a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_start_service - 0x4202a304 0x6b0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_endpoint_create - 0x4202a9b4 0x11e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202a9b4 network_prov_mgr_endpoint_create - .text.network_prov_mgr_endpoint_register - 0x4202aad2 0x126 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202aad2 network_prov_mgr_endpoint_register - .text.network_prov_mgr_wifi_scan_start - 0x4202abf8 0x2f2 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202abf8 network_prov_mgr_wifi_scan_start - .text.network_prov_mgr_wifi_scan_finished - 0x4202aeea 0x132 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202aeea network_prov_mgr_wifi_scan_finished - .text.network_prov_mgr_wifi_scan_result_count - 0x4202b01c 0x146 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b01c network_prov_mgr_wifi_scan_result_count - .text.network_prov_mgr_wifi_scan_result - 0x4202b162 0x140 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b162 network_prov_mgr_wifi_scan_result - .text.network_prov_mgr_get_wifi_state - 0x4202b2a2 0x10c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b2a2 network_prov_mgr_get_wifi_state - .text.network_prov_mgr_get_wifi_disconnect_reason - 0x4202b3ae 0x156 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b3ae network_prov_mgr_get_wifi_disconnect_reason - .text.network_prov_mgr_is_wifi_provisioned - 0x4202b504 0x88 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b504 network_prov_mgr_is_wifi_provisioned - .text.network_prov_mgr_configure_wifi_sta - 0x4202b58c 0x3ea esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b58c network_prov_mgr_configure_wifi_sta - .text.network_prov_mgr_init - 0x4202b976 0x45c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202b976 network_prov_mgr_init - .text.network_prov_mgr_deinit - 0x4202bdd2 0x23e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202bdd2 network_prov_mgr_deinit - .text.network_prov_mgr_start_provisioning - 0x4202c010 0x5f6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202c010 network_prov_mgr_start_provisioning - .text.network_prov_mgr_stop_provisioning - 0x4202c606 0xb8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202c606 network_prov_mgr_stop_provisioning - .text.network_prov_mgr_done - 0x4202c6be 0xdc esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202c6be network_prov_mgr_done - .text.stop_prov_timer_cb - 0x4202c79a 0xe esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .text.network_prov_mgr_reset_wifi_sm_state_on_failure - 0x4202c7a8 0x15c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202c7a8 network_prov_mgr_reset_wifi_sm_state_on_failure - .text.network_prov_mgr_reset_wifi_sm_state_for_reprovision - 0x4202c904 0x1ca esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x4202c904 network_prov_mgr_reset_wifi_sm_state_for_reprovision - .text.get_wifi_config - 0x4202cace 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.free_network_prov_ctx - 0x4202cad2 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_apply_config_handler - 0x4202caf0 0x82 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.new_wifi_config - 0x4202cb72 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_set_config_handler - 0x4202cba2 0xa8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_get_status_handler - 0x4202cc4a 0xf8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_scan_result - 0x4202cd42 0x78 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_scan_status - 0x4202cdba 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_scan_start - 0x4202cde2 0xe esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_ctrl_reprov - 0x4202cdf0 0xe esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.wifi_ctrl_reset - 0x4202cdfe 0xe esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .text.get_network_prov_handlers - 0x4202ce0c 0x2e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - 0x4202ce0c get_network_prov_handlers - .text.get_network_scan_handlers - 0x4202ce3a 0x2e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - 0x4202ce3a get_network_scan_handlers - .text.get_network_ctrl_handlers - 0x4202ce68 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - 0x4202ce68 get_network_ctrl_handlers - .text.set_config_endpoint - 0x4202ce88 0x112 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.set_config_service - 0x4202cf9a 0xf0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.delete_config - 0x4202d08a 0x72 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.new_config - 0x4202d0fc 0x72 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.prov_start - 0x4202d16e 0xa8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .text.network_prov_scheme_ble_set_service_uuid - 0x4202d216 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - 0x4202d216 network_prov_scheme_ble_set_service_uuid - .text.network_prov_scheme_ble_set_mfg_data - 0x4202d22a 0x7e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - 0x4202d22a network_prov_scheme_ble_set_mfg_data - .text.network_prov_scheme_ble_event_cb_free_btdm - 0x4202d2a8 0xd6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - 0x4202d2a8 network_prov_scheme_ble_event_cb_free_btdm - .text.lookup_cmd_handler - 0x4202d37e 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.network_prov_config_command_dispatcher - 0x4202d3a6 0x98 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.cmd_apply_config_handler - 0x4202d43e 0x10c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.cmd_set_config_handler - 0x4202d54a 0x190 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.network_prov_config_command_cleanup - 0x4202d6da 0xee esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.cmd_get_status_handler - 0x4202d7c8 0x258 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .text.network_prov_config_data_handler - 0x4202da20 0x140 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - 0x4202da20 network_prov_config_data_handler - .text.lookup_cmd_handler - 0x4202db60 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.network_prov_scan_cmd_dispatcher - 0x4202db88 0x98 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.cmd_scan_result_handler - 0x4202dc20 0x308 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.cmd_scan_status_handler - 0x4202df28 0x138 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.cmd_scan_start_handler - 0x4202e060 0x130 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.network_prov_scan_cmd_cleanup - 0x4202e190 0x102 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .text.network_prov_scan_handler - 0x4202e292 0x13c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - 0x4202e292 network_prov_scan_handler - .text.lookup_cmd_handler - 0x4202e3ce 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text.network_ctrl_cmd_dispatcher - 0x4202e3f6 0x9c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text.cmd_ctrl_reprov_handler - 0x4202e492 0x10a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text.cmd_ctrl_reset_handler - 0x4202e59c 0x106 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text.network_ctrl_cmd_cleanup - 0x4202e6a2 0x80 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .text.network_ctrl_handler - 0x4202e722 0x132 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - 0x4202e722 network_ctrl_handler - .text.cmd_get_wifi_status__init - 0x4202e854 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e854 cmd_get_wifi_status__init - .text.resp_get_wifi_status__init - 0x4202e868 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e868 resp_get_wifi_status__init - .text.cmd_get_thread_status__init - 0x4202e88c 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e88c cmd_get_thread_status__init - .text.resp_get_thread_status__init - 0x4202e8a0 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e8a0 resp_get_thread_status__init - .text.cmd_set_wifi_config__init - 0x4202e8c4 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e8c4 cmd_set_wifi_config__init - .text.cmd_set_thread_config__init - 0x4202e8f4 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e8f4 cmd_set_thread_config__init - .text.resp_set_wifi_config__init - 0x4202e910 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e910 resp_set_wifi_config__init - .text.resp_set_thread_config__init - 0x4202e928 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e928 resp_set_thread_config__init - .text.cmd_apply_wifi_config__init - 0x4202e940 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e940 cmd_apply_wifi_config__init - .text.cmd_apply_thread_config__init - 0x4202e954 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e954 cmd_apply_thread_config__init - .text.resp_apply_wifi_config__init - 0x4202e968 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e968 resp_apply_wifi_config__init - .text.resp_apply_thread_config__init - 0x4202e980 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e980 resp_apply_thread_config__init - .text.network_config_payload__init - 0x4202e998 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e998 network_config_payload__init - .text.network_config_payload__get_packed_size - 0x4202e9b8 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e9b8 network_config_payload__get_packed_size - .text.network_config_payload__pack - 0x4202e9f8 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202e9f8 network_config_payload__pack - .text.network_config_payload__unpack - 0x4202ea38 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202ea38 network_config_payload__unpack - .text.network_config_payload__free_unpacked - 0x4202ea54 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x4202ea54 network_config_payload__free_unpacked - .text.cmd_scan_wifi_start__init - 0x4202ea96 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ea96 cmd_scan_wifi_start__init - .text.cmd_scan_thread_start__init - 0x4202eaba 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eaba cmd_scan_thread_start__init - .text.resp_scan_wifi_start__init - 0x4202ead6 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ead6 resp_scan_wifi_start__init - .text.resp_scan_thread_start__init - 0x4202eaea 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eaea resp_scan_thread_start__init - .text.cmd_scan_wifi_status__init - 0x4202eafe 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eafe cmd_scan_wifi_status__init - .text.cmd_scan_thread_status__init - 0x4202eb12 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb12 cmd_scan_thread_status__init - .text.resp_scan_wifi_status__init - 0x4202eb26 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb26 resp_scan_wifi_status__init - .text.resp_scan_thread_status__init - 0x4202eb42 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb42 resp_scan_thread_status__init - .text.cmd_scan_wifi_result__init - 0x4202eb5e 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb5e cmd_scan_wifi_result__init - .text.cmd_scan_thread_result__init - 0x4202eb7a 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb7a cmd_scan_thread_result__init - .text.wi_fi_scan_result__init - 0x4202eb96 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202eb96 wi_fi_scan_result__init - .text.thread_scan_result__init - 0x4202ebc6 0x56 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ebc6 thread_scan_result__init - .text.resp_scan_wifi_result__init - 0x4202ec1c 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ec1c resp_scan_wifi_result__init - .text.resp_scan_thread_result__init - 0x4202ec38 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ec38 resp_scan_thread_result__init - .text.network_scan_payload__init - 0x4202ec54 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ec54 network_scan_payload__init - .text.network_scan_payload__get_packed_size - 0x4202ec78 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ec78 network_scan_payload__get_packed_size - .text.network_scan_payload__pack - 0x4202ecb8 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ecb8 network_scan_payload__pack - .text.network_scan_payload__unpack - 0x4202ecf8 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ecf8 network_scan_payload__unpack - .text.network_scan_payload__free_unpacked - 0x4202ed14 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x4202ed14 network_scan_payload__free_unpacked - .text.cmd_ctrl_wifi_reset__init - 0x4202ed56 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ed56 cmd_ctrl_wifi_reset__init - .text.resp_ctrl_wifi_reset__init - 0x4202ed6a 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ed6a resp_ctrl_wifi_reset__init - .text.cmd_ctrl_wifi_reprov__init - 0x4202ed7e 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ed7e cmd_ctrl_wifi_reprov__init - .text.resp_ctrl_wifi_reprov__init - 0x4202ed92 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ed92 resp_ctrl_wifi_reprov__init - .text.cmd_ctrl_thread_reset__init - 0x4202eda6 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202eda6 cmd_ctrl_thread_reset__init - .text.resp_ctrl_thread_reset__init - 0x4202edba 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202edba resp_ctrl_thread_reset__init - .text.cmd_ctrl_thread_reprov__init - 0x4202edce 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202edce cmd_ctrl_thread_reprov__init - .text.resp_ctrl_thread_reprov__init - 0x4202ede2 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ede2 resp_ctrl_thread_reprov__init - .text.network_ctrl_payload__init - 0x4202edf6 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202edf6 network_ctrl_payload__init - .text.network_ctrl_payload__get_packed_size - 0x4202ee1a 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ee1a network_ctrl_payload__get_packed_size - .text.network_ctrl_payload__pack - 0x4202ee5a 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ee5a network_ctrl_payload__pack - .text.network_ctrl_payload__unpack - 0x4202ee9a 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202ee9a network_ctrl_payload__unpack - .text.network_ctrl_payload__free_unpacked - 0x4202eeb6 0x42 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x4202eeb6 network_ctrl_payload__free_unpacked - .text.wifi_connected_state__init - 0x4202eef8 0x46 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x4202eef8 wifi_connected_state__init - .text.thread_attach_state__init - 0x4202ef3e 0x36 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x4202ef3e thread_attach_state__init - .text.protocomm_common_security_handler - 0x4202ef74 0x34 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.search_endpoint - 0x4202efa8 0x2c esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.protocomm_add_endpoint_internal - 0x4202efd4 0x104 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.protocomm_version_handler - 0x4202f0d8 0x7e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .text.protocomm_new - 0x4202f156 0x50 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f156 protocomm_new - .text.protocomm_delete - 0x4202f1a6 0x56 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f1a6 protocomm_delete - .text.protocomm_add_endpoint - 0x4202f1fc 0x10 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f1fc protocomm_add_endpoint - .text.protocomm_remove_endpoint - 0x4202f20c 0x8e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f20c protocomm_remove_endpoint - .text.protocomm_req_handle - 0x4202f29a 0x244 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f29a protocomm_req_handle - .text.protocomm_set_security - 0x4202f4de 0x200 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f4de protocomm_set_security - .text.protocomm_unset_security - 0x4202f6de 0x4e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f6de protocomm_unset_security - .text.protocomm_set_version - 0x4202f72c 0xb6 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f72c protocomm_set_version - .text.protocomm_unset_version - 0x4202f7e2 0x3e esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f7e2 protocomm_unset_version - .text.protocomm_get_sec_version - 0x4202f820 0x2c esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - 0x4202f820 protocomm_get_sec_version - .text.protocomm_httpd_session_close - 0x4202f84c 0x4c esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .text.protocomm_httpd_remove_endpoint - 0x4202f898 0xe2 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .text.protocomm_httpd_add_endpoint - 0x4202f97a 0xf2 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .text.common_post_handler - 0x4202fa6c 0x31a esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .text.protocomm_httpd_start - 0x4202fd86 0x1b4 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - 0x4202fd86 protocomm_httpd_start - .text.protocomm_httpd_stop - 0x4202ff3a 0x9e esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - 0x4202ff3a protocomm_httpd_stop - .text.sec0_session_setup_cleanup - 0x4202ffd8 0x28 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .text.sec0_session_setup - 0x42030000 0x9c esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .text.sec0_req_handler - 0x4203009c 0x14c esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .text.flip_endian - 0x420301e8 0x2c esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_decrypt - 0x42030214 0x13a esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_session_setup_cleanup - 0x4203034e 0x56 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_close_session - 0x420303a4 0x76 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_new_session - 0x4203041a 0x5e esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.handle_session_command0 - 0x42030478 0x5ac esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_cleanup - 0x42030a24 0x24 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.handle_session_command1 - 0x42030a48 0x36e esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_session_setup - 0x42030db6 0x7e esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_req_handler - 0x42030e34 0x1d6 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec1_init - 0x4203100a 0x5e esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .text.sec2_decrypt - 0x42031068 0x198 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_encrypt - 0x42031200 0x1aa esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_session_setup_cleanup - 0x420313aa 0x56 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_init - 0x42031400 0x5e esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.handle_session_command1 - 0x4203145e 0x3b4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_close_session - 0x42031812 0x8a esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_new_session - 0x4203189c 0x5e esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.handle_session_command0 - 0x420318fa 0x428 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_session_setup - 0x42031d22 0x7e esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_req_handler - 0x42031da0 0x1d6 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.sec2_cleanup - 0x42031f76 0x24 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .text.hexdump_mpi - 0x42031f9a 0x1e esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.calculate_padded_hash - 0x42031fb8 0x104 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.calculate_k - 0x420320bc 0x16 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.__esp_srp_srv_pubkey - 0x420320d2 0xf8 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.calculate_u - 0x420321ca 0x12 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .text.esp_srp_free - 0x420321dc 0x7c esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x420321dc esp_srp_free - .text.esp_srp_init - 0x42032258 0x7c esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x42032258 esp_srp_init - .text.esp_srp_srv_pubkey_from_salt_verifier - 0x420322d4 0x26 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x420322d4 esp_srp_srv_pubkey_from_salt_verifier - .text.esp_srp_set_salt_verifier - 0x420322fa 0x8a esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x420322fa esp_srp_set_salt_verifier - .text.esp_srp_get_session_key - 0x42032384 0x1b0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x42032384 esp_srp_get_session_key - .text.esp_srp_exchange_proofs - 0x42032534 0x1ac esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - 0x42032534 esp_srp_exchange_proofs - .text.esp_get_random - 0x420326e0 0x14 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x420326e0 esp_get_random - .text.esp_mpi_new - 0x420326f4 0x22 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x420326f4 esp_mpi_new - .text.esp_mpi_free - 0x42032716 0x20 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x42032716 esp_mpi_free - .text.esp_mpi_new_from_bin - 0x42032736 0x46 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x42032736 esp_mpi_new_from_bin - .text.esp_mpi_ctx_new - 0x4203277c 0xe esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x4203277c esp_mpi_ctx_new - .text.esp_mpi_ctx_free - 0x4203278a 0xe esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x4203278a esp_mpi_ctx_free - .text.esp_mpi_sizeof - 0x42032798 0xe esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x42032798 esp_mpi_sizeof - .text.esp_mpi_to_bin - 0x420327a6 0x56 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x420327a6 esp_mpi_to_bin - .text.esp_mpi_get_rand - 0x420327fc 0x22 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x420327fc esp_mpi_get_rand - .text.esp_mpi_a_exp_b_mod_c - 0x4203281e 0xe esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x4203281e esp_mpi_a_exp_b_mod_c - .text.esp_mpi_a_mul_b_mod_c - 0x4203282c 0x74 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x4203282c esp_mpi_a_mul_b_mod_c - .text.esp_mpi_a_add_b_mod_c - 0x420328a0 0x74 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - 0x420328a0 esp_mpi_a_add_b_mod_c - .text.find_attr_with_handle - 0x42032914 0x1a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.uuid128_to_handler - 0x4203292e 0x30 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.transport_simple_ble_set_mtu - 0x4203295e 0x12 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.protocomm_ble_add_endpoint - 0x42032970 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.protocomm_ble_remove_endpoint - 0x42032974 0x4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.gatt_svr_register_cb - 0x42032978 0x3a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - 0x42032978 gatt_svr_register_cb - .text.simple_ble_gatts_get_attr_value - 0x420329b2 0x5c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.simple_ble_on_reset - 0x42032a0e 0x3a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.nimble_host_task - 0x42032a48 0x3e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - 0x42032a48 nimble_host_task - .text.ble_gatt_add_primary_svcs - 0x42032a86 0x60 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.ble_gatt_add_characteristics - 0x42032ae6 0xe8 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.ble_gatt_add_char_dsc - 0x42032bce 0xfa esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.populate_gatt_db - 0x42032cc8 0x1a2 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.transport_simple_ble_disconnect - 0x42032e6a 0xe6 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.transport_simple_ble_connect - 0x42032f50 0xd4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.simple_ble_gatts_set_attr_value - 0x42033024 0x8c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.free_gatt_ble_misc_memory - 0x420330b0 0x104 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.protocomm_ble_cleanup - 0x420331b4 0xb4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.gatt_svr_chr_access - 0x42033268 0x26a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.gatt_svr_dsc_access - 0x420334d2 0x66 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.simple_ble_advertise - 0x42033538 0x116 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.simple_ble_on_sync - 0x4203364e 0xee esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.simple_ble_gap_event - 0x4203373c 0x170 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.gatt_svr_init - 0x420338ac 0x24 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - 0x420338ac gatt_svr_init - .text.simple_ble_start - 0x420338d0 0x194 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .text.protocomm_ble_start - 0x42033a64 0x4ba esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - 0x42033a64 protocomm_ble_start - .text.protocomm_ble_stop - 0x42033f1e 0x6a esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - 0x42033f1e protocomm_ble_stop - .text.s0_session_cmd__init - 0x42033f88 0x14 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x42033f88 s0_session_cmd__init - .text.s0_session_resp__init - 0x42033f9c 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x42033f9c s0_session_resp__init - .text.sec0_payload__init - 0x42033fb4 0x20 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x42033fb4 sec0_payload__init - .text.session_cmd1__init - 0x42033fd4 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x42033fd4 session_cmd1__init - .text.session_resp1__init - 0x42033ff0 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x42033ff0 session_resp1__init - .text.session_cmd0__init - 0x42034010 0x1c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x42034010 session_cmd0__init - .text.session_resp0__init - 0x4203402c 0x28 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x4203402c session_resp0__init - .text.sec1_payload__init - 0x42034054 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x42034054 sec1_payload__init - .text.s2_session_cmd0__init - 0x42034074 0x24 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x42034074 s2_session_cmd0__init - .text.s2_session_resp0__init - 0x42034098 0x28 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x42034098 s2_session_resp0__init - .text.s2_session_cmd1__init - 0x420340c0 0x1c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x420340c0 s2_session_cmd1__init - .text.s2_session_resp1__init - 0x420340dc 0x28 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x420340dc s2_session_resp1__init - .text.sec2_payload__init - 0x42034104 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x42034104 sec2_payload__init - .text.session_data__init - 0x42034124 0x20 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x42034124 session_data__init - .text.session_data__get_packed_size - 0x42034144 0x3e esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x42034144 session_data__get_packed_size - .text.session_data__pack - 0x42034182 0x3e esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x42034182 session_data__pack - .text.session_data__unpack - 0x420341c0 0x1c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x420341c0 session_data__unpack - .text.session_data__free_unpacked - 0x420341dc 0x42 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x420341dc session_data__free_unpacked - .text.btdm_funcs_table_ready_wrapper - 0x4203421e 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_wifi_sleep_set_hook - 0x42034220 0x2 esp-idf/bt/libbt.a(bt.c.obj) - .text.malloc_internal_wrapper - 0x42034222 0x4c esp-idf/bt/libbt.a(bt.c.obj) - .text.async_wakeup_request_end - 0x4203426e 0x24 esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_bt_wakeup_request_end - 0x42034292 0x10 esp-idf/bt/libbt.a(bt.c.obj) - .text.semphr_take_wrapper - 0x420342a2 0x36 esp-idf/bt/libbt.a(bt.c.obj) - .text.async_wakeup_request - 0x420342d8 0xae esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_bt_wakeup_request - 0x42034386 0x10 esp-idf/bt/libbt.a(bt.c.obj) - .text.mutex_lock_wrapper - 0x42034396 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .text.try_heap_caps_add_region - 0x420343aa 0x1a esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_mem_release_area - 0x420343c4 0x1c esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_mem_release_areas - 0x420343e0 0x36 esp-idf/bt/libbt.a(bt.c.obj) - .text.interrupt_disable_wrapper - 0x42034416 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.interrupt_enable_wrapper - 0x42034428 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_curr_phase_get_wrapper - 0x4203443a 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_curr_period_get_wrapper - 0x42034448 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_interval_get_wrapper - 0x42034456 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_status_bit_clear_wrapper - 0x42034464 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_status_bit_set_wrapper - 0x42034472 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.coex_schm_register_btdm_callback_wrapper - 0x42034480 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_sleep_exit_phase3_wrapper - 0x42034492 0x7c esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_sleep_enter_phase2_wrapper - 0x4203450e 0x5a esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_sleep_enter_phase1_wrapper - 0x42034568 0x104 esp-idf/bt/libbt.a(bt.c.obj) - .text.task_delete_wrapper - 0x4203466c 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.task_create_wrapper - 0x4203467e 0x1c esp-idf/bt/libbt.a(bt.c.obj) - .text.queue_recv_wrapper - 0x4203469a 0x36 esp-idf/bt/libbt.a(bt.c.obj) - .text.queue_send_wrapper - 0x420346d0 0x3a esp-idf/bt/libbt.a(bt.c.obj) - .text.mutex_unlock_wrapper - 0x4203470a 0x18 esp-idf/bt/libbt.a(bt.c.obj) - .text.semphr_give_wrapper - 0x42034722 0x1a esp-idf/bt/libbt.a(bt.c.obj) - .text.queue_delete_wrapper - 0x4203473c 0x28 esp-idf/bt/libbt.a(bt.c.obj) - .text.mutex_delete_wrapper - 0x42034764 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.semphr_delete_wrapper - 0x42034776 0x28 esp-idf/bt/libbt.a(bt.c.obj) - .text.queue_create_wrapper - 0x4203479e 0x8a esp-idf/bt/libbt.a(bt.c.obj) - .text.mutex_create_wrapper - 0x42034828 0x14 esp-idf/bt/libbt.a(bt.c.obj) - .text.semphr_create_wrapper - 0x4203483c 0x8a esp-idf/bt/libbt.a(bt.c.obj) - .text.interrupt_free_wrapper - 0x420348c6 0xe esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_intr_alloc - 0x420348d4 0x20 esp-idf/bt/libbt.a(bt.c.obj) - .text.interrupt_alloc_wrapper - 0x420348f4 0x20 esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_power_domain_on - 0x42034914 0x3a esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_controller_mem_init - 0x4203494e 0x12 esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_low_power_mode_init - 0x42034960 0x348 esp-idf/bt/libbt.a(bt.c.obj) - .text.btdm_low_power_mode_deinit - 0x42034ca8 0xae esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_bt_power_domain_off - 0x42034d56 0x34 esp-idf/bt/libbt.a(bt.c.obj) - .text.bt_controller_deinit_internal - 0x42034d8a 0x3e esp-idf/bt/libbt.a(bt.c.obj) - .text.esp_vhci_host_check_send_available - 0x42034dc8 0x20 esp-idf/bt/libbt.a(bt.c.obj) - 0x42034dc8 esp_vhci_host_check_send_available - .text.esp_vhci_host_send_packet - 0x42034de8 0x3a esp-idf/bt/libbt.a(bt.c.obj) - 0x42034de8 esp_vhci_host_send_packet - .text.esp_vhci_host_register_callback - 0x42034e22 0x26 esp-idf/bt/libbt.a(bt.c.obj) - 0x42034e22 esp_vhci_host_register_callback - .text.esp_bt_controller_rom_mem_release - 0x42034e48 0x84 esp-idf/bt/libbt.a(bt.c.obj) - 0x42034e48 esp_bt_controller_rom_mem_release - .text.esp_bt_mem_release - 0x42034ecc 0xbc esp-idf/bt/libbt.a(bt.c.obj) - 0x42034ecc esp_bt_mem_release - .text.esp_bt_controller_init - 0x42034f88 0x2a4 esp-idf/bt/libbt.a(bt.c.obj) - 0x42034f88 esp_bt_controller_init - .text.esp_bt_controller_deinit - 0x4203522c 0x40 esp-idf/bt/libbt.a(bt.c.obj) - 0x4203522c esp_bt_controller_deinit - .text.esp_bt_controller_enable - 0x4203526c 0xec esp-idf/bt/libbt.a(bt.c.obj) - 0x4203526c esp_bt_controller_enable - .text.esp_bt_controller_disable - 0x42035358 0x66 esp-idf/bt/libbt.a(bt.c.obj) - 0x42035358 esp_bt_controller_disable - .text.esp_bt_controller_get_status - 0x420353be 0xa esp-idf/bt/libbt.a(bt.c.obj) - 0x420353be esp_bt_controller_get_status - .text.ble_hs_util_load_rand_addr - 0x420353c8 0x4 esp-idf/bt/libbt.a(addr.c.obj) - .text.ble_hs_util_ensure_rand_addr - 0x420353cc 0x2a esp-idf/bt/libbt.a(addr.c.obj) - .text.ble_hs_util_ensure_addr - 0x420353f6 0x34 esp-idf/bt/libbt.a(addr.c.obj) - 0x420353f6 ble_hs_util_ensure_addr - .text.ble_svc_gap_device_name - 0x4203542a 0xa esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - 0x4203542a ble_svc_gap_device_name - .text.ble_svc_gap_device_name_set - 0x42035434 0x4c esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - 0x42035434 ble_svc_gap_device_name_set - .text.ble_store_util_iter_count - 0x42035480 0xa esp-idf/bt/libbt.a(ble_store_util.c.obj) - .text.ble_addr_cmp - 0x4203548a 0x2c esp-idf/bt/libbt.a(ble_store_util.c.obj) - .text.ble_store_util_iter_unique_peer - 0x420354b6 0x94 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .text.ble_store_util_bonded_peers - 0x4203554a 0x2e esp-idf/bt/libbt.a(ble_store_util.c.obj) - 0x4203554a ble_store_util_bonded_peers - .text.ble_store_util_delete_all - 0x42035578 0x28 esp-idf/bt/libbt.a(ble_store_util.c.obj) - 0x42035578 ble_store_util_delete_all - .text.ble_store_util_delete_peer - 0x420355a0 0x14a esp-idf/bt/libbt.a(ble_store_util.c.obj) - 0x420355a0 ble_store_util_delete_peer - .text.ble_store_util_count - 0x420356ea 0x1c esp-idf/bt/libbt.a(ble_store_util.c.obj) - 0x420356ea ble_store_util_count - .text.ble_store_util_status_rr - 0x42035706 0x5a esp-idf/bt/libbt.a(ble_store_util.c.obj) - 0x42035706 ble_store_util_status_rr - .text.ble_hs_id_set_pub - 0x42035760 0x4c esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x42035760 ble_hs_id_set_pub - .text.ble_hs_id_gen_rnd - 0x420357ac 0x44 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x420357ac ble_hs_id_gen_rnd - .text.ble_hs_id_set_rnd - 0x420357f0 0xe2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x420357f0 ble_hs_id_set_rnd - .text.ble_hs_id_addr - 0x420358d2 0x78 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x420358d2 ble_hs_id_addr - .text.ble_hs_id_addr_type_usable - 0x4203594a 0x40 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .text.ble_hs_id_copy_addr - 0x4203598a 0x64 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x4203598a ble_hs_id_copy_addr - .text.ble_hs_id_use_addr - 0x420359ee 0x28 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x420359ee ble_hs_id_use_addr - .text.ble_hs_id_infer_auto - 0x42035a16 0x68 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x42035a16 ble_hs_id_infer_auto - .text.ble_hs_id_reset - 0x42035a7e 0x22 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - 0x42035a7e ble_hs_id_reset - .text.ble_hs_wakeup_tx_conn - 0x42035aa0 0x4e esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_event_rx_hci_ev - 0x42035aee 0x44 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_clear_rx_queue - 0x42035b32 0x1e esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_event_tx_notify - 0x42035b50 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_rx_data - 0x42035b5e 0x36 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_evq_get - 0x42035b94 0xa esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035b94 ble_hs_evq_get - .text.ble_hs_sched_start_stage2 - 0x42035b9e 0x22 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_event_start_stage1 - 0x42035bc0 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_evq_set - 0x42035bce 0xa esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035bce ble_hs_evq_set - .text.ble_hs_is_parent_task - 0x42035bd8 0x3a esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035bd8 ble_hs_is_parent_task - .text.ble_hs_lock_nested - 0x42035c12 0x20 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c12 ble_hs_lock_nested - .text.ble_hs_unlock_nested - 0x42035c32 0x1e esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c32 ble_hs_unlock_nested - .text.ble_hs_lock - 0x42035c50 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c50 ble_hs_lock - .text.ble_hs_unlock - 0x42035c5e 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c5e ble_hs_unlock - .text.ble_hs_process_rx_data_queue - 0x42035c6c 0x1e esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c6c ble_hs_process_rx_data_queue - .text.ble_hs_event_rx_data - 0x42035c8a 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_wakeup_tx - 0x42035c98 0x42 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035c98 ble_hs_wakeup_tx - .text.ble_hs_is_enabled - 0x42035cda 0x10 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035cda ble_hs_is_enabled - .text.ble_hs_timer_reset - 0x42035cea 0x52 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_timer_sched - 0x42035d3c 0xb8 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_sync - 0x42035df4 0x92 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_reset - 0x42035e86 0x4a esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_event_reset - 0x42035ed0 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_timer_exp - 0x42035ede 0x6c esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_timer_resched - 0x42035f4a 0x10 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035f4a ble_hs_timer_resched - .text.ble_hs_enqueue_hci_event - 0x42035f5a 0x74 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035f5a ble_hs_enqueue_hci_event - .text.ble_hs_sched_reset - 0x42035fce 0x2e esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035fce ble_hs_sched_reset - .text.ble_hs_hw_error - 0x42035ffc 0x12 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42035ffc ble_hs_hw_error - .text.ble_hs_start - 0x4203600e 0xac esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x4203600e ble_hs_start - .text.ble_hs_event_start_stage2 - 0x420360ba 0x34 esp-idf/bt/libbt.a(ble_hs.c.obj) - .text.ble_hs_tx_data - 0x420360ee 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x420360ee ble_hs_tx_data - .text.ble_hs_init - 0x420360fc 0x28a esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x420360fc ble_hs_init - .text.ble_transport_to_hs_evt_impl - 0x42036386 0x10 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42036386 ble_transport_to_hs_evt_impl - .text.ble_transport_to_hs_acl_impl - 0x42036396 0x10 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x42036396 ble_transport_to_hs_acl_impl - .text.ble_transport_hs_init - 0x420363a6 0xe esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x420363a6 ble_transport_hs_init - .text.ble_hs_deinit - 0x420363b4 0x92 esp-idf/bt/libbt.a(ble_hs.c.obj) - 0x420363b4 ble_hs_deinit - .text.ble_hs_hci_evt_dispatch_find - 0x42036446 0x28 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_dispatch_find - 0x4203646e 0x1a esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_meta - 0x42036488 0x3a esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_adv_rpt_first_pass - 0x420364c2 0x58 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_ext_adv_rpt - 0x4203651a 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_periodic_adv_sync_estab - 0x4203651e 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_periodic_adv_rpt - 0x42036522 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_periodic_adv_sync_lost - 0x42036526 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_periodic_adv_sync_transfer - 0x4203652a 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_scan_timeout - 0x4203652e 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_adv_set_terminated - 0x42036532 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_scan_req_rcvd - 0x42036536 0x4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_end_test - 0x4203653a 0x16 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_tx_test - 0x42036550 0x16 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_rx_test - 0x42036566 0x16 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_hw_error - 0x4203657c 0x1e esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_enc_key_refresh - 0x4203659a 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_encrypt_change - 0x420365b6 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_disconn_complete - 0x420365d2 0x238 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_num_completed_pkts - 0x4203680a 0x92 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_rd_rem_ver_complete - 0x4203689c 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_phy_update_complete - 0x420368b8 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_dir_adv_rpt - 0x420368d4 0xd4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_adv_rpt - 0x420369a8 0xe0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_enh_conn_complete - 0x42036a88 0x11e esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_conn_complete - 0x42036ba6 0xbe esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_data_len_change - 0x42036c64 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_conn_parm_req - 0x42036c80 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_lt_key_req - 0x42036c9c 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_rd_rem_used_feat_complete - 0x42036cb8 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_le_conn_upd_complete - 0x42036cd4 0x1c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .text.ble_hs_hci_evt_process - 0x42036cf0 0x4c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - 0x42036cf0 ble_hs_hci_evt_process - .text.ble_hs_hci_evt_acl_process - 0x42036d3c 0xbe esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - 0x42036d3c ble_hs_hci_evt_acl_process - .text.ble_mqueue_init - 0x42036dfa 0x20 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - 0x42036dfa ble_mqueue_init - .text.ble_mqueue_deinit - 0x42036e1a 0x18 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - 0x42036e1a ble_mqueue_deinit - .text.ble_mqueue_get - 0x42036e32 0x44 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - 0x42036e32 ble_mqueue_get - .text.ble_mqueue_put - 0x42036e76 0x74 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - 0x42036e76 ble_mqueue_put - .text.ble_att_rx_dispatch_entry_find - 0x42036eea 0x30 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_send_outstanding_after_response - 0x42036f1a 0x36 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_rx_handle_unknown_request - 0x42036f50 0x48 esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_conn_chan_find - 0x42036f98 0xe esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42036f98 ble_att_conn_chan_find - .text.ble_att_inc_tx_stat - 0x42036fa6 0x2 esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42036fa6 ble_att_inc_tx_stat - .text.ble_att_set_peer_mtu - 0x42036fa8 0xe esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42036fa8 ble_att_set_peer_mtu - .text.ble_att_chan_mtu - 0x42036fb6 0x34 esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42036fb6 ble_att_chan_mtu - .text.ble_att_truncate_to_mtu - 0x42036fea 0x2c esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42036fea ble_att_truncate_to_mtu - .text.ble_att_mtu_by_cid - 0x42037016 0x3a esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42037016 ble_att_mtu_by_cid - .text.ble_att_create_chan - 0x42037050 0x30 esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42037050 ble_att_create_chan - .text.ble_att_is_request_op - 0x42037080 0x20 esp-idf/bt/libbt.a(ble_att.c.obj) - 0x42037080 ble_att_is_request_op - .text.ble_att_is_response_op - 0x420370a0 0x3e esp-idf/bt/libbt.a(ble_att.c.obj) - 0x420370a0 ble_att_is_response_op - .text.ble_att_rx_extended - 0x420370de 0x9c esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_rx - 0x4203717a 0x2c esp-idf/bt/libbt.a(ble_att.c.obj) - .text.ble_att_init - 0x420371a6 0x10 esp-idf/bt/libbt.a(ble_att.c.obj) - 0x420371a6 ble_att_init - .text.ble_gattc_rx_entry_find - 0x420371b6 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_prepare - 0x420371d6 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_set_exp_timer - 0x420371e6 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_set_resume_timer - 0x42037222 0x58 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_process_resume_status - 0x4203727a 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_err_dispatch_get - 0x42037298 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_resume_dispatch_get - 0x420372a8 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_tmo_dispatch_get - 0x420372b8 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_matches_conn_op - 0x420372c8 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_matches_conn_cid_op - 0x420372f8 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_matches_expired - 0x42037338 0x1e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_matches_conn_rx_entry - 0x42037356 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_matches_stalled - 0x4203739c 0x8 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_ticks_until_resume - 0x420373a4 0x3e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_timeout - 0x420373e2 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_error - 0x42037402 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_mtu_cb - 0x42037426 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_mtu_tmo - 0x42037466 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_mtu_err - 0x4203747a 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_cb - 0x4203748a 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_tmo - 0x420374ca 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_err - 0x420374de 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_cb - 0x420374fe 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_tmo - 0x4203753e 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_err - 0x42037552 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_rx_hinfo - 0x4203756e 0x56 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_cb - 0x420375c4 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_tmo - 0x42037604 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_err - 0x42037618 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_cb - 0x4203763a 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_tmo - 0x4203767a 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_err - 0x4203768e 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_cb - 0x420376aa 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_tmo - 0x420376ea 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_err - 0x420376fe 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_cb - 0x4203771a 0x44 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_tmo - 0x4203775e 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_err - 0x42037772 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_rx_idata - 0x4203778e 0x54 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_cb - 0x420377e2 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_tmo - 0x42037822 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_err - 0x42037836 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_rx_read_rsp - 0x42037846 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_cb - 0x42037874 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_tmo - 0x420378b4 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_err - 0x420378c8 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_rx_complete - 0x420378d8 0x22 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_cb - 0x420378fa 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_tmo - 0x4203793a 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_err - 0x4203794e 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_cb - 0x4203795e 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_tmo - 0x42037996 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_rx_exec - 0x420379a8 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_cb - 0x420379cc 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_tmo - 0x42037a08 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_rx_exec - 0x42037a1a 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract - 0x42037a2c 0xb0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_expired - 0x42037adc 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_stalled - 0x42037b1e 0x1c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_by_conn_op - 0x42037b3a 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_by_conn_cid_op - 0x42037b5a 0x2a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_first_by_conn_cid_op - 0x42037b84 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_one - 0x42037b98 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_extract_with_rx_entry - 0x42037bac 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_insert - 0x42037bdc 0x2a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gatts_indicate_tmo - 0x42037c06 0x1a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_cb - 0x42037c20 0x4a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_tmo - 0x42037c6a 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_err - 0x42037c7c 0xe esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_cb_var - 0x42037c8a 0x17a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_var_tmo - 0x42037e04 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_cb - 0x42037e18 0x66 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_tmo - 0x42037e7e 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_err - 0x42037e92 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_mult_var_err - 0x42037ea2 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_free - 0x42037eb2 0x58 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_fail_procs - 0x42037f0a 0x48 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_err - 0x42037f52 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_err - 0x42037f82 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_tx - 0x42037fc8 0xba esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_resume - 0x42038082 0x32 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_tx - 0x420380b4 0x9c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_resume - 0x42038150 0x32 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_tx - 0x42038182 0x32 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_resume - 0x420381b4 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_long_rx_read_rsp - 0x420381e8 0x8a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_tx - 0x42038272 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_resume - 0x42038296 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_dscs_rx_complete - 0x420382ca 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_tx - 0x42038306 0x36 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_resume - 0x4203833c 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_rx_complete - 0x42038370 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_tx - 0x420383ac 0x36 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_resume - 0x420383e2 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_rx_complete - 0x42038416 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_tx - 0x42038452 0x4a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_resume - 0x4203849c 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_rx_complete - 0x420384d0 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_tx - 0x4203850c 0x5c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_resume - 0x42038568 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_svc_uuid_rx_complete - 0x4203859c 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_tx - 0x420385d8 0x36 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_resume - 0x4203860e 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_rx_complete - 0x42038646 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_process_status - 0x42038686 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_resume_procs - 0x420386b6 0x44 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_proc_alloc - 0x420386fa 0x2e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_proc_init - 0x42038728 0x3a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_notify - 0x42038762 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_log_indicate - 0x420387a8 0x46 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_read_uuid_rx_adata - 0x420387ee 0x4c esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gatts_indicate_err - 0x4203883a 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gatts_indicate_rx_rsp - 0x4203887c 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_chrs_rx_adata - 0x420388b4 0x92 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_rx_adata - 0x42038946 0xae esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_all_svcs_rx_adata - 0x420389f4 0x74 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_disc_chr_uuid_rx_adata - 0x42038a68 0xae esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_find_inc_svcs_rx_read_rsp - 0x42038b16 0x8a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_reliable_rx_prep - 0x42038ba0 0x9e esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_write_long_rx_prep - 0x42038c3e 0x9a esp-idf/bt/libbt.a(ble_gattc.c.obj) - .text.ble_gattc_timer - 0x42038cd8 0x5a esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038cd8 ble_gattc_timer - .text.ble_gatts_notify_custom - 0x42038d32 0x6c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038d32 ble_gatts_notify_custom - .text.ble_gatts_notify - 0x42038d9e 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038d9e ble_gatts_notify - .text.ble_gatts_indicate_fail_notconn - 0x42038dae 0x12 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038dae ble_gatts_indicate_fail_notconn - .text.ble_gatts_indicate_custom - 0x42038dc0 0xae esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038dc0 ble_gatts_indicate_custom - .text.ble_gatts_indicate - 0x42038e6e 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038e6e ble_gatts_indicate - .text.ble_gattc_rx_err - 0x42038e7e 0x42 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038e7e ble_gattc_rx_err - .text.ble_gattc_rx_mtu - 0x42038ec0 0x62 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038ec0 ble_gattc_rx_mtu - .text.ble_gattc_rx_find_info_idata - 0x42038f22 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038f22 ble_gattc_rx_find_info_idata - .text.ble_gattc_rx_find_info_complete - 0x42038f4e 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038f4e ble_gattc_rx_find_info_complete - .text.ble_gattc_rx_find_type_value_hinfo - 0x42038f7a 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038f7a ble_gattc_rx_find_type_value_hinfo - .text.ble_gattc_rx_find_type_value_complete - 0x42038fa6 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038fa6 ble_gattc_rx_find_type_value_complete - .text.ble_gattc_rx_read_type_adata - 0x42038fd2 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42038fd2 ble_gattc_rx_read_type_adata - .text.ble_gattc_rx_read_type_complete - 0x4203900a 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203900a ble_gattc_rx_read_type_complete - .text.ble_gattc_rx_read_group_type_adata - 0x42039042 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42039042 ble_gattc_rx_read_group_type_adata - .text.ble_gattc_rx_read_group_type_complete - 0x4203906e 0x2c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203906e ble_gattc_rx_read_group_type_complete - .text.ble_gattc_rx_read_rsp - 0x4203909a 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203909a ble_gattc_rx_read_rsp - .text.ble_gattc_rx_read_blob_rsp - 0x420390da 0x34 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x420390da ble_gattc_rx_read_blob_rsp - .text.ble_gattc_rx_read_mult_rsp - 0x4203910e 0x3c esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203910e ble_gattc_rx_read_mult_rsp - .text.ble_gattc_rx_write_rsp - 0x4203914a 0x28 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203914a ble_gattc_rx_write_rsp - .text.ble_gattc_rx_prep_write_rsp - 0x42039172 0x50 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42039172 ble_gattc_rx_prep_write_rsp - .text.ble_gattc_rx_exec_write_rsp - 0x420391c2 0x38 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x420391c2 ble_gattc_rx_exec_write_rsp - .text.ble_gatts_rx_indicate_rsp - 0x420391fa 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x420391fa ble_gatts_rx_indicate_rsp - .text.ble_gattc_connection_broken - 0x4203921e 0x44 esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x4203921e ble_gattc_connection_broken - .text.ble_gattc_init - 0x42039262 0x3a esp-idf/bt/libbt.a(ble_gattc.c.obj) - 0x42039262 ble_gattc_init - .text.ble_store_status - 0x4203929c 0x26 esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_addr_cmp - 0x420392c2 0x2c esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_read - 0x420392ee 0x40 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420392ee ble_store_read - .text.ble_store_delete - 0x4203932e 0x38 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203932e ble_store_delete - .text.ble_store_overflow_event - 0x42039366 0x18 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039366 ble_store_overflow_event - .text.ble_store_write - 0x4203937e 0x5a esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203937e ble_store_write - .text.ble_store_persist_sec - 0x420393d8 0xe esp-idf/bt/libbt.a(ble_store.c.obj) - .text.ble_store_full_event - 0x420393e6 0x1a esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420393e6 ble_store_full_event - .text.ble_store_read_our_sec - 0x42039400 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039400 ble_store_read_our_sec - .text.ble_store_write_our_sec - 0x42039414 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039414 ble_store_write_our_sec - .text.ble_store_delete_peer_sec - 0x42039426 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039426 ble_store_delete_peer_sec - .text.ble_store_read_peer_sec - 0x42039438 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039438 ble_store_read_peer_sec - .text.ble_store_write_peer_sec - 0x4203944c 0x66 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203944c ble_store_write_peer_sec - .text.ble_store_read_cccd - 0x420394b2 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420394b2 ble_store_read_cccd - .text.ble_store_write_cccd - 0x420394c6 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420394c6 ble_store_write_cccd - .text.ble_store_delete_cccd - 0x420394d8 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420394d8 ble_store_delete_cccd - .text.ble_store_read_csfc - 0x420394ea 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420394ea ble_store_read_csfc - .text.ble_store_write_csfc - 0x420394fe 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420394fe ble_store_write_csfc - .text.ble_store_key_from_value_cccd - 0x42039510 0x2e esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039510 ble_store_key_from_value_cccd - .text.ble_store_key_from_value_sec - 0x4203953e 0x3e esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203953e ble_store_key_from_value_sec - .text.ble_store_read_local_irk - 0x4203957c 0x14 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203957c ble_store_read_local_irk - .text.ble_store_write_local_irk - 0x42039590 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039590 ble_store_write_local_irk - .text.ble_store_key_from_value_local_irk - 0x420395a2 0x3e esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420395a2 ble_store_key_from_value_local_irk - .text.ble_store_write_rpa_rec - 0x420395e0 0x12 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420395e0 ble_store_write_rpa_rec - .text.ble_store_key_from_value_rpa_rec - 0x420395f2 0x3e esp-idf/bt/libbt.a(ble_store.c.obj) - 0x420395f2 ble_store_key_from_value_rpa_rec - .text.ble_store_key_from_value_csfc - 0x42039630 0x3e esp-idf/bt/libbt.a(ble_store.c.obj) - 0x42039630 ble_store_key_from_value_csfc - .text.ble_store_iterate - 0x4203966e 0x182 esp-idf/bt/libbt.a(ble_store.c.obj) - 0x4203966e ble_store_iterate - .text.ble_att_clt_parse_find_type_value_hinfo - 0x420397f0 0x56 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_parse_read_group_type_adata - 0x42039846 0x5e esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_parse_find_info_entry - 0x420398a4 0x9a esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .text.ble_att_clt_rx_error - 0x4203993e 0x4c esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x4203993e ble_att_clt_rx_error - .text.ble_att_clt_rx_mtu - 0x4203998a 0x8a esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x4203998a ble_att_clt_rx_mtu - .text.ble_att_clt_tx_find_info - 0x42039a14 0x5e esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039a14 ble_att_clt_tx_find_info - .text.ble_att_clt_rx_find_info - 0x42039a72 0x6e esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039a72 ble_att_clt_rx_find_info - .text.ble_att_clt_tx_find_type_value - 0x42039ae0 0x8c esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039ae0 ble_att_clt_tx_find_type_value - .text.ble_att_clt_rx_find_type_value - 0x42039b6c 0x4e esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039b6c ble_att_clt_rx_find_type_value - .text.ble_att_clt_tx_read_type - 0x42039bba 0x72 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039bba ble_att_clt_tx_read_type - .text.ble_att_clt_rx_read_type - 0x42039c2c 0x96 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039c2c ble_att_clt_rx_read_type - .text.ble_att_clt_tx_read - 0x42039cc2 0x42 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039cc2 ble_att_clt_tx_read - .text.ble_att_clt_rx_read - 0x42039d04 0x14 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039d04 ble_att_clt_rx_read - .text.ble_att_clt_tx_read_blob - 0x42039d18 0x52 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039d18 ble_att_clt_tx_read_blob - .text.ble_att_clt_rx_read_blob - 0x42039d6a 0x14 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039d6a ble_att_clt_rx_read_blob - .text.ble_att_clt_rx_read_mult - 0x42039d7e 0x16 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039d7e ble_att_clt_rx_read_mult - .text.ble_att_clt_rx_read_mult_var - 0x42039d94 0x16 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039d94 ble_att_clt_rx_read_mult_var - .text.ble_att_clt_tx_read_group_type - 0x42039daa 0x72 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039daa ble_att_clt_tx_read_group_type - .text.ble_att_clt_rx_read_group_type - 0x42039e1c 0x72 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039e1c ble_att_clt_rx_read_group_type - .text.ble_att_clt_rx_write - 0x42039e8e 0x10 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039e8e ble_att_clt_rx_write - .text.ble_att_clt_tx_prep_write - 0x42039e9e 0x90 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039e9e ble_att_clt_tx_prep_write - .text.ble_att_clt_rx_prep_write - 0x42039f2e 0x70 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039f2e ble_att_clt_rx_prep_write - .text.ble_att_clt_tx_exec_write - 0x42039f9e 0x36 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039f9e ble_att_clt_tx_exec_write - .text.ble_att_clt_rx_exec_write - 0x42039fd4 0x12 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039fd4 ble_att_clt_rx_exec_write - .text.ble_att_clt_tx_notify - 0x42039fe6 0x54 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x42039fe6 ble_att_clt_tx_notify - .text.ble_att_clt_tx_indicate - 0x4203a03a 0x5a esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x4203a03a ble_att_clt_tx_indicate - .text.ble_att_clt_rx_indicate - 0x4203a094 0x10 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - 0x4203a094 ble_att_clt_rx_indicate - .text.ble_hs_mbuf_gen_pkt - 0x4203a0a4 0x32 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .text.ble_hs_mbuf_acl_pkt - 0x4203a0d6 0x10 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a0d6 ble_hs_mbuf_acl_pkt - .text.ble_hs_mbuf_l2cap_pkt - 0x4203a0e6 0x10 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a0e6 ble_hs_mbuf_l2cap_pkt - .text.ble_hs_mbuf_att_pkt - 0x4203a0f6 0x10 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a0f6 ble_hs_mbuf_att_pkt - .text.ble_hs_mbuf_from_flat - 0x4203a106 0x3a esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a106 ble_hs_mbuf_from_flat - .text.ble_hs_mbuf_to_flat - 0x4203a140 0x42 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a140 ble_hs_mbuf_to_flat - .text.ble_hs_mbuf_pullup_base - 0x4203a182 0x30 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - 0x4203a182 ble_hs_mbuf_pullup_base - .text.ble_att_cmd_prepare - 0x4203a1b2 0x3c esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - 0x4203a1b2 ble_att_cmd_prepare - .text.ble_att_cmd_get - 0x4203a1ee 0x2e esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - 0x4203a1ee ble_att_cmd_get - .text.ble_att_tx_with_conn - 0x4203a21c 0xb0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - 0x4203a21c ble_att_tx_with_conn - .text.ble_att_tx - 0x4203a2cc 0x48 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - 0x4203a2cc ble_att_tx - .text.ble_hs_log_mbuf - 0x4203a314 0x30 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - 0x4203a314 ble_hs_log_mbuf - .text.ble_hs_log_flat_buf - 0x4203a344 0xc esp-idf/bt/libbt.a(ble_hs_log.c.obj) - 0x4203a344 ble_hs_log_flat_buf - .text.ble_hs_startup_reset_tx - 0x4203a350 0x1c esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_sup_f_tx - 0x4203a36c 0x52 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_le_set_evmask_tx - 0x4203a3be 0x54 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_le_read_buf_sz_tx - 0x4203a412 0x38 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_buf_sz_tx - 0x4203a44a 0x40 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_local_ver_tx - 0x4203a48a 0x30 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_sup_cmd_tx - 0x4203a4ba 0x6e esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_set_evmask_tx - 0x4203a528 0x6a esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_buf_sz - 0x4203a592 0x54 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_le_read_sup_f_tx - 0x4203a5e6 0x2e esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_read_bd_addr - 0x4203a614 0x2c esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .text.ble_hs_startup_go - 0x4203a640 0xce esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - 0x4203a640 ble_hs_startup_go - .text.ble_l2cap_sig_next_id - 0x4203a70e 0x26 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_dispatch_get - 0x4203a734 0x1a esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_matches - 0x4203a74e 0x2e esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_rx_noop - 0x4203a77c 0x4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_update_call_cb - 0x4203a780 0x16 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_check_conn_params - 0x4203a796 0x78 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_insert - 0x4203a80e 0x38 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_extract - 0x4203a846 0x88 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_extract_expired - 0x4203a8ce 0x86 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_alloc - 0x4203a954 0x2c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_set_timer - 0x4203a980 0x40 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_proc_free - 0x4203a9c0 0x1a esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_process_status - 0x4203a9da 0x22 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_rx_reject - 0x4203a9fc 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_update_rsp_rx - 0x4203aa18 0x6c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_rx - 0x4203aa84 0x8e esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_update_req_rx - 0x4203ab12 0xe4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .text.ble_l2cap_sig_update - 0x4203abf6 0xdc esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - 0x4203abf6 ble_l2cap_sig_update - .text.ble_l2cap_sig_create_chan - 0x4203acd2 0x2c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - 0x4203acd2 ble_l2cap_sig_create_chan - .text.ble_l2cap_sig_conn_broken - 0x4203acfe 0x52 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - 0x4203acfe ble_l2cap_sig_conn_broken - .text.ble_l2cap_sig_timer - 0x4203ad50 0x46 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - 0x4203ad50 ble_l2cap_sig_timer - .text.ble_l2cap_sig_init - 0x4203ad96 0x38 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - 0x4203ad96 ble_l2cap_sig_init - .text.ble_gap_call_event_cb - 0x4203adce 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_is_preempted - 0x4203ae26 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_has_client - 0x4203ae5e 0xe esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_ticks_until_exp - 0x4203ae6c 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_slave_ticks_until_exp - 0x4203aec6 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_next_exp - 0x4203af20 0x56 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_to_l2cap - 0x4203af76 0x22 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_active_instance - 0x4203af98 0x18 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_accept_master_conn - 0x4203afb0 0x16 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_accept_slave_conn - 0x4203afc6 0x3e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_rx_adv_report_sanity_check - 0x4203b004 0x16 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_type - 0x4203b01a 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_dflt_itvls - 0x4203b048 0x56 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_entry_find - 0x4203b09e 0x22 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_validate_conn_params - 0x4203b0c0 0x6c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_event_listener_call - 0x4203b12c 0x2c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_extract_conn_cb - 0x4203b158 0x48 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_call_conn_event_cb - 0x4203b1a0 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_fill_conn_desc - 0x4203b1c8 0x100 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_to_snapshot - 0x4203b2c8 0x24 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_find_snapshot - 0x4203b2ec 0x36 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_rd_rem_ver_tx - 0x4203b322 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_rd_rem_sup_feat_tx - 0x4203b340 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_cancel_tx - 0x4203b35e 0x1a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_enable_tx - 0x4203b378 0x2a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_disable_tx - 0x4203b3a2 0x12 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_enable_tx - 0x4203b3b4 0x22 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_params_tx - 0x4203b3d6 0xe6 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_tx_param_pos_reply - 0x4203b4bc 0x50 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_tx_param_neg_reply - 0x4203b50c 0x24 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_tx - 0x4203b530 0x4e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_create_tx - 0x4203b57e 0xd8 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_entry_remove - 0x4203b656 0x36 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_slave_reset_state - 0x4203b68c 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_slave_extract_cb - 0x4203b6b4 0x42 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_finished - 0x4203b6f6 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_slave_timer - 0x4203b75a 0x34 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_reset_state - 0x4203b78e 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_extract_state - 0x4203b7bc 0x4e esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_connect_failure - 0x4203b80a 0x62 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_complete - 0x4203b86c 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_timer - 0x4203b8be 0x88 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_disc_report - 0x4203b946 0x68 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_connect_cancelled - 0x4203b9ae 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_failed - 0x4203ba12 0x2c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_slave_set_timer - 0x4203ba3e 0x3a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_set_timer - 0x4203ba78 0x3a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_entry_free - 0x4203bab2 0x1a esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_timer - 0x4203bacc 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_adv - 0x4203bb08 0xfa esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_conn - 0x4203bc02 0xe4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_log_update - 0x4203bce6 0x60 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_addr_cmp - 0x4203bd46 0x2c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_validate - 0x4203bd72 0xb8 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_entry_alloc - 0x4203be2a 0x2c esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_find - 0x4203be56 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203be56 ble_gap_conn_find - .text.ble_gap_reattempt_count - 0x4203be8e 0x4c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203be8e ble_gap_reattempt_count - .text.ble_gap_master_in_progress - 0x4203beda 0xe esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203beda ble_gap_master_in_progress - .text.ble_gap_rx_adv_report - 0x4203bee8 0x24 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203bee8 ble_gap_rx_adv_report - .text.ble_gap_link_estab_call - 0x4203bf0c 0x5c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203bf0c ble_gap_link_estab_call - .text.ble_gap_rx_rd_rem_sup_feat_complete - 0x4203bf68 0x96 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203bf68 ble_gap_rx_rd_rem_sup_feat_complete - .text.ble_gap_rx_rd_rem_ver_info_complete - 0x4203bffe 0x8a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203bffe ble_gap_rx_rd_rem_ver_info_complete - .text.ble_gap_rx_l2cap_update_req - 0x4203c088 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c088 ble_gap_rx_l2cap_update_req - .text.ble_gap_rx_phy_update_complete - 0x4203c0da 0x68 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c0da ble_gap_rx_phy_update_complete - .text.ble_gap_rx_data_len_change - 0x4203c142 0xcc esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c142 ble_gap_rx_data_len_change - .text.ble_gap_timer - 0x4203c20e 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c20e ble_gap_timer - .text.ble_gap_adv_start - 0x4203c23e 0x24a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c23e ble_gap_adv_start - .text.ble_gap_adv_set_data - 0x4203c488 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c488 ble_gap_adv_set_data - .text.ble_gap_adv_rsp_set_data - 0x4203c4e0 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c4e0 ble_gap_adv_rsp_set_data - .text.ble_gap_adv_set_fields - 0x4203c538 0x4a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c538 ble_gap_adv_set_fields - .text.ble_gap_adv_rsp_set_fields - 0x4203c582 0x24 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c582 ble_gap_adv_rsp_set_fields - .text.ble_gap_adv_active - 0x4203c5a6 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c5a6 ble_gap_adv_active - .text.ble_gap_rx_conn_complete - 0x4203c5b6 0x30a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c5b6 ble_gap_rx_conn_complete - .text.ble_gap_adv_stop_no_lock - 0x4203c8c0 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_adv_stop - 0x4203c918 0x28 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c918 ble_gap_adv_stop - .text.ble_gap_slave_adv_reattempt - 0x4203c940 0x6a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c940 ble_gap_slave_adv_reattempt - .text.ble_gap_disc_active - 0x4203c9aa 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c9aa ble_gap_disc_active - .text.ble_gap_disc_cancel_no_lock - 0x4203c9ba 0x26 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_conn_active - 0x4203c9e0 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c9e0 ble_gap_conn_active - .text.ble_gap_connect - 0x4203c9f0 0x2a6 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203c9f0 ble_gap_connect - .text.ble_gap_conn_cancel_no_lock - 0x4203cc96 0x56 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_terminate_with_conn - 0x4203ccec 0x7a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203ccec ble_gap_terminate_with_conn - .text.ble_gap_terminate - 0x4203cd66 0x3e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203cd66 ble_gap_terminate - .text.ble_gap_update_notify - 0x4203cda4 0x60 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_master_connect_reattempt - 0x4203ce04 0xb0 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203ce04 ble_gap_master_connect_reattempt - .text.ble_gap_conn_broken - 0x4203ceb4 0x12a esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203ceb4 ble_gap_conn_broken - .text.ble_gap_rx_disconn_complete - 0x4203cfde 0x7e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203cfde ble_gap_rx_disconn_complete - .text.ble_gap_reset_state - 0x4203d05c 0x40 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d05c ble_gap_reset_state - .text.ble_gap_rx_update_complete - 0x4203d09c 0x120 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d09c ble_gap_rx_update_complete - .text.ble_gap_update_l2cap_cb - 0x4203d1bc 0x40 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_update_failed - 0x4203d1fc 0x38 esp-idf/bt/libbt.a(ble_gap.c.obj) - .text.ble_gap_rx_param_req - 0x4203d234 0xdc esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d234 ble_gap_rx_param_req - .text.ble_gap_update_params - 0x4203d310 0x19c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d310 ble_gap_update_params - .text.ble_gap_unpair - 0x4203d4ac 0x1c2 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d4ac ble_gap_unpair - .text.ble_gap_unpair_oldest_peer - 0x4203d66e 0x2e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d66e ble_gap_unpair_oldest_peer - .text.ble_gap_unpair_oldest_except - 0x4203d69c 0x6e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d69c ble_gap_unpair_oldest_except - .text.ble_gap_passkey_event - 0x4203d70a 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d70a ble_gap_passkey_event - .text.ble_gap_enc_event - 0x4203d762 0x78 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d762 ble_gap_enc_event - .text.ble_gap_identity_event - 0x4203d7da 0x88 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d7da ble_gap_identity_event - .text.ble_gap_repeat_pairing_event - 0x4203d862 0x62 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d862 ble_gap_repeat_pairing_event - .text.ble_gap_pairing_complete_event - 0x4203d8c4 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d8c4 ble_gap_pairing_complete_event - .text.ble_gap_notify_rx_event - 0x4203d916 0x62 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d916 ble_gap_notify_rx_event - .text.ble_gap_notify_tx_event - 0x4203d978 0x5c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d978 ble_gap_notify_tx_event - .text.ble_gap_subscribe_event - 0x4203d9d4 0x9c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203d9d4 ble_gap_subscribe_event - .text.ble_gap_mtu_event - 0x4203da70 0x50 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203da70 ble_gap_mtu_event - .text.ble_gap_authorize_event - 0x4203dac0 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203dac0 ble_gap_authorize_event - .text.ble_gap_rx_test_evt - 0x4203db24 0x58 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203db24 ble_gap_rx_test_evt - .text.ble_gap_tx_test_evt - 0x4203db7c 0x52 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203db7c ble_gap_tx_test_evt - .text.ble_gap_end_test_evt - 0x4203dbce 0x60 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203dbce ble_gap_end_test_evt - .text.ble_gap_preempt_no_lock - 0x4203dc2e 0x4c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203dc2e ble_gap_preempt_no_lock - .text.ble_gap_preempt - 0x4203dc7a 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203dc7a ble_gap_preempt - .text.ble_gap_preempt_done - 0x4203dc98 0x136 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203dc98 ble_gap_preempt_done - .text.ble_gap_event_listener_register - 0x4203ddce 0x64 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203ddce ble_gap_event_listener_register - .text.ble_gap_event_listener_unregister - 0x4203de32 0x3c esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203de32 ble_gap_event_listener_unregister - .text.ble_gap_init - 0x4203de6e 0xd6 esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203de6e ble_gap_init - .text.ble_gap_deinit - 0x4203df44 0x1e esp-idf/bt/libbt.a(ble_gap.c.obj) - 0x4203df44 ble_gap_deinit - .text.ble_uuid_init_from_buf - 0x4203df62 0x64 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203df62 ble_uuid_init_from_buf - .text.ble_uuid_cmp - 0x4203dfc6 0x58 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203dfc6 ble_uuid_cmp - .text.ble_uuid_u16 - 0x4203e01e 0x14 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e01e ble_uuid_u16 - .text.ble_uuid_init_from_att_buf - 0x4203e032 0x4a esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e032 ble_uuid_init_from_att_buf - .text.ble_uuid_init_from_att_mbuf - 0x4203e07c 0x30 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e07c ble_uuid_init_from_att_mbuf - .text.ble_uuid_flat - 0x4203e0ac 0x76 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e0ac ble_uuid_flat - .text.ble_uuid_length - 0x4203e122 0x8 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e122 ble_uuid_length - .text.ble_uuid_to_mbuf - 0x4203e12a 0x36 esp-idf/bt/libbt.a(ble_uuid.c.obj) - 0x4203e12a ble_uuid_to_mbuf - .text.ble_hs_pvcy_set_addr_timeout - 0x4203e160 0x36 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_pvcy_clear_entries - 0x4203e196 0x1c esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_get_rpa_timeout - 0x4203e1b2 0xa esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e1b2 ble_hs_get_rpa_timeout - .text.ble_hs_pvcy_set_resolve_enabled - 0x4203e1bc 0x20 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e1bc ble_hs_pvcy_set_resolve_enabled - .text.ble_hs_pvcy_remove_entry - 0x4203e1dc 0x58 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e1dc ble_hs_pvcy_remove_entry - .text.ble_hs_pvcy_ensure_started - 0x4203e234 0x38 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e234 ble_hs_pvcy_ensure_started - .text.ble_hs_pvcy_set_default_irk - 0x4203e26c 0x136 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e26c ble_hs_pvcy_set_default_irk - .text.ble_hs_pvcy_our_irk - 0x4203e3a2 0xe esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e3a2 ble_hs_pvcy_our_irk - .text.ble_hs_pvcy_set_mode - 0x4203e3b0 0x68 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e3b0 ble_hs_pvcy_set_mode - .text.ble_hs_pvcy_add_entry_hci - 0x4203e418 0xd6 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .text.ble_hs_pvcy_add_entry - 0x4203e4ee 0x32 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e4ee ble_hs_pvcy_add_entry - .text.ble_hs_pvcy_set_our_irk - 0x4203e520 0x82 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - 0x4203e520 ble_hs_pvcy_set_our_irk - .text.ble_hs_flow_connection_broken - 0x4203e5a2 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - 0x4203e5a2 ble_hs_flow_connection_broken - .text.ble_hs_flow_track_data_mbuf - 0x4203e5a4 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - 0x4203e5a4 ble_hs_flow_track_data_mbuf - .text.ble_hs_flow_startup - 0x4203e5a6 0x4 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - 0x4203e5a6 ble_hs_flow_startup - .text.ble_hs_flow_init - 0x4203e5aa 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - 0x4203e5aa ble_hs_flow_init - .text.ble_hs_flow_deinit - 0x4203e5ac 0x2 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - 0x4203e5ac ble_hs_flow_deinit - .text.ble_l2cap_get_mtu - 0x4203e5ae 0x1e esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_append_rx - 0x4203e5cc 0x36 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_chan_alloc - 0x4203e602 0x36 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e602 ble_l2cap_chan_alloc - .text.ble_l2cap_chan_free - 0x4203e638 0x26 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e638 ble_l2cap_chan_free - .text.ble_l2cap_is_mtu_req_sent - 0x4203e65e 0x8 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e65e ble_l2cap_is_mtu_req_sent - .text.ble_l2cap_parse_hdr - 0x4203e666 0x3c esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e666 ble_l2cap_parse_hdr - .text.ble_l2cap_prepend_hdr - 0x4203e6a2 0x54 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e6a2 ble_l2cap_prepend_hdr - .text.ble_l2cap_get_conn_handle - 0x4203e6f6 0xe esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e6f6 ble_l2cap_get_conn_handle - .text.ble_l2cap_remove_rx - 0x4203e704 0x22 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e704 ble_l2cap_remove_rx - .text.ble_l2cap_rx_payload - 0x4203e726 0x72 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .text.ble_l2cap_rx - 0x4203e798 0x128 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e798 ble_l2cap_rx - .text.ble_l2cap_tx - 0x4203e8c0 0x4c esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e8c0 ble_l2cap_tx - .text.ble_l2cap_init - 0x4203e90c 0x3a esp-idf/bt/libbt.a(ble_l2cap.c.obj) - 0x4203e90c ble_l2cap_init - .text.ble_hs_misc_restore_one_irk - 0x4203e946 0x50 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .text.ble_hs_misc_conn_chan_find - 0x4203e996 0x4a esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - 0x4203e996 ble_hs_misc_conn_chan_find - .text.ble_hs_misc_conn_chan_find_reqd - 0x4203e9e0 0x2c esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - 0x4203e9e0 ble_hs_misc_conn_chan_find_reqd - .text.ble_hs_misc_own_addr_type_to_id - 0x4203ea0c 0x14 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - 0x4203ea0c ble_hs_misc_own_addr_type_to_id - .text.ble_hs_misc_peer_addr_type_to_id - 0x4203ea20 0x14 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - 0x4203ea20 ble_hs_misc_peer_addr_type_to_id - .text.ble_hs_misc_restore_irks - 0x4203ea34 0x1a esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - 0x4203ea34 ble_hs_misc_restore_irks - .text.ble_gatts_chr_clt_cfg_allowed - 0x4203ea4e 0x18 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_att_flags_from_chr_flags - 0x4203ea66 0x5a esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_properties - 0x4203eac0 0x58 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_is_sane - 0x4203eb18 0x14 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_op - 0x4203eb2c 0xe esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_find_svc_entry_idx - 0x4203eb3a 0x2e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_svc_incs_satisfied - 0x4203eb68 0x50 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_dsc_op - 0x4203ebb8 0xe esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_dsc_is_sane - 0x4203ebc6 0x14 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_cpfd_is_sane - 0x4203ebda 0xe0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_clt_cfg_find_idx - 0x4203ecba 0x28 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_clt_cfg_find - 0x4203ece2 0x26 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_svc_type_to_uuid - 0x4203ed08 0x24 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_svc_is_sane - 0x4203ed2c 0x20 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_clt_cfg_size - 0x4203ed4c 0xc esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_schedule_update - 0x4203ed58 0x3a esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_count_resources - 0x4203ed92 0x190 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_clt_cfg_access_locked - 0x4203ef22 0x142 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_subscribe_event - 0x4203f064 0x24 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_clt_cfg_access - 0x4203f088 0xa0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203f088 ble_gatts_clt_cfg_access - .text.ble_gatts_register_inc - 0x4203f128 0x24 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_clt_cfg_dsc - 0x4203f14c 0x24 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_dsc - 0x4203f170 0x78 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_svc_access - 0x4203f1e8 0x38 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_def_access - 0x4203f220 0x74 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_inc_access - 0x4203f294 0x66 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_val_access - 0x4203f2fa 0xd8 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_chr_val_access - 0x4203f3d2 0x4c esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_dsc_access - 0x4203f41e 0x48 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_cpfds - 0x4203f466 0x82 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_chr - 0x4203f4e8 0x11e esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_svc - 0x4203f606 0xcc esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_round - 0x4203f6d2 0x8c esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_cafd_access - 0x4203f75e 0x50 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_cpfd_access - 0x4203f7ae 0x64 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_free_mem - 0x4203f812 0x36 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_free_svc_defs - 0x4203f848 0x2a esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_mutable - 0x4203f872 0x2c esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_tx_notifications_one_chr - 0x4203f89e 0x82 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .text.ble_gatts_register_svcs - 0x4203f920 0x8a esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203f920 ble_gatts_register_svcs - .text.ble_gatts_connection_broken - 0x4203f9aa 0x7c esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203f9aa ble_gatts_connection_broken - .text.ble_gatts_stop - 0x4203fa26 0x2e esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fa26 ble_gatts_stop - .text.ble_gatts_start - 0x4203fa54 0x18c esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fa54 ble_gatts_start - .text.ble_gatts_conn_can_alloc - 0x4203fbe0 0x24 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fbe0 ble_gatts_conn_can_alloc - .text.ble_gatts_conn_init - 0x4203fc04 0x6c esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fc04 ble_gatts_conn_init - .text.ble_gatts_send_next_indicate - 0x4203fc70 0x6c esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fc70 ble_gatts_send_next_indicate - .text.ble_gatts_rx_indicate_ack - 0x4203fcdc 0xec esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fcdc ble_gatts_rx_indicate_ack - .text.ble_gatts_tx_notifications - 0x4203fdc8 0x36 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fdc8 ble_gatts_tx_notifications - .text.ble_gatts_bonding_established - 0x4203fdfe 0x11e esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203fdfe ble_gatts_bonding_established - .text.ble_gatts_bonding_restored - 0x4203ff1c 0x166 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x4203ff1c ble_gatts_bonding_restored - .text.ble_gatts_add_svcs - 0x42040082 0x6c esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x42040082 ble_gatts_add_svcs - .text.ble_gatts_count_cfg - 0x420400ee 0x52 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x420400ee ble_gatts_count_cfg - .text.ble_gatts_init - 0x42040140 0x14 esp-idf/bt/libbt.a(ble_gatts.c.obj) - 0x42040140 ble_gatts_init - .text.ble_hs_adv_set_hdr - 0x42040154 0x7a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_flat_mbuf - 0x420401ce 0x74 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_array_uuid16 - 0x42040242 0x7a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_array_uuid128 - 0x420402bc 0x7e esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_array16 - 0x4204033a 0x8c esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_array_uuid32 - 0x420403c6 0x86 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.adv_set_fields - 0x4204044c 0x3ea esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .text.ble_hs_adv_set_fields - 0x42040836 0x10 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - 0x42040836 ble_hs_adv_set_fields - .text.ble_hs_hci_lock - 0x42040846 0x2e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_unlock - 0x42040874 0x1e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_rx_cmd_complete - 0x42040892 0x6a esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_rx_cmd_status - 0x420408fc 0x36 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_wait_for_ack - 0x42040932 0x40 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_max_acl_payload_sz - 0x42040972 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.esp_core_err_to_name - 0x4204097c 0xbe esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.esp_hci_err_to_name - 0x42040a3a 0xce esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_rx_ack - 0x42040b08 0x4a esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_process_ack - 0x42040b52 0xa6 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_frag_alloc - 0x42040bf8 0x26 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_acl_hdr_prepend - 0x42040c1e 0x6e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .text.ble_hs_hci_set_buf_sz - 0x42040c8c 0x28 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040c8c ble_hs_hci_set_buf_sz - .text.ble_hs_hci_add_avail_pkts - 0x42040cb4 0x2e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040cb4 ble_hs_hci_add_avail_pkts - .text.ble_hs_hci_cmd_tx - 0x42040ce2 0x11a esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040ce2 ble_hs_hci_cmd_tx - .text.ble_hs_hci_rx_evt - 0x42040dfc 0x6e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040dfc ble_hs_hci_rx_evt - .text.ble_hs_hci_acl_tx_now - 0x42040e6a 0xce esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040e6a ble_hs_hci_acl_tx_now - .text.ble_hs_hci_acl_tx - 0x42040f38 0x16 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f38 ble_hs_hci_acl_tx - .text.ble_hs_hci_set_le_supported_feat - 0x42040f4e 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f4e ble_hs_hci_set_le_supported_feat - .text.ble_hs_hci_set_hci_version - 0x42040f58 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f58 ble_hs_hci_set_hci_version - .text.ble_hs_hci_get_hci_version - 0x42040f62 0xa esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f62 ble_hs_hci_get_hci_version - .text.ble_hs_hci_set_hci_supported_cmd - 0x42040f6c 0x20 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f6c ble_hs_hci_set_hci_supported_cmd - .text.ble_hs_hci_get_hci_supported_cmd - 0x42040f8c 0x26 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040f8c ble_hs_hci_get_hci_supported_cmd - .text.ble_hs_hci_init - 0x42040fb2 0x5e esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42040fb2 ble_hs_hci_init - .text.ble_hs_hci_deinit - 0x42041010 0x32 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - 0x42041010 ble_hs_hci_deinit - .text.ble_hs_hci_util_handle_pb_bc_join - 0x42041042 0x14 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x42041042 ble_hs_hci_util_handle_pb_bc_join - .text.ble_hs_hci_util_read_adv_tx_pwr - 0x42041056 0x6c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x42041056 ble_hs_hci_util_read_adv_tx_pwr - .text.ble_hs_hci_util_rand - 0x420410c2 0x54 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x420410c2 ble_hs_hci_util_rand - .text.ble_hs_hci_util_set_random_addr - 0x42041116 0x4a esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x42041116 ble_hs_hci_util_set_random_addr - .text.ble_hs_hci_util_set_data_len - 0x42041160 0x64 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x42041160 ble_hs_hci_util_set_data_len - .text.ble_hs_hci_util_data_hdr_strip - 0x420411c4 0x4c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - 0x420411c4 ble_hs_hci_util_data_hdr_strip - .text.ble_store_config_compare_bond_count - 0x42041210 0xc esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041210 ble_store_config_compare_bond_count - .text.ble_addr_cmp - 0x4204121c 0x2c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_find_sec - 0x42041248 0x74 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_peer_sec - 0x420412bc 0x6c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_our_sec - 0x42041328 0x6c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_find_cccd - 0x42041394 0x8e esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_cccd - 0x42041422 0x3c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_find_csfc - 0x4204145e 0x70 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_csfc - 0x420414ce 0x7c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_find_rpa_rec - 0x4204154a 0x68 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_rpa_rec - 0x420415b2 0x3e esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_find_local_irk - 0x420415f0 0x86 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read_local_irk - 0x42041676 0x42 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_print_key_sec - 0x420416b8 0x40 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_read - 0x420416f8 0x8c esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x420416f8 ble_store_config_read - .text.ble_store_config_print_value_sec - 0x42041784 0x4a esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_write_cccd - 0x420417ce 0x6a esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_write_csfc - 0x42041838 0xa8 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_write_rpa_rec - 0x420418e0 0x6a esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_write_local_irk - 0x4204194a 0x6a esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_obj - 0x420419b4 0x3c esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_sec - 0x420419f0 0x34 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_peer_sec - 0x42041a24 0x1e esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_our_sec - 0x42041a42 0x1e esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_cccd - 0x42041a60 0x30 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_csfc - 0x42041a90 0x40 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_rpa_rec - 0x42041ad0 0x30 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete_local_irk - 0x42041b00 0x30 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_delete - 0x42041b30 0x60 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041b30 ble_store_config_delete - .text.ble_restore_peer_sec_nvs - 0x42041b90 0xe2 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041b90 ble_restore_peer_sec_nvs - .text.ble_store_config_write_peer_sec - 0x42041c72 0xd2 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_write - 0x42041d44 0x5e esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041d44 ble_store_config_write - .text.ble_restore_our_sec_nvs - 0x42041da2 0xe4 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041da2 ble_restore_our_sec_nvs - .text.ble_store_config_write_our_sec - 0x42041e86 0xd2 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .text.ble_store_config_init - 0x42041f58 0x58 esp-idf/bt/libbt.a(ble_store_config.c.obj) - 0x42041f58 ble_store_config_init - .text.ble_hs_stop_cb - 0x42041fb0 0x1e esp-idf/bt/libbt.a(nimble_port.c.obj) - .text.nimble_port_stop_cb - 0x42041fce 0x1e esp-idf/bt/libbt.a(nimble_port.c.obj) - .text.esp_nimble_init - 0x42041fec 0x6e esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x42041fec esp_nimble_init - .text.esp_nimble_deinit - 0x4204205a 0x64 esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x4204205a esp_nimble_deinit - .text.nimble_port_init - 0x420420be 0x174 esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x420420be nimble_port_init - .text.nimble_port_deinit - 0x42042232 0xa6 esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x42042232 nimble_port_deinit - .text.nimble_port_stop - 0x420422d8 0x110 esp-idf/bt/libbt.a(nimble_port.c.obj) - 0x420422d8 nimble_port_stop - .text.esp_nimble_enable - 0x420423e8 0x2c esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - 0x420423e8 esp_nimble_enable - .text.esp_nimble_disable - 0x42042414 0x26 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - 0x42042414 esp_nimble_disable - .text.nimble_port_freertos_init - 0x4204243a 0xe esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - 0x4204243a nimble_port_freertos_init - .text.nimble_port_freertos_deinit - 0x42042448 0xe esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - 0x42042448 nimble_port_freertos_deinit - .text.put_le16 - 0x42042456 0xc esp-idf/bt/libbt.a(endian.c.obj) - 0x42042456 put_le16 - .text.put_le32 - 0x42042462 0x1c esp-idf/bt/libbt.a(endian.c.obj) - 0x42042462 put_le32 - .text.get_le16 - 0x4204247e 0x10 esp-idf/bt/libbt.a(endian.c.obj) - 0x4204247e get_le16 - .text.get_le32 - 0x4204248e 0x1e esp-idf/bt/libbt.a(endian.c.obj) - 0x4204248e get_le32 - .text.get_be32 - 0x420424ac 0x1e esp-idf/bt/libbt.a(endian.c.obj) - 0x420424ac get_be32 - .text.swap_in_place - 0x420424ca 0x28 esp-idf/bt/libbt.a(endian.c.obj) - 0x420424ca swap_in_place - .text.swap_buf - 0x420424f2 0x20 esp-idf/bt/libbt.a(endian.c.obj) - 0x420424f2 swap_buf - .text.os_mempool_init_internal - 0x42042512 0x6e esp-idf/bt/libbt.a(os_mempool.c.obj) - .text.os_mempool_init - 0x42042580 0x10 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x42042580 os_mempool_init - .text.os_mempool_ext_init - 0x42042590 0x20 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x42042590 os_mempool_ext_init - .text.os_mempool_clear - 0x420425b0 0x40 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x420425b0 os_mempool_clear - .text.os_mempool_ext_clear - 0x420425f0 0x1a esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x420425f0 os_mempool_ext_clear - .text.os_memblock_from - 0x4204260a 0x38 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x4204260a os_memblock_from - .text.os_memblock_get - 0x42042642 0x5e esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x42042642 os_memblock_get - .text.os_memblock_put_from_cb - 0x420426a0 0x44 esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x420426a0 os_memblock_put_from_cb - .text.os_memblock_put - 0x420426e4 0x2c esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x420426e4 os_memblock_put - .text.os_mempool_module_init - 0x42042710 0xc esp-idf/bt/libbt.a(os_mempool.c.obj) - 0x42042710 os_mempool_module_init - .text.mem_init_mbuf_pool - 0x4204271c 0x48 esp-idf/bt/libbt.a(mem.c.obj) - 0x4204271c mem_init_mbuf_pool - .text.mem_split_frag - 0x42042764 0x56 esp-idf/bt/libbt.a(mem.c.obj) - 0x42042764 mem_split_frag - .text._os_msys_find_pool - 0x420427ba 0x2a esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text._os_mbuf_copypkthdr - 0x420427e4 0x66 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .text.os_msys_register - 0x4204284a 0x42 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x4204284a os_msys_register - .text.os_msys_reset - 0x4204288c 0xc esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x4204288c os_msys_reset - .text.os_mbuf_pool_init - 0x42042898 0xc esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042898 os_mbuf_pool_init - .text.os_mbuf_get - 0x420428a4 0x44 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420428a4 os_mbuf_get - .text.os_mbuf_get_pkthdr - 0x420428e8 0x4c esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420428e8 os_mbuf_get_pkthdr - .text.os_msys_get_pkthdr - 0x42042934 0xa2 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042934 os_msys_get_pkthdr - .text.os_mbuf_free - 0x420429d6 0x1a esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420429d6 os_mbuf_free - .text.os_mbuf_free_chain - 0x420429f0 0x1c esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420429f0 os_mbuf_free_chain - .text.os_mbuf_append - 0x42042a0c 0xf0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042a0c os_mbuf_append - .text.os_mbuf_off - 0x42042afc 0x20 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042afc os_mbuf_off - .text.os_mbuf_appendfrom - 0x42042b1c 0x74 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042b1c os_mbuf_appendfrom - .text.os_mbuf_copydata - 0x42042b90 0x76 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042b90 os_mbuf_copydata - .text.os_mbuf_adj - 0x42042c06 0xd2 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042c06 os_mbuf_adj - .text.os_mbuf_cmpf - 0x42042cd8 0x9a esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042cd8 os_mbuf_cmpf - .text.os_mbuf_cmpm - 0x42042d72 0xf2 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042d72 os_mbuf_cmpm - .text.os_mbuf_prepend - 0x42042e64 0xd6 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042e64 os_mbuf_prepend - .text.os_mbuf_copyinto - 0x42042f3a 0xac esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042f3a os_mbuf_copyinto - .text.os_mbuf_concat - 0x42042fe6 0x48 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42042fe6 os_mbuf_concat - .text.os_mbuf_extend - 0x4204302e 0x7e esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x4204302e os_mbuf_extend - .text.os_mbuf_pullup - 0x420430ac 0x12c esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420430ac os_mbuf_pullup - .text.os_mbuf_prepend_pullup - 0x420431d8 0x1c esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420431d8 os_mbuf_prepend_pullup - .text.os_mbuf_trim_front - 0x420431f4 0x82 esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x420431f4 os_mbuf_trim_front - .text.os_mbuf_pack_chains - 0x42043276 0xfa esp-idf/bt/libbt.a(os_mbuf.c.obj) - 0x42043276 os_mbuf_pack_chains - .text.os_msys_init_once - 0x42043370 0x66 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .text.os_msys_buf_alloc - 0x420433d6 0x60 esp-idf/bt/libbt.a(os_msys_init.c.obj) - 0x420433d6 os_msys_buf_alloc - .text.os_msys_buf_free - 0x42043436 0x36 esp-idf/bt/libbt.a(os_msys_init.c.obj) - 0x42043436 os_msys_buf_free - .text.os_msys_init - 0x4204346c 0x62 esp-idf/bt/libbt.a(os_msys_init.c.obj) - 0x4204346c os_msys_init - .text.npl_freertos_event_run - 0x420434ce 0x12 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420434ce npl_freertos_event_run - .text.npl_freertos_event_is_queued - 0x420434e0 0xe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420434e0 npl_freertos_event_is_queued - .text.npl_freertos_event_get_arg - 0x420434ee 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420434ee npl_freertos_event_get_arg - .text.npl_freertos_event_set_arg - 0x420434f6 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420434f6 npl_freertos_event_set_arg - .text.esp_err_to_npl_error - 0x420434fe 0x20 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .text.npl_freertos_callout_get_ticks - 0x4204351e 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204351e npl_freertos_callout_get_ticks - .text.npl_freertos_callout_set_arg - 0x42043522 0x8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043522 npl_freertos_callout_set_arg - .text.npl_freertos_time_ms_to_ticks - 0x4204352a 0x6 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204352a npl_freertos_time_ms_to_ticks - .text.npl_freertos_time_ticks_to_ms - 0x42043530 0x6 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043530 npl_freertos_time_ticks_to_ms - .text.npl_freertos_time_ms_to_ticks32 - 0x42043536 0x2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043536 npl_freertos_time_ms_to_ticks32 - .text.npl_freertos_time_ticks_to_ms32 - 0x42043538 0x2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043538 npl_freertos_time_ticks_to_ms32 - .text.npl_freertos_hw_is_in_critical - 0x4204353a 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204353a npl_freertos_hw_is_in_critical - .text.npl_freertos_get_time_forever - 0x42043544 0x4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043544 npl_freertos_get_time_forever - .text.npl_freertos_os_started - 0x42043548 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043548 npl_freertos_os_started - .text.npl_freertos_get_current_task_id - 0x42043560 0x12 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043560 npl_freertos_get_current_task_id - .text.npl_freertos_event_reset - 0x42043572 0x6a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043572 npl_freertos_event_reset - .text.npl_freertos_callout_mem_reset - 0x420435dc 0xcc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420435dc npl_freertos_callout_mem_reset - .text.ble_npl_event_fn_wrapper - 0x420436a8 0x84 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .text.npl_freertos_event_init - 0x4204372c 0xca esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204372c npl_freertos_event_init - .text.npl_freertos_event_deinit - 0x420437f6 0x78 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420437f6 npl_freertos_event_deinit - .text.npl_freertos_eventq_init - 0x4204386e 0x102 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204386e npl_freertos_eventq_init - .text.npl_freertos_eventq_deinit - 0x42043970 0x88 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043970 npl_freertos_eventq_deinit - .text.npl_freertos_mutex_deinit - 0x420439f8 0x90 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420439f8 npl_freertos_mutex_deinit - .text.npl_freertos_sem_deinit - 0x42043a88 0x90 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043a88 npl_freertos_sem_deinit - .text.npl_freertos_eventq_get - 0x42043b18 0x114 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043b18 npl_freertos_eventq_get - .text.npl_freertos_eventq_put - 0x42043c2c 0xba esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043c2c npl_freertos_eventq_put - .text.npl_freertos_hw_enter_critical - 0x42043ce6 0x22 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043ce6 npl_freertos_hw_enter_critical - .text.npl_freertos_sem_get_count - 0x42043d08 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043d08 npl_freertos_sem_get_count - .text.npl_freertos_eventq_remove - 0x42043d22 0x254 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043d22 npl_freertos_eventq_remove - .text.npl_freertos_hw_exit_critical - 0x42043f76 0x20 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043f76 npl_freertos_hw_exit_critical - .text.npl_freertos_mutex_init - 0x42043f96 0xb2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42043f96 npl_freertos_mutex_init - .text.npl_freertos_eventq_is_empty - 0x42044048 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044048 npl_freertos_eventq_is_empty - .text.npl_freertos_mutex_pend - 0x42044062 0xe6 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044062 npl_freertos_mutex_pend - .text.npl_freertos_mutex_release - 0x42044148 0xe2 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044148 npl_freertos_mutex_release - .text.npl_freertos_sem_init - 0x4204422a 0xbe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x4204422a npl_freertos_sem_init - .text.npl_freertos_sem_pend - 0x420442e8 0x114 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420442e8 npl_freertos_sem_pend - .text.npl_freertos_sem_release - 0x420443fc 0x106 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420443fc npl_freertos_sem_release - .text.npl_freertos_callout_init - 0x42044502 0x1aa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044502 npl_freertos_callout_init - .text.npl_freertos_callout_stop - 0x420446ac 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420446ac npl_freertos_callout_stop - .text.npl_freertos_callout_deinit - 0x420446c4 0xde esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420446c4 npl_freertos_callout_deinit - .text.npl_freertos_callout_reset - 0x420447a2 0x38 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420447a2 npl_freertos_callout_reset - .text.npl_freertos_callout_is_active - 0x420447da 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420447da npl_freertos_callout_is_active - .text.npl_freertos_callout_remaining_ticks - 0x420447f0 0x52 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420447f0 npl_freertos_callout_remaining_ticks - .text.npl_freertos_time_get - 0x42044842 0x20 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044842 npl_freertos_time_get - .text.npl_freertos_time_delay - 0x42044862 0x20 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044862 npl_freertos_time_delay - .text.npl_freertos_funcs_init - 0x42044882 0x64 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x42044882 npl_freertos_funcs_init - .text.npl_freertos_mempool_init - 0x420448e6 0x110 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420448e6 npl_freertos_mempool_init - .text.npl_freertos_funcs_deinit - 0x420449f6 0x24 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x420449f6 npl_freertos_funcs_deinit - .text.dummy_controller_rcv_pkt_ready - 0x42044a1a 0x2 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.dummy_host_rcv_pkt - 0x42044a1c 0x4 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.controller_rcv_pkt_ready - 0x42044a20 0x22 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.ble_hci_rx_acl - 0x42044a42 0xaa esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.esp_vhci_host_send_packet_wrapper - 0x42044aec 0xe esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044aec esp_vhci_host_send_packet_wrapper - .text.ble_hci_trans_hs_cmd_tx - 0x42044afa 0x7c esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044afa ble_hci_trans_hs_cmd_tx - .text.ble_hci_trans_ll_evt_tx - 0x42044b76 0xe esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044b76 ble_hci_trans_ll_evt_tx - .text.host_rcv_pkt - 0x42044b84 0x196 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .text.ble_hci_trans_hs_acl_tx - 0x42044d1a 0x84 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044d1a ble_hci_trans_hs_acl_tx - .text.esp_nimble_hci_init - 0x42044d9e 0x58 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044d9e esp_nimble_hci_init - .text.esp_nimble_hci_deinit - 0x42044df6 0x5a esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - 0x42044df6 esp_nimble_hci_deinit - .text.ble_transport_to_ll_cmd_impl - 0x42044e50 0xe esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - 0x42044e50 ble_transport_to_ll_cmd_impl - .text.ble_transport_to_ll_acl_impl - 0x42044e5e 0xe esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - 0x42044e5e ble_transport_to_ll_acl_impl - .text.ble_transport_ll_init - 0x42044e6c 0x2 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - 0x42044e6c ble_transport_ll_init - .text.ble_transport_ll_deinit - 0x42044e6e 0x2 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - 0x42044e6e ble_transport_ll_deinit - .text.try_alloc_evt - 0x42044e70 0xe esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_acl_put - 0x42044e7e 0xe esp-idf/bt/libbt.a(transport.c.obj) - .text.ble_transport_alloc_cmd - 0x42044e8c 0x16 esp-idf/bt/libbt.a(transport.c.obj) - 0x42044e8c ble_transport_alloc_cmd - .text.ble_transport_alloc_evt - 0x42044ea2 0x34 esp-idf/bt/libbt.a(transport.c.obj) - 0x42044ea2 ble_transport_alloc_evt - .text.ble_transport_alloc_acl_from_ll - 0x42044ed6 0x20 esp-idf/bt/libbt.a(transport.c.obj) - 0x42044ed6 ble_transport_alloc_acl_from_ll - .text.ble_transport_free - 0x42044ef6 0x92 esp-idf/bt/libbt.a(transport.c.obj) - 0x42044ef6 ble_transport_free - .text.ble_buf_free - 0x42044f88 0x62 esp-idf/bt/libbt.a(transport.c.obj) - 0x42044f88 ble_buf_free - .text.ble_buf_alloc - 0x42044fea 0xae esp-idf/bt/libbt.a(transport.c.obj) - 0x42044fea ble_buf_alloc - .text.ble_transport_init - 0x42045098 0x17c esp-idf/bt/libbt.a(transport.c.obj) - 0x42045098 ble_transport_init - .text.ble_transport_deinit - 0x42045214 0xd2 esp-idf/bt/libbt.a(transport.c.obj) - 0x42045214 ble_transport_deinit - .text.ble_addr_cmp - 0x420452e6 0x2c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .text.ble_hs_conn_can_alloc - 0x42045312 0x3a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045312 ble_hs_conn_can_alloc - .text.ble_hs_conn_chan_find_by_scid - 0x4204534c 0x1a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x4204534c ble_hs_conn_chan_find_by_scid - .text.ble_hs_conn_chan_insert - 0x42045366 0x3a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045366 ble_hs_conn_chan_insert - .text.ble_hs_conn_delete_chan - 0x420453a0 0x32 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x420453a0 ble_hs_conn_delete_chan - .text.ble_hs_conn_foreach - 0x420453d2 0x30 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x420453d2 ble_hs_conn_foreach - .text.ble_hs_conn_free - 0x42045402 0x4e esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045402 ble_hs_conn_free - .text.ble_hs_conn_alloc - 0x42045450 0x96 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045450 ble_hs_conn_alloc - .text.ble_hs_conn_remove - 0x420454e6 0x26 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x420454e6 ble_hs_conn_remove - .text.ble_hs_conn_find - 0x4204550c 0x1a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x4204550c ble_hs_conn_find - .text.ble_hs_conn_insert - 0x42045526 0x26 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045526 ble_hs_conn_insert - .text.ble_hs_conn_find_assert - 0x4204554c 0xe esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x4204554c ble_hs_conn_find_assert - .text.ble_hs_conn_find_by_idx - 0x4204555a 0x1a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x4204555a ble_hs_conn_find_by_idx - .text.ble_hs_conn_exists - 0x42045574 0x12 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045574 ble_hs_conn_exists - .text.ble_hs_conn_first - 0x42045586 0xa esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045586 ble_hs_conn_first - .text.ble_hs_conn_addrs - 0x42045590 0x21c esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045590 ble_hs_conn_addrs - .text.ble_hs_conn_find_by_addr - 0x420457ac 0x7a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x420457ac ble_hs_conn_find_by_addr - .text.ble_hs_conn_timer - 0x42045826 0xb4 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x42045826 ble_hs_conn_timer - .text.ble_hs_conn_init - 0x420458da 0x3a esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - 0x420458da ble_hs_conn_init - .text.ble_sm_dispatch_get - 0x42045914 0x1a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_proc_remove - 0x4204592e 0x34 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_proc_matches - 0x42045962 0x3c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_insert - 0x4204599e 0x22 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_rx_noop - 0x420459c0 0x1a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_build_authreq - 0x420459da 0x2e esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_key_dist - 0x42045a08 0x2e esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_state_after_pair - 0x42045a36 0x10 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_base_fill - 0x42045a46 0x38 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_req_fill - 0x42045a7e 0x34 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_rsp_fill - 0x42045ab2 0x40 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_verify_auth_requirements - 0x42045af2 0x4 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_gen_ediv - 0x42045af6 0x10 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_gen_master_id_rand - 0x42045b06 0x12 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_gen_csrk - 0x42045b18 0x12 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_io_action - 0x42045b2a 0x1c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_cfg - 0x42045b46 0xd4 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_gen_ltk - 0x42045c1a 0x40 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_extract_expired - 0x42045c5a 0xa2 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_update_sec_state - 0x42045cfc 0x6c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_key_exch_success - 0x42045d68 0x60 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_key_rxed - 0x42045dc8 0x2a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_exec - 0x42045df2 0x54 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_sec_req_exec - 0x42045e46 0x4a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_fill_store_value - 0x42045e90 0x134 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_key_exch_exec - 0x42045fc4 0x436 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_start_encrypt_tx - 0x420463fa 0x54 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_enc_restore_exec - 0x4204644e 0x18 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_enc_start_exec - 0x42046466 0x52 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_ltk_req_reply_tx - 0x420464b8 0x40 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_ltk_start_exec - 0x420464f8 0x3a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_ltk_req_neg_reply_tx - 0x42046532 0x32 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_ltk_restore_exec - 0x42046564 0x70 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_random_exec - 0x420465d4 0x1c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_confirm_exec - 0x420465f0 0x1c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_proc_set_timer - 0x4204660c 0x40 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_fail_tx - 0x4204664c 0x5e esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_persist_keys - 0x420466aa 0x21a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_proc_free - 0x420468c4 0x1a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_proc_alloc - 0x420468de 0x2e esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_retrieve_ltk - 0x4204690c 0x7e esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_read_bond - 0x4204698a 0x60 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_fail_rx - 0x420469ea 0x46 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_chk_repeat_pairing - 0x42046a30 0xae esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_num_procs - 0x42046ade 0x14 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42046ade ble_sm_num_procs - .text.ble_sm_chk_store_overflow_by_type - 0x42046af2 0x4c esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_chk_store_overflow - 0x42046b3e 0x24 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_gen_pair_rand - 0x42046b62 0x10 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42046b62 ble_sm_gen_pair_rand - .text.ble_sm_ia_ra - 0x42046b72 0x120 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42046b72 ble_sm_ia_ra - .text.ble_sm_proc_find - 0x42046c92 0x54 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42046c92 ble_sm_proc_find - .text.ble_sm_sign_info_rx - 0x42046ce6 0xa8 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_id_addr_info_rx - 0x42046d8e 0xc2 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_id_info_rx - 0x42046e50 0xa4 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_master_id_rx - 0x42046ef4 0xda esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_enc_info_rx - 0x42046fce 0xac esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_req_rx - 0x4204707a 0x1ec esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_ioact_state - 0x42047266 0x34 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047266 ble_sm_ioact_state - .text.ble_sm_proc_can_advance - 0x4204729a 0x3e esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x4204729a ble_sm_proc_can_advance - .text.ble_sm_confirm_rx - 0x420472d8 0xd8 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_pair_rsp_rx - 0x420473b0 0x170 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_our_pair_rand - 0x42047520 0x14 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047520 ble_sm_our_pair_rand - .text.ble_sm_pair_exec - 0x42047534 0x116 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_peer_pair_rand - 0x4204764a 0x14 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x4204764a ble_sm_peer_pair_rand - .text.ble_sm_random_rx - 0x4204765e 0x9a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_incr_peer_sign_counter - 0x420476f8 0x9e esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x420476f8 ble_sm_incr_peer_sign_counter - .text.ble_sm_timer - 0x42047796 0x44 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047796 ble_sm_timer - .text.ble_sm_slave_initiate - 0x420477da 0x72 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x420477da ble_sm_slave_initiate - .text.ble_sm_process_result - 0x4204784c 0x180 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x4204784c ble_sm_process_result - .text.ble_sm_enc_event_rx - 0x420479cc 0x132 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_enc_change_rx - 0x42047afe 0x26 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047afe ble_sm_enc_change_rx - .text.ble_sm_enc_key_refresh_rx - 0x42047b24 0x22 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047b24 ble_sm_enc_key_refresh_rx - .text.ble_sm_ltk_req_rx - 0x42047b46 0x150 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047b46 ble_sm_ltk_req_rx - .text.ble_sm_pair_initiate - 0x42047c96 0x90 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047c96 ble_sm_pair_initiate - .text.ble_sm_rx - 0x42047d26 0x84 esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_enc_initiate - 0x42047daa 0xca esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047daa ble_sm_enc_initiate - .text.ble_sm_sec_req_rx - 0x42047e74 0x11a esp-idf/bt/libbt.a(ble_sm.c.obj) - .text.ble_sm_connection_broken - 0x42047f8e 0x38 esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047f8e ble_sm_connection_broken - .text.ble_sm_init - 0x42047fc6 0x4a esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42047fc6 ble_sm_init - .text.ble_sm_create_chan - 0x42048010 0x2c esp-idf/bt/libbt.a(ble_sm.c.obj) - 0x42048010 ble_sm_create_chan - .text.ble_l2cap_sig_tx - 0x4204803c 0x44 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - 0x4204803c ble_l2cap_sig_tx - .text.ble_l2cap_sig_hdr_parse - 0x42048080 0x22 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - 0x42048080 ble_l2cap_sig_hdr_parse - .text.ble_l2cap_sig_cmd_get - 0x420480a2 0x68 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - 0x420480a2 ble_l2cap_sig_cmd_get - .text.ble_l2cap_sig_reject_tx - 0x4204810a 0x58 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - 0x4204810a ble_l2cap_sig_reject_tx - .text.ble_l2cap_sig_reject_invalid_cid_tx - 0x42048162 0x1c esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - 0x42048162 ble_l2cap_sig_reject_invalid_cid_tx - .text.ble_hs_hci_cmd_transport - 0x4204817e 0x1c esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .text.ble_hs_hci_cmd_send - 0x4204819a 0x5e esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .text.ble_hs_hci_cmd_send_buf - 0x420481f8 0x4e esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - 0x420481f8 ble_hs_hci_cmd_send_buf - .text.ble_att_svr_next_id - 0x42048246 0x14 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_find_prev - 0x4204825a 0x22 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_validate - 0x4204827c 0x6c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_entry_alloc - 0x420482e8 0x2c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_get_sec_state - 0x42048314 0x28 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_check_perms - 0x4204833c 0x1c8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_read - 0x42048504 0x6a esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_write - 0x4204856e 0x6e esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_pullup_req_base - 0x420485dc 0x26 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_mtu_rsp - 0x42048602 0x8e esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_pkt - 0x42048690 0x38 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_write_rsp - 0x420486c8 0x40 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_indicate_rsp - 0x42048708 0x40 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_fill_info - 0x42048748 0xc8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_find_info_rsp - 0x42048810 0x84 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_read_group_type_entry_write - 0x42048894 0x68 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_is_valid_find_group_type - 0x420488fc 0x34 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_is_valid_group_end - 0x42048930 0x72 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_is_valid_read_group_type - 0x420489a2 0x1e esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_read_flat - 0x420489c0 0x80 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_fill_type_value_entry - 0x42048a40 0x72 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_fill_type_value - 0x42048ab2 0x10a esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_find_type_value_rsp - 0x42048bbc 0x7c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_service_uuid - 0x42048c38 0x36 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_read_group_type_rsp - 0x42048c6e 0x1a2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_free_start_mem - 0x42048e10 0x22 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_free - 0x42048e32 0x26 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_alloc - 0x42048e58 0x7c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_insert_prep_entry - 0x42048ed4 0xac esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_extract - 0x42048f80 0x68 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_register - 0x42048fe8 0x7c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42048fe8 ble_att_svr_register - .text.ble_att_svr_prev_handle - 0x42049064 0xa esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049064 ble_att_svr_prev_handle - .text.ble_att_svr_find_by_handle - 0x4204906e 0x1a esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204906e ble_att_svr_find_by_handle - .text.ble_att_svr_write_handle - 0x42049088 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_prep_write - 0x420490cc 0x76 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_find_by_uuid - 0x42049142 0x46 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049142 ble_att_svr_find_by_uuid - .text.ble_att_svr_build_read_type_rsp - 0x42049188 0x170 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_ticks_until_tmo - 0x420492f8 0x1a esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x420492f8 ble_att_svr_ticks_until_tmo - .text.ble_att_svr_read_handle - 0x42049312 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049312 ble_att_svr_read_handle - .text.ble_att_svr_build_read_mult_rsp - 0x42049356 0xc2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_build_read_mult_rsp_var - 0x42049418 0x120 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_tx_error_rsp - 0x42049538 0x58 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049538 ble_att_svr_tx_error_rsp - .text.ble_att_svr_tx_rsp - 0x42049590 0x82 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .text.ble_att_svr_rx_mtu - 0x42049612 0xb8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049612 ble_att_svr_rx_mtu - .text.ble_att_svr_rx_find_info - 0x420496ca 0x90 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x420496ca ble_att_svr_rx_find_info - .text.ble_att_svr_rx_find_type_value - 0x4204975a 0xaa esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204975a ble_att_svr_rx_find_type_value - .text.ble_att_svr_rx_read_type - 0x42049804 0xd8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049804 ble_att_svr_rx_read_type - .text.ble_att_svr_rx_read - 0x420498dc 0x9c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x420498dc ble_att_svr_rx_read - .text.ble_att_svr_rx_read_blob - 0x42049978 0xae esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049978 ble_att_svr_rx_read_blob - .text.ble_att_svr_rx_read_mult - 0x42049a26 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049a26 ble_att_svr_rx_read_mult - .text.ble_att_svr_rx_read_mult_var - 0x42049a6a 0x46 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049a6a ble_att_svr_rx_read_mult_var - .text.ble_att_svr_rx_read_group_type - 0x42049ab0 0xee esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049ab0 ble_att_svr_rx_read_group_type - .text.ble_att_svr_rx_write - 0x42049b9e 0x88 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049b9e ble_att_svr_rx_write - .text.ble_att_svr_rx_write_no_rsp - 0x42049c26 0x52 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049c26 ble_att_svr_rx_write_no_rsp - .text.ble_att_svr_rx_signed_write - 0x42049c78 0x1d8 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049c78 ble_att_svr_rx_signed_write - .text.ble_att_svr_prep_clear - 0x42049e50 0x1e esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049e50 ble_att_svr_prep_clear - .text.ble_att_svr_rx_prep_write - 0x42049e6e 0xe2 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049e6e ble_att_svr_rx_prep_write - .text.ble_att_svr_rx_exec_write - 0x42049f50 0xc0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x42049f50 ble_att_svr_rx_exec_write - .text.ble_att_svr_rx_notify - 0x4204a010 0x6c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a010 ble_att_svr_rx_notify - .text.ble_att_svr_rx_notify_multi - 0x4204a07c 0x140 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a07c ble_att_svr_rx_notify_multi - .text.ble_att_svr_rx_indicate - 0x4204a1bc 0x9c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a1bc ble_att_svr_rx_indicate - .text.ble_att_svr_start - 0x4204a258 0x6c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a258 ble_att_svr_start - .text.ble_att_svr_stop - 0x4204a2c4 0xe esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a2c4 ble_att_svr_stop - .text.ble_att_svr_init - 0x4204a2d2 0x56 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - 0x4204a2d2 ble_att_svr_init - .text.ble_hs_atomic_conn_delete - 0x4204a328 0x36 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - 0x4204a328 ble_hs_atomic_conn_delete - .text.ble_hs_atomic_conn_flags - 0x4204a35e 0x3c esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - 0x4204a35e ble_hs_atomic_conn_flags - .text.ble_hs_atomic_first_conn_handle - 0x4204a39a 0x28 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - 0x4204a39a ble_hs_atomic_first_conn_handle - .text.ble_sm_alg_xor_128 - 0x4204a3c2 0x2a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .text.ble_sm_alg_log_buf - 0x4204a3ec 0x12 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .text.mbedtls_gen_keypair - 0x4204a3fe 0x12e esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .text.ble_sm_alg_encrypt - 0x4204a52c 0x9a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a52c ble_sm_alg_encrypt - .text.ble_sm_alg_s1 - 0x4204a5c6 0xd6 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a5c6 ble_sm_alg_s1 - .text.ble_sm_alg_c1 - 0x4204a69c 0x19c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a69c ble_sm_alg_c1 - .text.ble_sm_alg_aes_cmac - 0x4204a838 0x8a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a838 ble_sm_alg_aes_cmac - .text.ble_sm_alg_f4 - 0x4204a8c2 0x9c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a8c2 ble_sm_alg_f4 - .text.ble_sm_alg_f5 - 0x4204a95e 0x190 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204a95e ble_sm_alg_f5 - .text.ble_sm_alg_f6 - 0x4204aaee 0x1c8 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204aaee ble_sm_alg_f6 - .text.ble_sm_alg_g2 - 0x4204acb6 0xf0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204acb6 ble_sm_alg_g2 - .text.ble_sm_alg_gen_dhkey - 0x4204ada6 0x1f6 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204ada6 ble_sm_alg_gen_dhkey - .text.ble_sm_alg_gen_key_pair - 0x4204af9c 0x6a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204af9c ble_sm_alg_gen_key_pair - .text.ble_sm_alg_ecc_init - 0x4204b006 0x2 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - 0x4204b006 ble_sm_alg_ecc_init - .text.ble_hs_stop_register_listener - 0x4204b008 0x14 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop_terminate_conn - 0x4204b01c 0x54 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop_begin - 0x4204b070 0x6c esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop_done - 0x4204b0dc 0x5e esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop_gap_event - 0x4204b13a 0x38 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop_terminate_timeout_cb - 0x4204b172 0x40 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .text.ble_hs_stop - 0x4204b1b2 0xac esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - 0x4204b1b2 ble_hs_stop - .text.ble_hs_stop_init - 0x4204b25e 0x32 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - 0x4204b25e ble_hs_stop_init - .text.ble_hs_stop_deinit - 0x4204b290 0x1e esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - 0x4204b290 ble_hs_stop_deinit - .text.ble_sm_gen_stk - 0x4204b2ae 0x58 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .text.ble_sm_lgcy_io_action - 0x4204b306 0xde esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - 0x4204b306 ble_sm_lgcy_io_action - .text.ble_sm_lgcy_confirm_exec - 0x4204b3e4 0xb6 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - 0x4204b3e4 ble_sm_lgcy_confirm_exec - .text.ble_sm_lgcy_random_exec - 0x4204b49a 0x80 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - 0x4204b49a ble_sm_lgcy_random_exec - .text.ble_sm_lgcy_random_rx - 0x4204b51a 0xe4 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - 0x4204b51a ble_sm_lgcy_random_rx - .text.ble_sm_cmd_get - 0x4204b5fe 0x54 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - 0x4204b5fe ble_sm_cmd_get - .text.ble_sm_tx - 0x4204b652 0x38 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - 0x4204b652 ble_sm_tx - .text.ble_sm_sc_initiator_txes_confirm - 0x4204b68a 0x18 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_responder_verifies_random - 0x4204b6a2 0x18 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_gen_ri - 0x4204b6ba 0x5e esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_random_advance - 0x4204b718 0x36 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_gen_numcmp - 0x4204b74e 0x5a esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_gen_pub_priv - 0x4204b7a8 0xe esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_ensure_keys_generated - 0x4204b7b6 0x56 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_dhkey_addrs - 0x4204b80c 0x94 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_io_action - 0x4204b8a0 0xfc esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204b8a0 ble_sm_sc_io_action - .text.ble_sm_dhkey_check_process - 0x4204b99c 0x178 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .text.ble_sm_sc_confirm_exec - 0x4204bb14 0xd2 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204bb14 ble_sm_sc_confirm_exec - .text.ble_sm_sc_random_exec - 0x4204bbe6 0xca esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204bbe6 ble_sm_sc_random_exec - .text.ble_sm_sc_random_rx - 0x4204bcb0 0x20c esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204bcb0 ble_sm_sc_random_rx - .text.ble_sm_sc_public_key_exec - 0x4204bebc 0x10e esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204bebc ble_sm_sc_public_key_exec - .text.ble_sm_sc_public_key_rx - 0x4204bfca 0x16c esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204bfca ble_sm_sc_public_key_rx - .text.ble_sm_sc_dhkey_check_exec - 0x4204c136 0xfa esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204c136 ble_sm_sc_dhkey_check_exec - .text.ble_sm_sc_dhkey_check_rx - 0x4204c230 0x70 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204c230 ble_sm_sc_dhkey_check_rx - .text.ble_sm_sc_init - 0x4204c2a0 0x16 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - 0x4204c2a0 ble_sm_sc_init - .text.btdm_funcs_table_destroy - 0x4204c2b6 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_controller_deinit_internal - 0x4204c312 0x182 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .text.btdm_lpclk_select_src - 0x4204c494 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c494 btdm_lpclk_select_src - .text.btdm_lpclk_set_div - 0x4204c4c8 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c4c8 btdm_lpclk_set_div - .text.btdm_wakeup_request - 0x4204c4f2 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c4f2 btdm_wakeup_request - .text.btdm_set_cca_sw_intr - 0x4204c55c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c55c btdm_set_cca_sw_intr - .text.r_btdm_config_cca_sw - 0x4204c57c 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c57c r_btdm_config_cca_sw - .text.btdm_power_state_active - 0x4204c5da 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c5da btdm_power_state_active - .text.btdm_controller_get_mode - 0x4204c5e2 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c5e2 btdm_controller_get_mode - .text.btdm_controller_get_compile_version - 0x4204c5fc 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c5fc btdm_controller_get_compile_version - .text.btdm_controller_enable_sleep - 0x4204c606 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c606 btdm_controller_enable_sleep - .text.btdm_controller_get_sleep_mode - 0x4204c644 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c644 btdm_controller_get_sleep_mode - .text.btdm_in_wakeup_requesting_set - 0x4204c65e 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c65e btdm_in_wakeup_requesting_set - .text.rw_schedule - 0x4204c69e 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c69e rw_schedule - .text.rw_em_show - 0x4204c754 0x2c8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204c754 rw_em_show - .text.btdm_rom_ref_init - 0x4204ca1c 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204ca1c btdm_rom_ref_init - .text.rw_pre_main - 0x4204cac6 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204cac6 rw_pre_main - .text.btdm_controller_on_reset - 0x4204cbba 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204cbba btdm_controller_on_reset - .text.rw_stop 0x4204cbfa 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204cbfa rw_stop - .text.btdm_controller_enable - 0x4204cc4a 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204cc4a btdm_controller_enable - .text.btdm_controller_disable - 0x4204cc9c 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204cc9c btdm_controller_disable - .text.btdm_controller_init - 0x4204ccd0 0x6b6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204ccd0 btdm_controller_init - .text.btdm_controller_deinit - 0x4204d386 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - 0x4204d386 btdm_controller_deinit - .text.r_ble_util_buf_init - 0x4204d3d6 0x190 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - 0x4204d3d6 r_ble_util_buf_init - .text.ble_util_buf_reset - 0x4204d566 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - 0x4204d566 ble_util_buf_reset - .text.r_rf_rw_v9_le_init - 0x4204d5dc 0x200 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - 0x4204d5dc r_rf_rw_v9_le_init - .text.rw_rf_le_exit_test_mode - 0x4204d7dc 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - 0x4204d7dc rw_rf_le_exit_test_mode - .text.rw_rf_le_enter_test_mode - 0x4204d87e 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - 0x4204d87e rw_rf_le_enter_test_mode - .text.coex_schm_wakeup_flag_get - 0x4204d920 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x4204d920 coex_schm_wakeup_flag_get - .text.coex_schm_process_in_active - 0x4204d92a 0xe2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x4204d92a coex_schm_process_in_active - .text.coex_schm_process - 0x4204da0c 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - 0x4204da0c coex_schm_process - .text.r_emi_em_base_deinit - 0x4204da46 0x12a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - 0x4204da46 r_emi_em_base_deinit - .text.r_emi_em_base_init - 0x4204db70 0x604 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - 0x4204db70 r_emi_em_base_init - .text.r_emi_init - 0x4204e174 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - 0x4204e174 r_emi_init - .text.r_emi_deinit - 0x4204e198 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - 0x4204e198 r_emi_deinit - .text.emi_reset_em_mapping_by_offset - 0x4204e1bc 0x1a8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - 0x4204e1bc emi_reset_em_mapping_by_offset - .text.btdm_hli_funcs_register - 0x4204e364 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - 0x4204e364 btdm_hli_funcs_register - .text.btdm_hli_get_funcs - 0x4204e3fa 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - 0x4204e3fa btdm_hli_get_funcs - .text.btdm_hli_get_null_funcs - 0x4204e404 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - 0x4204e404 btdm_hli_get_null_funcs - .text.r_intc_init - 0x4204e40e 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x4204e40e r_intc_init - .text.r_intc_deinit - 0x4204e4f6 0x46 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x4204e4f6 r_intc_deinit - .text.r_intc_enable - 0x4204e53c 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x4204e53c r_intc_enable - .text.r_intc_disable - 0x4204e594 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - 0x4204e594 r_intc_disable - .text.r_llc_loc_ch_map_proc_continue - 0x4204e5ec 0x1ba /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - 0x4204e5ec r_llc_loc_ch_map_proc_continue - .text.ll_channel_map_ind_handler_hack - 0x4204e7a6 0x14e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - 0x4204e7a6 ll_channel_map_ind_handler_hack - .text.hci_le_con_upd_cmd_pre_handler - 0x4204e8f4 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204e8f4 hci_le_con_upd_cmd_pre_handler - .text.ll_connection_param_rsp_param_handler_pre - 0x4204e968 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204e968 ll_connection_param_rsp_param_handler_pre - .text.ll_connection_param_req_handler_pre - 0x4204e9b8 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204e9b8 ll_connection_param_req_handler_pre - .text.lld_con_estab_ind_handler_hack - 0x4204ea18 0x112 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204ea18 lld_con_estab_ind_handler_hack - .text.r_llc_pref_param_compute_eco - 0x4204eb2a 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204eb2a r_llc_pref_param_compute_eco - .text.r_llc_loc_con_upd_proc_continue - 0x4204eba6 0x394 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204eba6 r_llc_loc_con_upd_proc_continue - .text.r_llc_rem_con_upd_proc_continue - 0x4204ef3a 0x2f4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204ef3a r_llc_rem_con_upd_proc_continue - .text.r_llc_hci_con_upd_info_send_eco - 0x4204f22e 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204f22e r_llc_hci_con_upd_info_send_eco - .text.ll_connection_update_ind_handler_hack - 0x4204f2aa 0x214 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - 0x4204f2aa ll_connection_update_ind_handler_hack - .text.hci_le_set_data_len_cmd_pre_handler - 0x4204f4be 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - 0x4204f4be hci_le_set_data_len_cmd_pre_handler - .text.r_llc_rem_encrypt_proc_continue_eco - 0x4204f51e 0x94 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - 0x4204f51e r_llc_rem_encrypt_proc_continue_eco - .text.lld_acl_rx_ind_handler_hack - 0x4204f5b2 0x16c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x4204f5b2 lld_acl_rx_ind_handler_hack - .text.r_llc_hci_command_handler_pre - 0x4204f71e 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x4204f71e r_llc_hci_command_handler_pre - .text.r_llc_hci_command_handler_search - 0x4204f742 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x4204f742 r_llc_hci_command_handler_search - .text.r_llc_hci_command_handler_get - 0x4204f778 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x4204f778 r_llc_hci_command_handler_get - .text.r_llc_hci_command_handler - 0x4204f78a 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - 0x4204f78a r_llc_hci_command_handler - .text.r_llc_le_ping_restart - 0x4204f806 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - 0x4204f806 r_llc_le_ping_restart - .text.llc_llcp_conn_update_ind_ack - 0x4204f888 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f888 llc_llcp_conn_update_ind_ack - .text.llc_llcp_phy_update_ind_ack - 0x4204f8b8 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f8b8 llc_llcp_phy_update_ind_ack - .text.r_llc_llcp_pdu_handler_pre - 0x4204f8e8 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f8e8 r_llc_llcp_pdu_handler_pre - .text.r_llc_llcp_pdu_handler_end - 0x4204f904 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f904 r_llc_llcp_pdu_handler_end - .text.r_llc_llcp_pdu_handler_get_overwrite - 0x4204f906 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f906 r_llc_llcp_pdu_handler_get_overwrite - .text.r_lld_llcp_rx_ind_handler - 0x4204f95a 0x2b0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204f95a r_lld_llcp_rx_ind_handler - .text.r_llc_llcp_channel_map_ind_ack - 0x4204fc0a 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204fc0a r_llc_llcp_channel_map_ind_ack - .text.r_llc_llcp_send_eco - 0x4204fc3a 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - 0x4204fc3a r_llc_llcp_send_eco - .text.r_llc_init - 0x4204fcc6 0xc2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - 0x4204fcc6 r_llc_init - .text.r_llc_start_eco - 0x4204fd88 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - 0x4204fd88 r_llc_start_eco - .text.r_llc_rem_phy_upd_proc_continue_eco - 0x4204fdea 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - 0x4204fdea r_llc_rem_phy_upd_proc_continue_eco - .text.r_llc_loc_phy_upd_proc_continue - 0x4204fe60 0x552 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - 0x4204fe60 r_llc_loc_phy_upd_proc_continue - .text.f_ll_phy_update_ind_handler - 0x420503b2 0x130 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - 0x420503b2 f_ll_phy_update_ind_handler - .text.ll_phy_update_ind_handler_hack - 0x420504e2 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - 0x420504e2 ll_phy_update_ind_handler_hack - .text.r_lld_adv_start_hook - 0x4205051e 0x20e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x4205051e r_lld_adv_start_hook - .text.r_lld_adv_start_update_filter_policy - 0x4205072c 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x4205072c r_lld_adv_start_update_filter_policy - .text.r_lld_adv_start_schedule_asap_hack - 0x420508fa 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x420508fa r_lld_adv_start_schedule_asap_hack - .text.r_lld_adv_start_eco - 0x42050930 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x42050930 r_lld_adv_start_eco - .text.r_lld_adv_adv_data_update_hack - 0x420509b6 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x420509b6 r_lld_adv_adv_data_update_hack - .text.r_lld_adv_scan_rsp_data_update_hack - 0x42050a18 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - 0x42050a18 r_lld_adv_scan_rsp_data_update_hack - .text.lld_con_llcp_proc_type_get - 0x42050a7a 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x42050a7a lld_con_llcp_proc_type_get - .text.r_lld_con_update_last_clock - 0x42050aa8 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x42050aa8 r_lld_con_update_last_clock - .text.r_lld_con_start_hook - 0x42050ada 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x42050ada r_lld_con_start_hook - .text.r_lld_con_stop - 0x42050b0a 0xbe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x42050b0a r_lld_con_stop - .text.r_lld_con_start_eco - 0x42050bc8 0xce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - 0x42050bc8 r_lld_con_start_eco - .text.r_lld_init_start_hook - 0x42050c96 0x114 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - 0x42050c96 r_lld_init_start_hook - .text.r_lld_init_start_hack - 0x42050daa 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - 0x42050daa r_lld_init_start_hack - .text.lld_rpa_res - 0x42050e0c 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.lld_peer_rpa_res - 0x42050e58 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .text.r_lld_core_init - 0x42050eca 0x4b2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42050eca r_lld_core_init - .text.r_lld_env_init - 0x4205137c 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x4205137c r_lld_env_init - .text.r_lld_env_deinit - 0x42051408 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051408 r_lld_env_deinit - .text.r_lld_deinit - 0x4205148e 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x4205148e r_lld_deinit - .text.lld_ral_valid_count - 0x420514bc 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x420514bc lld_ral_valid_count - .text.lld_wl_search - 0x42051542 0xbc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051542 lld_wl_search - .text.r_lld_res_list_clear - 0x420515fe 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x420515fe r_lld_res_list_clear - .text.r_lld_res_list_rem - 0x42051686 0x192 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051686 r_lld_res_list_rem - .text.lld_rpa_res_list_init - 0x42051818 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051818 lld_rpa_res_list_init - .text.r_lld_init - 0x4205182e 0x27c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x4205182e r_lld_init - .text.lld_priv_rpa_res - 0x42051aaa 0x214 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051aaa lld_priv_rpa_res - .text.lld_peer_rpa_to_id - 0x42051cbe 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051cbe lld_peer_rpa_to_id - .text.lld_wl_rpa_res - 0x42051da4 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051da4 lld_wl_rpa_res - .text.lld_wl_res_rem - 0x42051e3c 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051e3c lld_wl_res_rem - .text.lld_rpa_renew_start - 0x42051e8e 0x8c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051e8e lld_rpa_renew_start - .text.r_lld_res_list_priv_mode_update - 0x42051f1a 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - 0x42051f1a r_lld_res_list_priv_mode_update - .text.r_lld_per_adv_data_update_hack - 0x42051fa2 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - 0x42051fa2 r_lld_per_adv_data_update_hack - .text.r_lld_scan_start_hook - 0x42052004 0x138 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x42052004 r_lld_scan_start_hook - .text.coex_schm_ble_scan_stop - 0x4205213c 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x4205213c coex_schm_ble_scan_stop - .text.r_lld_scan_start_eco - 0x4205217e 0x19e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - 0x4205217e r_lld_scan_start_eco - .text.r_lld_sync_start_eco - 0x4205231c 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - 0x4205231c r_lld_sync_start_eco - .text.r_lld_test_stop - 0x420523a6 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - 0x420523a6 r_lld_test_stop - .text.hci_le_rd_adv_ch_tx_pw_cmd_handler - 0x42052498 0x7e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42052498 hci_le_rd_adv_ch_tx_pw_cmd_handler - .text.hci_le_set_adv_param_cmd_handler - 0x42052516 0x28e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42052516 hci_le_set_adv_param_cmd_handler - .text.hci_le_set_adv_data_cmd_handler - 0x420527a4 0x134 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420527a4 hci_le_set_adv_data_cmd_handler - .text.hci_le_set_scan_rsp_data_cmd_handler - 0x420528d8 0x134 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420528d8 hci_le_set_scan_rsp_data_cmd_handler - .text.hci_le_set_adv_en_cmd_handler - 0x42052a0c 0x30e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42052a0c hci_le_set_adv_en_cmd_handler - .text.f_hci_le_set_ext_adv_param_cmd_handler - 0x42052d1a 0x356 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42052d1a f_hci_le_set_ext_adv_param_cmd_handler - .text.hci_le_set_ext_adv_param_cmd_handler - 0x42053070 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42053070 hci_le_set_ext_adv_param_cmd_handler - .text.f_hci_le_set_adv_set_rand_addr_cmd_handler - 0x420530d4 0x100 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420530d4 f_hci_le_set_adv_set_rand_addr_cmd_handler - .text.hci_le_set_adv_set_rand_addr_cmd_handler - 0x420531d4 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420531d4 hci_le_set_adv_set_rand_addr_cmd_handler - .text.f_hci_le_set_ext_adv_data_cmd_handler - 0x42053222 0x3a8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42053222 f_hci_le_set_ext_adv_data_cmd_handler - .text.hci_le_set_ext_adv_data_cmd_handler - 0x420535ca 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420535ca hci_le_set_ext_adv_data_cmd_handler - .text.f_hci_le_set_ext_scan_rsp_data_cmd_handler - 0x42053618 0x332 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42053618 f_hci_le_set_ext_scan_rsp_data_cmd_handler - .text.hci_le_set_ext_scan_rsp_data_cmd_handler - 0x4205394a 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x4205394a hci_le_set_ext_scan_rsp_data_cmd_handler - .text.f_hci_le_set_ext_adv_en_cmd_handler - 0x42053998 0x6e8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42053998 f_hci_le_set_ext_adv_en_cmd_handler - .text.hci_le_set_ext_adv_en_cmd_handler - 0x42054080 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054080 hci_le_set_ext_adv_en_cmd_handler - .text.f_hci_le_set_per_adv_param_cmd_handler - 0x420540ce 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420540ce f_hci_le_set_per_adv_param_cmd_handler - .text.hci_le_set_per_adv_param_cmd_handler - 0x4205429c 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x4205429c hci_le_set_per_adv_param_cmd_handler - .text.f_hci_le_set_per_adv_data_cmd_handler - 0x420542ea 0x294 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420542ea f_hci_le_set_per_adv_data_cmd_handler - .text.hci_le_set_per_adv_data_cmd_handler - 0x4205457e 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x4205457e hci_le_set_per_adv_data_cmd_handler - .text.f_hci_le_set_per_adv_en_cmd_handler - 0x420545cc 0x2aa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420545cc f_hci_le_set_per_adv_en_cmd_handler - .text.hci_le_set_per_adv_en_cmd_handler - 0x42054876 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054876 hci_le_set_per_adv_en_cmd_handler - .text.f_hci_le_rd_max_adv_data_len_cmd_handler - 0x420548c4 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x420548c4 f_hci_le_rd_max_adv_data_len_cmd_handler - .text.hci_le_rd_max_adv_data_len_cmd_handler - 0x42054924 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054924 hci_le_rd_max_adv_data_len_cmd_handler - .text.f_hci_le_rd_nb_supp_adv_sets_cmd_handler - 0x4205498e 0xba /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x4205498e f_hci_le_rd_nb_supp_adv_sets_cmd_handler - .text.hci_le_rd_nb_supp_adv_sets_cmd_handler - 0x42054a48 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054a48 hci_le_rd_nb_supp_adv_sets_cmd_handler - .text.f_hci_le_rmv_adv_set_cmd_handler - 0x42054ab0 0xce /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054ab0 f_hci_le_rmv_adv_set_cmd_handler - .text.hci_le_rmv_adv_set_cmd_handler - 0x42054b7e 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054b7e hci_le_rmv_adv_set_cmd_handler - .text.f_hci_le_clear_adv_sets_cmd_handler - 0x42054bcc 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054bcc f_hci_le_clear_adv_sets_cmd_handler - .text.hci_le_clear_adv_sets_cmd_handler - 0x42054cc4 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054cc4 hci_le_clear_adv_sets_cmd_handler - .text.llm_ext_adv_get_own_addr - 0x42054d12 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054d12 llm_ext_adv_get_own_addr - .text.llm_clear_adv - 0x42054d4c 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054d4c llm_clear_adv - .text.adv_itf_version_is_legacy - 0x42054dd0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054dd0 adv_itf_version_is_legacy - .text.lld_adv_end_ind_handler_hack - 0x42054de8 0x85e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42054de8 lld_adv_end_ind_handler_hack - .text.r_llm_adv_set_release_hack - 0x42055646 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - 0x42055646 r_llm_adv_set_release_hack - .text.llm_is_non_con_legacy_act_ongoing_check - 0x42055680 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_rd_local_ver_info_cmd_handler - 0x42055708 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_set_evt_mask_cmd_handler - 0x42055762 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_set_evt_mask_page_2_cmd_handler - 0x42055796 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_set_ctrl_to_host_flow_ctrl_cmd_handler - 0x420557ca 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_host_buf_size_cmd_handler - 0x42055816 0x3a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_buff_size_cmd_handler - 0x42055850 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_wl_size_cmd_handler - 0x42055898 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_rslv_list_size_cmd_handler - 0x420558d6 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_rslv_priv_addr_to_cmd_handler - 0x42055914 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_addr_resol_en_cmd_handler - 0x420559aa 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_peer_rslv_addr_cmd_handler - 0x42055a00 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_loc_rslv_addr_cmd_handler - 0x42055a6c 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rand_cmd_handler - 0x42055ad8 0x92 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_tx_pwr_cmd_handler - 0x42055b6a 0x84 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_rf_path_comp_cmd_handler - 0x42055bee 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_wr_rf_path_comp_cmd_handler - 0x42055c62 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_priv_mode_cmd_handler - 0x42055d04 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_suggted_dft_data_len_cmd_handler - 0x42055d76 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_wr_suggted_dft_data_len_cmd_handler - 0x42055dca 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_max_data_len_cmd_handler - 0x42055e28 0x52 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_dft_phy_cmd_handler - 0x42055e7a 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_add_dev_to_rslv_list_cmd_handler - 0x42055f00 0x110 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_supp_states_cmd_handler - 0x42056010 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_host_ch_class_cmd_handler - 0x42056066 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_rand_addr_cmd_handler - 0x4205611a 0x62 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rd_local_supp_feats_cmd_handler - 0x4205617c 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_set_evt_mask_cmd_handler - 0x420561dc 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_rd_bd_addr_cmd_handler - 0x4205622c 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_clear_rslv_list_cmd_handler - 0x42056282 0x72 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rmv_dev_from_rslv_list_cmd_handler - 0x420562f4 0x8a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_add_dev_to_wlst_cmd_handler - 0x4205637e 0x110 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rmv_dev_from_wlst_cmd_handler - 0x4205648e 0xd8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_clear_wlst_cmd_handler - 0x42056566 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_rd_local_supp_feats_cmd_handler - 0x4205660c 0x56 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_rd_local_supp_cmds_cmd_handler - 0x42056662 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_reset_cmd_handler - 0x420566ca 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_host_nb_cmp_pkts_cmd_handler - 0x420566ee 0xaa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.hci_le_rx_test_cmd_handler.part.3 - 0x42056798 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .text.f_hci_le_enc_cmd_handler - 0x420567b4 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x420567b4 f_hci_le_enc_cmd_handler - .text.hci_le_enc_cmd_handler - 0x420567e2 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x420567e2 hci_le_enc_cmd_handler - .text.f_hci_le_rd_local_p256_public_key_cmd_handler - 0x42056818 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056818 f_hci_le_rd_local_p256_public_key_cmd_handler - .text.hci_le_rd_local_p256_public_key_cmd_handler - 0x420568be 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x420568be hci_le_rd_local_p256_public_key_cmd_handler - .text.f_hci_le_generate_dhkey_cmd_handler - 0x4205690c 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x4205690c f_hci_le_generate_dhkey_cmd_handler - .text.hci_le_generate_dhkey_cmd_handler - 0x4205696a 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x4205696a hci_le_generate_dhkey_cmd_handler - .text.f_hci_le_rx_test_cmd_handler - 0x420569b8 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x420569b8 f_hci_le_rx_test_cmd_handler - .text.hci_le_rx_test_cmd_handler - 0x42056a24 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056a24 hci_le_rx_test_cmd_handler - .text.f_hci_le_tx_test_cmd_handler - 0x42056a5c 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056a5c f_hci_le_tx_test_cmd_handler - .text.hci_le_tx_test_cmd_handler - 0x42056ae2 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056ae2 hci_le_tx_test_cmd_handler - .text.f_hci_le_enh_rx_test_cmd_handler - 0x42056b1a 0x88 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056b1a f_hci_le_enh_rx_test_cmd_handler - .text.hci_le_enh_rx_test_cmd_handler - 0x42056ba2 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056ba2 hci_le_enh_rx_test_cmd_handler - .text.f_hci_le_enh_tx_test_cmd_handler - 0x42056bda 0x9a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056bda f_hci_le_enh_tx_test_cmd_handler - .text.hci_le_enh_tx_test_cmd_handler - 0x42056c74 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056c74 hci_le_enh_tx_test_cmd_handler - .text.f_hci_le_test_end_cmd_handler - 0x42056cac 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056cac f_hci_le_test_end_cmd_handler - .text.hci_le_test_end_cmd_handler - 0x42056d06 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056d06 hci_le_test_end_cmd_handler - .text.r_llm_hci_cmd_handler_tab_p_get - 0x42056d70 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056d70 r_llm_hci_cmd_handler_tab_p_get - .text.r_llm_hci_command_handler - 0x42056d7a 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056d7a r_llm_hci_command_handler - .text.llm_hci_env_init - 0x42056da8 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056da8 llm_hci_env_init - .text.llm_hci_env_deinit - 0x42056de6 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - 0x42056de6 llm_hci_env_deinit - .text.lld_init_end_ind_pre_handler - 0x42056e10 0x86 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x42056e10 lld_init_end_ind_pre_handler - .text.f_hci_le_create_con_cmd_handler - 0x42056e96 0x424 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x42056e96 f_hci_le_create_con_cmd_handler - .text.hci_le_create_con_cmd_handler - 0x420572ba 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x420572ba hci_le_create_con_cmd_handler - .text.f_hci_le_ext_create_con_cmd_handler - 0x42057308 0x492 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x42057308 f_hci_le_ext_create_con_cmd_handler - .text.hci_le_ext_create_con_cmd_handler - 0x4205779a 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x4205779a hci_le_ext_create_con_cmd_handler - .text.f_hci_le_create_con_cancel_cmd_handler - 0x420577e8 0x140 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x420577e8 f_hci_le_create_con_cancel_cmd_handler - .text.hci_le_create_con_cancel_cmd_handler - 0x42057928 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - 0x42057928 hci_le_create_con_cancel_cmd_handler - .text.llm_util_flush_list - 0x42057976 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057976 llm_util_flush_list - .text.llm_adv_is_in_duplicate_scan_duplicate_exceptional_list - 0x420579aa 0x144 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x420579aa llm_adv_is_in_duplicate_scan_duplicate_exceptional_list - .text.r_llm_update_duplicate_scan_exceptional_list - 0x42057aee 0x22a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057aee r_llm_update_duplicate_scan_exceptional_list - .text.llm_exception_list_init - 0x42057d18 0x42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057d18 llm_exception_list_init - .text.r_llm_duplicate_list_clear - 0x42057d5a 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057d5a r_llm_duplicate_list_clear - .text.llm_duplicate_list_init - 0x42057d90 0xda /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057d90 llm_duplicate_list_init - .text.r_llm_le_features_get - 0x42057e6a 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057e6a r_llm_le_features_get - .text.r_llm_env_init - 0x42057e9a 0x7a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057e9a r_llm_env_init - .text.r_llm_env_deinit - 0x42057f14 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057f14 r_llm_env_deinit - .text.r_llm_init - 0x42057f78 0x2c6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42057f78 r_llm_init - .text.r_llm_deinit - 0x4205823e 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x4205823e r_llm_deinit - .text.r_llm_get_preferred_phys - 0x42058254 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42058254 r_llm_get_preferred_phys - .text.llm_rpa_renew_to_handler_hack - 0x42058272 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42058272 llm_rpa_renew_to_handler_hack - .text.llm_rpa_renew_timer_start - 0x420582c2 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x420582c2 llm_rpa_renew_timer_start - .text.r_llm_ch_map_update_hack - 0x4205830c 0x46 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x4205830c r_llm_ch_map_update_hack - .text.llm_csa_set - 0x42058352 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42058352 llm_csa_set - .text.llm_csa_get - 0x42058368 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x42058368 llm_csa_get - .text.llm_hash_function_blob - 0x42058372 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .text.f_hci_le_set_scan_param_cmd_handler - 0x420583be 0x1cc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420583be f_hci_le_set_scan_param_cmd_handler - .text.hci_le_set_scan_param_cmd_handler - 0x4205858a 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205858a hci_le_set_scan_param_cmd_handler - .text.f_hci_le_set_ext_scan_param_cmd_handler - 0x420585d8 0x1a6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420585d8 f_hci_le_set_ext_scan_param_cmd_handler - .text.hci_le_set_ext_scan_param_cmd_handler - 0x4205877e 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205877e hci_le_set_ext_scan_param_cmd_handler - .text.f_hci_le_set_ext_scan_en_cmd_handler - 0x420587e2 0x3e6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420587e2 f_hci_le_set_ext_scan_en_cmd_handler - .text.hci_le_set_ext_scan_en_cmd_handler - 0x42058bc8 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058bc8 hci_le_set_ext_scan_en_cmd_handler - .text.llm_is_pal_empty - 0x42058c2c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058c2c llm_is_pal_empty - .text.f_hci_le_per_adv_create_sync_cmd_handler - 0x42058c58 0x1aa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058c58 f_hci_le_per_adv_create_sync_cmd_handler - .text.hci_le_per_adv_create_sync_cmd_handler - 0x42058e02 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058e02 hci_le_per_adv_create_sync_cmd_handler - .text.f_hci_le_per_adv_create_sync_cancel_cmd_handler - 0x42058e50 0x188 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058e50 f_hci_le_per_adv_create_sync_cancel_cmd_handler - .text.hci_le_per_adv_create_sync_cancel_cmd_handler - 0x42058fd8 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42058fd8 hci_le_per_adv_create_sync_cancel_cmd_handler - .text.f_hci_le_per_adv_term_sync_cmd_handler - 0x42059026 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059026 f_hci_le_per_adv_term_sync_cmd_handler - .text.hci_le_per_adv_term_sync_cmd_handler - 0x420590da 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420590da hci_le_per_adv_term_sync_cmd_handler - .text.f_hci_le_add_dev_to_per_adv_list_cmd_handler - 0x42059128 0x158 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059128 f_hci_le_add_dev_to_per_adv_list_cmd_handler - .text.hci_le_add_dev_to_per_adv_list_cmd_handler - 0x42059280 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059280 hci_le_add_dev_to_per_adv_list_cmd_handler - .text.f_hci_le_rmv_dev_from_per_adv_list_cmd_handler - 0x420592ce 0x10e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420592ce f_hci_le_rmv_dev_from_per_adv_list_cmd_handler - .text.hci_le_rmv_dev_from_per_adv_list_cmd_handler - 0x420593dc 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420593dc hci_le_rmv_dev_from_per_adv_list_cmd_handler - .text.f_hci_le_clear_per_adv_list_cmd_handler - 0x4205942a 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205942a f_hci_le_clear_per_adv_list_cmd_handler - .text.hci_le_clear_per_adv_list_cmd_handler - 0x420594fc 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420594fc hci_le_clear_per_adv_list_cmd_handler - .text.f_hci_le_rd_per_adv_list_size_cmd_handler - 0x4205954a 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205954a f_hci_le_rd_per_adv_list_size_cmd_handler - .text.hci_le_rd_per_adv_list_size_cmd_handler - 0x420595a8 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420595a8 hci_le_rd_per_adv_list_size_cmd_handler - .text.llm_util_check_mesh_adv_report_list - 0x42059610 0x102 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059610 llm_util_check_mesh_adv_report_list - .text.llm_util_check_adv_report_list_by_hash - 0x42059712 0xae /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059712 llm_util_check_adv_report_list_by_hash - .text.r_llm_le_adv_report_ind_duplicate_check - 0x420597c0 0x1c0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420597c0 r_llm_le_adv_report_ind_duplicate_check - .text.llm_cal_duplicate_scan_defer_count - 0x42059980 0x7c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059980 llm_cal_duplicate_scan_defer_count - .text.f_hci_le_set_scan_en_cmd_handler - 0x420599fc 0x30a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x420599fc f_hci_le_set_scan_en_cmd_handler - .text.hci_le_set_scan_en_cmd_handler - 0x42059d06 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059d06 hci_le_set_scan_en_cmd_handler - .text.llm_scan_check_mesh_adv_data - 0x42059d54 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059d54 llm_scan_check_mesh_adv_data - .text.llm_adv_reports_list_remove - 0x42059dca 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059dca llm_adv_reports_list_remove - .text.f_lld_adv_rep_ind_handler_hack - 0x42059e8a 0x742 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x42059e8a f_lld_adv_rep_ind_handler_hack - .text.lld_adv_rep_ind_handler_hack - 0x4205a5cc 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a5cc lld_adv_rep_ind_handler_hack - .text.f_lld_scan_end_ind_handler_hack - 0x4205a60a 0x14a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a60a f_lld_scan_end_ind_handler_hack - .text.lld_scan_end_ind_handler_hack - 0x4205a754 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a754 lld_scan_end_ind_handler_hack - .text.f_llm_scan_period_to_handler_hack - 0x4205a792 0x9c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a792 f_llm_scan_period_to_handler_hack - .text.llm_scan_period_to_handler_hack - 0x4205a82e 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a82e llm_scan_period_to_handler_hack - .text.r_llm_scan_start_eco - 0x4205a86c 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a86c r_llm_scan_start_eco - .text.r_llm_adv_flow_control_event_check_hack - 0x4205a8a4 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a8a4 r_llm_adv_flow_control_event_check_hack - .text.f_lld_sync_start_req_handler - 0x4205a8b8 0x15e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205a8b8 f_lld_sync_start_req_handler - .text.lld_sync_start_req_handler_hack - 0x4205aa16 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205aa16 lld_sync_start_req_handler_hack - .text.f_lld_per_adv_rx_end_ind_handler_hack - 0x4205aa54 0x2d0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205aa54 f_lld_per_adv_rx_end_ind_handler_hack - .text.lld_per_adv_rx_end_ind_handler_hack - 0x4205ad24 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205ad24 lld_per_adv_rx_end_ind_handler_hack - .text.r_llm_env_adv_dup_filt_init_eco - 0x4205ad62 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205ad62 r_llm_env_adv_dup_filt_init_eco - .text.r_llm_env_adv_dup_filt_deinit_eco - 0x4205adac 0x66 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - 0x4205adac r_llm_env_adv_dup_filt_deinit_eco - .text.nvds_null_read - 0x4205ae12 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .text.nvds_null_erase - 0x4205ae14 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .text.nvds_null_write - 0x4205ae16 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .text.r_nvds_is_magic_number_ok - 0x4205ae18 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205ae18 r_nvds_is_magic_number_ok - .text.r_nvds_walk_tag - 0x4205ae4a 0x6e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205ae4a r_nvds_walk_tag - .text.r_nvds_browse_tag - 0x4205aeb8 0x5c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205aeb8 r_nvds_browse_tag - .text.r_nvds_null_init - 0x4205af14 0x36 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205af14 r_nvds_null_init - .text.r_nvds_read - 0x4205af4a 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205af4a r_nvds_read - .text.r_nvds_write - 0x4205afb2 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205afb2 r_nvds_write - .text.r_nvds_erase - 0x4205b01a 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b01a r_nvds_erase - .text.r_nvds_init_memory - 0x4205b03e 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b03e r_nvds_init_memory - .text.r_nvds_purge - 0x4205b06c 0xcc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b06c r_nvds_purge - .text.r_nvds_init - 0x4205b138 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b138 r_nvds_init - .text.f_nvds_get - 0x4205b1fe 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b1fe f_nvds_get - .text.r_nvds_get - 0x4205b26a 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b26a r_nvds_get - .text.f_nvds_del - 0x4205b27c 0x5a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b27c f_nvds_del - .text.r_nvds_del - 0x4205b2d6 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b2d6 r_nvds_del - .text.r_nvds_lock - 0x4205b2e8 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b2e8 r_nvds_lock - .text.f_nvds_put - 0x4205b338 0x19c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b338 f_nvds_put - .text.r_nvds_put - 0x4205b4d4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - 0x4205b4d4 r_nvds_put - .text.btdm_osi_funcs_register - 0x4205b4e6 0x96 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - 0x4205b4e6 btdm_osi_funcs_register - .text.bt_rf_coex_cfg_overwrite - 0x4205b57c 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - 0x4205b57c bt_rf_coex_cfg_overwrite - .text.r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get - 0x4205b5c4 0x34 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - 0x4205b5c4 r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get - .text.r_rw_rf_init - 0x4205b5f8 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - 0x4205b5f8 r_rw_rf_init - .text.r_rf_sleep_hack - 0x4205b6ac 0x12 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - 0x4205b6ac r_rf_sleep_hack - .text.bt_controller_txpwr_level_2_index - 0x4205b6be 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x4205b6be bt_controller_txpwr_level_2_index - .text.ble_txpwr_set_inter - 0x4205b716 0x16e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x4205b716 ble_txpwr_set_inter - .text.rtp_pwr_tbl_desc_init - 0x4205b884 0x4e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - 0x4205b884 rtp_pwr_tbl_desc_init - .text.r_rwble_hw_disable - 0x4205b8d2 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205b8d2 r_rwble_hw_disable - .text.r_rwble_init - 0x4205b916 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205b916 r_rwble_init - .text.r_cca_hw_intr_set - 0x4205b9a6 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205b9a6 r_cca_hw_intr_set - .text.bb_hw_intr_set - 0x4205b9c0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205b9c0 bb_hw_intr_set - .text.r_cca_init - 0x4205b9d0 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205b9d0 r_cca_init - .text.bb_int_init - 0x4205ba76 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - 0x4205ba76 bb_int_init - .text.r_rwip_driver_init - 0x4205bb04 0x2f4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - 0x4205bb04 r_rwip_driver_init - .text.rwip_aes_encrypt_sync - 0x4205bdf8 0x166 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - 0x4205bdf8 rwip_aes_encrypt_sync - .text.r_rwip_init - 0x4205bf5e 0x1de /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - 0x4205bf5e r_rwip_init - .text.r_rwip_reset - 0x4205c13c 0x15c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - 0x4205c13c r_rwip_reset - .text.r_sch_plan_set - 0x4205c298 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - 0x4205c298 r_sch_plan_set - .text.sdk_config_overwrite_priv_opts - 0x4205c2b0 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c2b0 sdk_config_overwrite_priv_opts - .text.sdk_config_get_mask - 0x4205c2ce 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c2ce sdk_config_get_mask - .text.sdk_config_set_mask - 0x4205c2d8 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c2d8 sdk_config_set_mask - .text.sdk_config_set_opts_ext - 0x4205c2e2 0x16 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c2e2 sdk_config_set_opts_ext - .text.sdk_config_set_derived_opts - 0x4205c2f8 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c2f8 sdk_config_set_derived_opts - .text.sdk_config_extend_set_pll_track - 0x4205c32a 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - 0x4205c32a sdk_config_extend_set_pll_track - .text.r_btdm_task_post_impl - 0x4205c34c 0xde /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x4205c34c r_btdm_task_post_impl - .text.r_btdm_task_post - 0x4205c42a 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x4205c42a r_btdm_task_post - .text.btdm_vnd_offload_task_register - 0x4205c44e 0x24 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x4205c44e btdm_vnd_offload_task_register - .text.btdm_vnd_offload_task_deregister - 0x4205c472 0x20 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - 0x4205c472 btdm_vnd_offload_task_deregister - .text.r_vhci_init - 0x4205c492 0x64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c492 r_vhci_init - .text.r_vhci_deinit - 0x4205c4f6 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c4f6 r_vhci_deinit - .text.r_vhci_check_packet_allow - 0x4205c52e 0x6a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c52e r_vhci_check_packet_allow - .text.API_vhci_host_check_send_available - 0x4205c598 0x44 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c598 API_vhci_host_check_send_available - .text.API_vhci_host_send_packet - 0x4205c5dc 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c5dc API_vhci_host_send_packet - .text.API_vhci_host_register_callback - 0x4205c6ae 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - 0x4205c6ae API_vhci_host_register_callback - .text.hci_unknown_hci_cmd_handler - 0x4205c6c2 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c6c2 hci_unknown_hci_cmd_handler - .text.ble_cmd_handler_register - 0x4205c6e0 0x2a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.hci_vendor_ble_clear_adv_cmd_handler - 0x4205c70a 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c70a hci_vendor_ble_clear_adv_cmd_handler - .text.hci_vendor_ble_csa_select_cmd_handler - 0x4205c752 0x50 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .text.f_hci_vendor_ble_init_adv_flow_control_cmd_handler - 0x4205c7a2 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c7a2 f_hci_vendor_ble_init_adv_flow_control_cmd_handler - .text.hci_vendor_ble_init_adv_flow_control_cmd_handler - 0x4205c80a 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c80a hci_vendor_ble_init_adv_flow_control_cmd_handler - .text.f_hci_vendor_ble_update_adv_report_flow_control_cmd_handler - 0x4205c880 0x68 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c880 f_hci_vendor_ble_update_adv_report_flow_control_cmd_handler - .text.hci_vendor_ble_update_adv_report_flow_control_cmd_handler - 0x4205c8e8 0x76 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c8e8 hci_vendor_ble_update_adv_report_flow_control_cmd_handler - .text.f_hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler - 0x4205c95e 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205c95e f_hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler - .text.hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler - 0x4205ca12 0x8e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205ca12 hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler - .text.adv_stack_enableClearLegacyAdvVsCmd - 0x4205caa0 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205caa0 adv_stack_enableClearLegacyAdvVsCmd - .text.scan_stack_enableAdvFlowCtrlVsCmd - 0x4205cabe 0x74 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205cabe scan_stack_enableAdvFlowCtrlVsCmd - .text.advFilter_stack_enableDupExcListVsCmd - 0x4205cb32 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205cb32 advFilter_stack_enableDupExcListVsCmd - .text.chanSel_stack_enableSetCsaVsCmd - 0x4205cb50 0x1e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205cb50 chanSel_stack_enableSetCsaVsCmd - .text.r_register_esp_vendor_cmd_handler - 0x4205cb6e 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - 0x4205cb6e r_register_esp_vendor_cmd_handler - .text.rw_crypto_aes_encrypt_sync - 0x4205cb8a 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - 0x4205cb8a rw_crypto_aes_encrypt_sync - .text.r_writebyte - 0x4205cbca 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbca r_writebyte - .text.r_readbyte - 0x4205cbd0 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbd0 r_readbyte - .text.r_flash_writebyte - 0x4205cbd6 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbd6 r_flash_writebyte - .text.r_flash_unlocksector - 0x4205cbee 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbee r_flash_unlocksector - .text.r_flash_unlock - 0x4205cbf0 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbf0 r_flash_unlock - .text.r_flash_env_init - 0x4205cbf2 0x40 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cbf2 r_flash_env_init - .text.r_flash_env_deinit - 0x4205cc32 0x2c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cc32 r_flash_env_deinit - .text.r_flash_init - 0x4205cc5e 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cc5e r_flash_init - .text.r_flash_identify - 0x4205ccca 0x82 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205ccca r_flash_identify - .text.r_flash_erase - 0x4205cd4c 0x4c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cd4c r_flash_erase - .text.r_flash_write - 0x4205cd98 0x4a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cd98 r_flash_write - .text.r_flash_read - 0x4205cde2 0x48 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - 0x4205cde2 r_flash_read - .text.hci_vendor_ble_ext_cmd_upk - 0x4205ce2a 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.hci_vendor_ble_ext_cmd_cmp_evt_pk - 0x4205ce7e 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .text.r_hci_register_vendor_desc_tab - 0x4205ce82 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - 0x4205ce82 r_hci_register_vendor_desc_tab - .text.r_hci_init - 0x4205ce9e 0x90 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - 0x4205ce9e r_hci_init - .text.r_hci_tl_env_init - 0x4205cf2e 0x3c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - 0x4205cf2e r_hci_tl_env_init - .text.r_hci_tl_env_deinit - 0x4205cf6a 0x3e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - 0x4205cf6a r_hci_tl_env_deinit - .text.r_hci_tl_init - 0x4205cfa8 0x98 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - 0x4205cfa8 r_hci_tl_init - .text.r_ke_task_handler_get_overwrite - 0x4205d040 0xba /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - 0x4205d040 r_ke_task_handler_get_overwrite - .text.r_ke_task_handler_pre - 0x4205d0fa 0x22 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - 0x4205d0fa r_ke_task_handler_pre - .text.r_ke_task_handler_end - 0x4205d11c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - 0x4205d11c r_ke_task_handler_end - .text.r_ke_task_schedule - 0x4205d11e 0x14c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - 0x4205d11e r_ke_task_schedule - .text.coex_hook_calc_aux_adv_dur - 0x4205d26a 0x6c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text.coex_hook_check_wifi_sleep - 0x4205d2d6 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text.bt_rf_coex_hook_st_param_set - 0x4205d30e 0x22e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text.bt_rf_coex_hook_st_set - 0x4205d53c 0x144 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .text.bt_rf_coex_hook_register - 0x4205d680 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - 0x4205d680 bt_rf_coex_hook_register - .text.int32_size - 0x4205d6ae 0x3a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.sint32_size - 0x4205d6e8 0x3a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.uint64_size - 0x4205d722 0x6e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.field_is_zeroish - 0x4205d790 0xe8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unknown_field_get_packed_size - 0x4205d878 0x38 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.uint32_pack - 0x4205d8b0 0x6a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.int32_pack - 0x4205d91a 0x64 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.uint64_pack - 0x4205d97e 0x98 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.tag_pack - 0x4205da16 0x28 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.get_type_min_size - 0x4205da3e 0x2a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.int_range_lookup - 0x4205da68 0x86 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_tag_and_wiretype - 0x4205daee 0x76 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.scan_length_prefixed_data - 0x4205db64 0x5a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.max_b128_numbers - 0x4205dbbe 0x22 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.count_packed_elements - 0x4205dbe0 0x82 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_uint32 - 0x4205dc62 0x58 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_uint64 - 0x4205dcba 0x92 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_boolean - 0x4205dd4c 0x20 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.scan_varint - 0x4205dd6c 0x2c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.is_packable_type - 0x4205dd98 0xc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.binary_data_pack - 0x4205dda4 0x3c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.copy_to_little_endian_32 - 0x4205dde0 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.copy_to_little_endian_64 - 0x4205ddf4 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unknown_field_pack - 0x4205de08 0x40 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.system_free - 0x4205de48 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.system_alloc - 0x4205de5c 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.sizeof_elt_in_repeated_array - 0x4205de70 0x60 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_packed_repeated_member - 0x4205ded0 0x25c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.string_pack - 0x4205e12c 0x4c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.message_init_generic - 0x4205e178 0x15c esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.merge_messages - 0x4205e2d4 0x222 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_get_packed_size - 0x4205e4f6 0xd6 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x4205e4f6 protobuf_c_message_get_packed_size - .text.required_field_get_packed_size - 0x4205e5cc 0x238 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.oneof_field_get_packed_size - 0x4205e804 0x3a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.optional_field_get_packed_size - 0x4205e83e 0x38 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unlabeled_field_get_packed_size - 0x4205e876 0x28 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.repeated_field_get_packed_size - 0x4205e89e 0x30a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_pack - 0x4205eba8 0xf8 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x4205eba8 protobuf_c_message_pack - .text.prefixed_message_pack - 0x4205eca0 0x72 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.required_field_pack - 0x4205ed12 0x238 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.oneof_field_pack - 0x4205ef4a 0x3e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.optional_field_pack - 0x4205ef88 0x3a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.unlabeled_field_pack - 0x4205efc2 0x30 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.repeated_field_pack - 0x4205eff2 0x2ce esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.protobuf_c_message_free_unpacked - 0x4205f2c0 0x1d4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x4205f2c0 protobuf_c_message_free_unpacked - .text.protobuf_c_message_init - 0x4205f494 0x10 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x4205f494 protobuf_c_message_init - .text.protobuf_c_message_unpack - 0x4205f4a4 0x540 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x4205f4a4 protobuf_c_message_unpack - .text.parse_required_member - 0x4205f9e4 0x334 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_oneof_member - 0x4205fd18 0xea esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_optional_member - 0x4205fe02 0x32 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_repeated_member - 0x4205fe34 0x4e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.parse_member - 0x4205fe82 0x102 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .text.get_decimal_point - 0x4205ff84 0x6 esp-idf/json/libjson.a(cJSON.c.obj) - .text.compare_double - 0x4205ff8a 0xbc esp-idf/json/libjson.a(cJSON.c.obj) - .text.suffix_object - 0x42060046 0x6 esp-idf/json/libjson.a(cJSON.c.obj) - .text.add_item_to_array - 0x4206004c 0x4c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cast_away_const - 0x42060098 0x2 esp-idf/json/libjson.a(cJSON.c.obj) - .text.update_offset - 0x4206009a 0x2a esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_strdup - 0x420600c4 0x44 esp-idf/json/libjson.a(cJSON.c.obj) - .text.add_item_to_object - 0x42060108 0x88 esp-idf/json/libjson.a(cJSON.c.obj) - .text.ensure 0x42060190 0xca esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_New_Item - 0x4206025a 0x2a esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_string_ptr - 0x42060284 0x1c0 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_string - 0x42060444 0x10 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_number - 0x42060454 0x1b6 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_value - 0x4206060a 0x194 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print 0x4206079e 0xb8 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_array - 0x42060856 0xc0 esp-idf/json/libjson.a(cJSON.c.obj) - .text.print_object - 0x42060916 0x17c esp-idf/json/libjson.a(cJSON.c.obj) - .text.cJSON_Delete - 0x42060a92 0x66 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060a92 cJSON_Delete - .text.cJSON_Print - 0x42060af8 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060af8 cJSON_Print - .text.cJSON_AddItemToArray - 0x42060b0c 0xe esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060b0c cJSON_AddItemToArray - .text.cJSON_AddItemToObject - 0x42060b1a 0x14 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060b1a cJSON_AddItemToObject - .text.cJSON_CreateNumber - 0x42060b2e 0xb2 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060b2e cJSON_CreateNumber - .text.cJSON_AddNumberToObject - 0x42060be0 0x42 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060be0 cJSON_AddNumberToObject - .text.cJSON_CreateString - 0x42060c22 0x40 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060c22 cJSON_CreateString - .text.cJSON_AddStringToObject - 0x42060c62 0x40 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060c62 cJSON_AddStringToObject - .text.cJSON_CreateArray - 0x42060ca2 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060ca2 cJSON_CreateArray - .text.cJSON_CreateObject - 0x42060cbc 0x1a esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060cbc cJSON_CreateObject - .text.cJSON_Duplicate - 0x42060cd6 0xa6 esp-idf/json/libjson.a(cJSON.c.obj) - 0x42060cd6 cJSON_Duplicate - .text.esp_qrcode_print_console - 0x42060d7c 0xb4 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - 0x42060d7c esp_qrcode_print_console - .text.esp_qrcode_generate - 0x42060e30 0x128 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - 0x42060e30 esp_qrcode_generate - .text.reedSolomonMultiply - 0x42060f58 0x38 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getAlignmentPatternPositions - 0x42060f90 0x68 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getBit 0x42060ff8 0x8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.calcSegmentBitLength - 0x42061000 0xd6 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.numCharCountBits - 0x420610d6 0xd4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getTotalBits - 0x420611aa 0x148 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.appendBitsToBuffer - 0x420612f2 0x6e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getNumRawDataModules - 0x42061360 0xb8 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getNumDataCodewords - 0x42061418 0x84 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getModule - 0x4206149c 0x62 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.setModule - 0x420614fe 0x8a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.setModuleBounded - 0x42061588 0x24 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.fillRectangle - 0x420615ac 0x54 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.finderPenaltyCountPatterns - 0x42061600 0xaa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.reedSolomonComputeDivisor - 0x420616aa 0xac esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.initializeFunctionModules - 0x42061756 0x11e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.reedSolomonComputeRemainder - 0x42061874 0xcc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.addEccAndInterleave - 0x42061940 0x144 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.finderPenaltyAddHistory - 0x42061a84 0x26 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.finderPenaltyTerminateAndCount - 0x42061aaa 0x38 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_getSize - 0x42061ae2 0x62 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x42061ae2 qrcodegen_getSize - .text.drawCodewords - 0x42061b44 0xea esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.drawWhiteFunctionModules - 0x42061c2e 0x1e4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.getPenaltyScore - 0x42061e12 0x216 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.applyMask - 0x42062028 0x218 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.drawFormatBits - 0x42062240 0x192 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .text.qrcodegen_encodeSegmentsAdvanced - 0x420623d2 0x366 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x420623d2 qrcodegen_encodeSegmentsAdvanced - .text.qrcodegen_getModule - 0x42062738 0x60 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x42062738 qrcodegen_getModule - .text.qrcodegen_isAlphanumeric - 0x42062798 0x58 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x42062798 qrcodegen_isAlphanumeric - .text.qrcodegen_isNumeric - 0x420627f0 0x4e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x420627f0 qrcodegen_isNumeric - .text.qrcodegen_calcSegmentBufferSize - 0x4206283e 0x46 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x4206283e qrcodegen_calcSegmentBufferSize - .text.qrcodegen_makeNumeric - 0x42062884 0x168 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x42062884 qrcodegen_makeNumeric - .text.qrcodegen_makeAlphanumeric - 0x420629ec 0x178 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x420629ec qrcodegen_makeAlphanumeric - .text.qrcodegen_encodeText - 0x42062b64 0x132 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - 0x42062b64 qrcodegen_encodeText - .text.esp_rmaker_handle_work_queue - 0x42062c96 0x42 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .text.esp_rmaker_work_queue_task - 0x42062cd8 0x82 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .text.esp_rmaker_work_queue_add_task - 0x42062d5a 0x62 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - 0x42062d5a esp_rmaker_work_queue_add_task - .text.esp_rmaker_work_queue_init - 0x42062dbc 0xb8 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - 0x42062dbc esp_rmaker_work_queue_init - .text.esp_rmaker_work_queue_start - 0x42062e74 0xe0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - 0x42062e74 esp_rmaker_work_queue_start - .text.esp_rmaker_work_queue_stop - 0x42062f54 0x1e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - 0x42062f54 esp_rmaker_work_queue_stop - .text.esp_rmaker_work_queue_deinit - 0x42062f72 0xe4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - 0x42062f72 esp_rmaker_work_queue_deinit - .text.esp_rmaker_factory_init - 0x42063056 0x8a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - 0x42063056 esp_rmaker_factory_init - .text.esp_rmaker_factory_get - 0x420630e0 0x72 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - 0x420630e0 esp_rmaker_factory_get - .text.esp_rmaker_factory_get_size - 0x42063152 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - 0x42063152 esp_rmaker_factory_get_size - .text.esp_rmaker_factory_set - 0x42063196 0xc0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - 0x42063196 esp_rmaker_factory_set - .text.__esp_rmaker_time_get_nvs - 0x42063256 0x6c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text.__esp_rmaker_time_set_nvs - 0x420632c2 0x5e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text.esp_setenv - 0x42063320 0xe esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x42063320 esp_setenv - .text.esp_rmaker_get_local_time_str - 0x4206332e 0xa6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x4206332e esp_rmaker_get_local_time_str - .text.esp_rmaker_time_get_timezone_posix - 0x420633d4 0x16 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x420633d4 esp_rmaker_time_get_timezone_posix - .text.esp_rmaker_time_get_timezone - 0x420633ea 0x16 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x420633ea esp_rmaker_time_get_timezone - .text.esp_rmaker_timezone_enable - 0x42063400 0x90 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x42063400 esp_rmaker_timezone_enable - .text.esp_rmaker_time_sync_init - 0x42063490 0xcc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x42063490 esp_rmaker_time_sync_init - .text.esp_rmaker_time_check - 0x4206355c 0x2c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x4206355c esp_rmaker_time_check - .text.esp_rmaker_print_current_time - 0x42063588 0x7c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text.esp_rmaker_time_set_timezone_posix - 0x42063604 0x62 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x42063604 esp_rmaker_time_set_timezone_posix - .text.esp_rmaker_time_set_timezone - 0x42063666 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - 0x42063666 esp_rmaker_time_set_timezone - .text.esp_rmaker_time_sync_cb - 0x420636b6 0x36 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .text.lower 0x420636ec 0x1a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .text.tz_name_cmp - 0x42063706 0x78 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .text.esp_rmaker_tz_db_get_posix_str - 0x4206377e 0x64 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - 0x4206377e esp_rmaker_tz_db_get_posix_str - .text.esp_rmaker_reboot_cb - 0x420637e2 0x26 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.esp_rmaker_start_reset_timer - 0x42063808 0xbc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.esp_rmaker_reboot - 0x420638c4 0xdc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - 0x420638c4 esp_rmaker_reboot - .text.__esp_rmaker_wifi_reset - 0x420639a0 0x22 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.esp_rmaker_wifi_reset_cb - 0x420639c2 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.__esp_rmaker_factory_reset - 0x42063a12 0x2a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.esp_rmaker_factory_reset_cb - 0x42063a3c 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .text.esp_rmaker_wifi_reset - 0x42063a8c 0x3a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - 0x42063a8c esp_rmaker_wifi_reset - .text.esp_rmaker_factory_reset - 0x42063ac6 0x3a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - 0x42063ac6 esp_rmaker_factory_reset - .text.scli_task - 0x42063b00 0x1ae esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .text.scli_init - 0x42063cae 0x7c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .text.esp_rmaker_common_console_init - 0x42063d2a 0x46 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - 0x42063d2a esp_rmaker_common_console_init - .text.esp_mqtt_glue_reset_subscription_states - 0x42063d70 0x26 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_subscribe_callback - 0x42063d96 0x86 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.unsubscribe_helper - 0x42063e1c 0xba esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_unsubscribe - 0x42063ed6 0x7a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_unsubscribe_all - 0x42063f50 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_free_long_data - 0x42063f94 0x36 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_subscribe - 0x42063fca 0x23e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_publish - 0x42064208 0x78 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_disconnect - 0x42064280 0x86 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_connect - 0x42064306 0x8c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_deinit - 0x42064392 0x3a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_init - 0x420643cc 0x1ca esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_mqtt_glue_manage_long_data - 0x42064596 0x132 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.mqtt_event_handler - 0x420646c8 0x2c4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .text.esp_rmaker_mqtt_glue_setup - 0x4206498c 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - 0x4206498c esp_rmaker_mqtt_glue_setup - .text.platform_get_product_name - 0x420649dc 0xa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x420649dc platform_get_product_name - .text.platform_get_product_UID - 0x420649e6 0x78 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x420649e6 platform_get_product_UID - .text.platform_get_product_version - 0x42064a5e 0xa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064a5e platform_get_product_version - .text.platform_get_silicon_sku_code - 0x42064a68 0xa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064a68 platform_get_silicon_sku_code - .text.validate_sku_code - 0x42064a72 0x2e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064a72 validate_sku_code - .text.validate_platform_inputs - 0x42064aa0 0xac esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064aa0 validate_platform_inputs - .text.create_APN_PPI_string - 0x42064b4c 0xa6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064b4c create_APN_PPI_string - .text.esp_get_aws_ppi - 0x42064bf2 0x68 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - 0x42064bf2 esp_get_aws_ppi - .text.register_generic_debug_commands - 0x42064c5a 0x14a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.register_reset_to_factory - 0x42064da4 0x64 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.register_time_commands - 0x42064e08 0xbe esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.heap_trace_cli_handler - 0x42064ec6 0x20 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.cpu_dump_cli_handler - 0x42064ee6 0x20 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.task_dump_cli_handler - 0x42064f06 0x20 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.sock_dump_cli_handler - 0x42064f26 0x13c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.mem_dump_cli_handler - 0x42065062 0x8e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.up_time_cli_handler - 0x420650f0 0x3a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.reboot_cli_handler - 0x4206512a 0xe esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.reset_to_factory_handler - 0x42065138 0x28 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.tz_set_cli_handler - 0x42065160 0x80 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.local_time_cli_handler - 0x420651e0 0x46 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .text.esp_rmaker_common_register_commands - 0x42065226 0x54 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - 0x42065226 esp_rmaker_common_register_commands - .text.find_command_by_name - 0x4206527a 0x54 esp-idf/console/libconsole.a(commands.c.obj) - .text.print_arg_command - 0x420652ce 0x26 esp-idf/console/libconsole.a(commands.c.obj) - .text.print_arg_help - 0x420652f4 0x70 esp-idf/console/libconsole.a(commands.c.obj) - .text.help_command - 0x42065364 0xec esp-idf/console/libconsole.a(commands.c.obj) - .text.esp_console_init - 0x42065450 0x82 esp-idf/console/libconsole.a(commands.c.obj) - 0x42065450 esp_console_init - .text.esp_console_rm_item_free_hint - 0x420654d2 0x38 esp-idf/console/libconsole.a(commands.c.obj) - 0x420654d2 esp_console_rm_item_free_hint - .text.esp_console_cmd_register - 0x4206550a 0xfe esp-idf/console/libconsole.a(commands.c.obj) - 0x4206550a esp_console_cmd_register - .text.esp_console_run - 0x42065608 0xcc esp-idf/console/libconsole.a(commands.c.obj) - 0x42065608 esp_console_run - .text.esp_console_register_help_command - 0x420656d4 0x94 esp-idf/console/libconsole.a(commands.c.obj) - 0x420656d4 esp_console_register_help_command - .text.esp_console_split_argv - 0x42065768 0xf4 esp-idf/console/libconsole.a(split_argv.c.obj) - 0x42065768 esp_console_split_argv - .text.arg_dstr_create - 0x4206585c 0x2e esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x4206585c arg_dstr_create - .text.arg_dstr_cstr - 0x4206588a 0x4 esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x4206588a arg_dstr_cstr - .text.arg_dstr_free - 0x4206588e 0x2a esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x4206588e arg_dstr_free - .text.setup_append_buf - 0x420658b8 0xdc esp-idf/console/libconsole.a(arg_dstr.c.obj) - .text.arg_dstr_cat - 0x42065994 0x50 esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x42065994 arg_dstr_cat - .text.arg_dstr_catf - 0x420659e4 0xb6 esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x420659e4 arg_dstr_catf - .text.arg_dstr_catc - 0x42065a9a 0x2e esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x42065a9a arg_dstr_catc - .text.arg_dstr_reset - 0x42065ac8 0x3a esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x42065ac8 arg_dstr_reset - .text.arg_dstr_destroy - 0x42065b02 0x1c esp-idf/console/libconsole.a(arg_dstr.c.obj) - 0x42065b02 arg_dstr_destroy - .text.arg_end_resetfn - 0x42065b1e 0x6 esp-idf/console/libconsole.a(arg_end.c.obj) - .text.arg_end_errorfn - 0x42065b24 0xda esp-idf/console/libconsole.a(arg_end.c.obj) - .text.arg_end 0x42065bfe 0x64 esp-idf/console/libconsole.a(arg_end.c.obj) - 0x42065bfe arg_end - .text.arg_print_errors_ds - 0x42065c62 0x54 esp-idf/console/libconsole.a(arg_end.c.obj) - 0x42065c62 arg_print_errors_ds - .text.arg_print_errors - 0x42065cb6 0x40 esp-idf/console/libconsole.a(arg_end.c.obj) - 0x42065cb6 arg_print_errors - .text.arg_int_resetfn - 0x42065cf6 0x6 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.detectsuffix - 0x42065cfc 0x78 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_int_checkfn - 0x42065d74 0xa esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_int_errorfn - 0x42065d7e 0x10c esp-idf/console/libconsole.a(arg_int.c.obj) - .text.strtol0X - 0x42065e8a 0xd0 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_int_scanfn - 0x42065f5a 0x120 esp-idf/console/libconsole.a(arg_int.c.obj) - .text.arg_intn - 0x4206607a 0x96 esp-idf/console/libconsole.a(arg_int.c.obj) - 0x4206607a arg_intn - .text.arg_str_resetfn - 0x42066110 0x24 esp-idf/console/libconsole.a(arg_str.c.obj) - .text.arg_str_scanfn - 0x42066134 0x28 esp-idf/console/libconsole.a(arg_str.c.obj) - .text.arg_str_checkfn - 0x4206615c 0xa esp-idf/console/libconsole.a(arg_str.c.obj) - .text.arg_str_errorfn - 0x42066166 0xa2 esp-idf/console/libconsole.a(arg_str.c.obj) - .text.arg_strn - 0x42066208 0xb2 esp-idf/console/libconsole.a(arg_str.c.obj) - 0x42066208 arg_strn - .text.arg_str0 - 0x420662ba 0x14 esp-idf/console/libconsole.a(arg_str.c.obj) - 0x420662ba arg_str0 - .text.panic 0x420662ce 0x4e esp-idf/console/libconsole.a(arg_utils.c.obj) - .text.argtable3_xmalloc - 0x4206631c 0x2c esp-idf/console/libconsole.a(arg_utils.c.obj) - 0x4206631c argtable3_xmalloc - .text.argtable3_xfree - 0x42066348 0x12 esp-idf/console/libconsole.a(arg_utils.c.obj) - 0x42066348 argtable3_xfree - .text.arg_register_error - 0x4206635a 0x5a esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_endindex - 0x420663b4 0x1a esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_parse_untagged - 0x420663ce 0xe6 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_parse_check - 0x420664b4 0x56 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_reset - 0x4206650a 0x3a esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_cat 0x42066544 0x3e esp-idf/console/libconsole.a(argtable3.c.obj) - .text.alloc_shortoptions - 0x42066582 0xb4 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.alloc_longoptions - 0x42066636 0x15a esp-idf/console/libconsole.a(argtable3.c.obj) - .text.find_shortoption - 0x42066790 0x46 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_parse_tagged - 0x420667d6 0x19e esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_cat_optionv - 0x42066974 0x15e esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_cat_option - 0x42066ad2 0x160 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_gnuswitch_ds - 0x42066c32 0xd6 esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_print_formatted_ds - 0x42066d08 0x11c esp-idf/console/libconsole.a(argtable3.c.obj) - .text.arg_parse - 0x42066e24 0xa8 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42066e24 arg_parse - .text.arg_print_option_ds - 0x42066ecc 0x76 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42066ecc arg_print_option_ds - .text.arg_print_syntax_ds - 0x42066f42 0x152 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42066f42 arg_print_syntax_ds - .text.arg_print_glossary_ds - 0x42067094 0x9c esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42067094 arg_print_glossary_ds - .text.arg_print_glossary - 0x42067130 0x40 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42067130 arg_print_glossary - .text.arg_print_formatted - 0x42067170 0x48 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x42067170 arg_print_formatted - .text.create_string - 0x420671b8 0x7e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_check_cfg_conflict - 0x42067236 0x158 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.create_client_data - 0x4206738e 0x14c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.run_event_loop - 0x420674da 0x48 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_dispatch_event - 0x42067522 0x42 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_delete_expired_messages - 0x42067564 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_create_transport - 0x4206758c 0x350 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_set_cert_key_data - 0x420678dc 0xcc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_set_ssl_transport_properties - 0x420679a8 0x1ca esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_dispatch_event_with_msgid - 0x42067b72 0x2c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_dispatch_transport_error - 0x42067b9e 0x52 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_handle_transport_read_error - 0x42067bf0 0x98 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_abort_connection - 0x42067c88 0x64 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_write - 0x42067cec 0xae esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_message_receive - 0x42067d9a 0x20e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_connect - 0x42067fa8 0x292 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.send_disconnect_msg - 0x4206823a 0x86 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.deliver_suback - 0x420682c0 0xbe esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.deliver_publish - 0x4206837e 0x172 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.remove_initiator_message - 0x420684f0 0x20 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_process_receive - 0x42068510 0x33e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_resend_queued - 0x4206884e 0x92 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_client_ping - 0x420688e0 0x7c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.process_keepalive - 0x4206895c 0x12c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_task - 0x42068a88 0x53e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_enqueue - 0x42068fc6 0x4a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.make_publish - 0x42069010 0x60 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.mqtt_client_enqueue_publish - 0x42069070 0x88 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .text.esp_mqtt_set_if_config - 0x420690f8 0x3a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x420690f8 esp_mqtt_set_if_config - .text.esp_mqtt_destroy_config - 0x42069132 0x116 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x42069132 esp_mqtt_destroy_config - .text.esp_mqtt_client_set_uri - 0x42069248 0x200 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x42069248 esp_mqtt_client_set_uri - .text.esp_mqtt_set_config - 0x42069448 0xad4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x42069448 esp_mqtt_set_config - .text.esp_mqtt_client_start - 0x42069f1c 0x11a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x42069f1c esp_mqtt_client_start - .text.esp_mqtt_client_stop - 0x4206a036 0x13a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a036 esp_mqtt_client_stop - .text.esp_mqtt_client_destroy - 0x4206a170 0x70 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a170 esp_mqtt_client_destroy - .text.esp_mqtt_client_init - 0x4206a1e0 0xc0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a1e0 esp_mqtt_client_init - .text.esp_mqtt_client_subscribe_multiple - 0x4206a2a0 0x1a2 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a2a0 esp_mqtt_client_subscribe_multiple - .text.esp_mqtt_client_subscribe_single - 0x4206a442 0x16 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a442 esp_mqtt_client_subscribe_single - .text.esp_mqtt_client_unsubscribe - 0x4206a458 0x16c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a458 esp_mqtt_client_unsubscribe - .text.esp_mqtt_client_publish - 0x4206a5c4 0x1ce esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a5c4 esp_mqtt_client_publish - .text.esp_mqtt_client_register_event - 0x4206a792 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - 0x4206a792 esp_mqtt_client_register_event - .text.set_message_header_size - 0x4206a7ba 0x8 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.fail_message - 0x4206a7c2 0xa esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.fini_message - 0x4206a7cc 0xce esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.append_string - 0x4206a89a 0x64 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.append_message_id - 0x4206a8fe 0x54 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .text.mqtt_get_total_length - 0x4206a952 0x3e esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206a952 mqtt_get_total_length - .text.mqtt_get_publish_topic - 0x4206a990 0x4e esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206a990 mqtt_get_publish_topic - .text.mqtt_get_publish_data - 0x4206a9de 0xa2 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206a9de mqtt_get_publish_data - .text.mqtt_get_suback_data - 0x4206aa80 0x18 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206aa80 mqtt_get_suback_data - .text.mqtt_get_id - 0x4206aa98 0xbc esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206aa98 mqtt_get_id - .text.mqtt_msg_connect - 0x4206ab54 0x27a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206ab54 mqtt_msg_connect - .text.mqtt_msg_publish - 0x4206adce 0xee esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206adce mqtt_msg_publish - .text.mqtt_msg_puback - 0x4206aebc 0x3a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206aebc mqtt_msg_puback - .text.mqtt_msg_pubrec - 0x4206aef6 0x3a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206aef6 mqtt_msg_pubrec - .text.mqtt_msg_pubrel - 0x4206af30 0x3a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206af30 mqtt_msg_pubrel - .text.mqtt_msg_pubcomp - 0x4206af6a 0x3a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206af6a mqtt_msg_pubcomp - .text.mqtt_msg_subscribe - 0x4206afa4 0xb8 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206afa4 mqtt_msg_subscribe - .text.mqtt_msg_unsubscribe - 0x4206b05c 0x74 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b05c mqtt_msg_unsubscribe - .text.mqtt_msg_pingreq - 0x4206b0d0 0x22 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b0d0 mqtt_msg_pingreq - .text.mqtt_msg_disconnect - 0x4206b0f2 0x22 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b0f2 mqtt_msg_disconnect - .text.mqtt_has_valid_msg_hdr - 0x4206b114 0x6c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b114 mqtt_has_valid_msg_hdr - .text.mqtt_msg_buffer_init - 0x4206b180 0x3c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b180 mqtt_msg_buffer_init - .text.mqtt_msg_buffer_destroy - 0x4206b1bc 0x16 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - 0x4206b1bc mqtt_msg_buffer_destroy - .text.outbox_init - 0x4206b1d2 0xd8 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b1d2 outbox_init - .text.outbox_enqueue - 0x4206b2aa 0x140 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b2aa outbox_enqueue - .text.outbox_get - 0x4206b3ea 0x12 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b3ea outbox_get - .text.outbox_dequeue - 0x4206b3fc 0x1e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b3fc outbox_dequeue - .text.outbox_delete_item - 0x4206b41a 0x70 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b41a outbox_delete_item - .text.outbox_item_get_data - 0x4206b48a 0x18 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b48a outbox_item_get_data - .text.outbox_delete - 0x4206b4a2 0x86 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b4a2 outbox_delete - .text.outbox_set_pending - 0x4206b528 0x1e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b528 outbox_set_pending - .text.outbox_item_get_pending - 0x4206b546 0xa esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b546 outbox_item_get_pending - .text.outbox_set_tick - 0x4206b550 0x26 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b550 outbox_set_tick - .text.outbox_delete_expired - 0x4206b576 0xc0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b576 outbox_delete_expired - .text.outbox_get_size - 0x4206b636 0x14 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b636 outbox_get_size - .text.outbox_delete_all_items - 0x4206b64a 0x78 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b64a outbox_delete_all_items - .text.outbox_destroy - 0x4206b6c2 0x28 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - 0x4206b6c2 outbox_destroy - .text.platform_create_id_string - 0x4206b6ea 0x80 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - 0x4206b6ea platform_create_id_string - .text.platform_random - 0x4206b76a 0x1c esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - 0x4206b76a platform_random - .text.platform_tick_get_ms - 0x4206b786 0x20 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - 0x4206b786 platform_tick_get_ms - .text.riscv_decode_offset_from_jal_instruction - 0x4206b7a6 0x4c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - 0x4206b7a6 riscv_decode_offset_from_jal_instruction - .text.gpio_input_disable - 0x4206b7f2 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_input_enable - 0x4206b872 0x82 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_input_disable - 0x4206b8f4 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_output_enable - 0x4206b974 0x82 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_output_disable - 0x4206b9f6 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pulldown_en - 0x4206ba76 0x98 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pullup_en - 0x4206bb0e 0x98 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pulldown_dis - 0x4206bba6 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pullup_dis - 0x4206bc3c 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_isr_register_on_core_static - 0x4206bcd2 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_pullup_en - 0x4206bcf2 0xa8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206bcf2 gpio_pullup_en - .text.gpio_pullup_dis - 0x4206bd9a 0xc2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206bd9a gpio_pullup_dis - .text.gpio_pulldown_en - 0x4206be5c 0xa8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206be5c gpio_pulldown_en - .text.gpio_pulldown_dis - 0x4206bf04 0xa6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206bf04 gpio_pulldown_dis - .text.gpio_set_intr_type - 0x4206bfaa 0x15c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206bfaa gpio_set_intr_type - .text.gpio_intr_enable - 0x4206c106 0xa6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c106 gpio_intr_enable - .text.gpio_intr_disable - 0x4206c1ac 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c1ac gpio_intr_disable - .text.gpio_input_enable - 0x4206c222 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c222 gpio_input_enable - .text.gpio_output_disable - 0x4206c2a2 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c2a2 gpio_output_disable - .text.gpio_output_enable - 0x4206c340 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c340 gpio_output_enable - .text.gpio_od_disable - 0x4206c3de 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c3de gpio_od_disable - .text.gpio_od_enable - 0x4206c45c 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c45c gpio_od_enable - .text.gpio_get_level - 0x4206c4dc 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c4dc gpio_get_level - .text.gpio_set_direction - 0x4206c4f4 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c4f4 gpio_set_direction - .text.gpio_config - 0x4206c5a8 0x1aa esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c5a8 gpio_config - .text.gpio_isr_handler_add - 0x4206c752 0x10e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c752 gpio_isr_handler_add - .text.gpio_uninstall_isr_service - 0x4206c860 0x56 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c860 gpio_uninstall_isr_service - .text.gpio_isr_register - 0x4206c8b6 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c8b6 gpio_isr_register - .text.gpio_install_isr_service - 0x4206c970 0xd8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206c970 gpio_install_isr_service - .text.gpio_sleep_set_direction - 0x4206ca48 0xa0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206ca48 gpio_sleep_set_direction - .text.gpio_sleep_set_pull_mode - 0x4206cae8 0x146 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206cae8 gpio_sleep_set_pull_mode - .text.gpio_sleep_sel_en - 0x4206cc2e 0x98 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206cc2e gpio_sleep_sel_en - .text.gpio_sleep_sel_dis - 0x4206ccc6 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206ccc6 gpio_sleep_sel_dis - .text.gpio_func_sel - 0x4206cd5c 0xae esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x4206cd5c gpio_func_sel - .text.rtc_gpio_is_valid_gpio - 0x4206ce0a 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - 0x4206ce0a rtc_gpio_is_valid_gpio - .text.get16_le - 0x4206ce0e 0x6 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_name_len - 0x4206ce14 0xe esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_name - 0x4206ce22 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_key_len - 0x4206ce26 0x10 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_key - 0x4206ce36 0x22 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_len - 0x4206ce58 0x28 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_cert_offset - 0x4206ce80 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_certcount - 0x4206ce88 0x12 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_get_cert - 0x4206ce9a 0x16 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_check_bundle - 0x4206ceb0 0xbe esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_bundle_init - 0x4206cf6e 0x26 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_find_cert - 0x4206cf94 0xac esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_check_signature - 0x4206d040 0x17a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .text.esp_crt_verify_callback - 0x4206d1ba 0x13c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - 0x4206d1ba esp_crt_verify_callback - .text.esp_crt_bundle_attach - 0x4206d2f6 0x8e esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - 0x4206d2f6 esp_crt_bundle_attach - .text.esp_crt_bundle_in_use - 0x4206d384 0x10 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - 0x4206d384 esp_crt_bundle_in_use - .text.is_ota_partition - 0x4206d394 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.set_new_state_otadata - 0x4206d3bc 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.get_ota_ops_entry - 0x4206d3c0 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.image_validate - 0x4206d3d8 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.read_otadata - 0x4206d404 0xc0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.rewrite_ota_seq - 0x4206d4c4 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_running_partition - 0x4206d528 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d528 esp_ota_get_running_partition - .text.esp_ota_write - 0x4206d5ee 0x1da esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d5ee esp_ota_write - .text.esp_ota_abort - 0x4206d7c8 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d7c8 esp_ota_abort - .text.esp_ota_end - 0x4206d7f6 0x94 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d7f6 esp_ota_end - .text.esp_ota_get_app_partition_count - 0x4206d88a 0x54 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d88a esp_ota_get_app_partition_count - .text.esp_rewrite_ota_data - 0x4206d8de 0xac esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_set_boot_partition - 0x4206d98a 0x56 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d98a esp_ota_set_boot_partition - .text.esp_ota_get_next_update_partition - 0x4206d9e0 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206d9e0 esp_ota_get_next_update_partition - .text.esp_ota_get_partition_description - 0x4206da64 0x4c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206da64 esp_ota_get_partition_description - .text.esp_ota_check_rollback_is_possible - 0x4206dab0 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206dab0 esp_ota_check_rollback_is_possible - .text.esp_ota_current_ota_is_workable - 0x4206db6e 0x128 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_mark_app_valid_cancel_rollback - 0x4206dc96 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206dc96 esp_ota_mark_app_valid_cancel_rollback - .text.esp_ota_mark_app_invalid_rollback_and_reboot - 0x4206dca6 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206dca6 esp_ota_mark_app_invalid_rollback_and_reboot - .text.esp_ota_get_state_partition - 0x4206dcb6 0xb8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206dcb6 esp_ota_get_state_partition - .text.esp_ota_begin - 0x4206dd6e 0x124 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x4206dd6e esp_ota_begin - .text.is_partition_encrypted - 0x4206de92 0x4a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.load_partitions - 0x4206dedc 0x1be esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.ensure_partitions_loaded - 0x4206e09a 0x7e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.iterator_create - 0x4206e118 0x3e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_iterator_release - 0x4206e156 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e156 esp_partition_iterator_release - .text.esp_partition_next - 0x4206e168 0xb6 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e168 esp_partition_next - .text.esp_partition_find - 0x4206e21e 0x46 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e21e esp_partition_find - .text.esp_partition_get - 0x4206e264 0x32 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e264 esp_partition_get - .text.esp_partition_find_first - 0x4206e296 0x2c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e296 esp_partition_find_first - .text.esp_partition_verify - 0x4206e2c2 0xaa esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x4206e2c2 esp_partition_verify - .text.esp_partition_write - 0x4206e36c 0x8e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e36c esp_partition_write - .text.esp_partition_read_raw - 0x4206e3fa 0x5a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e3fa esp_partition_read_raw - .text.esp_partition_write_raw - 0x4206e454 0x66 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e454 esp_partition_write_raw - .text.esp_partition_erase_range - 0x4206e4ba 0x7e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e4ba esp_partition_erase_range - .text.esp_partition_mmap - 0x4206e538 0x90 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e538 esp_partition_mmap - .text.esp_partition_munmap - 0x4206e5c8 0xe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e5c8 esp_partition_munmap - .text.esp_partition_read - 0x4206e5d6 0xaa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e5d6 esp_partition_read - .text.esp_partition_is_flash_region_writable - 0x4206e680 0x64 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e680 esp_partition_is_flash_region_writable - .text.esp_partition_main_flash_region_safe - 0x4206e6e4 0x50 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e6e4 esp_partition_main_flash_region_safe - .text.esp_partition_get_main_flash_sector_size - 0x4206e734 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x4206e734 esp_partition_get_main_flash_sector_size - .text.esp_efuse_read_secure_version - 0x4206e738 0x5a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - 0x4206e738 esp_efuse_read_secure_version - .text.esp_efuse_check_secure_version - 0x4206e792 0xc6 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - 0x4206e792 esp_efuse_check_secure_version - .text.bootloader_common_ota_select_crc - 0x4206e858 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206e858 bootloader_common_ota_select_crc - .text.bootloader_common_ota_select_invalid - 0x4206e870 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206e870 bootloader_common_ota_select_invalid - .text.bootloader_common_ota_select_valid - 0x4206e896 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206e896 bootloader_common_ota_select_valid - .text.bootloader_common_check_efuse_blk_validity - 0x4206e8c6 0x110 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206e8c6 bootloader_common_check_efuse_blk_validity - .text.bootloader_common_check_chip_validity - 0x4206e9d6 0x166 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206e9d6 bootloader_common_check_chip_validity - .text.bootloader_common_select_otadata - 0x4206eb3c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206eb3c bootloader_common_select_otadata - .text.bootloader_common_get_active_otadata - 0x4206eb98 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4206eb98 bootloader_common_get_active_otadata - .text.bootloader_init_mem - 0x4206ebcc 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x4206ebcc bootloader_init_mem - .text.bootloader_mmap_get_free_pages - 0x4206ebda 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4206ebda bootloader_mmap_get_free_pages - .text.bootloader_mmap - 0x4206ebea 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4206ebea bootloader_mmap - .text.bootloader_munmap - 0x4206ec8c 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4206ec8c bootloader_munmap - .text.bootloader_flash_read - 0x4206ecb0 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4206ecb0 bootloader_flash_read - .text.bootloader_flash_update_id - 0x4206ecfa 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x4206ecfa bootloader_flash_update_id - .text.bootloader_debug_buffer - 0x4206ed1a 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x4206ed1a bootloader_debug_buffer - .text.should_map - 0x4206ed1c 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_segment_header - 0x4206ed38 0xce esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_appended_hash_and_sig - 0x4206ee06 0x9c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_checksum - 0x4206eea2 0xe8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_image_header - 0x4206ef8a 0xa8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_image_header - 0x4206f032 0x8a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.should_load - 0x4206f0bc 0x4c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segment_data - 0x4206f108 0x100 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segment - 0x4206f208 0x1b4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segments - 0x4206f3bc 0xe0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_simple_hash - 0x4206f49c 0x90 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.image_load - 0x4206f52c 0x140 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify - 0x4206f66c 0xe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - 0x4206f66c esp_image_verify - .text.bootloader_sha256_start - 0x4206f67a 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x4206f67a bootloader_sha256_start - .text.bootloader_sha256_data - 0x4206f6ac 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x4206f6ac bootloader_sha256_data - .text.bootloader_sha256_finish - 0x4206f704 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x4206f704 bootloader_sha256_finish - .text.s_mem_caps_check - 0x4206f776 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_find_available_region - 0x4206f78c 0x3a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_is_enclosed - 0x4206f7c6 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_is_overlapped - 0x4206f7dc 0x22 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_get_bus_mask - 0x4206f7fe 0x58 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_reserve_irom_region - 0x4206f856 0xaa esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.s_reserve_drom_region - 0x4206f900 0xaa esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_init - 0x4206f9aa 0x19c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x4206f9aa esp_mmu_map_init - .text.esp_mmu_map_get_max_consecutive_free_block_size - 0x4206fb46 0x10e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x4206fb46 esp_mmu_map_get_max_consecutive_free_block_size - .text.esp_mmu_map - 0x4206fc54 0x53e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x4206fc54 esp_mmu_map - .text.esp_mmu_unmap - 0x42070192 0x188 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x42070192 esp_mmu_unmap - .text.esp_mmu_vaddr_to_paddr - 0x4207031a 0x106 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x4207031a esp_mmu_vaddr_to_paddr - .text.spi_flash_init_lock - 0x42070420 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x42070420 spi_flash_init_lock - .text.spi_flash_op_lock - 0x42070422 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x42070422 spi_flash_op_lock - .text.spi_flash_op_unlock - 0x42070434 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x42070434 spi_flash_op_unlock - .text.spi_flash_mmap - 0x42070446 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x42070446 spi_flash_mmap - .text.spi_flash_munmap - 0x4207050e 0x6e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x4207050e spi_flash_munmap - .text.spi_flash_mmap_get_free_pages - 0x4207057c 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x4207057c spi_flash_mmap_get_free_pages - .text.spi_flash_cache2phys - 0x420705a0 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x420705a0 spi_flash_cache2phys - .text.esp_mspi_get_io - 0x420705c4 0x9a esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x420705c4 esp_mspi_get_io - .text.esp_mspi_pin_reserve - 0x4207065e 0x5c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x4207065e esp_mspi_pin_reserve - .text.esp_flash_read_chip_id - 0x420706ba 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x420706ba esp_flash_read_chip_id - .text.spimem_flash_ll_get_source_freq_mhz - 0x420706ce 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.esp_flash_init_default_chip - 0x4207070c 0x18e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x4207070c esp_flash_init_default_chip - .text.esp_flash_app_init - 0x4207089a 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x4207089a esp_flash_app_init - .text.esp_flash_app_enable_os_functions - 0x420708c2 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - 0x420708c2 esp_flash_app_enable_os_functions - .text.esp_crosscore_int_init - 0x420708f4 0x66 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x420708f4 esp_crosscore_int_init - .text.esp_vApplicationIdleHook - 0x4207095a 0x46 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x4207095a esp_vApplicationIdleHook - .text.esp_register_freertos_idle_hook_for_cpu - 0x420709a0 0x74 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x420709a0 esp_register_freertos_idle_hook_for_cpu - .text.esp_register_freertos_tick_hook_for_cpu - 0x42070a14 0x74 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x42070a14 esp_register_freertos_tick_hook_for_cpu - .text.esp_register_freertos_tick_hook - 0x42070a88 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x42070a88 esp_register_freertos_tick_hook - .text.esp_int_wdt_init - 0x42070a98 0xc6 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x42070a98 esp_int_wdt_init - .text.esp_int_wdt_cpu_init - 0x42070b5e 0x54 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x42070b5e esp_int_wdt_cpu_init - .text.find_entry_and_check_all_reset - 0x42070bb2 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.find_entry_from_task_handle_and_check_all_reset - 0x42070be2 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timer_feed - 0x42070c14 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.add_entry - 0x42070c40 0x17a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.get_task_affinity - 0x42070dba 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timeout_abort - 0x42070de0 0x9a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42070de0 task_wdt_timeout_abort - .text.task_wdt_timeout_handling - 0x42070e7a 0x50 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_add - 0x42070eca 0x66 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42070eca esp_task_wdt_add - .text.subscribe_idle - 0x42070f30 0xb2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_init - 0x42070fe2 0x144 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42070fe2 esp_task_wdt_init - .text.esp_task_wdt_reset - 0x42071126 0xcc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42071126 esp_task_wdt_reset - .text.idle_hook_cb - 0x420711f2 0x10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_print_triggered_tasks - 0x42071202 0x12a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42071202 esp_task_wdt_print_triggered_tasks - .text.task_wdt_isr - 0x4207132c 0x10a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_impl_timer_allocate - 0x42071436 0xf2 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x42071436 esp_task_wdt_impl_timer_allocate - .text.esp_task_wdt_impl_timer_feed - 0x42071528 0x36 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x42071528 esp_task_wdt_impl_timer_feed - .text.esp_task_wdt_impl_timeout_triggered - 0x4207155e 0x2e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x4207155e esp_task_wdt_impl_timeout_triggered - .text.esp_task_wdt_impl_timer_restart - 0x4207158c 0x40 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x4207158c esp_task_wdt_impl_timer_restart - .text.gpspi_flash_ll_calculate_clock_reg - 0x420715cc 0x2c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spimem_flash_ll_calculate_clock_reg - 0x420715f8 0x2a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.get_flash_clock_divider - 0x42071622 0xa4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spi_flash_cal_clock - 0x420716c6 0x28 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spi_flash_hal_init - 0x420716ee 0x11c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x420716ee spi_flash_hal_init - .text.spi_flash_hal_supports_direct_write - 0x4207180a 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x4207180a spi_flash_hal_supports_direct_write - .text.spi_flash_hal_supports_direct_read - 0x4207181c 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x4207181c spi_flash_hal_supports_direct_read - .text.clk_hal_lp_slow_get_freq_hz - 0x4207182e 0x58 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x4207182e clk_hal_lp_slow_get_freq_hz - .text.clk_hal_xtal_get_freq_mhz - 0x42071886 0x5e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x42071886 clk_hal_xtal_get_freq_mhz - .text.clk_hal_soc_root_get_freq_mhz - 0x420718e4 0x60 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x420718e4 clk_hal_soc_root_get_freq_mhz - .text.clk_hal_cpu_get_freq_hz - 0x42071944 0x72 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x42071944 clk_hal_cpu_get_freq_hz - .text.clk_hal_ahb_get_freq_hz - 0x420719b6 0x28 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_apb_get_freq_hz - 0x420719de 0xe esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x420719de clk_hal_apb_get_freq_hz - .text.uart_ll_get_baudrate - 0x420719ec 0x38 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_sclk - 0x42071a24 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a24 uart_hal_get_sclk - .text.uart_hal_get_baudrate - 0x42071a4a 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a4a uart_hal_get_baudrate - .text.uart_hal_set_stop_bits - 0x42071a64 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a64 uart_hal_set_stop_bits - .text.uart_hal_get_stop_bits - 0x42071a76 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a76 uart_hal_get_stop_bits - .text.uart_hal_set_data_bit_num - 0x42071a82 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a82 uart_hal_set_data_bit_num - .text.uart_hal_get_data_bit_num - 0x42071a92 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a92 uart_hal_get_data_bit_num - .text.uart_hal_set_parity - 0x42071a9e 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071a9e uart_hal_set_parity - .text.uart_hal_get_parity - 0x42071abe 0x1c esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071abe uart_hal_get_parity - .text.uart_hal_set_rxfifo_full_thr - 0x42071ada 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071ada uart_hal_set_rxfifo_full_thr - .text.uart_hal_set_txfifo_empty_thr - 0x42071aec 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071aec uart_hal_set_txfifo_empty_thr - .text.uart_hal_get_symb_len - 0x42071b06 0x3e esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071b06 uart_hal_get_symb_len - .text.uart_hal_set_rx_timeout - 0x42071b44 0x5a esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42071b44 uart_hal_set_rx_timeout - .text.log_buffer_hexdump_line - 0x42071b9e 0xea esp-idf/log/liblog.a(log_buffers.c.obj) - .text.print_buffer - 0x42071c88 0x156 esp-idf/log/liblog.a(log_buffers.c.obj) - .text.esp_log_buffer_hexdump_internal - 0x42071dde 0x18 esp-idf/log/liblog.a(log_buffers.c.obj) - 0x42071dde esp_log_buffer_hexdump_internal - .text.esp_log_util_cvt - 0x42071df6 0xc8 esp-idf/log/liblog.a(util.c.obj) - 0x42071df6 esp_log_util_cvt - .text.esp_log_util_cvt_hex - 0x42071ebe 0x1c esp-idf/log/liblog.a(util.c.obj) - 0x42071ebe esp_log_util_cvt_hex - .text.esp_crypto_sha_aes_lock_acquire - 0x42071eda 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071eda esp_crypto_sha_aes_lock_acquire - .text.esp_crypto_hmac_lock_acquire - 0x42071ef4 0x1e esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071ef4 esp_crypto_hmac_lock_acquire - .text.esp_crypto_sha_aes_lock_release - 0x42071f12 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071f12 esp_crypto_sha_aes_lock_release - .text.esp_crypto_hmac_lock_release - 0x42071f2c 0x1e esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071f2c esp_crypto_hmac_lock_release - .text.esp_crypto_mpi_lock_acquire - 0x42071f4a 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071f4a esp_crypto_mpi_lock_acquire - .text.esp_crypto_ds_lock_acquire - 0x42071f64 0x22 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071f64 esp_crypto_ds_lock_acquire - .text.esp_crypto_mpi_lock_release - 0x42071f86 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071f86 esp_crypto_mpi_lock_release - .text.esp_crypto_ds_lock_release - 0x42071fa0 0x22 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42071fa0 esp_crypto_ds_lock_release - .text.esp_cpu_configure_region_protection - 0x42071fc2 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - 0x42071fc2 esp_cpu_configure_region_protection - .text.periph_rtc_dig_clk8m_disable - 0x420720c2 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - 0x420720c2 periph_rtc_dig_clk8m_disable - .text.esp_fill_random - 0x4207212c 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - 0x4207212c esp_fill_random - .text.get_idx 0x42072196 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.generate_mac - 0x420721f2 0x13c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_efuse_factory_mac - 0x4207232e 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_efuse_mac_custom - 0x4207237c 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_mac_addr_from_mac_table - 0x42072424 0xea esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_efuse_mac_get_default - 0x4207250e 0xe esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - 0x4207250e esp_efuse_mac_get_default - .text.esp_read_mac - 0x4207251c 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - 0x4207251c esp_read_mac - .text.esp_gpio_reserve - 0x4207262c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - 0x4207262c esp_gpio_reserve - .text.temperature_sensor_get_raw_value - 0x42072648 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text.temperature_sensor_ll_set_range - 0x420726f4 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text.temperature_sensor_power_acquire - 0x42072716 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x42072716 temperature_sensor_power_acquire - .text.temperature_sensor_power_release - 0x42072798 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x42072798 temperature_sensor_power_release - .text.temp_sensor_get_raw_value - 0x4207284c 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x4207284c temp_sensor_get_raw_value - .text.esp_clk_tree_src_get_freq_hz - 0x4207295e 0x1a8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - 0x4207295e esp_clk_tree_src_get_freq_hz - .text.esp_clk_tree_enable_src - 0x42072b06 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - 0x42072b06 esp_clk_tree_enable_src - .text.adc_calc_hw_calibration_code - 0x42072b0a 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x42072b0a adc_calc_hw_calibration_code - .text.adc2_wifi_acquire - 0x42072ba8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x42072ba8 adc2_wifi_acquire - .text.adc2_wifi_release - 0x42072bac 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x42072bac adc2_wifi_release - .text.adc_apb_periph_claim - 0x42072bb0 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x42072bb0 adc_apb_periph_claim - .text.adc_apb_periph_free - 0x42072c1e 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x42072c1e adc_apb_periph_free - .text.init_timer_task - 0x42072cbc 0xac esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.timer_process_alarm - 0x42072d68 0x16c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.timer_task - 0x42072ed4 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.deinit_timer_task - 0x42072eee 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_create - 0x42072f12 0x8a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x42072f12 esp_timer_create - .text.esp_timer_delete - 0x42072f9c 0x8a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x42072f9c esp_timer_delete - .text.esp_timer_init - 0x42073026 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x42073026 esp_timer_init - .text.__esp_system_init_fn_esp_timer_init_os - 0x4207307e 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.ets_timer_setfn - 0x4207308c 0x8c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x4207308c os_timer_setfn - 0x4207308c ets_timer_setfn - .text.ets_timer_done - 0x42073118 0x2a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x42073118 ets_timer_done - 0x42073118 os_timer_done - .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ - 0x42073142 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ - 0x42073152 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE - 0x42073160 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ - 0x42073190 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ - 0x420731a0 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj - 0x420731ae 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL24lookup_storage_from_namePKc - 0x4207323a 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ - 0x42073254 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag - 0x4207327a 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ - 0x420732a6 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t - 0x420732b6 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN14NVSHandleEntryD2Ev - 0x420732e0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420732e0 NVSHandleEntry::~NVSHandleEntry() - 0x420732e0 NVSHandleEntry::~NVSHandleEntry() - .text.nvs_flash_init_partition - 0x420732f4 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420732f4 nvs_flash_init_partition - .text.nvs_flash_init - 0x42073334 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073334 nvs_flash_init - .text.nvs_erase_key - 0x4207334a 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4207334a nvs_erase_key - .text.nvs_commit - 0x42073386 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073386 nvs_commit - .text.nvs_set_blob - 0x420733ba 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420733ba nvs_set_blob - .text.nvs_get_str - 0x42073406 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073406 nvs_get_str - .text.nvs_get_blob - 0x4207341e 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4207341e nvs_get_blob - .text.nvs_entry_find - 0x42073436 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073436 nvs_entry_find - .text.nvs_entry_next - 0x420734d8 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420734d8 nvs_entry_next - .text.nvs_entry_info - 0x42073520 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073520 nvs_entry_info - .text.nvs_release_iterator - 0x4207356c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4207356c nvs_release_iterator - .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE - 0x4207357e 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4207357e intrusive_list::erase(intrusive_list::iterator) - .text._ZL24close_handles_and_deinitPKc - 0x4207359a 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_erase_partition - 0x420735e8 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420735e8 nvs_flash_erase_partition - .text.nvs_flash_erase - 0x42073646 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073646 nvs_flash_erase - .text.nvs_flash_deinit_partition - 0x4207365c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4207365c nvs_flash_deinit_partition - .text.nvs_flash_deinit - 0x42073698 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073698 nvs_flash_deinit - .text.nvs_close - 0x420736ae 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420736ae nvs_close - .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ - 0x42073704 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073704 intrusive_list::push_back(NVSHandleEntry*) - .text.nvs_open_from_partition - 0x42073724 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073724 nvs_open_from_partition - .text.nvs_open - 0x420737ca 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420737ca nvs_open - .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ - 0x420737e6 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420737e6 int nvs::NVSHandle::set_item(char const*, signed char) - .text._Z7nvs_setIaEimPKcT_ - 0x42073804 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i8 - 0x42073848 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073848 nvs_set_i8 - .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ - 0x42073856 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073856 int nvs::NVSHandle::set_item(char const*, unsigned char) - .text._Z7nvs_setIhEimPKcT_ - 0x42073874 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u8 - 0x420738b8 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420738b8 nvs_set_u8 - .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ - 0x420738c6 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420738c6 int nvs::NVSHandle::set_item(char const*, unsigned short) - .text._Z7nvs_setItEimPKcT_ - 0x420738e4 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u16 - 0x42073928 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073928 nvs_set_u16 - .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ - 0x42073936 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073936 int nvs::NVSHandle::set_item(char const*, unsigned long) - .text._Z7nvs_setImEimPKcT_ - 0x42073950 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u32 - 0x42073994 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073994 nvs_set_u32 - .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ - 0x420739a2 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420739a2 int nvs::NVSHandle::get_item(char const*, signed char&) - .text._Z7nvs_getIaEimPKcPT_ - 0x420739ba 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i8 - 0x420739fe 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x420739fe nvs_get_i8 - .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ - 0x42073a0c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073a0c int nvs::NVSHandle::get_item(char const*, unsigned char&) - .text._Z7nvs_getIhEimPKcPT_ - 0x42073a24 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u8 - 0x42073a68 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073a68 nvs_get_u8 - .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ - 0x42073a76 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073a76 int nvs::NVSHandle::get_item(char const*, unsigned short&) - .text._Z7nvs_getItEimPKcPT_ - 0x42073a8e 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u16 - 0x42073ad2 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073ad2 nvs_get_u16 - .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ - 0x42073ae0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073ae0 int nvs::NVSHandle::get_item(char const*, unsigned long&) - .text._Z7nvs_getImEimPKcPT_ - 0x42073af8 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u32 - 0x42073b3c 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42073b3c nvs_get_u32 - .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ - 0x42073b4a 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ - 0x42073b94 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ - 0x42073bde 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag - 0x42073c3e 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ - 0x42073c6e 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ - 0x42073cf2 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag - 0x42073d48 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ - 0x42073d78 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag - 0x42073dfc 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ - 0x42073e34 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs4Item6getKeyEPcj - 0x42073e44 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42073e44 nvs::Item::getKey(char*, unsigned int) - .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE - 0x42073e7a 0x9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42073e7a nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) - .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE - 0x42073f14 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42073f14 nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) - .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj - 0x42073f7e 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42073f7e nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) - .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE - 0x4207405e 0x134 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207405e nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) - .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj - 0x42074192 0x11c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074192 nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) - .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj - 0x420742ae 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420742ae nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) - .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc - 0x4207433c 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207433c nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) - .text._ZN3nvs7Storage14eraseNamespaceEh - 0x420743ca 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420743ca nvs::Storage::eraseNamespace(unsigned char) - .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE - 0x42074418 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074418 nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) - .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj - 0x42074458 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074458 nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) - .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj - 0x420744d6 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420744d6 nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) - .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t - 0x4207454c 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207454c nvs::Storage::fillEntryInfo(nvs::Item&, nvs_entry_info_t&) - .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t - 0x420745a8 0xaa esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420745a8 nvs::Storage::nextEntry(nvs_opaque_iterator_t*) - .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ - 0x42074652 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074652 intrusive_list::push_back(nvs::Storage::BlobIndexNode*) - .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE - 0x42074672 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074672 nvs::Storage::populateBlobIndices(intrusive_list&) - .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE - 0x42074714 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074714 intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE - 0x42074730 0x11a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074730 nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) - .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb - 0x4207484a 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207484a CompressedEnumTable::set(unsigned int, bool) - .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ - 0x4207487a 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207487a intrusive_list::push_back(nvs::Storage::NamespaceEntry*) - .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv - 0x4207489a 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207489a intrusive_list::clearAndFreeNodes() - .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ - 0x420748c8 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420748c8 intrusive_list::push_back(nvs::Storage::UsedPageNode*) - .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ - 0x420748e8 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420748e8 std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const - .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev - 0x4207492a 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x4207492a std::unique_ptr >::~unique_ptr() - 0x4207492a std::unique_ptr >::~unique_ptr() - .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE - 0x42074946 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074946 intrusive_list::erase(intrusive_list::iterator) - .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv - 0x42074962 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074962 intrusive_list::clearAndFreeNodes() - .text._ZN3nvs7Storage15clearNamespacesEv - 0x42074990 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074990 nvs::Storage::clearNamespaces() - .text._ZN3nvs7StorageD2Ev - 0x420749a2 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420749a2 nvs::Storage::~Storage() - 0x420749a2 nvs::Storage::~Storage() - .text._ZN3nvs7Storage4initEmm - 0x420749be 0x13a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x420749be nvs::Storage::init(unsigned long, unsigned long) - .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE - 0x42074af8 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074af8 intrusive_list::erase(intrusive_list::iterator) - .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv - 0x42074b14 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074b14 intrusive_list::clearAndFreeNodes() - .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE - 0x42074b42 0x1ec esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074b42 nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) - .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj - 0x42074d2e 0x242 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074d2e nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) - .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh - 0x42074f70 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42074f70 nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) - .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc - 0x42075078 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42075078 nvs::Storage::findEntry(nvs_opaque_iterator_t*, char const*) - .text._ZN3nvs15NVSHandleSimple6commitEv - 0x420750b8 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420750b8 nvs::NVSHandleSimple::commit() - .text._ZN3nvs15NVSHandleSimpleD2Ev - 0x420750ca 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420750ca nvs::NVSHandleSimple::~NVSHandleSimple() - 0x420750ca nvs::NVSHandleSimple::~NVSHandleSimple() - .text._ZN3nvs15NVSHandleSimpleD0Ev - 0x420750f4 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420750f4 nvs::NVSHandleSimple::~NVSHandleSimple() - .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj - 0x42075112 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075112 nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) - .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj - 0x4207514a 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x4207514a nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) - .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj - 0x42075184 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075184 nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) - .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj - 0x420751ae 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420751ae nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) - .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj - 0x420751da 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420751da nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) - .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ - 0x42075206 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075206 nvs::NVSHandleSimple::set_string(char const*, char const*) - .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj - 0x42075266 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075266 nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) - .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t - 0x4207528e 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x4207528e nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) - .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc - 0x420752e0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x420752e0 nvs::NVSHandleSimple::erase_item(char const*) - .text._ZN3nvs15NVSHandleSimple9erase_allEv - 0x42075316 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075316 nvs::NVSHandleSimple::erase_all() - .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj - 0x42075346 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x42075346 nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) - .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv - 0x4207537a 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x4207537a nvs::NVSHandleSimple::get_partition_name() const - .text._ZN3nvs12NVSPartitionD2Ev - 0x4207538e 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x4207538e nvs::NVSPartition::~NVSPartition() - 0x4207538e nvs::NVSPartition::~NVSPartition() - .text._ZN3nvs12NVSPartition18get_partition_nameEv - 0x420753a4 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753a4 nvs::NVSPartition::get_partition_name() - .text._ZN3nvs12NVSPartition11get_addressEv - 0x420753aa 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753aa nvs::NVSPartition::get_address() - .text._ZN3nvs12NVSPartition8get_sizeEv - 0x420753b0 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753b0 nvs::NVSPartition::get_size() - .text._ZN3nvs12NVSPartition12get_readonlyEv - 0x420753b6 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753b6 nvs::NVSPartition::get_readonly() - .text._ZN3nvs12NVSPartition8read_rawEjPvj - 0x420753be 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753be nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) - .text._ZN3nvs12NVSPartition4readEjPvj - 0x420753ce 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753ce nvs::NVSPartition::read(unsigned int, void*, unsigned int) - .text._ZN3nvs12NVSPartition9write_rawEjPKvj - 0x420753ea 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753ea nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) - .text._ZN3nvs12NVSPartition5writeEjPKvj - 0x420753fa 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420753fa nvs::NVSPartition::write(unsigned int, void const*, unsigned int) - .text._ZN3nvs12NVSPartition11erase_rangeEjj - 0x42075416 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42075416 nvs::NVSPartition::erase_range(unsigned int, unsigned int) - .text._ZN3nvs12NVSPartitionD0Ev - 0x42075426 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42075426 nvs::NVSPartition::~NVSPartition() - .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t - 0x4207544c 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x4207544c nvs::NVSPartition::NVSPartition(esp_partition_t const*) - 0x4207544c nvs::NVSPartition::NVSPartition(esp_partition_t const*) - .text._ZN3nvs19NVSPartitionManagerD2Ev - 0x4207547e 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207547e nvs::NVSPartitionManager::~NVSPartitionManager() - 0x4207547e nvs::NVSPartitionManager::~NVSPartitionManager() - .text._ZN3nvs19NVSPartitionManagerD0Ev - 0x4207548a 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207548a nvs::NVSPartitionManager::~NVSPartitionManager() - .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ - 0x420754a6 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag - 0x420754cc 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ - 0x420754f8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs7StorageC2EPNS_9PartitionE - 0x42075508 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42075508 nvs::Storage::Storage(nvs::Partition*) - 0x42075508 nvs::Storage::Storage(nvs::Partition*) - .text._ZN3nvs19NVSPartitionManager12get_instanceEv - 0x42075552 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42075552 nvs::NVSPartitionManager::get_instance() - .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc - 0x420755b4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420755b4 nvs::NVSPartitionManager::lookup_storage_from_name(char const*) - .text._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ - 0x420755c8 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420755c8 intrusive_list::push_back(nvs::NVSPartition*) - .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE - 0x420755e8 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420755e8 intrusive_list::erase(intrusive_list::iterator) - .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ - 0x42075604 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42075604 intrusive_list::push_back(nvs::Storage*) - .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm - 0x42075624 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42075624 nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) - .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc - 0x420756d4 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420756d4 nvs::NVSPartitionManager::init_partition(char const*) - .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE - 0x4207575e 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207575e intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE - 0x4207577a 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207577a nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) - .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE - 0x420757a4 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420757a4 intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc - 0x420757c0 0x9c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x420757c0 nvs::NVSPartitionManager::deinit_partition(char const*) - .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ - 0x4207585c 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207585c intrusive_list::push_back(nvs::NVSHandleSimple*) - .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE - 0x4207587c 0xd6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4207587c nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) - .text._ZN3nvs4LockC2Ev - 0x42075952 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x42075952 nvs::Lock::Lock() - 0x42075952 nvs::Lock::Lock() - .text._ZN3nvs4LockD2Ev - 0x4207596c 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x4207596c nvs::Lock::~Lock() - 0x4207596c nvs::Lock::~Lock() - .text._ZN3nvs4Lock4initEv - 0x42075986 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x42075986 nvs::Lock::init() - .text._ZN3nvs8HashListC2Ev - 0x4207598a 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4207598a nvs::HashList::HashList() - 0x4207598a nvs::HashList::HashList() - .text._ZN3nvs8HashList13HashListBlockC2Ev - 0x42075998 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075998 nvs::HashList::HashListBlock::HashListBlock() - 0x42075998 nvs::HashList::HashListBlock::HashListBlock() - .text._ZN3nvs8HashList4findEjRKNS_4ItemE - 0x420759c2 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x420759c2 nvs::HashList::find(unsigned int, nvs::Item const&) - .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE - 0x42075a26 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075a26 intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs8HashList5clearEv - 0x42075a42 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075a42 nvs::HashList::clear() - .text._ZN3nvs8HashListD2Ev - 0x42075a76 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075a76 nvs::HashList::~HashList() - 0x42075a76 nvs::HashList::~HashList() - .text._ZN3nvs8HashList5eraseEj - 0x42075a84 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075a84 nvs::HashList::erase(unsigned int) - .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ - 0x42075b26 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075b26 intrusive_list::push_back(nvs::HashList::HashListBlock*) - .text._ZN3nvs8HashList6insertERKNS_4ItemEj - 0x42075b46 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x42075b46 nvs::HashList::insert(nvs::Item const&, unsigned int) - .text._ZSt9__find_ifIPmN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEPNS4_9PartitionEmEUlmE_EEET_SA_SA_T0_St26random_access_iterator_tag - 0x42075bdc 0x86 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._Z41__static_initialization_and_destruction_0v - 0x42075c62 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch - 0x42075c78 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075c78 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) - 0x42075c78 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) - .text._ZN3nvs4PageC2Ev - 0x42075cd8 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075cd8 nvs::Page::Page() - 0x42075cd8 nvs::Page::Page() - .text._ZN3nvs4Page6Header14calculateCrc32Ev - 0x42075d1a 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075d1a nvs::Page::Header::calculateCrc32() - .text._ZN3nvs4Page20updateFirstUsedEntryEjj - 0x42075d34 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075d34 nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) - .text._ZN3nvs4Page10initializeEv - 0x42075d8a 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075d8a nvs::Page::initialize() - .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE - 0x42075e08 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075e08 nvs::Page::alterPageState(nvs::Page::PageState) - .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE - 0x42075e38 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075e38 nvs::Page::readEntry(unsigned int, nvs::Item&) const - .text._ZNK3nvs4Page12getSeqNumberERm - 0x42075e64 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075e64 nvs::Page::getSeqNumber(unsigned long&) const - .text._ZN3nvs4Page12setSeqNumberEm - 0x42075e8e 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075e8e nvs::Page::setSeqNumber(unsigned long) - .text._ZN3nvs4Page5eraseEv - 0x42075ea4 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075ea4 nvs::Page::erase() - .text._ZN3nvs4Page11markFreeingEv - 0x42075eee 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075eee nvs::Page::markFreeing() - .text._ZN3nvs4Page8markFullEv - 0x42075f14 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075f14 nvs::Page::markFull() - .text._ZNK3nvs4Page18getVarDataTailroomEv - 0x42075f34 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075f34 nvs::Page::getVarDataTailroom() const - .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ - 0x42075f66 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075f66 CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE - 0x42075f98 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075f98 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page10writeEntryERKNS_4ItemE - 0x42075fee 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42075fee nvs::Page::writeEntry(nvs::Item const&) - .text._ZN3nvs4Page9copyItemsERS0_ - 0x42076056 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076056 nvs::Page::copyItems(nvs::Page&) - .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE - 0x42076126 0x9c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076126 nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page14writeEntryDataEPKhj - 0x420761c2 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420761c2 nvs::Page::writeEntryData(unsigned char const*, unsigned int) - .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh - 0x42076254 0x22a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076254 nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) - .text._ZN3nvs4Page17eraseEntryAndSpanEj - 0x4207647e 0x140 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x4207647e nvs::Page::eraseEntryAndSpan(unsigned int) - .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE - 0x420765be 0x246 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420765be nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE - 0x42076804 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076804 nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE - 0x42076904 0xfa esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076904 nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x420769fe 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420769fe nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page15mLoadEntryTableEv - 0x42076a28 0x3ca esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076a28 nvs::Page::mLoadEntryTable() - .text._ZN3nvs4Page4loadEPNS_9PartitionEm - 0x42076df2 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42076df2 nvs::Page::load(nvs::Partition*, unsigned long) - .text._GLOBAL__sub_I__ZN3nvs4PageC2Ev - 0x42076f3a 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ - 0x42076f48 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag - 0x42076f70 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ - 0x42076f9c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ - 0x42076fac 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42076fac intrusive_list::push_back(nvs::Page*) - .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE - 0x42076fcc 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42076fcc intrusive_list::erase(intrusive_list::iterator) - .text._ZN14intrusive_listIN3nvs4PageEE5clearEv - 0x42076fe8 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42076fe8 intrusive_list::clear() - .text._ZN3nvs11PageManager12activatePageEv - 0x42077004 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42077004 nvs::PageManager::activatePage() - .text._ZN3nvs11PageManager14requestNewPageEv - 0x4207705a 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4207705a nvs::PageManager::requestNewPage() - .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ - 0x42077122 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42077122 intrusive_list::push_front(nvs::Page*) - .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ - 0x42077140 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x42077140 intrusive_list::insert(intrusive_list::iterator, nvs::Page*) - .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm - 0x4207716e 0x25e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4207716e nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) - .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE - 0x420773cc 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - 0x420773cc nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) - .text._ZNK3nvs4Item14calculateCrc32Ev - 0x42077426 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x42077426 nvs::Item::calculateCrc32() const - .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv - 0x42077460 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x42077460 nvs::Item::calculateCrc32WithoutValue() const - .text._ZN3nvs4Item14calculateCrc32EPKhj - 0x4207749a 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x4207749a nvs::Item::calculateCrc32(unsigned char const*, unsigned int) - .text._ZNK3nvs4Item22checkHeaderConsistencyEh - 0x420774b2 0x132 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x420774b2 nvs::Item::checkHeaderConsistency(unsigned char) const - .text.rmt_is_channel_number_valid - 0x420775e4 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_ll_rx_set_channel_clock_div - 0x420775f8 0x5e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_ll_tx_set_channel_clock_div - 0x42077656 0x64 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_ll_tx_set_carrier_high_low_ticks - 0x420776ba 0x80 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_ll_set_group_clock_src - 0x4207773a 0xde esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_ll_rx_set_carrier_high_low_ticks - 0x42077818 0x74 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_module_enable - 0x4207788c 0xa0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_internal_config - 0x4207792c 0x52a esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.rmt_tx_start - 0x42077e56 0x134 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x42077e56 rmt_tx_start - .text.rmt_set_tx_thr_intr_en - 0x42077f8a 0x16c esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x42077f8a rmt_set_tx_thr_intr_en - .text.rmt_set_gpio - 0x420780f6 0x1d6 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x420780f6 rmt_set_gpio - .text.rmt_config - 0x420782cc 0xae esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x420782cc rmt_config - .text.rmt_isr_register - 0x4207837a 0x9e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x4207837a rmt_isr_register - .text.rmt_driver_install - 0x42078418 0x22c esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x42078418 rmt_driver_install - .text.rmt_wait_tx_done - 0x42078644 0x106 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x42078644 rmt_wait_tx_done - .text.rmt_translator_init - 0x4207874a 0x188 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x4207874a rmt_translator_init - .text.rmt_write_sample - 0x420788d2 0x22c esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x420788d2 rmt_write_sample - .text.rmt_get_counter_clock - 0x42078afe 0x124 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - 0x42078afe rmt_get_counter_clock - .text.check_rmt_legacy_driver_conflict - 0x42078c22 0x6e esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .text.phy_digital_regs_load - 0x42078c90 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.phy_digital_regs_store - 0x42078cb8 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.load_cal_data_from_nvs_handle - 0x42078ce0 0x17e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.store_cal_data_to_nvs_handle - 0x42078e5e 0x164 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .text.esp_phy_disable - 0x42078fc2 0x5a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x42078fc2 esp_phy_disable - .text.esp_wifi_bt_power_domain_off - 0x4207901c 0x5e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x4207901c esp_wifi_bt_power_domain_off - 0x4207901c esp_wifi_power_domain_off - .text.esp_phy_modem_init - 0x4207907a 0x5e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x4207907a esp_phy_modem_init - .text.esp_phy_modem_deinit - 0x420790d8 0x64 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x420790d8 esp_phy_modem_deinit - .text.esp_phy_get_init_data - 0x4207913c 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x4207913c esp_phy_get_init_data - .text.esp_phy_load_cal_data_from_nvs - 0x42079146 0x78 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x42079146 esp_phy_load_cal_data_from_nvs - .text.esp_phy_store_cal_data_to_nvs - 0x420791be 0x3c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x420791be esp_phy_store_cal_data_to_nvs - .text.esp_phy_load_cal_and_init - 0x420791fa 0x244 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x420791fa esp_phy_load_cal_and_init - .text.esp_phy_enable - 0x4207943e 0x7a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x4207943e esp_phy_enable - .text.esp_phy_update_country_info - 0x420794b8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x420794b8 esp_phy_update_country_info - .text.phy_get_lock - 0x420794bc 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - 0x420794bc phy_get_lock - .text.phy_enabled_modem_contains - 0x420794c6 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x420794c6 phy_enabled_modem_contains - .text.phy_track_pll_internal - 0x420794d6 0x6c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_track_pll_timer_callback - 0x42079542 0x2e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_track_pll - 0x42079570 0x98 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42079570 phy_track_pll - .text.phy_track_pll_init - 0x42079608 0x9c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42079608 phy_track_pll_init - .text.phy_track_pll_deinit - 0x420796a4 0x72 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x420796a4 phy_track_pll_deinit - .text.phy_set_modem_flag - 0x42079716 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42079716 phy_set_modem_flag - .text.phy_clr_modem_flag - 0x4207972a 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x4207972a phy_clr_modem_flag - .text.phy_get_modem_flag - 0x4207973e 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x4207973e phy_get_modem_flag - .text.phy_ant_clr_update_flag - 0x42079748 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42079748 phy_ant_clr_update_flag - .text.phy_ant_update - 0x42079752 0x8c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42079752 phy_ant_update - .text.do_init 0x420797de 0xe esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.do_setoperatingmode - 0x420797ec 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.do_setservername - 0x420797fe 0x16 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_sync_time - 0x42079814 0x114 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x42079814 sntp_sync_time - .text.sntp_set_time_sync_notification_cb - 0x42079928 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x42079928 sntp_set_time_sync_notification_cb - .text.sntp_get_sync_interval - 0x42079932 0x6 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x42079932 sntp_get_sync_interval - .text.sntp_set_system_time - 0x42079938 0x16 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x42079938 sntp_set_system_time - .text.esp_sntp_setoperatingmode - 0x4207994e 0x18 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207994e esp_sntp_setoperatingmode - .text.esp_sntp_init - 0x42079966 0x18 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x42079966 esp_sntp_init - .text.esp_sntp_setservername - 0x4207997e 0x22 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207997e esp_sntp_setservername - .text.esp_sntp_enabled - 0x420799a0 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x420799a0 esp_sntp_enabled - .text.tryget_socket_unconn_nouse - 0x420799b2 0x22 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_poll_should_wake - 0x420799d4 0x46 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.free_socket_locked - 0x42079a1a 0x66 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.sock_inc_used_locked - 0x42079a80 0x9a esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.tryget_socket_unconn_locked - 0x42079b1a 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_sockopt_to_ipopt - 0x42079b44 0x44 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.sock_inc_used - 0x42079b88 0x80 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.tryget_socket_unconn - 0x42079c08 0x22 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.alloc_socket - 0x42079c2a 0x108 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_select_inc_sockets_used_set - 0x42079d32 0x92 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_select_inc_sockets_used - 0x42079dc4 0x50 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_link_select_cb - 0x42079e14 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_unlink_select_cb - 0x42079e50 0x9a esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.sockaddr_to_ipaddr_port - 0x42079eea 0x8c esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_sock_make_addr - 0x42079f76 0x13e esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_recv_tcp_from - 0x4207a0b4 0x54 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.free_socket_free_elements - 0x4207a108 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.free_socket - 0x4207a132 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.done_socket - 0x4207a174 0xbc esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.tryget_socket - 0x4207a230 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.get_socket - 0x4207a250 0x22 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_selscan - 0x4207a272 0x23e esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_select_dec_sockets_used - 0x4207a4b0 0x7a esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_getaddrname - 0x4207a52a 0x112 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_register_membership - 0x4207a63c 0x74 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_unregister_membership - 0x4207a6b0 0x98 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_register_mld6_membership - 0x4207a748 0x88 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_unregister_mld6_membership - 0x4207a7d0 0x110 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_drop_registered_memberships - 0x4207a8e0 0x94 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_socket_drop_registered_mld6_memberships - 0x4207a974 0xa0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_recv_tcp - 0x4207aa14 0x1f0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_recvfrom_udp_raw - 0x4207ac04 0x132 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.select_check_waiters - 0x4207ad36 0x130 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.event_callback - 0x4207ae66 0x126 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_getsockopt_impl - 0x4207af8c 0x5c2 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_getsockopt_callback - 0x4207b54e 0x50 esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_setsockopt_impl - 0x4207b59e 0x7ae esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_setsockopt_callback - 0x4207bd4c 0x4e esp-idf/lwip/liblwip.a(sockets.c.obj) - .text.lwip_accept - 0x4207bd9a 0x220 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207bd9a lwip_accept - .text.lwip_bind - 0x4207bfba 0x116 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207bfba lwip_bind - .text.lwip_close - 0x4207c0d0 0xa0 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c0d0 lwip_close - .text.lwip_connect - 0x4207c170 0x126 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c170 lwip_connect - .text.lwip_listen - 0x4207c296 0x88 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c296 lwip_listen - .text.lwip_recvfrom - 0x4207c31e 0x102 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c31e lwip_recvfrom - .text.lwip_read - 0x4207c420 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c420 lwip_read - .text.lwip_recv - 0x4207c434 0x12 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c434 lwip_recv - .text.lwip_sendto - 0x4207c446 0x1a4 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c446 lwip_sendto - .text.lwip_send - 0x4207c5ea 0x9e esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c5ea lwip_send - .text.lwip_socket - 0x4207c688 0xfe esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c688 lwip_socket - .text.lwip_write - 0x4207c786 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c786 lwip_write - .text.lwip_select - 0x4207c796 0x3aa esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207c796 lwip_select - .text.lwip_shutdown - 0x4207cb40 0xb8 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cb40 lwip_shutdown - .text.lwip_getpeername - 0x4207cbf8 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cbf8 lwip_getpeername - .text.lwip_getsockname - 0x4207cc08 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cc08 lwip_getsockname - .text.lwip_getsockopt - 0x4207cc18 0xba esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cc18 lwip_getsockopt - .text.lwip_setsockopt - 0x4207ccd2 0xb2 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207ccd2 lwip_setsockopt - .text.lwip_ioctl - 0x4207cd84 0x72 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cd84 lwip_ioctl - .text.lwip_fcntl - 0x4207cdf6 0xd2 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cdf6 lwip_fcntl - .text.lwip_inet_ntop - 0x4207cec8 0x64 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cec8 lwip_inet_ntop - .text.lwip_inet_pton - 0x4207cf2c 0x56 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x4207cf2c lwip_inet_pton - .text.tcpip_timeouts_mbox_fetch - 0x4207cf82 0x48 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_thread_handle_msg - 0x4207cfca 0xba esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_thread - 0x4207d084 0x5a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .text.tcpip_inpkt - 0x4207d0de 0x86 esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d0de tcpip_inpkt - .text.tcpip_input - 0x4207d164 0x2c esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d164 tcpip_input - .text.tcpip_callback - 0x4207d190 0x68 esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d190 tcpip_callback - .text.tcpip_try_callback - 0x4207d1f8 0x7c esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d1f8 tcpip_try_callback - .text.tcpip_send_msg_wait_sem - 0x4207d274 0x86 esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d274 tcpip_send_msg_wait_sem - .text.tcpip_api_call - 0x4207d2fa 0x66 esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d2fa tcpip_api_call - .text.tcpip_init - 0x4207d360 0x7e esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x4207d360 tcpip_init - .text.sntp_retry - 0x4207d3de 0x60 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_initialize_request - 0x4207d43e 0x26 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_send_request - 0x4207d464 0xbe esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_request - 0x4207d522 0xce esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_dns_found - 0x4207d5f0 0x42 esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_process - 0x4207d632 0x3a esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_recv - 0x4207d66c 0xfe esp-idf/lwip/liblwip.a(sntp.c.obj) - .text.sntp_init - 0x4207d76a 0xce esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207d76a sntp_init - .text.sntp_enabled - 0x4207d838 0xe esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207d838 sntp_enabled - .text.sntp_setoperatingmode - 0x4207d846 0x6a esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207d846 sntp_setoperatingmode - .text.sntp_setservername - 0x4207d8b0 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - 0x4207d8b0 sntp_setservername - .text.lwip_htons - 0x4207d8c2 0xe esp-idf/lwip/liblwip.a(def.c.obj) - 0x4207d8c2 lwip_htons - .text.lwip_htonl - 0x4207d8d0 0x24 esp-idf/lwip/liblwip.a(def.c.obj) - 0x4207d8d0 lwip_htonl - .text.lwip_strnicmp - 0x4207d8f4 0x42 esp-idf/lwip/liblwip.a(def.c.obj) - 0x4207d8f4 lwip_strnicmp - .text.dns_backupserver_available - 0x4207d936 0xbe esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_server_is_set - 0x4207d9f4 0x94 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_call_found - 0x4207da88 0x21c esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_correct_response - 0x4207dca4 0x12a esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_create_txid - 0x4207ddce 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_send - 0x4207de2c 0x33a esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_check_entry - 0x4207e166 0x3f8 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_check_entries - 0x4207e55e 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_lookup - 0x4207e582 0x1ae esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_alloc_random_port - 0x4207e730 0x68 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_alloc_pcb - 0x4207e798 0xa4 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_enqueue - 0x4207e83c 0x280 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_compare_name - 0x4207eabc 0x102 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_skip_name - 0x4207ebbe 0x8c esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_recv - 0x4207ec4a 0x592 esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_init - 0x4207f1dc 0x2 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x4207f1dc dns_init - .text.dns_setserver - 0x4207f1de 0x74 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x4207f1de dns_setserver - .text.dns_tmr 0x4207f252 0x68 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x4207f252 dns_tmr - .text.dns_timeout_cb - 0x4207f2ba 0xe esp-idf/lwip/liblwip.a(dns.c.obj) - .text.dns_gethostbyname_addrtype - 0x4207f2c8 0x168 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x4207f2c8 dns_gethostbyname_addrtype - .text.dns_gethostbyname - 0x4207f430 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x4207f430 dns_gethostbyname - .text.lwip_init - 0x4207f440 0x2a esp-idf/lwip/liblwip.a(init.c.obj) - 0x4207f440 lwip_init - .text.ipaddr_aton - 0x4207f46a 0x40 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x4207f46a ipaddr_aton - .text.ip_input - 0x4207f4aa 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x4207f4aa ip_input - .text.mem_init - 0x4207f4d2 0x2 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x4207f4d2 mem_init - .text.mem_trim - 0x4207f4d4 0x2 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x4207f4d4 mem_trim - .text.mem_malloc - 0x4207f4d6 0x54 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x4207f4d6 mem_malloc - .text.mem_free - 0x4207f52a 0x66 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x4207f52a mem_free - .text.mem_calloc - 0x4207f590 0x12 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x4207f590 mem_calloc - .text.do_memp_malloc_pool - 0x4207f5a2 0x98 esp-idf/lwip/liblwip.a(memp.c.obj) - .text.do_memp_free_pool - 0x4207f63a 0x6a esp-idf/lwip/liblwip.a(memp.c.obj) - .text.memp_init - 0x4207f6a4 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x4207f6a4 memp_init - .text.memp_malloc - 0x4207f6b6 0x26 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x4207f6b6 memp_malloc - .text.memp_free - 0x4207f6dc 0x24 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x4207f6dc memp_free - .text.netif_null_output_ip6 - 0x4207f700 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_null_output_ip4 - 0x4207f704 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_loopif_init - 0x4207f708 0x5a esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_do_set_netmask - 0x4207f762 0x88 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_do_set_gw - 0x4207f7ea 0x88 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_do_ip_addr_changed - 0x4207f872 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_issue_reports - 0x4207f89c 0x6e esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_do_set_ipaddr - 0x4207f90a 0xe4 esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_poll - 0x4207f9ee 0x122 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207f9ee netif_poll - .text.netif_set_default - 0x4207fb10 0xa esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fb10 netif_set_default - .text.netif_loop_output - 0x4207fb1a 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fb1a netif_loop_output - .text.netif_loop_output_ipv6 - 0x4207fc5a 0xe esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_loop_output_ipv4 - 0x4207fc68 0xe esp-idf/lwip/liblwip.a(netif.c.obj) - .text.netif_get_ip6_addr_match - 0x4207fc76 0xda esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fc76 netif_get_ip6_addr_match - .text.netif_get_by_index - 0x4207fd50 0x26 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fd50 netif_get_by_index - .text.netif_find - 0x4207fd76 0x60 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fd76 netif_find - .text.netif_add_ext_callback - 0x4207fdd6 0x66 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fdd6 netif_add_ext_callback - .text.netif_remove_ext_callback - 0x4207fe3c 0x82 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fe3c netif_remove_ext_callback - .text.netif_invoke_ext_callback - 0x4207febe 0x5e esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207febe netif_invoke_ext_callback - .text.netif_set_addr - 0x4207ff1c 0xd6 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207ff1c netif_set_addr - .text.netif_add - 0x4207fff2 0x296 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4207fff2 netif_add - .text.netif_set_up - 0x42080288 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x42080288 netif_set_up - .text.netif_set_down - 0x420802ca 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x420802ca netif_set_down - .text.netif_remove - 0x42080310 0xc2 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x42080310 netif_remove - .text.netif_set_link_up - 0x420803d2 0x48 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x420803d2 netif_set_link_up - .text.netif_init - 0x4208041a 0x7a esp-idf/lwip/liblwip.a(netif.c.obj) - 0x4208041a netif_init - .text.netif_set_link_down - 0x42080494 0x40 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x42080494 netif_set_link_down - .text.netif_ip6_addr_set_parts - 0x420804d4 0x184 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x420804d4 netif_ip6_addr_set_parts - .text.netif_ip6_addr_set - 0x42080658 0x62 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x42080658 netif_ip6_addr_set - .text.netif_ip6_addr_set_state - 0x420806ba 0x100 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x420806ba netif_ip6_addr_set_state - .text.pbuf_init_alloced_pbuf - 0x420807ba 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_skip_const - 0x420807dc 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_add_header_impl - 0x420807f8 0x90 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_pool_is_empty - 0x42080888 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_free_ooseq - 0x420808d4 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_free_ooseq_callback - 0x42080906 0xe esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_alloc_reference - 0x42080914 0x6c esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080914 pbuf_alloc_reference - .text.pbuf_alloced_custom - 0x42080980 0x42 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080980 pbuf_alloced_custom - .text.pbuf_add_header - 0x420809c2 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420809c2 pbuf_add_header - .text.pbuf_add_header_force - 0x420809d2 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420809d2 pbuf_add_header_force - .text.pbuf_remove_header - 0x420809e2 0x6a esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420809e2 pbuf_remove_header - .text.pbuf_header_impl - 0x42080a4c 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) - .text.pbuf_header_force - 0x42080a68 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080a68 pbuf_header_force - .text.pbuf_free - 0x42080a78 0x116 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080a78 pbuf_free - .text.pbuf_alloc - 0x42080b8e 0x1d4 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080b8e pbuf_alloc - .text.pbuf_realloc - 0x42080d62 0x10e esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080d62 pbuf_realloc - .text.pbuf_free_header - 0x42080e70 0x48 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080e70 pbuf_free_header - .text.pbuf_clen - 0x42080eb8 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080eb8 pbuf_clen - .text.pbuf_ref - 0x42080eca 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080eca pbuf_ref - .text.pbuf_cat - 0x42080f18 0x60 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080f18 pbuf_cat - .text.pbuf_chain - 0x42080f78 0x1a esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080f78 pbuf_chain - .text.pbuf_copy_partial_pbuf - 0x42080f92 0x15e esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x42080f92 pbuf_copy_partial_pbuf - .text.pbuf_copy - 0x420810f0 0x1a esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420810f0 pbuf_copy - .text.pbuf_copy_partial - 0x4208110a 0x94 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208110a pbuf_copy_partial - .text.pbuf_skip - 0x4208119e 0xe esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208119e pbuf_skip - .text.pbuf_take - 0x420811ac 0xbe esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420811ac pbuf_take - .text.pbuf_take_at - 0x4208126a 0xb4 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208126a pbuf_take_at - .text.pbuf_clone - 0x4208131e 0x50 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208131e pbuf_clone - .text.pbuf_try_get_at - 0x4208136e 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208136e pbuf_try_get_at - .text.pbuf_get_at - 0x4208139e 0x1a esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4208139e pbuf_get_at - .text.pbuf_put_at - 0x420813b8 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x420813b8 pbuf_put_at - .text.raw_input_local_match - 0x420813e6 0x10c esp-idf/lwip/liblwip.a(raw.c.obj) - .text.raw_input - 0x420814f2 0x174 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x420814f2 raw_input - .text.raw_bind - 0x42081666 0xf0 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081666 raw_bind - .text.raw_bind_netif - 0x42081756 0x14 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081756 raw_bind_netif - .text.raw_connect - 0x4208176a 0xe6 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x4208176a raw_connect - .text.raw_recv - 0x42081850 0x6 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081850 raw_recv - .text.raw_sendto_if_src - 0x42081856 0x26c esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081856 raw_sendto_if_src - .text.raw_sendto - 0x42081ac2 0x12c esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081ac2 raw_sendto - .text.raw_send - 0x42081bee 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081bee raw_send - .text.raw_remove - 0x42081c00 0x3a esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081c00 raw_remove - .text.raw_new 0x42081c3a 0x4c esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081c3a raw_new - .text.raw_new_ip_type - 0x42081c86 0x20 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081c86 raw_new_ip_type - .text.raw_netif_ip_addr_changed - 0x42081ca6 0xda esp-idf/lwip/liblwip.a(raw.c.obj) - 0x42081ca6 raw_netif_ip_addr_changed - .text.tcp_new_port - 0x42081d80 0x6c esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_remove_listener - 0x42081dec 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_listen_closed - 0x42081e2e 0x86 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_free_listen - 0x42081eb4 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_init - 0x42081ef2 0x24 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42081ef2 tcp_init - .text.tcp_free - 0x42081f16 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42081f16 tcp_free - .text.tcp_backlog_delayed - 0x42081f54 0x84 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42081f54 tcp_backlog_delayed - .text.tcp_backlog_accepted - 0x42081fd8 0x7c esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42081fd8 tcp_backlog_accepted - .text.tcp_close_shutdown_fin - 0x42082054 0x9e esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_handle_closepend - 0x420820f2 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_bind - 0x42082126 0x28a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082126 tcp_bind - .text.tcp_bind_netif - 0x420823b0 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420823b0 tcp_bind_netif - .text.tcp_listen_with_backlog_and_err - 0x420823c4 0x1dc esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420823c4 tcp_listen_with_backlog_and_err - .text.tcp_update_rcv_ann_wnd - 0x420825a0 0xaa esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420825a0 tcp_update_rcv_ann_wnd - .text.tcp_recved - 0x4208264a 0x88 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208264a tcp_recved - .text.tcp_seg_free - 0x420826d2 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420826d2 tcp_seg_free - .text.tcp_segs_free - 0x420826f4 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420826f4 tcp_segs_free - .text.tcp_seg_copy - 0x4208270e 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208270e tcp_seg_copy - .text.tcp_arg 0x42082766 0x6 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082766 tcp_arg - .text.tcp_recv - 0x4208276c 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208276c tcp_recv - .text.tcp_sent - 0x420827aa 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420827aa tcp_sent - .text.tcp_err 0x420827e8 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420827e8 tcp_err - .text.tcp_accept - 0x42082826 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082826 tcp_accept - .text.tcp_poll - 0x42082836 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082836 tcp_poll - .text.tcp_next_iss - 0x42082878 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082878 tcp_next_iss - .text.tcp_eff_send_mss_netif - 0x420828ba 0x8a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420828ba tcp_eff_send_mss_netif - .text.tcp_connect - 0x42082944 0x31a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082944 tcp_connect - .text.tcp_free_ooseq - 0x42082c5e 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082c5e tcp_free_ooseq - .text.tcp_pcb_purge - 0x42082c7c 0x64 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082c7c tcp_pcb_purge - .text.tcp_pcb_remove - 0x42082ce0 0x140 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082ce0 tcp_pcb_remove - .text.tcp_abandon - 0x42082e20 0x12e esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082e20 tcp_abandon - .text.tcp_abort - 0x42082f4e 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42082f4e tcp_abort - .text.tcp_accept_null - 0x42082f5e 0x38 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_kill_timewait - 0x42082f96 0x38 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_kill_prio - 0x42082fce 0x6e esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_netif_ip_addr_changed_pcblist - 0x4208303c 0x94 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_netif_ip_addr_changed - 0x420830d0 0x108 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420830d0 tcp_netif_ip_addr_changed - .text.tcp_kill_state - 0x420831d8 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_alloc - 0x4208321a 0x116 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208321a tcp_alloc - .text.tcp_new_ip_type - 0x42083330 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42083330 tcp_new_ip_type - .text.tcp_close_shutdown - 0x42083352 0x190 esp-idf/lwip/liblwip.a(tcp.c.obj) - .text.tcp_close_ext - 0x420834e2 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420834e2 tcp_close_ext - .text.tcp_close - 0x4208350a 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208350a tcp_close - .text.tcp_recv_null - 0x4208351a 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208351a tcp_recv_null - .text.tcp_process_refused_data - 0x42083550 0x96 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42083550 tcp_process_refused_data - .text.tcp_fasttmr - 0x420835e6 0xa2 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x420835e6 tcp_fasttmr - .text.tcp_shutdown - 0x42083688 0x82 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42083688 tcp_shutdown - .text.tcp_slowtmr - 0x4208370a 0x5ce esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x4208370a tcp_slowtmr - .text.tcp_tmr 0x42083cd8 0x2a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x42083cd8 tcp_tmr - .text.tcp_get_next_optbyte - 0x42083d02 0x4c esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_parseopt - 0x42083d4e 0xde esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_input_delayed_close - 0x42083e2c 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_timewait_input - 0x42083e9c 0xd8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_listen_input - 0x42083f74 0x29c esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_oos_insert_segment - 0x42084210 0x138 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_free_acked_segments - 0x42084348 0x112 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_receive - 0x4208445a 0xf5e esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_process - 0x420853b8 0x73e esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .text.tcp_input - 0x42085af6 0xb0c esp-idf/lwip/liblwip.a(tcp_in.c.obj) - 0x42085af6 tcp_input - .text.tcp_trigger_input_pcb_close - 0x42086602 0x12 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - 0x42086602 tcp_trigger_input_pcb_close - .text.tcp_write_checks - 0x42086614 0xf2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_segment_busy - 0x42086706 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_fill_options - 0x42086748 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_pbuf_prealloc - 0x420867a0 0xa8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_create_segment - 0x42086848 0x16a esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_alloc_header_common - 0x420869b2 0x124 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_alloc_header - 0x42086ad6 0x56 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_rst_common - 0x42086b2c 0x9c esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_route - 0x42086bc8 0x36 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_segment - 0x42086bfe 0x220 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_control_segment_netif - 0x42086e1e 0xba esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_output_control_segment - 0x42086ed8 0x6a esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .text.tcp_write - 0x42086f42 0x3d2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42086f42 tcp_write - .text.tcp_split_unsent_seg - 0x42087314 0x260 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087314 tcp_split_unsent_seg - .text.tcp_enqueue_flags - 0x42087574 0x1ca esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087574 tcp_enqueue_flags - .text.tcp_send_fin - 0x4208773e 0xa4 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x4208773e tcp_send_fin - .text.tcp_rexmit_rto_prepare - 0x420877e2 0xde esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x420877e2 tcp_rexmit_rto_prepare - .text.tcp_rexmit - 0x420878c0 0xea esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x420878c0 tcp_rexmit - .text.tcp_rexmit_fast - 0x420879aa 0x96 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x420879aa tcp_rexmit_fast - .text.tcp_rst 0x42087a40 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087a40 tcp_rst - .text.tcp_rst_netif - 0x42087a6e 0x34 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087a6e tcp_rst_netif - .text.tcp_send_empty_ack - 0x42087aa2 0x96 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087aa2 tcp_send_empty_ack - .text.tcp_output - 0x42087b38 0x44a esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087b38 tcp_output - .text.tcp_rexmit_rto_commit - 0x42087f82 0x46 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087f82 tcp_rexmit_rto_commit - .text.tcp_rexmit_rto - 0x42087fc8 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x42087fc8 tcp_rexmit_rto - .text.tcp_keepalive - 0x4208800c 0x72 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x4208800c tcp_keepalive - .text.tcp_zero_window_probe - 0x4208807e 0x16c esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x4208807e tcp_zero_window_probe - .text.sys_timeout_abs - 0x420881ea 0x92 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text.lwip_cyclic_timer - 0x4208827c 0x52 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text.sys_timeout - 0x420882ce 0x56 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x420882ce sys_timeout - .text.tcp_timer_needed - 0x42088324 0x46 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x42088324 tcp_timer_needed - .text.tcpip_tcp_timer - 0x4208836a 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) - .text.sys_timeouts_init - 0x420883a8 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x420883a8 sys_timeouts_init - .text.sys_untimeout - 0x420883de 0x44 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x420883de sys_untimeout - .text.sys_check_timeouts - 0x42088422 0x56 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x42088422 sys_check_timeouts - .text.sys_timeouts_sleeptime - 0x42088478 0x5a esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x42088478 sys_timeouts_sleeptime - .text.udp_new_port - 0x420884d2 0x4e esp-idf/lwip/liblwip.a(udp.c.obj) - .text.udp_input_local_match - 0x42088520 0x180 esp-idf/lwip/liblwip.a(udp.c.obj) - .text.udp_init - 0x420886a0 0x24 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x420886a0 udp_init - .text.udp_input - 0x420886c4 0x412 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x420886c4 udp_input - .text.udp_bind - 0x42088ad6 0x24c esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42088ad6 udp_bind - .text.udp_sendto_if_src - 0x42088d22 0x22c esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42088d22 udp_sendto_if_src - .text.udp_sendto_if - 0x42088f4e 0xd8 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42088f4e udp_sendto_if - .text.udp_sendto - 0x42089026 0x11a esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089026 udp_sendto - .text.udp_send - 0x42089140 0x32 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089140 udp_send - .text.udp_bind_netif - 0x42089172 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089172 udp_bind_netif - .text.udp_connect - 0x42089186 0x128 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089186 udp_connect - .text.udp_disconnect - 0x420892ae 0xbc esp-idf/lwip/liblwip.a(udp.c.obj) - 0x420892ae udp_disconnect - .text.udp_recv - 0x4208936a 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x4208936a udp_recv - .text.udp_remove - 0x42089372 0x3c esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089372 udp_remove - .text.udp_new 0x420893ae 0x34 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x420893ae udp_new - .text.udp_new_ip_type - 0x420893e2 0x1e esp-idf/lwip/liblwip.a(udp.c.obj) - 0x420893e2 udp_new_ip_type - .text.udp_netif_ip_addr_changed - 0x42089400 0xda esp-idf/lwip/liblwip.a(udp.c.obj) - 0x42089400 udp_netif_ip_addr_changed - .text.dhcp_set_state - 0x420894da 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option_short - 0x420894f0 0x5a esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option - 0x4208954a 0x58 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option_byte - 0x420895a2 0x46 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option_long - 0x420895e8 0x7e esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_create_msg - 0x42089666 0x1a0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option_hostname - 0x42089806 0xc8 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_option_trailer - 0x420898ce 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_rebind - 0x42089912 0x16c esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_t2_timeout - 0x42089a7e 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_reboot - 0x42089abc 0x190 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_select - 0x42089c4c 0x1d4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_handle_offer - 0x42089e20 0x84 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_discover - 0x42089ea4 0x170 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_decline - 0x4208a014 0xc2 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_bind - 0x4208a0d6 0xdc esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_conflict_callback - 0x4208a1b2 0x9e esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_handle_nak - 0x4208a250 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_dec_pcb_refcount - 0x4208a286 0x5e esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_inc_pcb_refcount - 0x4208a2e4 0xae esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_parse_reply - 0x4208a392 0x3a4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_check - 0x4208a736 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_handle_ack - 0x4208a762 0x148 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_recv - 0x4208a8aa 0x184 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_cleanup - 0x4208aa2e 0x4e esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208aa2e dhcp_cleanup - .text.dhcp_network_changed_link_up - 0x4208aa7c 0x64 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208aa7c dhcp_network_changed_link_up - .text.dhcp_renew - 0x4208aae0 0x168 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208aae0 dhcp_renew - .text.dhcp_t1_timeout - 0x4208ac48 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_supplied_address - 0x4208ac86 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208ac86 dhcp_supplied_address - .text.dhcp_release_and_stop - 0x4208acc0 0x192 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208acc0 dhcp_release_and_stop - .text.dhcp_start - 0x4208ae52 0xda esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208ae52 dhcp_start - .text.dhcp_coarse_tmr - 0x4208af2c 0x72 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208af2c dhcp_coarse_tmr - .text.dhcp_timeout - 0x4208af9e 0x74 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .text.dhcp_fine_tmr - 0x4208b012 0x6a esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208b012 dhcp_fine_tmr - .text.dhcp_fine_timeout_cb - 0x4208b07c 0xe esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208b07c dhcp_fine_timeout_cb - .text.dhcp_release - 0x4208b08a 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208b08a dhcp_release - .text.dhcp_stop - 0x4208b09a 0xe esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x4208b09a dhcp_stop - .text.free_etharp_q - 0x4208b0a8 0x76 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_free_entry - 0x4208b11e 0x56 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_find_entry - 0x4208b174 0x240 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_update_arp_entry - 0x4208b3b4 0x17c esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_raw - 0x4208b530 0x1ca esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_request_dst - 0x4208b6fa 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_add_static_entry - 0x4208b71e 0x2a esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b71e etharp_add_static_entry - .text.etharp_remove_static_entry - 0x4208b748 0x42 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b748 etharp_remove_static_entry - .text.etharp_cleanup_netif - 0x4208b78a 0x58 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b78a etharp_cleanup_netif - .text.etharp_input - 0x4208b7e2 0x12c esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b7e2 etharp_input - .text.etharp_request - 0x4208b90e 0x16 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b90e etharp_request - .text.etharp_tmr - 0x4208b924 0xe0 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208b924 etharp_tmr - .text.etharp_output_to_arp_index - 0x4208ba04 0x11a esp-idf/lwip/liblwip.a(etharp.c.obj) - .text.etharp_query - 0x4208bb1e 0x296 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208bb1e etharp_query - .text.etharp_output - 0x4208bdb4 0x1f6 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x4208bdb4 etharp_output - .text.icmp_send_response - 0x4208bfaa 0x128 esp-idf/lwip/liblwip.a(icmp.c.obj) - .text.icmp_input - 0x4208c0d2 0x238 esp-idf/lwip/liblwip.a(icmp.c.obj) - 0x4208c0d2 icmp_input - .text.icmp_dest_unreach - 0x4208c30a 0x14 esp-idf/lwip/liblwip.a(icmp.c.obj) - 0x4208c30a icmp_dest_unreach - .text.igmp_remove_group - 0x4208c31e 0x1c esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_start_timer - 0x4208c33a 0x60 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_delaying_member - 0x4208c39a 0x38 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_ip_output_if - 0x4208c3d2 0x2a esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_send - 0x4208c3fc 0x120 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_timeout - 0x4208c51c 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_init - 0x4208c54c 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c54c igmp_init - .text.igmp_stop - 0x4208c56e 0x46 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c56e igmp_stop - .text.igmp_report_groups - 0x4208c5b4 0x24 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c5b4 igmp_report_groups - .text.igmp_lookfor_group - 0x4208c5d8 0x14 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c5d8 igmp_lookfor_group - .text.igmp_lookup_group - 0x4208c5ec 0xc4 esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.igmp_start - 0x4208c6b0 0x48 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c6b0 igmp_start - .text.igmp_input - 0x4208c6f8 0x112 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c6f8 igmp_input - .text.igmp_joingroup_netif - 0x4208c80a 0x94 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c80a igmp_joingroup_netif - .text.igmp_joingroup - 0x4208c89e 0x6c esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c89e igmp_joingroup - .text.igmp_leavegroup_netif - 0x4208c90a 0x9a esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c90a igmp_leavegroup_netif - .text.igmp_leavegroup - 0x4208c9a4 0x76 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208c9a4 igmp_leavegroup - .text.igmp_tmr - 0x4208ca1a 0x7c esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x4208ca1a igmp_tmr - .text.igmp_timeout_cb - 0x4208ca96 0xe esp-idf/lwip/liblwip.a(igmp.c.obj) - .text.ip4_input_accept - 0x4208caa4 0x38 esp-idf/lwip/liblwip.a(ip4.c.obj) - .text.ip4_route - 0x4208cadc 0x94 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208cadc ip4_route - .text.ip4_route_src - 0x4208cb70 0x1e esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208cb70 ip4_route_src - .text.ip4_input - 0x4208cb8e 0x320 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208cb8e ip4_input - .text.ip4_output_if_opt_src - 0x4208ceae 0x306 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208ceae ip4_output_if_opt_src - .text.ip4_output_if_opt - 0x4208d1b4 0x24 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208d1b4 ip4_output_if_opt - .text.ip4_output_if - 0x4208d1d8 0x12 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208d1d8 ip4_output_if - .text.ip4_output_if_src - 0x4208d1ea 0x12 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x4208d1ea ip4_output_if_src - .text.ip4_addr_isbroadcast_u32 - 0x4208d1fc 0x40 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x4208d1fc ip4_addr_isbroadcast_u32 - .text.ip4addr_aton - 0x4208d23c 0x1de esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x4208d23c ip4addr_aton - .text.ip4addr_ntoa_r - 0x4208d41a 0xb0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x4208d41a ip4addr_ntoa_r - .text.ip4_frag - 0x4208d4ca 0x1d2 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - 0x4208d4ca ip4_frag - .text.icmp6_send_response_with_addrs_and_netif - 0x4208d69c 0x13c esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_send_response - 0x4208d7d8 0x7c esp-idf/lwip/liblwip.a(icmp6.c.obj) - .text.icmp6_input - 0x4208d854 0x15c esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x4208d854 icmp6_input - .text.icmp6_dest_unreach - 0x4208d9b0 0x16 esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x4208d9b0 icmp6_dest_unreach - .text.icmp6_param_problem - 0x4208d9c6 0x20 esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x4208d9c6 icmp6_param_problem - .text.ip6_input_accept - 0x4208d9e6 0xb6 esp-idf/lwip/liblwip.a(ip6.c.obj) - .text.ip6_route - 0x4208da9c 0x2d8 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208da9c ip6_route - .text.ip6_select_source_address - 0x4208dd74 0x1a8 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208dd74 ip6_select_source_address - .text.ip6_input - 0x4208df1c 0x7da esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208df1c ip6_input - .text.ip6_output_if_src - 0x4208e6f6 0x3dc esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208e6f6 ip6_output_if_src - .text.ip6_output_if - 0x4208ead2 0x76 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208ead2 ip6_output_if - .text.ip6_options_add_hbh_ra - 0x4208eb48 0x52 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x4208eb48 ip6_options_add_hbh_ra - .text.ip6addr_aton - 0x4208eb9a 0x222 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - 0x4208eb9a ip6addr_aton - .text.ip6addr_ntoa_r - 0x4208edbc 0x26e esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - 0x4208edbc ip6addr_ntoa_r - .text.ip6_frag - 0x4208f02a 0x1dc esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - 0x4208f02a ip6_frag - .text.mld6_remove_group - 0x4208f206 0x2a esp-idf/lwip/liblwip.a(mld6.c.obj) - .text.mld6_delayed_report - 0x4208f230 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) - .text.mld6_new_group - 0x4208f2b8 0x68 esp-idf/lwip/liblwip.a(mld6.c.obj) - .text.mld6_send - 0x4208f320 0x17c esp-idf/lwip/liblwip.a(mld6.c.obj) - .text.mld6_stop - 0x4208f49c 0x46 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f49c mld6_stop - .text.mld6_report_groups - 0x4208f4e2 0x22 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f4e2 mld6_report_groups - .text.mld6_lookfor_group - 0x4208f504 0x38 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f504 mld6_lookfor_group - .text.mld6_input - 0x4208f53c 0x1aa esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f53c mld6_input - .text.mld6_joingroup_netif - 0x4208f6e6 0xea esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f6e6 mld6_joingroup_netif - .text.mld6_joingroup - 0x4208f7d0 0x5c esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f7d0 mld6_joingroup - .text.mld6_leavegroup_netif - 0x4208f82c 0xe2 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f82c mld6_leavegroup_netif - .text.mld6_leavegroup - 0x4208f90e 0x5e esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f90e mld6_leavegroup - .text.mld6_tmr - 0x4208f96c 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x4208f96c mld6_tmr - .text.mld6_timeout_cb - 0x4208f9fc 0xe esp-idf/lwip/liblwip.a(mld6.c.obj) - .text.nd6_find_neighbor_cache_entry - 0x4208fa0a 0x9e esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_find_destination_cache_entry - 0x4208faa8 0x9e esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_new_destination_cache_entry - 0x4208fb46 0x82 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_is_prefix_in_netif - 0x4208fbc8 0xfe esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_select_router - 0x4208fcc6 0xe2 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_get_router - 0x4208fda8 0x64 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_get_onlink_prefix - 0x4208fe0c 0x82 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_new_onlink_prefix - 0x4208fe8e 0xbe esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_send_q - 0x4208ff4c 0x152 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_duplicate_addr_detected - 0x4209009e 0x54 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_process_autoconfig_prefix - 0x420900f2 0x28a esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_free_q - 0x4209037c 0xb2 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_free_neighbor_cache_entry - 0x4209042e 0x98 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_new_neighbor_cache_entry - 0x420904c6 0x28c esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_send_na - 0x42090752 0x1e4 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_send_rs - 0x42090936 0x146 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_send_ns - 0x42090a7c 0x22e esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_send_neighbor_cache_probe - 0x42090caa 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_new_router - 0x42090cbe 0x150 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_get_next_hop_entry - 0x42090e0e 0x362 esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_queue_packet - 0x42091170 0x14a esp-idf/lwip/liblwip.a(nd6.c.obj) - .text.nd6_input - 0x420912ba 0xe5c esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x420912ba nd6_input - .text.nd6_tmr 0x42092116 0x592 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x42092116 nd6_tmr - .text.nd6_clear_destination_cache - 0x420926a8 0x36 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x420926a8 nd6_clear_destination_cache - .text.nd6_find_route - 0x420926de 0xe0 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x420926de nd6_find_route - .text.nd6_get_next_hop_addr_or_queue - 0x420927be 0xac esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x420927be nd6_get_next_hop_addr_or_queue - .text.nd6_get_destination_mtu - 0x4209286a 0x3c esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x4209286a nd6_get_destination_mtu - .text.nd6_reachability_hint - 0x420928a6 0x1ee esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x420928a6 nd6_reachability_hint - .text.nd6_cleanup_netif - 0x42092a94 0xfa esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x42092a94 nd6_cleanup_netif - .text.nd6_adjust_mld_membership - 0x42092b8e 0xae esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x42092b8e nd6_adjust_mld_membership - .text.nd6_restart_netif - 0x42092c3c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x42092c3c nd6_restart_netif - .text.ethernet_input - 0x42092c44 0x12a esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x42092c44 ethernet_input - .text.ethernet_output - 0x42092d6e 0xe4 esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x42092d6e ethernet_output - .text.lwip_init_tcp_isn - 0x42092e52 0x54 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - 0x42092e52 lwip_init_tcp_isn - .text.lwip_hook_tcp_isn - 0x42092ea6 0x146 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - 0x42092ea6 lwip_hook_tcp_isn - .text.lwip_hook_ip6_input - 0x42092fec 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - 0x42092fec lwip_hook_ip6_input - .text.ip4_route_src_hook - 0x4209301c 0x34 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - 0x4209301c ip4_route_src_hook - .text.dhcp_parse_extra_opts - 0x42093050 0x72 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - 0x42093050 dhcp_parse_extra_opts - .text.dhcp_append_extra_opts - 0x420930c2 0x76 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - 0x420930c2 dhcp_append_extra_opts - .text.lwip_setsockopt_impl_ext - 0x42093138 0xe4 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - 0x42093138 lwip_setsockopt_impl_ext - .text.lwip_getsockopt_impl_ext - 0x4209321c 0xf2 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - 0x4209321c lwip_getsockopt_impl_ext - .text.sys_thread_sem_free - 0x4209330e 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .text.sys_mutex_new - 0x42093336 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093336 sys_mutex_new - .text.sys_mutex_lock - 0x4209335a 0x40 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209335a sys_mutex_lock - .text.sys_mutex_unlock - 0x4209339a 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209339a sys_mutex_unlock - .text.sys_sem_new - 0x420933de 0x9a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420933de sys_sem_new - .text.sys_sem_signal - 0x42093478 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093478 sys_sem_signal - .text.sys_sem_signal_isr - 0x420934bc 0x20 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420934bc sys_sem_signal_isr - .text.sys_arch_sem_wait - 0x420934dc 0x9a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420934dc sys_arch_sem_wait - .text.sys_sem_free - 0x42093576 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093576 sys_sem_free - .text.sys_mbox_new - 0x42093594 0x4e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093594 sys_mbox_new - .text.sys_mbox_post - 0x420935e2 0x48 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420935e2 sys_mbox_post - .text.sys_mbox_trypost - 0x4209362a 0x2a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209362a sys_mbox_trypost - .text.sys_arch_mbox_fetch - 0x42093654 0xae esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093654 sys_arch_mbox_fetch - .text.sys_arch_mbox_tryfetch - 0x42093702 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093702 sys_arch_mbox_tryfetch - .text.sys_mbox_free - 0x4209375e 0x60 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209375e sys_mbox_free - .text.sys_thread_new - 0x420937be 0x32 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420937be sys_thread_new - .text.sys_init - 0x420937f0 0x62 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420937f0 sys_init - .text.sys_now 0x42093852 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093852 sys_now - .text.sys_arch_protect - 0x4209386c 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209386c sys_arch_protect - .text.sys_arch_unprotect - 0x4209389c 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x4209389c sys_arch_unprotect - .text.sys_thread_sem_init - 0x420938b2 0xa0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x420938b2 sys_thread_sem_init - .text.sys_thread_sem_get - 0x42093952 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093952 sys_thread_sem_get - .text.sys_thread_tcpip - 0x42093970 0x94 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x42093970 sys_thread_tcpip - .text.acd_suspend - 0x42093a04 0x24 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .text.send_probe_once - 0x42093a28 0x48 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .text.acd_dhcp_check_timeout_cb - 0x42093a70 0x3c esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .text.acd_remove - 0x42093aac 0x18 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093aac acd_remove - .text.acd_netif_ip_addr_changed - 0x42093ac4 0xe esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093ac4 acd_netif_ip_addr_changed - .text.acd_network_changed_link_down - 0x42093ad2 0xe esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093ad2 acd_network_changed_link_down - .text.acd_arp_reply - 0x42093ae0 0xb6 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093ae0 acd_arp_reply - .text.acd_add 0x42093b96 0x6 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093b96 acd_add - .text.acd_start - 0x42093b9c 0x24 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - 0x42093b9c acd_start - .text.lwip_get_socket_select_semaphore - 0x42093bc0 0xe esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.lwip_stop_socket_select_isr - 0x42093bce 0x1c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.lwip_stop_socket_select - 0x42093bea 0xe esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.lwip_ioctl_r_wrapper - 0x42093bf8 0x18 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.lwip_fcntl_r_wrapper - 0x42093c10 0xe esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.lwip_fstat - 0x42093c1e 0x44 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .text.esp_vfs_lwip_sockets_register - 0x42093c62 0xbe esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - 0x42093c62 esp_vfs_lwip_sockets_register - .text.netconn_apimsg - 0x42093d20 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_tcp_recvd_msg - 0x42093d5c 0x34 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_close_shutdown - 0x42093d90 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_new_with_proto_and_callback - 0x42093dba 0xc0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093dba netconn_new_with_proto_and_callback - .text.netconn_prepare_delete - 0x42093e7a 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093e7a netconn_prepare_delete - .text.netconn_delete - 0x42093ea0 0x36 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093ea0 netconn_delete - .text.netconn_getaddr - 0x42093ed6 0x34 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093ed6 netconn_getaddr - .text.netconn_bind - 0x42093f0a 0xca esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093f0a netconn_bind - .text.netconn_connect - 0x42093fd4 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42093fd4 netconn_connect - .text.netconn_disconnect - 0x42094006 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094006 netconn_disconnect - .text.netconn_listen_with_backlog - 0x42094026 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094026 netconn_listen_with_backlog - .text.netconn_tcp_recvd - 0x4209404a 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x4209404a netconn_tcp_recvd - .text.netconn_send - 0x42094070 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094070 netconn_send - .text.netconn_write_vectors_partly - 0x42094092 0xf4 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094092 netconn_write_vectors_partly - .text.netconn_write_partly - 0x42094186 0x16 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094186 netconn_write_partly - .text.netconn_err - 0x4209419c 0x2c esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x4209419c netconn_err - .text.netconn_accept - 0x420941c8 0x10c esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x420941c8 netconn_accept - .text.netconn_recv_data - 0x420942d4 0x15e esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_recv_udp_raw_netbuf_flags - 0x42094432 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094432 netconn_recv_udp_raw_netbuf_flags - .text.netconn_recv_data_tcp - 0x42094456 0xbc esp-idf/lwip/liblwip.a(api_lib.c.obj) - .text.netconn_recv_tcp_pbuf_flags - 0x42094512 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094512 netconn_recv_tcp_pbuf_flags - .text.netconn_shutdown - 0x42094536 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094536 netconn_shutdown - .text.netconn_join_leave_group - 0x42094556 0x3e esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094556 netconn_join_leave_group - .text.netconn_join_leave_group_netif - 0x42094594 0x3a esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x42094594 netconn_join_leave_group_netif - .text.netconn_gethostbyname_addrtype - 0x420945ce 0x4e esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x420945ce netconn_gethostbyname_addrtype - .text.lwip_netconn_err_to_msg - 0x4209461c 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_dns_found - 0x4209467e 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.recv_udp - 0x420946e4 0x166 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.recv_raw - 0x4209484a 0xd8 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.setup_tcp - 0x42094922 0x52 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.pcb_new 0x42094974 0x118 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_connected - 0x42094a8c 0xfa esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.err_tcp 0x42094b86 0x17c esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.netconn_mark_mbox_invalid - 0x42094d02 0x60 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_writemore - 0x42094d62 0x31a esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_close_internal - 0x4209507c 0x2a6 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.poll_tcp - 0x42095322 0x8c esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.sent_tcp - 0x420953ae 0x8c esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.tcp_do_abort - 0x4209543a 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.recv_tcp - 0x4209544c 0x110 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_is_deallocated_msg - 0x4209555c 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x4209555c lwip_netconn_is_deallocated_msg - .text.lwip_netconn_is_err_msg - 0x42095570 0x74 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095570 lwip_netconn_is_err_msg - .text.lwip_netconn_do_newconn - 0x420955e4 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x420955e4 lwip_netconn_do_newconn - .text.netconn_alloc - 0x4209560a 0xaa esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x4209560a netconn_alloc - .text.netconn_free - 0x420956b4 0x92 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x420956b4 netconn_free - .text.netconn_drain - 0x42095746 0xfc esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.accept_function - 0x42095842 0x12e esp-idf/lwip/liblwip.a(api_msg.c.obj) - .text.lwip_netconn_do_delconn - 0x42095970 0x14e esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095970 lwip_netconn_do_delconn - .text.lwip_netconn_do_bind - 0x42095abe 0x10e esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095abe lwip_netconn_do_bind - .text.lwip_netconn_do_connect - 0x42095bcc 0xbe esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095bcc lwip_netconn_do_connect - .text.lwip_netconn_do_disconnect - 0x42095c8a 0x38 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095c8a lwip_netconn_do_disconnect - .text.lwip_netconn_do_listen - 0x42095cc2 0x1b0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095cc2 lwip_netconn_do_listen - .text.lwip_netconn_do_send - 0x42095e72 0x106 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095e72 lwip_netconn_do_send - .text.lwip_netconn_do_recv - 0x42095f78 0x5c esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095f78 lwip_netconn_do_recv - .text.lwip_netconn_do_accepted - 0x42095fd4 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42095fd4 lwip_netconn_do_accepted - .text.lwip_netconn_do_write - 0x42096006 0xa2 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42096006 lwip_netconn_do_write - .text.lwip_netconn_do_getaddr - 0x420960a8 0x1c0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x420960a8 lwip_netconn_do_getaddr - .text.lwip_netconn_do_close - 0x42096268 0x126 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42096268 lwip_netconn_do_close - .text.lwip_netconn_do_join_leave_group - 0x4209638e 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x4209638e lwip_netconn_do_join_leave_group - .text.lwip_netconn_do_join_leave_group_netif - 0x42096408 0x84 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x42096408 lwip_netconn_do_join_leave_group_netif - .text.lwip_netconn_do_gethostbyname - 0x4209648c 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x4209648c lwip_netconn_do_gethostbyname - .text.err_to_errno - 0x420964d0 0x26 esp-idf/lwip/liblwip.a(err.c.obj) - 0x420964d0 err_to_errno - .text.netbuf_delete - 0x420964f6 0x2a esp-idf/lwip/liblwip.a(netbuf.c.obj) - 0x420964f6 netbuf_delete - .text.netbuf_alloc - 0x42096520 0x62 esp-idf/lwip/liblwip.a(netbuf.c.obj) - 0x42096520 netbuf_alloc - .text.netbuf_free - 0x42096582 0x22 esp-idf/lwip/liblwip.a(netbuf.c.obj) - 0x42096582 netbuf_free - .text.lwip_standard_chksum - 0x420965a4 0x66 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x420965a4 lwip_standard_chksum - .text.inet_cksum_pseudo_base - 0x4209660a 0xaa esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .text.inet_chksum_pseudo - 0x420966b4 0x3c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x420966b4 inet_chksum_pseudo - .text.ip6_chksum_pseudo - 0x420966f0 0x64 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x420966f0 ip6_chksum_pseudo - .text.ip_chksum_pseudo - 0x42096754 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x42096754 ip_chksum_pseudo - .text.inet_chksum - 0x42096774 0x16 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x42096774 inet_chksum - .text.inet_chksum_pbuf - 0x4209678a 0x78 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x4209678a inet_chksum_pbuf - .text.esp_netif_add_to_list_unsafe - 0x42096802 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x42096802 esp_netif_add_to_list_unsafe - .text.esp_netif_remove_from_list_unsafe - 0x42096846 0x86 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x42096846 esp_netif_remove_from_list_unsafe - .text.esp_netif_get_nr_of_ifs - 0x420968cc 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x420968cc esp_netif_get_nr_of_ifs - .text.esp_netif_next_unsafe - 0x420968d6 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x420968d6 esp_netif_next_unsafe - .text.esp_netif_is_netif_listed - 0x42096906 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x42096906 esp_netif_is_netif_listed - .text.esp_netif_get_handle_from_ifkey_unsafe - 0x42096922 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x42096922 esp_netif_get_handle_from_ifkey_unsafe - .text.esp_netif_reset_ip_info - 0x42096962 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_is_active - 0x42096978 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_default_netif_internal - 0x42096994 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_ipc_call_msg - 0x420969a4 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_ipc_call - 0x420969f6 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_ipc_call_get_netif - 0x42096a16 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_api_cb - 0x42096a36 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.tcpip_init_done - 0x42096a5c 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_config_sanity_check - 0x42096a6a 0x96 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.get_handle_from_ifkey_api - 0x42096b00 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_set_mac_api - 0x42096b1a 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42096b1a esp_netif_set_mac_api - .text.esp_netif_set_ip_old_info_api - 0x42096b84 0x7a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcps_cb - 0x42096bfe 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_start_ip_lost_timer - 0x42096ce6 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_set_mldv6_flag - 0x42096d18 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_set_garp_flag - 0x42096d4e 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_send_mldv6 - 0x42096d6c 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_init_configuration - 0x42096daa 0x1fc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_unset_garp_flag - 0x42096fa6 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_unset_mldv6_flag - 0x42096fbe 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_remove - 0x42096fe2 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_send_garp - 0x42097036 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_lwip_add - 0x42097072 0x9c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.dns_clear_servers - 0x4209710e 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_dhcpc_start_api - 0x42097144 0xee esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_update_default_netif - 0x42097232 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097232 esp_netif_update_default_netif - .text.esp_netif_ip_lost_timer - 0x4209724c 0xb8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_internal_nd6_cb - 0x42097304 0xf4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_destroy_api - 0x420973f8 0x8e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_new_api - 0x42097486 0x2dc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_start_api - 0x42097762 0x1ce esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_stop_api - 0x42097930 0x8a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_up_api - 0x420979ba 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_down_api - 0x42097a10 0xe0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_ip4addr_ntoa - 0x42097af0 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097af0 esp_ip4addr_ntoa - .text.esp_netif_get_io_driver - 0x42097afe 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097afe esp_netif_get_io_driver - .text.esp_netif_get_netif_impl - 0x42097b02 0x6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097b02 esp_netif_get_netif_impl - .text.esp_netif_init - 0x42097b08 0x116 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097b08 esp_netif_init - .text.esp_netif_new - 0x42097c1e 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097c1e esp_netif_new - .text.esp_netif_get_handle_from_ifkey - 0x42097c3c 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097c3c esp_netif_get_handle_from_ifkey - .text.esp_netif_attach - 0x42097c5a 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097c5a esp_netif_attach - .text.esp_netif_set_driver_config - 0x42097cb2 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097cb2 esp_netif_set_driver_config - .text.esp_netif_set_mac - 0x42097cd6 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097cd6 esp_netif_set_mac - .text.esp_netif_start - 0x42097d02 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d02 esp_netif_start - .text.esp_netif_stop - 0x42097d1c 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d1c esp_netif_stop - .text.esp_netif_netstack_buf_ref - 0x42097d36 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d36 esp_netif_netstack_buf_ref - .text.esp_netif_netstack_buf_free - 0x42097d44 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d44 esp_netif_netstack_buf_free - .text.esp_netif_free_rx_buffer - 0x42097d52 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d52 esp_netif_free_rx_buffer - .text.esp_netif_transmit_wrap - 0x42097d62 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097d62 esp_netif_transmit_wrap - .text.esp_netif_receive - 0x42097db2 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097db2 esp_netif_receive - .text.esp_netif_dhcpc_start - 0x42097e06 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e06 esp_netif_dhcpc_start - .text.esp_netif_dhcpc_get_status - 0x42097e20 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e20 esp_netif_dhcpc_get_status - .text.esp_netif_get_hostname - 0x42097e3c 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e3c esp_netif_get_hostname - .text.esp_netif_up - 0x42097e60 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e60 esp_netif_up - .text.esp_netif_down - 0x42097e7a 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e7a esp_netif_down - .text.esp_netif_is_netif_up - 0x42097e94 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097e94 esp_netif_is_netif_up - .text.esp_netif_update_default_netif_lwip - 0x42097eaa 0x11a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_netif_get_old_ip_info - 0x42097fc4 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42097fc4 esp_netif_get_old_ip_info - .text.esp_netif_get_ip_info - 0x4209803a 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x4209803a esp_netif_get_ip_info - .text.esp_netif_is_valid_static_ip - 0x420980cc 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x420980cc esp_netif_is_valid_static_ip - .text.esp_netif_set_old_ip_info - 0x420980e0 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x420980e0 esp_netif_set_old_ip_info - .text.esp_netif_get_ip6_linklocal - 0x420980fa 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x420980fa esp_netif_get_ip6_linklocal - .text.esp_netif_get_all_ip6 - 0x4209814c 0x14a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x4209814c esp_netif_get_all_ip6 - .text.esp_netif_get_flags - 0x42098296 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x42098296 esp_netif_get_flags - .text.esp_netif_get_ifkey - 0x4209829a 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x4209829a esp_netif_get_ifkey - .text.esp_netif_get_desc - 0x4209829e 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x4209829e esp_netif_get_desc - .text.esp_netif_get_event_id - 0x420982a2 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x420982a2 esp_netif_get_event_id - .text.esp_netif_internal_dhcpc_cb - 0x420982ba 0x1d0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.netif_callback_fn - 0x4209848a 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .text.esp_aes_gmac - 0x420984de 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .text.digest_vector - 0x420984ec 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.hmac_vector - 0x42098578 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.aes_crypt_init - 0x42098612 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.aes_crypt_deinit - 0x42098682 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.aes_crypt - 0x420986a0 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .text.sha256_vector - 0x420986ae 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x420986ae sha256_vector - .text.hmac_sha256_vector - 0x420986c6 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x420986c6 hmac_sha256_vector - .text.hmac_sha256 - 0x420986e2 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x420986e2 hmac_sha256 - .text.hmac_sha1_vector - 0x420986fc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x420986fc hmac_sha1_vector - .text.hmac_sha1 - 0x42098718 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098718 hmac_sha1 - .text.aes_encrypt_init - 0x42098732 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098732 aes_encrypt_init - .text.aes_encrypt - 0x42098746 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098746 aes_encrypt - .text.aes_encrypt_deinit - 0x4209875a 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4209875a aes_encrypt_deinit - .text.aes_decrypt_init - 0x42098768 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098768 aes_decrypt_init - .text.aes_decrypt - 0x4209877c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4209877c aes_decrypt - .text.aes_decrypt_deinit - 0x42098790 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098790 aes_decrypt_deinit - .text.aes_128_cbc_encrypt - 0x4209879e 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4209879e aes_128_cbc_encrypt - .text.aes_128_cbc_decrypt - 0x42098816 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098816 aes_128_cbc_decrypt - .text.aes_ctr_encrypt - 0x4209888e 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4209888e aes_ctr_encrypt - .text.pbkdf2_sha1 - 0x420988f4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x420988f4 pbkdf2_sha1 - .text.omac1_aes_vector - 0x4209893e 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4209893e omac1_aes_vector - .text.omac1_aes_128_vector - 0x42098a12 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098a12 omac1_aes_128_vector - .text.omac1_aes_128 - 0x42098a2a 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x42098a2a omac1_aes_128 - .text.os_get_time - 0x42098a44 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x42098a44 os_get_time - .text.os_random - 0x42098a68 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x42098a68 os_random - .text.os_get_random - 0x42098a7a 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x42098a7a os_get_random - .text.os_sleep - 0x42098a8a 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x42098a8a os_sleep - .text.forced_memzero - 0x42098ab6 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x42098ab6 forced_memzero - .text.ccmp_aad_nonce - 0x42098ac4 0x18a esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .text.ccmp_decrypt - 0x42098c4e 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - 0x42098c4e ccmp_decrypt - .text.ccmp_encrypt - 0x42098d12 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - 0x42098d12 ccmp_encrypt - .text.WPA_PUT_BE64 - 0x42098e44 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.inc32 0x42098e7e 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.xor_block - 0x42098eba 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.shift_right_block - 0x42098edc 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.ghash_start - 0x42098fea 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.gf_mult 0x42099000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_init_hash_subkey - 0x42099096 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gctr - 0x420990cc 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_gctr - 0x42099176 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.ghash 0x420991c0 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_ghash - 0x42099272 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_prepare_j0 - 0x420992e2 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .text.aes_gcm_ae - 0x4209937c 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - 0x4209937c aes_gcm_ae - .text.aes_gmac - 0x42099412 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - 0x42099412 aes_gmac - .text.hex2num 0x4209942c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .text.hex2byte - 0x4209946c 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4209946c hex2byte - .text.hexstr2bin - 0x420994a6 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x420994a6 hexstr2bin - .text.inc_byte_array - 0x420994e8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x420994e8 inc_byte_array - .text.buf_shift_right - 0x42099508 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x42099508 buf_shift_right - .text.wpa_get_ntp_timestamp - 0x42099542 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x42099542 wpa_get_ntp_timestamp - .text.printf_decode - 0x420995d8 0x1a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x420995d8 printf_decode - .text.dup_binstr - 0x4209977c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4209977c dup_binstr - .text.wpa_config_parse_string - 0x420997c0 0x156 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x420997c0 wpa_config_parse_string - .text.int_array_len - 0x42099916 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x42099916 int_array_len - .text.bin_clear_free - 0x4209992c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4209992c bin_clear_free - .text.os_memdup - 0x4209994c 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4209994c os_memdup - .text.os_reltime_expired - 0x42099986 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x42099986 os_reltime_expired - .text.os_reltime_initialized - 0x42099a04 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x42099a04 os_reltime_initialized - .text.sha1_xor - 0x42099a18 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.HMAC_sha1_final - 0x42099a42 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.mbedtls_sha1_init_start - 0x42099a72 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.HMAC_sha1_init - 0x42099a8e 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.pbkdf2_f_sha1 - 0x42099b56 0x1ae esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.pbkdf2_sha1 - 0x42099d04 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .text.fastpbkdf2_hmac_sha1 - 0x42099df0 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - 0x42099df0 fastpbkdf2_hmac_sha1 - .text.xor_aes_block - 0x42099dfe 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_encr_start - 0x42099e20 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_auth - 0x42099e44 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_encr - 0x42099ec2 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_encr_auth - 0x42099f66 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_decr_auth - 0x42099fbc 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_auth_start - 0x4209a012 0x106 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .text.aes_ccm_ae - 0x4209a118 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - 0x4209a118 aes_ccm_ae - .text.aes_ccm_ad - 0x4209a1c0 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - 0x4209a1c0 aes_ccm_ad - .text.esp_wifi_config_info - 0x4209a28a 0x196 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.wifi_deinit_internal - 0x4209a420 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.esp_wifi_set_log_level - 0x4209a4e8 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.s_set_default_wifi_log_level - 0x4209a4f8 0x42 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .text.esp_wifi_init - 0x4209a53a 0xdc esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x4209a53a esp_wifi_init - .text.esp_wifi_connect - 0x4209a616 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x4209a616 esp_wifi_connect - .text.esp_wifi_disconnect - 0x4209a624 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x4209a624 esp_wifi_disconnect - .text.ieee80211_ftm_attach - 0x4209a632 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x4209a632 ieee80211_ftm_attach - .text.pm_beacon_offset_funcs_init - 0x4209a636 0x2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x4209a636 pm_beacon_offset_funcs_init - .text.wifi_default_action_sta_got_ip - 0x4209a638 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_ap_stop - 0x4209a6a8 0x1a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_sta_stop - 0x4209a6c2 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_start - 0x4209a6da 0x108 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_ap_start - 0x4209a7e2 0x1a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_sta_start - 0x4209a7fc 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_sta_disconnected - 0x4209a814 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.wifi_default_action_sta_connected - 0x4209a82c 0x92 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.clear_default_wifi_handlers - 0x4209a8be 0xa2 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.set_default_wifi_handlers - 0x4209a960 0xf4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.create_and_attach - 0x4209aa54 0x4a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .text.esp_wifi_set_default_wifi_sta_handlers - 0x4209aa9e 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209aa9e esp_wifi_set_default_wifi_sta_handlers - .text.esp_wifi_set_default_wifi_ap_handlers - 0x4209aaac 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209aaac esp_wifi_set_default_wifi_ap_handlers - .text.esp_netif_attach_wifi_station - 0x4209aaba 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209aaba esp_netif_attach_wifi_station - .text.esp_netif_attach_wifi_ap - 0x4209aadc 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209aadc esp_netif_attach_wifi_ap - .text.esp_netif_create_default_wifi_ap - 0x4209ab00 0xa4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209ab00 esp_netif_create_default_wifi_ap - .text.esp_netif_create_default_wifi_sta - 0x4209aba4 0xa4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x4209aba4 esp_netif_create_default_wifi_sta - .text.parse_url_char - 0x4209ac48 0x2b0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_parse_host_char - 0x4209aef8 0x244 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_parse_host - 0x4209b13c 0x166 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .text.http_message_needs_eof - 0x4209b2a2 0x6a esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209b2a2 http_message_needs_eof - .text.http_should_keep_alive - 0x4209b30c 0x36 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209b30c http_should_keep_alive - .text.http_parser_execute - 0x4209b342 0x350e esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209b342 http_parser_execute - .text.http_parser_init - 0x4209e850 0x5e esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209e850 http_parser_init - .text.http_parser_settings_init - 0x4209e8ae 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209e8ae http_parser_settings_init - .text.http_parser_url_init - 0x4209e8c6 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209e8c6 http_parser_url_init - .text.http_parser_parse_url - 0x4209e8de 0x190 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209e8de http_parser_parse_url - .text.http_parser_pause - 0x4209ea6e 0x5a esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - 0x4209ea6e http_parser_pause - .text.ms_to_timeval - 0x4209eac8 0x2e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_hostname_to_fd - 0x4209eaf6 0x1b6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_set_socket_options - 0x4209ecac 0x220 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_set_socket_non_blocking - 0x4209eecc 0xbe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.tcp_connect - 0x4209ef8a 0x276 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.tcp_write - 0x4209f200 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.tcp_read - 0x4209f214 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.create_ssl_handle - 0x4209f228 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_handshake - 0x4209f238 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_low_level_conn - 0x4209f246 0x28e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .text.esp_tls_conn_read - 0x4209f4d4 0x16 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f4d4 esp_tls_conn_read - .text.esp_tls_conn_write - 0x4209f4ea 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f4ea esp_tls_conn_write - .text.esp_tls_conn_destroy - 0x4209f506 0x42 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f506 esp_tls_conn_destroy - .text.esp_tls_init - 0x4209f548 0x4c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f548 esp_tls_init - .text.esp_tls_plain_tcp_connect - 0x4209f594 0x1e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f594 esp_tls_plain_tcp_connect - .text.esp_tls_conn_new_sync - 0x4209f5b2 0x10a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f5b2 esp_tls_conn_new_sync - .text.esp_tls_conn_new_async - 0x4209f6bc 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f6bc esp_tls_conn_new_async - .text.esp_tls_cfg_server_session_tickets_init - 0x4209f6e4 0x6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f6e4 esp_tls_cfg_server_session_tickets_init - .text.esp_tls_cfg_server_session_tickets_free - 0x4209f6ea 0x2 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f6ea esp_tls_cfg_server_session_tickets_free - .text.esp_tls_server_session_create - 0x4209f6ec 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f6ec esp_tls_server_session_create - .text.esp_tls_server_session_delete - 0x4209f6fa 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f6fa esp_tls_server_session_delete - .text.esp_tls_get_bytes_avail - 0x4209f708 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f708 esp_tls_get_bytes_avail - .text.esp_tls_get_conn_sockfd - 0x4209f716 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f716 esp_tls_get_conn_sockfd - .text.esp_tls_get_and_clear_last_error - 0x4209f75a 0x4a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f75a esp_tls_get_and_clear_last_error - .text.esp_tls_get_error_handle - 0x4209f7a4 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x4209f7a4 esp_tls_get_error_handle - .text.esp_tls_internal_event_tracker_capture - 0x4209f7be 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - 0x4209f7be esp_tls_internal_event_tracker_capture - .text.esp_tls_internal_event_tracker_create - 0x4209f7f6 0x16 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - 0x4209f7f6 esp_tls_internal_event_tracker_create - .text.esp_tls_internal_event_tracker_destroy - 0x4209f80c 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - 0x4209f80c esp_tls_internal_event_tracker_destroy - .text.esp_tls_get_and_clear_error_type - 0x4209f81e 0x70 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - 0x4209f81e esp_tls_get_and_clear_error_type - .text.esp_tls_get_platform_time - 0x4209f88e 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - 0x4209f88e esp_tls_get_platform_time - .text.esp_mbedtls_read - 0x4209f8a0 0xb4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x4209f8a0 esp_mbedtls_read - .text.esp_mbedtls_write - 0x4209f954 0xb6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x4209f954 esp_mbedtls_write - .text.set_global_ca_store - 0x4209fa0a 0x90 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.set_ca_cert - 0x4209fa9a 0xea esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_init_pk_ctx_for_ds - 0x4209fb84 0xa6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.set_pki_context - 0x4209fc2a 0x1da esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.set_server_config - 0x4209fe04 0x1fc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .text.esp_mbedtls_verify_certificate - 0x420a0000 0x7a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a0000 esp_mbedtls_verify_certificate - .text.esp_mbedtls_handshake - 0x420a007a 0xb6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a007a esp_mbedtls_handshake - .text.esp_mbedtls_get_bytes_avail - 0x420a0130 0x3c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a0130 esp_mbedtls_get_bytes_avail - .text.esp_mbedtls_cleanup - 0x420a016c 0x64 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a016c esp_mbedtls_cleanup - .text.esp_mbedtls_conn_delete - 0x420a01d0 0x36 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a01d0 esp_mbedtls_conn_delete - .text.set_client_config - 0x420a0206 0x43a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a0206 set_client_config - .text.esp_create_mbedtls_handle - 0x420a0640 0x2a2 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a0640 esp_create_mbedtls_handle - .text.esp_mbedtls_server_session_create - 0x420a08e2 0x120 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a08e2 esp_mbedtls_server_session_create - .text.esp_mbedtls_server_session_delete - 0x420a0a02 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x420a0a02 esp_mbedtls_server_session_delete - .text.esp_transport_get_default_parent - 0x420a0a2a 0x2 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .text.esp_transport_list_init - 0x420a0a2c 0x64 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0a2c esp_transport_list_init - .text.esp_transport_list_add - 0x420a0a90 0xa4 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0a90 esp_transport_list_add - .text.esp_transport_list_get_transport - 0x420a0b34 0x36 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0b34 esp_transport_list_get_transport - .text.esp_transport_init - 0x420a0b6a 0x60 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0b6a esp_transport_init - .text.esp_transport_destroy - 0x420a0bca 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0bca esp_transport_destroy - .text.esp_transport_list_clean - 0x420a0bfa 0x28 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0bfa esp_transport_list_clean - .text.esp_transport_list_destroy - 0x420a0c22 0x20 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0c22 esp_transport_list_destroy - .text.esp_transport_connect - 0x420a0c42 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0c42 esp_transport_connect - .text.esp_transport_connect_async - 0x420a0c5c 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0c5c esp_transport_connect_async - .text.esp_transport_read - 0x420a0c76 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0c76 esp_transport_read - .text.esp_transport_write - 0x420a0c90 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0c90 esp_transport_write - .text.esp_transport_poll_read - 0x420a0caa 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0caa esp_transport_poll_read - .text.esp_transport_poll_write - 0x420a0cc4 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0cc4 esp_transport_poll_write - .text.esp_transport_close - 0x420a0cde 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0cde esp_transport_close - .text.esp_transport_get_context_data - 0x420a0cf8 0x6 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0cf8 esp_transport_get_context_data - .text.esp_transport_set_context_data - 0x420a0cfe 0xc esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0cfe esp_transport_set_context_data - .text.esp_transport_set_func - 0x420a0d0a 0x2a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d0a esp_transport_set_func - .text.esp_transport_get_default_port - 0x420a0d34 0xa esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d34 esp_transport_get_default_port - .text.esp_transport_set_default_port - 0x420a0d3e 0xc esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d3e esp_transport_set_default_port - .text.esp_transport_set_async_connect_func - 0x420a0d4a 0xc esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d4a esp_transport_set_async_connect_func - .text.esp_transport_set_parent_transport_func - 0x420a0d56 0xc esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d56 esp_transport_set_parent_transport_func - .text.esp_transport_get_error_handle - 0x420a0d62 0xa esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d62 esp_transport_get_error_handle - .text.esp_transport_get_errno - 0x420a0d6c 0x1e esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d6c esp_transport_get_errno - .text.capture_tcp_transport_error - 0x420a0d8a 0x4c esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0d8a capture_tcp_transport_error - .text.esp_transport_set_errors - 0x420a0dd6 0x8e esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0dd6 esp_transport_set_errors - .text.esp_transport_capture_errno - 0x420a0e64 0xe esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0e64 esp_transport_capture_errno - .text.esp_transport_get_socket - 0x420a0e72 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0e72 esp_transport_get_socket - .text.esp_transport_translate_error - 0x420a0e8c 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - 0x420a0e8c esp_transport_translate_error - .text.base_get_socket - 0x420a0ec4 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.esp_tls_connect_async - 0x420a0ed6 0xb4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.ssl_connect_async - 0x420a0f8a 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.tcp_connect_async - 0x420a0f9a 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.base_poll_write - 0x420a0faa 0x13a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.base_poll_read - 0x420a10e4 0x14e esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.base_close - 0x420a1232 0x4c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.ssl_write - 0x420a127e 0x10a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.ssl_read - 0x420a1388 0x106 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.ssl_connect - 0x420a148e 0x13a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.esp_transport_esp_tls_create - 0x420a15c8 0x1e esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.esp_transport_base_init - 0x420a15e6 0xcc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.tcp_write - 0x420a16b2 0xda esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.tcp_read - 0x420a178c 0xc8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.tcp_connect - 0x420a1854 0x90 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.esp_transport_ssl_enable_global_ca_store - 0x420a18e4 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a18e4 esp_transport_ssl_enable_global_ca_store - .text.esp_transport_ssl_set_tls_version - 0x420a18f2 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a18f2 esp_transport_ssl_set_tls_version - .text.esp_transport_ssl_set_cert_data - 0x420a18fc 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a18fc esp_transport_ssl_set_cert_data - .text.esp_transport_ssl_set_cert_data_der - 0x420a190a 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a190a esp_transport_ssl_set_cert_data_der - .text.esp_transport_ssl_set_client_cert_data - 0x420a1916 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1916 esp_transport_ssl_set_client_cert_data - .text.esp_transport_ssl_set_client_cert_data_der - 0x420a1924 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1924 esp_transport_ssl_set_client_cert_data_der - .text.esp_transport_ssl_set_client_key_data - 0x420a1930 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1930 esp_transport_ssl_set_client_key_data - .text.esp_transport_ssl_set_client_key_password - 0x420a193e 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a193e esp_transport_ssl_set_client_key_password - .text.esp_transport_ssl_set_client_key_data_der - 0x420a194a 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a194a esp_transport_ssl_set_client_key_data_der - .text.esp_transport_ssl_set_alpn_protocol - 0x420a1956 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1956 esp_transport_ssl_set_alpn_protocol - .text.esp_transport_ssl_skip_common_name_check - 0x420a1960 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1960 esp_transport_ssl_skip_common_name_check - .text.esp_transport_ssl_set_common_name - 0x420a196e 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a196e esp_transport_ssl_set_common_name - .text.esp_transport_ssl_crt_bundle_attach - 0x420a1978 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1978 esp_transport_ssl_crt_bundle_attach - .text.esp_transport_ssl_set_ds_data - 0x420a1982 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1982 esp_transport_ssl_set_ds_data - .text.esp_transport_ssl_set_keep_alive - 0x420a198c 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a198c esp_transport_ssl_set_keep_alive - .text.esp_transport_ssl_set_interface_name - 0x420a1996 0xa esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1996 esp_transport_ssl_set_interface_name - .text.esp_transport_ssl_init - 0x420a19a0 0x72 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a19a0 esp_transport_ssl_init - .text.esp_transport_esp_tls_destroy - 0x420a1a12 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1a12 esp_transport_esp_tls_destroy - .text.base_destroy - 0x420a1a24 0x26 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .text.esp_transport_tcp_init - 0x420a1a4a 0x74 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1a4a esp_transport_tcp_init - .text.esp_transport_tcp_set_keep_alive - 0x420a1abe 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1abe esp_transport_tcp_set_keep_alive - .text.esp_transport_tcp_set_interface_name - 0x420a1acc 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - 0x420a1acc esp_transport_tcp_set_interface_name - .text.esp_transport_utils_ms_to_timeval - 0x420a1ada 0x40 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - 0x420a1ada esp_transport_utils_ms_to_timeval - .text.esp_transport_init_foundation_transport - 0x420a1b1a 0xba esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - 0x420a1b1a esp_transport_init_foundation_transport - .text.esp_transport_destroy_foundation_transport - 0x420a1bd4 0x26 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - 0x420a1bd4 esp_transport_destroy_foundation_transport - .text.ws_get_socket - 0x420a1bfa 0x2a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_get_payload_transport_handle - 0x420a1c24 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_poll_write - 0x420a1c38 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text._ws_write - 0x420a1c54 0x1b2 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_write - 0x420a1e06 0x2e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_destroy - 0x420a1e34 0x5c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.internal_esp_transport_ws_set_path - 0x420a1e90 0x4e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_poll_read - 0x420a1ede 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_close - 0x420a1efa 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_read_internal - 0x420a1f0e 0x62 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_read_exact_size - 0x420a1f70 0x80 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_read_header - 0x420a1ff0 0x1f6 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_read_payload - 0x420a21e6 0xa8 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.trimwhitespace - 0x420a228e 0x5e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.get_http_header - 0x420a22ec 0x52 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.get_http_status_code - 0x420a233e 0x68 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_connect - 0x420a23a6 0x4fc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.esp_transport_ws_set_path - 0x420a28a2 0x42 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - 0x420a28a2 esp_transport_ws_set_path - .text.esp_transport_ws_init - 0x420a28e4 0x1e6 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - 0x420a28e4 esp_transport_ws_init - .text.esp_transport_ws_set_subprotocol - 0x420a2aca 0x4e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - 0x420a2aca esp_transport_ws_set_subprotocol - .text.esp_transport_ws_poll_connection_closed - 0x420a2b18 0x16a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - 0x420a2b18 esp_transport_ws_poll_connection_closed - .text.esp_transport_ws_handle_control_frames - 0x420a2c82 0x21e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_handle_control_frame_internal - 0x420a2ea0 0x138 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.ws_read 0x420a2fd8 0xbe esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .text.http_dispatch_event - 0x420a3096 0x2e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_message_begin - 0x420a30c4 0x10 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_url - 0x420a30d4 0x4 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_status - 0x420a30d8 0x4 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_message_complete - 0x420a30dc 0xc esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_chunk_complete - 0x420a30e8 0x4 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_chunk_header - 0x420a30ec 0xc esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_cached_buf_cleanup - 0x420a30f8 0x2a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_dispatch_event_to_event_loop - 0x420a3122 0x68 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_header_event - 0x420a318a 0x54 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_headers_complete - 0x420a31de 0x50 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text._clear_connection_info - 0x420a322e 0x8a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text._clear_auth_data - 0x420a32b8 0x7c esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_body - 0x420a3334 0x124 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_header_field - 0x420a3458 0x32 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_on_header_value - 0x420a348a 0xb2 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.init_common_tcp_transport - 0x420a353c 0xf2 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text._set_config - 0x420a362e 0x26e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text._get_host_header - 0x420a389c 0x48 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_get_data - 0x420a38e4 0x6e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_header - 0x420a3952 0x3a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3952 esp_http_client_set_header - .text.esp_http_client_prepare - 0x420a398c 0x82 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.http_client_prepare_first_line - 0x420a3a0e 0x170 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_set_method - 0x420a3b7e 0x6 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3b7e esp_http_client_set_method - .text.esp_http_client_is_complete_data_received - 0x420a3b84 0x24 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3b84 esp_http_client_is_complete_data_received - .text.esp_http_client_read - 0x420a3ba8 0x24e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3ba8 esp_http_client_read - .text.esp_http_client_fetch_headers - 0x420a3df6 0xc0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3df6 esp_http_client_fetch_headers - .text.esp_http_client_write - 0x420a3eb6 0x56 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3eb6 esp_http_client_write - .text.esp_http_client_send_post_data - 0x420a3f0c 0x88 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_close - 0x420a3f94 0x46 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a3f94 esp_http_client_close - .text.esp_http_client_connect - 0x420a3fda 0x1ba esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_cleanup - 0x420a4194 0xec esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4194 esp_http_client_cleanup - .text.esp_http_client_set_url - 0x420a4280 0x3e0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4280 esp_http_client_set_url - .text.esp_http_client_init - 0x420a4660 0x67a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4660 esp_http_client_init - .text.esp_http_client_set_redirection - 0x420a4cda 0x32 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4cda esp_http_client_set_redirection - .text.esp_http_client_request_send - 0x420a4d0c 0x1a2 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_open - 0x420a4eae 0x6e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4eae esp_http_client_open - .text.esp_http_client_get_post_field - 0x420a4f1c 0xe esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4f1c esp_http_client_get_post_field - .text.esp_http_client_get_status_code - 0x420a4f2a 0x6 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4f2a esp_http_client_get_status_code - .text.esp_http_client_get_content_length - 0x420a4f30 0x8 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4f30 esp_http_client_get_content_length - .text.esp_http_client_add_auth - 0x420a4f38 0xbe esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a4f38 esp_http_client_add_auth - .text.esp_http_check_response - 0x420a4ff6 0xc6 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .text.esp_http_client_perform - 0x420a50bc 0x30e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a50bc esp_http_client_perform - .text.esp_http_client_read_response - 0x420a53ca 0x3e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - 0x420a53ca esp_http_client_read_response - .text.http_auth_basic - 0x420a5408 0x13c esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - 0x420a5408 http_auth_basic - .text.http_header_new_item - 0x420a5544 0x128 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .text.http_header_init - 0x420a566c 0x5c esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a566c http_header_init - .text.http_header_get_item - 0x420a56c8 0x36 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a56c8 http_header_get_item - .text.http_header_delete - 0x420a56fe 0x66 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a56fe http_header_delete - .text.http_header_set - 0x420a5764 0x5a esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a5764 http_header_set - .text.http_header_set_format - 0x420a57be 0x84 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a57be http_header_set_format - .text.http_header_generate_string - 0x420a5842 0x11c esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a5842 http_header_generate_string - .text.http_header_clean - 0x420a595e 0x4a esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a595e http_header_clean - .text.http_header_destroy - 0x420a59a8 0x26 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - 0x420a59a8 http_header_destroy - .text.http_utils_assign_string - 0x420a59ce 0xc4 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - 0x420a59ce http_utils_assign_string - .text.http_utils_append_string - 0x420a5a92 0xde esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - 0x420a5a92 http_utils_append_string - .text.http_utils_trim_whitespace - 0x420a5b70 0x8a esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - 0x420a5b70 http_utils_trim_whitespace - .text.httpd_process_session - 0x420a5bfa 0x80 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_process_ctrl_msg - 0x420a5c7a 0xac esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_os_thread_delete - 0x420a5d26 0x16 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_create - 0x420a5d3c 0x214 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_server_init - 0x420a5f50 0x23c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_delete - 0x420a618c 0x4c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.esp_http_server_dispatch_event - 0x420a61d8 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x420a61d8 esp_http_server_dispatch_event - .text.httpd_accept_conn - 0x420a6238 0x2e6 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_server - 0x420a651e 0x1ae esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_thread - 0x420a66cc 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .text.httpd_queue_work - 0x420a6708 0x6a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x420a6708 httpd_queue_work - .text.httpd_get_global_transport_ctx - 0x420a6772 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x420a6772 httpd_get_global_transport_ctx - .text.httpd_start - 0x420a6776 0xd2 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x420a6776 httpd_start - .text.httpd_stop - 0x420a6848 0xbc esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x420a6848 httpd_stop - .text.init_req - 0x420a6904 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.init_req_aux - 0x420a6944 0x56 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.parse_init - 0x420a699a 0x7c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_header_value - 0x420a6a16 0x8e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_url 0x420a6aa4 0xb4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.verify_url - 0x420a6b58 0x152 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.pause_parsing - 0x420a6caa 0xc4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_no_body - 0x420a6d6e 0x90 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_on_body - 0x420a6dfe 0x72 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_header_field - 0x420a6e70 0xe4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.continue_parsing - 0x420a6f54 0x2e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.cb_headers_complete - 0x420a6f82 0x17c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.read_block - 0x420a70fe 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.parse_block - 0x420a7160 0x194 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_parse_req - 0x420a72f4 0x94 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_cleanup - 0x420a7388 0x5a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .text.httpd_req_new - 0x420a73e2 0x84 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - 0x420a73e2 httpd_req_new - .text.httpd_req_delete - 0x420a7466 0x4c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - 0x420a7466 httpd_req_delete - .text.httpd_req_get_hdr_value_str - 0x420a74b2 0xea esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - 0x420a74b2 httpd_req_get_hdr_value_str - .text.fd_is_valid - 0x420a759c 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_enum - 0x420a75c8 0x4c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a75c8 httpd_sess_enum - .text.httpd_sess_get_free - 0x420a7614 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7614 httpd_sess_get_free - .text.httpd_is_sess_available - 0x420a7656 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7656 httpd_is_sess_available - .text.httpd_sess_get - 0x420a7668 0x54 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7668 httpd_sess_get - .text.httpd_sess_free_ctx - 0x420a76bc 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a76bc httpd_sess_free_ctx - .text.httpd_sess_clear_ctx - 0x420a76e4 0x3e esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a76e4 httpd_sess_clear_ctx - .text.httpd_sess_get_transport_ctx - 0x420a7722 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7722 httpd_sess_get_transport_ctx - .text.httpd_sess_set_transport_ctx - 0x420a7734 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7734 httpd_sess_set_transport_ctx - .text.httpd_sess_set_descriptors - 0x420a776a 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a776a httpd_sess_set_descriptors - .text.httpd_sess_delete_invalid - 0x420a77ac 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a77ac httpd_sess_delete_invalid - .text.httpd_sess_delete - 0x420a77de 0xc0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a77de httpd_sess_delete - .text.enum_function - 0x420a789e 0x18a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_new - 0x420a7a28 0xb0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7a28 httpd_sess_new - .text.httpd_sess_close - 0x420a7ad8 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .text.httpd_sess_init - 0x420a7afe 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7afe httpd_sess_init - .text.httpd_sess_pending - 0x420a7b2e 0x2e esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7b2e httpd_sess_pending - .text.httpd_sess_process - 0x420a7b5c 0x56 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7b5c httpd_sess_process - .text.httpd_sess_trigger_close_ - 0x420a7bb2 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7bb2 httpd_sess_trigger_close_ - .text.httpd_sess_close_lru - 0x420a7bd2 0x56 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7bd2 httpd_sess_close_lru - .text.httpd_sess_close_all - 0x420a7c28 0x34 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x420a7c28 httpd_sess_close_all - .text.httpd_send_all - 0x420a7c5c 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_recv_pending - 0x420a7ca0 0x4a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_sock_err - 0x420a7cea 0x9a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .text.httpd_sess_set_send_override - 0x420a7d84 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7d84 httpd_sess_set_send_override - .text.httpd_sess_set_recv_override - 0x420a7da4 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7da4 httpd_sess_set_recv_override - .text.httpd_sess_set_pending_override - 0x420a7dc4 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7dc4 httpd_sess_set_pending_override - .text.httpd_recv_with_opt - 0x420a7de4 0x70 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7de4 httpd_recv_with_opt - .text.httpd_recv - 0x420a7e54 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7e54 httpd_recv - .text.httpd_unrecv - 0x420a7e64 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7e64 httpd_unrecv - .text.httpd_resp_set_hdr - 0x420a7ea6 0x56 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7ea6 httpd_resp_set_hdr - .text.httpd_resp_set_status - 0x420a7efc 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7efc httpd_resp_set_status - .text.httpd_resp_set_type - 0x420a7f18 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7f18 httpd_resp_set_type - .text.httpd_resp_send - 0x420a7f34 0x180 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a7f34 httpd_resp_send - .text.httpd_resp_send_err - 0x420a80b4 0x2b6 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a80b4 httpd_resp_send_err - .text.httpd_req_handle_err - 0x420a836a 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a836a httpd_req_handle_err - .text.httpd_req_recv - 0x420a839c 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a839c httpd_req_recv - .text.httpd_req_to_sockfd - 0x420a83fa 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a83fa httpd_req_to_sockfd - .text.httpd_default_send - 0x420a840a 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a840a httpd_default_send - .text.httpd_default_recv - 0x420a8440 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x420a8440 httpd_default_recv - .text.httpd_uri_match_simple - 0x420a8476 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .text.httpd_find_uri_handler - 0x420a84b8 0x9e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .text.httpd_register_uri_handler - 0x420a8556 0x13e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - 0x420a8556 httpd_register_uri_handler - .text.httpd_unregister_uri_handler - 0x420a8694 0x108 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - 0x420a8694 httpd_unregister_uri_handler - .text.httpd_unregister_all_uri_handlers - 0x420a879c 0x52 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - 0x420a879c httpd_unregister_all_uri_handlers - .text.httpd_uri - 0x420a87ee 0x10c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - 0x420a87ee httpd_uri - .text.cs_create_ctrl_sock - 0x420a88fa 0x74 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - 0x420a88fa cs_create_ctrl_sock - .text.cs_free_ctrl_sock - 0x420a896e 0xe esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - 0x420a896e cs_free_ctrl_sock - .text.cs_send_to_ctrl_sock - 0x420a897c 0x68 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - 0x420a897c cs_send_to_ctrl_sock - .text.redirection_required - 0x420a89e4 0x2a esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.process_again - 0x420a8a0e 0x36 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.is_server_verification_enabled - 0x420a8a44 0x20 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text._http_handle_response_code - 0x420a8a64 0x180 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text._http_connect - 0x420a8be4 0xe2 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_https_ota_dispatch_event - 0x420a8cc6 0x60 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_ota_verify_chip_id - 0x420a8d26 0x6e esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text._http_cleanup - 0x420a8d94 0x1a esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.read_header - 0x420a8dae 0xb4 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text._ota_write - 0x420a8e62 0x74 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .text.esp_https_ota_begin - 0x420a8ed6 0x3f6 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a8ed6 esp_https_ota_begin - .text.esp_https_ota_get_img_desc - 0x420a92cc 0xe6 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a92cc esp_https_ota_get_img_desc - .text.esp_https_ota_perform - 0x420a93b2 0x2be esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a93b2 esp_https_ota_perform - .text.esp_https_ota_is_complete_data_received - 0x420a9670 0x24 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a9670 esp_https_ota_is_complete_data_received - .text.esp_https_ota_finish - 0x420a9694 0xe2 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a9694 esp_https_ota_finish - .text.esp_https_ota_abort - 0x420a9776 0x96 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a9776 esp_https_ota_abort - .text.esp_https_ota_get_image_len_read - 0x420a980c 0x16 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - 0x420a980c esp_https_ota_get_image_len_read - .text.ciphersuite_is_removed - 0x420a9822 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .text.mbedtls_ssl_ciphersuite_from_id - 0x420a9826 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x420a9826 mbedtls_ssl_ciphersuite_from_id - .text.mbedtls_ssl_list_ciphersuites - 0x420a9842 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x420a9842 mbedtls_ssl_list_ciphersuites - .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg - 0x420a98b2 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x420a98b2 mbedtls_ssl_get_ciphersuite_sig_pk_alg - .text.mbedtls_ssl_get_ciphersuite_sig_alg - 0x420a98fa 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x420a98fa mbedtls_ssl_get_ciphersuite_sig_alg - .text.mbedtls_ssl_ciphersuite_uses_ec - 0x420a9920 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x420a9920 mbedtls_ssl_ciphersuite_uses_ec - .text.mbedtls_ct_uint_lt - 0x420a994c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_transform_aead_dynamic_iv_is_explicit - 0x420a9980 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_get_hs_total_len - 0x420a998e 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_check_record_type - 0x420a99a6 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_record_is_in_progress - 0x420a99be 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_transform_get_explicit_iv_len - 0x420a99cc 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_read_application_data - 0x420a99d6 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_build_record_nonce - 0x420a9a30 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_extract_add_data_from_record - 0x420a9aa2 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ct_hmac - 0x420a9b20 0x162 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_consume_current_message - 0x420a9c82 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_check_ctr_renegotiate - 0x420a9cda 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_set_timer - 0x420a9d4c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420a9d4c mbedtls_ssl_set_timer - .text.mbedtls_ssl_check_timer - 0x420a9d62 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420a9d62 mbedtls_ssl_check_timer - .text.mbedtls_ssl_encrypt_buf - 0x420a9d84 0x38c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420a9d84 mbedtls_ssl_encrypt_buf - .text.mbedtls_ssl_decrypt_buf - 0x420aa110 0x424 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa110 mbedtls_ssl_decrypt_buf - .text.ssl_prepare_record_content - 0x420aa534 0x9a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_fetch_input - 0x420aa5ce 0xac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa5ce mbedtls_ssl_fetch_input - .text.mbedtls_ssl_start_handshake_msg - 0x420aa67a 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa67a mbedtls_ssl_start_handshake_msg - .text.mbedtls_ssl_prepare_handshake_record - 0x420aa69a 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa69a mbedtls_ssl_prepare_handshake_record - .text.mbedtls_ssl_update_handshake_status - 0x420aa6d8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa6d8 mbedtls_ssl_update_handshake_status - .text.mbedtls_ssl_handle_message_type - 0x420aa700 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa700 mbedtls_ssl_handle_message_type - .text.mbedtls_ssl_update_out_pointers - 0x420aa7b6 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa7b6 mbedtls_ssl_update_out_pointers - .text.mbedtls_ssl_flush_output - 0x420aa7ee 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa7ee mbedtls_ssl_flush_output - .text.mbedtls_ssl_update_in_pointers - 0x420aa856 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa856 mbedtls_ssl_update_in_pointers - .text.mbedtls_ssl_get_bytes_avail - 0x420aa86c 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa86c mbedtls_ssl_get_bytes_avail - .text.mbedtls_ssl_transform_free - 0x420aa87a 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa87a mbedtls_ssl_transform_free - .text.mbedtls_ssl_write_version - 0x420aa8b6 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa8b6 mbedtls_ssl_write_version - .text.mbedtls_ssl_write_record - 0x420aa8d6 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aa8d6 mbedtls_ssl_write_record - .text.mbedtls_ssl_write_handshake_msg_ext - 0x420aaab8 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aaab8 mbedtls_ssl_write_handshake_msg_ext - .text.mbedtls_ssl_finish_handshake_msg - 0x420aab5e 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aab5e mbedtls_ssl_finish_handshake_msg - .text.mbedtls_ssl_write_change_cipher_spec - 0x420aab76 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aab76 mbedtls_ssl_write_change_cipher_spec - .text.mbedtls_ssl_send_alert_message - 0x420aaba0 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aaba0 mbedtls_ssl_send_alert_message - .text.ssl_tls12_handle_hs_message_post_handshake - 0x420aabee 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_handle_hs_message_post_handshake - 0x420aac6a 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_write_real - 0x420aac8a 0x6c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_write - 0x420aacf6 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aacf6 mbedtls_ssl_write - .text.mbedtls_ssl_read_version - 0x420aad48 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aad48 mbedtls_ssl_read_version - .text.ssl_parse_record_header - 0x420aad62 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.ssl_get_next_record - 0x420aae52 0xac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .text.mbedtls_ssl_read_record - 0x420aaefe 0x78 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aaefe mbedtls_ssl_read_record - .text.mbedtls_ssl_parse_change_cipher_spec - 0x420aaf76 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aaf76 mbedtls_ssl_parse_change_cipher_spec - .text.mbedtls_ssl_read - 0x420aafe6 0x140 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420aafe6 mbedtls_ssl_read - .text.mbedtls_ssl_handle_pending_alert - 0x420ab126 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420ab126 mbedtls_ssl_handle_pending_alert - .text.mbedtls_ssl_pend_fatal_alert - 0x420ab15e 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - 0x420ab15e mbedtls_ssl_pend_fatal_alert - .text.mbedtls_ssl_own_cert - 0x420ab16e 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_tls12_sig_alg_is_supported - 0x420ab184 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_mfl_code_to_length - 0x420ab1b0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_base_mode - 0x420ab1da 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_get_actual_mode - 0x420ab206 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_set_handshake_prfs - 0x420ab216 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_parse_certificate_coordinate - 0x420ab25e 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.tls_prf_get_type - 0x420ab2ac 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_key_cert_free - 0x420ab2d0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_append_key_cert - 0x420ab2ea 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.tls_prf_generic - 0x420ab346 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.tls_prf_sha256 - 0x420ab4e6 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.tls_prf_sha384 - 0x420ab504 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_compute_master - 0x420ab522 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_update_checksum_sha256 - 0x420ab5a2 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_update_checksum_sha384 - 0x420ab5b6 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_update_checksum_start - 0x420ab5ca 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_handshake_params_init - 0x420ab602 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_srv_check_client_no_crt_notification - 0x420ab648 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_check_peer_crt_unchanged - 0x420ab6a2 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_clear_peer_cert - 0x420ab6cc 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_prepare_handshake_step - 0x420ab6ee 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_write_hello_request - 0x420ab6fc 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_finished_tls_generic - 0x420ab722 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_finished_tls_sha256 - 0x420ab7da 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_finished_tls_sha384 - 0x420ab7f8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_verify_tls_legacy - 0x420ab816 0x6c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_verify_tls_sha256 - 0x420ab882 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_calc_verify_tls_sha384 - 0x420ab89a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.ssl_parse_certificate_chain - 0x420ab8b2 0x1dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_pk_get_ec_group_id - 0x420aba8e 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_optimize_checksum - 0x420abab6 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abab6 mbedtls_ssl_optimize_checksum - .text.mbedtls_ssl_add_hs_hdr_to_checksum - 0x420abadc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abadc mbedtls_ssl_add_hs_hdr_to_checksum - .text.mbedtls_ssl_reset_checksum - 0x420abb08 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abb08 mbedtls_ssl_reset_checksum - .text.mbedtls_ssl_transform_init - 0x420abb88 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abb88 mbedtls_ssl_transform_init - .text.mbedtls_ssl_session_init - 0x420abbc6 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abbc6 mbedtls_ssl_session_init - .text.mbedtls_ssl_init - 0x420abbde 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abbde mbedtls_ssl_init - .text.mbedtls_ssl_conf_endpoint - 0x420abbf6 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abbf6 mbedtls_ssl_conf_endpoint - .text.mbedtls_ssl_conf_transport - 0x420abbfc 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abbfc mbedtls_ssl_conf_transport - .text.mbedtls_ssl_conf_authmode - 0x420abc02 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc02 mbedtls_ssl_conf_authmode - .text.mbedtls_ssl_conf_verify - 0x420abc08 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc08 mbedtls_ssl_conf_verify - .text.mbedtls_ssl_conf_rng - 0x420abc0e 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc0e mbedtls_ssl_conf_rng - .text.mbedtls_ssl_set_bio - 0x420abc14 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc14 mbedtls_ssl_set_bio - .text.mbedtls_ssl_conf_ciphersuites - 0x420abc1e 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc1e mbedtls_ssl_conf_ciphersuites - .text.mbedtls_ssl_conf_own_cert - 0x420abc22 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc22 mbedtls_ssl_conf_own_cert - .text.mbedtls_ssl_conf_ca_chain - 0x420abc34 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc34 mbedtls_ssl_conf_ca_chain - .text.mbedtls_ssl_get_mode_from_transform - 0x420abc3a 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc3a mbedtls_ssl_get_mode_from_transform - .text.mbedtls_ssl_get_mode_from_ciphersuite - 0x420abc64 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abc64 mbedtls_ssl_get_mode_from_ciphersuite - .text.ssl_tls12_populate_transform - 0x420abc92 0x33e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_set_hostname - 0x420abfd0 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420abfd0 mbedtls_ssl_set_hostname - .text.mbedtls_ssl_conf_alpn_protocols - 0x420ac064 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac064 mbedtls_ssl_conf_alpn_protocols - .text.mbedtls_ssl_conf_renegotiation - 0x420ac0bc 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac0bc mbedtls_ssl_conf_renegotiation - .text.mbedtls_ssl_conf_session_tickets - 0x420ac0c2 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac0c2 mbedtls_ssl_conf_session_tickets - .text.mbedtls_ssl_get_verify_result - 0x420ac0da 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac0da mbedtls_ssl_get_verify_result - .text.mbedtls_ssl_get_output_max_frag_len - 0x420ac0ee 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac0ee mbedtls_ssl_get_output_max_frag_len - .text.mbedtls_ssl_get_max_out_record_payload - 0x420ac134 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac134 mbedtls_ssl_get_max_out_record_payload - .text.mbedtls_ssl_handshake_step - 0x420ac164 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac164 mbedtls_ssl_handshake_step - .text.mbedtls_ssl_handshake - 0x420ac206 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac206 mbedtls_ssl_handshake - .text.mbedtls_ssl_handshake_free - 0x420ac23e 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac23e mbedtls_ssl_handshake_free - .text.mbedtls_ssl_session_free - 0x420ac282 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac282 mbedtls_ssl_session_free - .text.ssl_handshake_init - 0x420ac2a8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .text.mbedtls_ssl_start_renegotiation - 0x420ac350 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac350 mbedtls_ssl_start_renegotiation - .text.mbedtls_ssl_renegotiate - 0x420ac376 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac376 mbedtls_ssl_renegotiate - .text.mbedtls_ssl_free - 0x420ac3e8 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac3e8 mbedtls_ssl_free - .text.mbedtls_ssl_config_init - 0x420ac48a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac48a mbedtls_ssl_config_init - .text.mbedtls_ssl_config_defaults - 0x420ac4a2 0x116 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac4a2 mbedtls_ssl_config_defaults - .text.mbedtls_ssl_config_free - 0x420ac5b8 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac5b8 mbedtls_ssl_config_free - .text.mbedtls_ssl_sig_from_pk - 0x420ac5da 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac5da mbedtls_ssl_sig_from_pk - .text.mbedtls_ssl_sig_from_pk_alg - 0x420ac602 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac602 mbedtls_ssl_sig_from_pk_alg - .text.mbedtls_ssl_pk_alg_from_sig - 0x420ac624 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac624 mbedtls_ssl_pk_alg_from_sig - .text.mbedtls_ssl_md_alg_from_hash - 0x420ac63c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac63c mbedtls_ssl_md_alg_from_hash - .text.mbedtls_ssl_hash_from_md_alg - 0x420ac684 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac684 mbedtls_ssl_hash_from_md_alg - .text.mbedtls_ssl_check_curve_tls_id - 0x420ac6cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac6cc mbedtls_ssl_check_curve_tls_id - .text.mbedtls_ssl_get_ecp_group_id_from_tls_id - 0x420ac6ec 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac6ec mbedtls_ssl_get_ecp_group_id_from_tls_id - .text.mbedtls_ssl_get_tls_id_from_ecp_group_id - 0x420ac728 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac728 mbedtls_ssl_get_tls_id_from_ecp_group_id - .text.mbedtls_ssl_check_curve - 0x420ac764 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac764 mbedtls_ssl_check_curve - .text.mbedtls_ssl_parse_sig_alg_ext - 0x420ac788 0x18c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac788 mbedtls_ssl_parse_sig_alg_ext - .text.mbedtls_ssl_derive_keys - 0x420ac914 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac914 mbedtls_ssl_derive_keys - .text.mbedtls_ssl_set_calc_verify_md - 0x420ac9d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ac9d8 mbedtls_ssl_set_calc_verify_md - .text.mbedtls_ssl_write_certificate - 0x420aca08 0x134 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420aca08 mbedtls_ssl_write_certificate - .text.mbedtls_ssl_handshake_wrapup_free_hs_transform - 0x420acb3c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acb3c mbedtls_ssl_handshake_wrapup_free_hs_transform - .text.mbedtls_ssl_handshake_wrapup - 0x420acb70 0x6c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acb70 mbedtls_ssl_handshake_wrapup - .text.mbedtls_ssl_write_finished - 0x420acbdc 0x102 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acbdc mbedtls_ssl_write_finished - .text.mbedtls_ssl_parse_finished - 0x420accde 0x144 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420accde mbedtls_ssl_parse_finished - .text.mbedtls_ssl_get_key_exchange_md_tls1_2 - 0x420ace22 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ace22 mbedtls_ssl_get_key_exchange_md_tls1_2 - .text.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg - 0x420acec4 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acec4 mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg - .text.mbedtls_ssl_validate_ciphersuite - 0x420acf1e 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acf1e mbedtls_ssl_validate_ciphersuite - .text.mbedtls_ssl_write_sig_alg_ext - 0x420acf40 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420acf40 mbedtls_ssl_write_sig_alg_ext - .text.mbedtls_ssl_parse_server_name_ext - 0x420ad06c 0x11c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad06c mbedtls_ssl_parse_server_name_ext - .text.mbedtls_ssl_parse_alpn_ext - 0x420ad188 0x14c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad188 mbedtls_ssl_parse_alpn_ext - .text.mbedtls_ssl_write_alpn_ext - 0x420ad2d4 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad2d4 mbedtls_ssl_write_alpn_ext - .text.mbedtls_ssl_check_cert_usage - 0x420ad398 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad398 mbedtls_ssl_check_cert_usage - .text.mbedtls_ssl_verify_certificate - 0x420ad470 0x198 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad470 mbedtls_ssl_verify_certificate - .text.mbedtls_ssl_parse_certificate - 0x420ad608 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x420ad608 mbedtls_ssl_parse_certificate - .text.manage_resource - 0x420ad6ee 0x2ac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .text.__wrap_mbedtls_ssl_handshake_client_step - 0x420ad99a 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - 0x420ad99a __wrap_mbedtls_ssl_handshake_client_step - .text.__wrap_mbedtls_ssl_write_client_hello - 0x420ad9c4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - 0x420ad9c4 __wrap_mbedtls_ssl_write_client_hello - .text.ssl_ciphersuite_uses_rsa_key_ex - 0x420ad9ee 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .text.manage_resource - 0x420ada0e 0x26a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .text.__wrap_mbedtls_ssl_handshake_server_step - 0x420adc78 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - 0x420adc78 __wrap_mbedtls_ssl_handshake_server_step - .text.tx_done 0x420adca2 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.rx_done 0x420adcb0 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.ssl_handshake_params_init - 0x420adcbe 0x92 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.ssl_handshake_init - 0x420add50 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.ssl_update_checksum_start - 0x420addf2 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .text.__wrap_mbedtls_ssl_setup - 0x420ade26 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - 0x420ade26 __wrap_mbedtls_ssl_setup - .text.__wrap_mbedtls_ssl_write - 0x420ade72 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - 0x420ade72 __wrap_mbedtls_ssl_write - .text.__wrap_mbedtls_ssl_read - 0x420adebe 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - 0x420adebe __wrap_mbedtls_ssl_read - .text.__wrap_mbedtls_ssl_free - 0x420adf18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - 0x420adf18 __wrap_mbedtls_ssl_free - .text.__wrap_mbedtls_ssl_send_alert_message - 0x420adf48 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - 0x420adf48 __wrap_mbedtls_ssl_send_alert_message - .text.net_would_block - 0x420adf94 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .text.mbedtls_net_init - 0x420adfba 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - 0x420adfba mbedtls_net_init - .text.mbedtls_net_recv - 0x420adfc0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - 0x420adfc0 mbedtls_net_recv - .text.mbedtls_net_send - 0x420ae030 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - 0x420ae030 mbedtls_net_send - .text.mbedtls_net_free - 0x420ae0a0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - 0x420ae0a0 mbedtls_net_free - .text.mbedtls_ssl_tls12_named_group_is_ecdhe - 0x420ae0c8 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_generate_random - 0x420ae166 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_prepare_client_hello - 0x420ae1cc 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_write_client_hello_cipher_suites - 0x420ae26e 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_write_hostname_ext - 0x420ae3b6 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_write_alpn_ext - 0x420ae498 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_write_supported_groups_ext - 0x420ae5a0 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.ssl_write_client_hello_body - 0x420ae6cc 0x22e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .text.mbedtls_ssl_write_client_hello - 0x420ae8fa 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - 0x420ae8fa mbedtls_ssl_write_client_hello - .text.mbedtls_ssl_own_key - 0x420ae960 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.mbedtls_ssl_own_cert - 0x420ae976 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.mbedtls_ssl_tls12_sig_alg_is_supported - 0x420ae98c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_supported_point_formats_ext - 0x420ae9b8 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_max_fragment_length_ext - 0x420ae9fe 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_encrypt_then_mac_ext - 0x420aea4e 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_extended_ms_ext - 0x420aea94 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_renegotiation_ext - 0x420aeada 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_session_ticket_ext - 0x420aeb60 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_max_fragment_length_ext - 0x420aec00 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_encrypt_then_mac_ext - 0x420aec34 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_extended_ms_ext - 0x420aec64 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_session_ticket_ext - 0x420aec94 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_supported_point_formats_ext - 0x420aecc6 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_certificate_request - 0x420aed1e 0x140 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_server_hello_done - 0x420aee5e 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_renegotiation_info - 0x420aeeb6 0x90 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_alpn_ext - 0x420aef46 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_server_hello - 0x420af022 0x478 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_check_server_ecdh_params - 0x420af49a 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_get_ecdh_params_from_cert - 0x420af4d0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_server_ecdh_params - 0x420af548 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.mbedtls_ssl_get_pk_type_and_md_alg_from_sig_alg - 0x420af57c 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.mbedtls_md_get_size_from_type - 0x420af606 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_server_key_exchange - 0x420af618 0x2f6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_encrypted_pms - 0x420af90e 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_client_key_exchange - 0x420af9fa 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_write_certificate_verify - 0x420afaac 0x156 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.ssl_parse_new_session_ticket - 0x420afc02 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .text.mbedtls_ssl_tls12_write_client_hello_exts - 0x420afd52 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - 0x420afd52 mbedtls_ssl_tls12_write_client_hello_exts - .text.mbedtls_ssl_handshake_client_step - 0x420afdf8 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - 0x420afdf8 mbedtls_ssl_handshake_client_step - .text.mbedtls_ssl_ciphersuite_no_pfs - 0x420aff48 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_ssl_own_key - 0x420aff6a 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_ssl_own_cert - 0x420aff80 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_ssl_tls12_sig_alg_is_supported - 0x420aff96 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_extended_ms_ext - 0x420affc2 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_session_ticket_ext - 0x420affe8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_max_fragment_length_ext - 0x420b0010 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_supported_point_formats_ext - 0x420b0040 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_supported_point_formats - 0x420b0074 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_max_fragment_length_ext - 0x420b00be 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_encrypt_then_mac_ext - 0x420b00f2 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_extended_ms_ext - 0x420b012a 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_renegotiation_ext - 0x420b0162 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_renegotiation_info - 0x420b0204 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_supported_groups_ext - 0x420b0278 0x10a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_handle_id_based_session_resumption - 0x420b0382 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_session_ticket_ext - 0x420b041a 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_pk_get_ec_group_id - 0x420b04ae 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_check_key_curve - 0x420b04d6 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_pick_cert - 0x420b0508 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_ciphersuite_match - 0x420b059c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_client_hello - 0x420b0634 0x69a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_encrypt_then_mac_ext - 0x420b0cce 0x6c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_server_hello - 0x420b0d3a 0x234 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_server_hello_done - 0x420b0f6e 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_get_ecdh_params_from_cert - 0x420b0f9c 0x62 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_prepare_server_key_exchange - 0x420b0ffe 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_server_key_exchange - 0x420b11d6 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_certificate_request - 0x420b1294 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_decrypt_encrypted_pms - 0x420b1490 0xda esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_encrypted_pms - 0x420b156a 0xfe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_client_key_exchange - 0x420b1668 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_parse_certificate_verify - 0x420b1738 0x172 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.ssl_write_new_session_ticket - 0x420b18aa 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .text.mbedtls_ssl_handshake_server_step - 0x420b195c 0x130 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - 0x420b195c mbedtls_ssl_handshake_server_step - .text.mbedtls_ms_time - 0x420b1a8c 0x6e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - 0x420b1a8c mbedtls_ms_time - .text.esp_mbedtls_set_buf_state - 0x420b1afa 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_get_buf_state - 0x420b1b00 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_init_ssl_buf - 0x420b1b06 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_parse_record_header - 0x420b1b10 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.tx_buffer_len - 0x420b1b2c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.init_tx_buffer - 0x420b1b3c 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.init_rx_buffer - 0x420b1ba2 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_free_buf - 0x420b1bf4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1bf4 esp_mbedtls_free_buf - .text.esp_mbedtls_alloc_tx_buf - 0x420b1c04 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .text.esp_mbedtls_setup_tx_buffer - 0x420b1c8a 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1c8a esp_mbedtls_setup_tx_buffer - .text.esp_mbedtls_setup_rx_buffer - 0x420b1cb8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1cb8 esp_mbedtls_setup_rx_buffer - .text.esp_mbedtls_add_tx_buffer - 0x420b1cd0 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1cd0 esp_mbedtls_add_tx_buffer - .text.esp_mbedtls_free_tx_buffer - 0x420b1de0 0x102 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1de0 esp_mbedtls_free_tx_buffer - .text.esp_mbedtls_add_rx_buffer - 0x420b1ee2 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b1ee2 esp_mbedtls_add_rx_buffer - .text.esp_mbedtls_free_rx_buffer - 0x420b20aa 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b20aa esp_mbedtls_free_rx_buffer - .text.esp_mbedtls_get_crt_size - 0x420b21fa 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b21fa esp_mbedtls_get_crt_size - .text.esp_mbedtls_free_dhm - 0x420b2212 0x2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b2212 esp_mbedtls_free_dhm - .text.esp_mbedtls_free_keycert - 0x420b2214 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b2214 esp_mbedtls_free_keycert - .text.esp_mbedtls_free_keycert_key - 0x420b223a 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b223a esp_mbedtls_free_keycert_key - .text.esp_mbedtls_free_keycert_cert - 0x420b2260 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b2260 esp_mbedtls_free_keycert_cert - .text.esp_mbedtls_free_cacert - 0x420b2286 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - 0x420b2286 esp_mbedtls_free_cacert - .text.mbedtls_int_div_int - 0x420b22ac 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_init - 0x420b22fe 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b22fe mbedtls_mpi_init - .text.mbedtls_mpi_free - 0x420b230e 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b230e mbedtls_mpi_free - .text.mbedtls_mpi_grow - 0x420b233c 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b233c mbedtls_mpi_grow - .text.mbedtls_mpi_safe_cond_assign - 0x420b23a8 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b23a8 mbedtls_mpi_safe_cond_assign - .text.mbedtls_mpi_safe_cond_swap - 0x420b243e 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b243e mbedtls_mpi_safe_cond_swap - .text.mbedtls_mpi_resize_clear - 0x420b24e4 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_shrink - 0x420b2532 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2532 mbedtls_mpi_shrink - .text.mbedtls_mpi_copy - 0x420b25ba 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b25ba mbedtls_mpi_copy - .text.mbedtls_mpi_swap - 0x420b266a 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b266a mbedtls_mpi_swap - .text.mbedtls_mpi_lset - 0x420b2730 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2730 mbedtls_mpi_lset - .text.mbedtls_mpi_get_bit - 0x420b2788 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2788 mbedtls_mpi_get_bit - .text.mbedtls_mpi_set_bit - 0x420b27aa 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b27aa mbedtls_mpi_set_bit - .text.mbedtls_mpi_lsb - 0x420b281e 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b281e mbedtls_mpi_lsb - .text.mbedtls_mpi_bitlen - 0x420b285a 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b285a mbedtls_mpi_bitlen - .text.mbedtls_mpi_size - 0x420b286e 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b286e mbedtls_mpi_size - .text.mbedtls_mpi_read_binary_le - 0x420b2880 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2880 mbedtls_mpi_read_binary_le - .text.mbedtls_mpi_read_binary - 0x420b28c0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b28c0 mbedtls_mpi_read_binary - .text.mbedtls_mpi_write_binary_le - 0x420b2900 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2900 mbedtls_mpi_write_binary_le - .text.mbedtls_mpi_write_binary - 0x420b2918 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2918 mbedtls_mpi_write_binary - .text.mbedtls_mpi_shift_l - 0x420b2930 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2930 mbedtls_mpi_shift_l - .text.mbedtls_mpi_shift_r - 0x420b297a 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b297a mbedtls_mpi_shift_r - .text.mbedtls_mpi_cmp_abs - 0x420b2996 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2996 mbedtls_mpi_cmp_abs - .text.mbedtls_mpi_cmp_mpi - 0x420b2a0e 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2a0e mbedtls_mpi_cmp_mpi - .text.mbedtls_mpi_cmp_int - 0x420b2abe 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2abe mbedtls_mpi_cmp_int - .text.mbedtls_mpi_add_abs - 0x420b2af0 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2af0 mbedtls_mpi_add_abs - .text.mbedtls_mpi_sub_abs - 0x420b2bb0 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2bb0 mbedtls_mpi_sub_abs - .text.add_sub_mpi - 0x420b2c8c 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_add_mpi - 0x420b2d0a 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2d0a mbedtls_mpi_add_mpi - .text.mbedtls_mpi_sub_mpi - 0x420b2d1a 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2d1a mbedtls_mpi_sub_mpi - .text.mbedtls_mpi_add_int - 0x420b2d2a 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2d2a mbedtls_mpi_add_int - .text.mbedtls_mpi_sub_int - 0x420b2d5c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2d5c mbedtls_mpi_sub_int - .text.mbedtls_mpi_div_mpi - 0x420b2d8e 0x39c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b2d8e mbedtls_mpi_div_mpi - .text.mbedtls_mpi_div_int - 0x420b312a 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b312a mbedtls_mpi_div_int - .text.mbedtls_mpi_mod_mpi - 0x420b315c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b315c mbedtls_mpi_mod_mpi - .text.mbedtls_mpi_exp_mod_optionally_safe - 0x420b31d0 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_mod_int - 0x420b33d8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b33d8 mbedtls_mpi_mod_int - .text.mpi_check_small_factors - 0x420b3464 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_exp_mod_soft - 0x420b34ce 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b34ce mbedtls_mpi_exp_mod_soft - .text.mbedtls_mpi_exp_mod_unsafe - 0x420b34e2 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b34e2 mbedtls_mpi_exp_mod_unsafe - .text.mbedtls_mpi_gcd - 0x420b34fc 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b34fc mbedtls_mpi_gcd - .text.mbedtls_mpi_fill_random - 0x420b3618 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b3618 mbedtls_mpi_fill_random - .text.mpi_miller_rabin - 0x420b3660 0x1be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_random - 0x420b381e 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b381e mbedtls_mpi_random - .text.mbedtls_mpi_inv_mod - 0x420b387e 0x29e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b387e mbedtls_mpi_inv_mod - .text.mbedtls_mpi_is_prime_ext - 0x420b3b1c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b3b1c mbedtls_mpi_is_prime_ext - .text.mbedtls_mpi_gen_prime - 0x420b3b90 0x236 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x420b3b90 mbedtls_mpi_gen_prime - .text.mbedtls_ct_uint_lt - 0x420b3dc6 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.exp_mod_get_window_size - 0x420b3dfa 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mpi_bigendian_to_host - 0x420b3e0a 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_clz - 0x420b3e1c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3e1c mbedtls_mpi_core_clz - .text.mbedtls_mpi_core_bitlen - 0x420b3e2e 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3e2e mbedtls_mpi_core_bitlen - .text.exp_mod_calc_first_bit_optionally_safe - 0x420b3e68 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_bigendian_to_host - 0x420b3ea4 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3ea4 mbedtls_mpi_core_bigendian_to_host - .text.mbedtls_mpi_core_uint_le_mpi - 0x420b3eea 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3eea mbedtls_mpi_core_uint_le_mpi - .text.mbedtls_mpi_core_lt_ct - 0x420b3f32 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3f32 mbedtls_mpi_core_lt_ct - .text.mbedtls_mpi_core_cond_assign - 0x420b3fa0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b3fa0 mbedtls_mpi_core_cond_assign - .text.mbedtls_mpi_core_ct_uint_table_lookup - 0x420b3fd2 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.exp_mod_table_lookup_optionally_safe - 0x420b4030 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_cond_swap - 0x420b405e 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b405e mbedtls_mpi_core_cond_swap - .text.mbedtls_mpi_core_read_le - 0x420b40b0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b40b0 mbedtls_mpi_core_read_le - .text.mbedtls_mpi_core_read_be - 0x420b4124 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4124 mbedtls_mpi_core_read_be - .text.mbedtls_mpi_core_write_le - 0x420b4196 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4196 mbedtls_mpi_core_write_le - .text.mbedtls_mpi_core_write_be - 0x420b4216 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4216 mbedtls_mpi_core_write_be - .text.mbedtls_mpi_core_shift_r - 0x420b429e 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b429e mbedtls_mpi_core_shift_r - .text.mbedtls_mpi_core_shift_l - 0x420b4336 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4336 mbedtls_mpi_core_shift_l - .text.mbedtls_mpi_core_add - 0x420b43b6 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b43b6 mbedtls_mpi_core_add - .text.mbedtls_mpi_core_sub - 0x420b43f0 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b43f0 mbedtls_mpi_core_sub - .text.mbedtls_mpi_core_mla - 0x420b4426 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4426 mbedtls_mpi_core_mla - .text.mbedtls_mpi_core_montmul_init - 0x420b4586 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4586 mbedtls_mpi_core_montmul_init - .text.mbedtls_mpi_core_montmul - 0x420b45b2 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b45b2 mbedtls_mpi_core_montmul - .text.exp_mod_precompute_window - 0x420b4680 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_exp_mod_optionally_safe - 0x420b471e 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .text.mbedtls_mpi_core_get_mont_r2_unsafe - 0x420b4840 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4840 mbedtls_mpi_core_get_mont_r2_unsafe - .text.mbedtls_mpi_core_fill_random - 0x420b4884 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4884 mbedtls_mpi_core_fill_random - .text.mbedtls_mpi_core_random - 0x420b4910 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4910 mbedtls_mpi_core_random - .text.mbedtls_mpi_core_exp_mod_working_limbs - 0x420b49c8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b49c8 mbedtls_mpi_core_exp_mod_working_limbs - .text.mbedtls_mpi_core_exp_mod - 0x420b49f4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b49f4 mbedtls_mpi_core_exp_mod - .text.mbedtls_mpi_core_exp_mod_unsafe - 0x420b4a08 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4a08 mbedtls_mpi_core_exp_mod_unsafe - .text.mbedtls_mpi_core_sub_int - 0x420b4a22 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4a22 mbedtls_mpi_core_sub_int - .text.mbedtls_mpi_core_check_zero_ct - 0x420b4a4c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4a4c mbedtls_mpi_core_check_zero_ct - .text.mbedtls_mpi_core_to_mont_rep - 0x420b4a72 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4a72 mbedtls_mpi_core_to_mont_rep - .text.mbedtls_mpi_core_from_mont_rep - 0x420b4a8c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - 0x420b4a8c mbedtls_mpi_core_from_mont_rep - .text.mbedtls_ct_uint_lt - 0x420b4aaa 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.add_pkcs_padding - 0x420b4ade 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.get_pkcs_padding - 0x420b4afa 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.add_one_and_zeros_padding - 0x420b4bc2 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.get_one_and_zeros_padding - 0x420b4bea 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.add_zeros_and_len_padding - 0x420b4c82 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.get_zeros_and_len_padding - 0x420b4caa 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.get_zeros_padding - 0x420b4d52 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.get_no_padding - 0x420b4db0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.add_zeros_padding - 0x420b4dca 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_aead_encrypt - 0x420b4de6 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_aead_decrypt - 0x420b4e5a 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .text.mbedtls_cipher_info_from_type - 0x420b4ee0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4ee0 mbedtls_cipher_info_from_type - .text.mbedtls_cipher_info_from_values - 0x420b4efa 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4efa mbedtls_cipher_info_from_values - .text.mbedtls_cipher_init - 0x420b4f3a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4f3a mbedtls_cipher_init - .text.mbedtls_cipher_free - 0x420b4f52 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4f52 mbedtls_cipher_free - .text.mbedtls_cipher_setup - 0x420b4f94 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4f94 mbedtls_cipher_setup - .text.mbedtls_cipher_setkey - 0x420b4fe8 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b4fe8 mbedtls_cipher_setkey - .text.mbedtls_cipher_set_iv - 0x420b5088 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b5088 mbedtls_cipher_set_iv - .text.mbedtls_cipher_reset - 0x420b5158 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b5158 mbedtls_cipher_reset - .text.mbedtls_cipher_update - 0x420b516c 0x2fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b516c mbedtls_cipher_update - .text.mbedtls_cipher_finish - 0x420b5466 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b5466 mbedtls_cipher_finish - .text.mbedtls_cipher_set_padding_mode - 0x420b55e8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b55e8 mbedtls_cipher_set_padding_mode - .text.mbedtls_cipher_crypt - 0x420b56a8 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b56a8 mbedtls_cipher_crypt - .text.mbedtls_cipher_auth_encrypt_ext - 0x420b570c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b570c mbedtls_cipher_auth_encrypt_ext - .text.mbedtls_cipher_auth_decrypt_ext - 0x420b5748 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x420b5748 mbedtls_cipher_auth_decrypt_ext - .text.xts_aes_ctx_free - 0x420b5782 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.xts_aes_ctx_alloc - 0x420b579e 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.xts_aes_setkey_dec_wrap - 0x420b57c0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.xts_aes_setkey_enc_wrap - 0x420b57ce 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_xts_wrap - 0x420b57dc 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.gcm_ctx_free - 0x420b57fa 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.gcm_ctx_alloc - 0x420b5814 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.gcm_aria_setkey_wrap - 0x420b5836 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.gcm_aes_setkey_wrap - 0x420b584a 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.ccm_ctx_free - 0x420b585e 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.ccm_ctx_alloc - 0x420b5878 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.ccm_aria_setkey_wrap - 0x420b589a 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.ccm_aes_setkey_wrap - 0x420b58ae 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_ctx_free - 0x420b58c2 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_ctx_alloc - 0x420b58dc 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_setkey_dec_wrap - 0x420b58fe 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_setkey_enc_wrap - 0x420b590c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_crypt_ctr_wrap - 0x420b591a 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_crypt_cfb128_wrap - 0x420b5928 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_crypt_cbc_wrap - 0x420b5936 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aria_crypt_ecb_wrap - 0x420b5944 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_ctx_free - 0x420b5956 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_ctx_alloc - 0x420b5970 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_setkey_dec_wrap - 0x420b5992 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_setkey_enc_wrap - 0x420b59a0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_ctr_wrap - 0x420b59ae 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_ofb_wrap - 0x420b59bc 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_cfb128_wrap - 0x420b59ca 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_cbc_wrap - 0x420b59d8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.aes_crypt_ecb_wrap - 0x420b59e6 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .text.mbedtls_ct_uint_lt - 0x420b59f4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .text.mbedtls_ct_memcmp - 0x420b5a28 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - 0x420b5a28 mbedtls_ct_memcmp - .text.mbedtls_ct_memmove_left - 0x420b5a56 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - 0x420b5a56 mbedtls_ct_memmove_left - .text.mbedtls_ct_memcpy_if - 0x420b5acc 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - 0x420b5acc mbedtls_ct_memcpy_if - .text.mbedtls_ct_memcpy_offset - 0x420b5b08 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - 0x420b5b08 mbedtls_ct_memcpy_offset - .text.mbedtls_ct_zeroize_if - 0x420b5b6a 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - 0x420b5b6a mbedtls_ct_zeroize_if - .text.cmac_pad - 0x420b5b88 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.cmac_multiply_by_u - 0x420b5bc4 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.cmac_generate_subkeys - 0x420b5c92 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .text.mbedtls_cipher_cmac_starts - 0x420b5d02 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - 0x420b5d02 mbedtls_cipher_cmac_starts - .text.mbedtls_cipher_cmac_update - 0x420b5d92 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - 0x420b5d92 mbedtls_cipher_cmac_update - .text.mbedtls_cipher_cmac_finish - 0x420b5ecc 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - 0x420b5ecc mbedtls_cipher_cmac_finish - .text.good_nonce_len - 0x420b6012 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_increment_counter - 0x420b6024 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.block_cipher_df - 0x420b609e 0x1c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.ctr_drbg_update_internal - 0x420b6260 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_reseed_internal - 0x420b6316 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_init - 0x420b6408 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b6408 mbedtls_ctr_drbg_init - .text.mbedtls_ctr_drbg_free - 0x420b643a 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b643a mbedtls_ctr_drbg_free - .text.mbedtls_ctr_drbg_reseed - 0x420b646a 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b646a mbedtls_ctr_drbg_reseed - .text.mbedtls_ctr_drbg_seed - 0x420b647a 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b647a mbedtls_ctr_drbg_seed - .text.mbedtls_ctr_drbg_random_with_add - 0x420b64e8 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b64e8 mbedtls_ctr_drbg_random_with_add - .text.mbedtls_ctr_drbg_random - 0x420b65cc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x420b65cc mbedtls_ctr_drbg_random - .text.mbedtls_ecdh_grp_id - 0x420b65de 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_gen_public_restartable - 0x420b65e2 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_compute_shared_restartable - 0x420b6630 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_init_internal - 0x420b66ac 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_setup_internal - 0x420b66e0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_free_internal - 0x420b66f8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_read_params_internal - 0x420b672c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_read_public_internal - 0x420b6746 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_get_params_internal - 0x420b677c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.mbedtls_ecdh_gen_public - 0x420b67cc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b67cc mbedtls_ecdh_gen_public - .text.ecdh_make_params_internal - 0x420b67dc 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.ecdh_make_public_internal - 0x420b6858 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.mbedtls_ecdh_compute_shared - 0x420b68b6 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b68b6 mbedtls_ecdh_compute_shared - .text.ecdh_calc_secret_internal - 0x420b68c6 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .text.mbedtls_ecdh_init - 0x420b695c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b695c mbedtls_ecdh_init - .text.mbedtls_ecdh_setup - 0x420b6974 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6974 mbedtls_ecdh_setup - .text.mbedtls_ecdh_free - 0x420b69a4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b69a4 mbedtls_ecdh_free - .text.mbedtls_ecdh_make_params - 0x420b69d2 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b69d2 mbedtls_ecdh_make_params - .text.mbedtls_ecdh_read_params - 0x420b6a02 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6a02 mbedtls_ecdh_read_params - .text.mbedtls_ecdh_get_params - 0x420b6a56 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6a56 mbedtls_ecdh_get_params - .text.mbedtls_ecdh_make_public - 0x420b6ac0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6ac0 mbedtls_ecdh_make_public - .text.mbedtls_ecdh_read_public - 0x420b6af0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6af0 mbedtls_ecdh_read_public - .text.mbedtls_ecdh_calc_secret - 0x420b6b10 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x420b6b10 mbedtls_ecdh_calc_secret - .text.derive_mpi - 0x420b6b34 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.ecdsa_signature_to_asn1 - 0x420b6ba4 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .text.mbedtls_ecdsa_can_do - 0x420b6c4c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b6c4c mbedtls_ecdsa_can_do - .text.mbedtls_ecdsa_sign_restartable - 0x420b6c5a 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b6c5a mbedtls_ecdsa_sign_restartable - .text.mbedtls_ecdsa_sign_det_restartable - 0x420b6e26 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b6e26 mbedtls_ecdsa_sign_det_restartable - .text.mbedtls_ecdsa_verify_restartable - 0x420b6f34 0x16c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b6f34 mbedtls_ecdsa_verify_restartable - .text.mbedtls_ecdsa_write_signature_restartable - 0x420b70a0 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b70a0 mbedtls_ecdsa_write_signature_restartable - .text.mbedtls_ecdsa_write_signature - 0x420b7144 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b7144 mbedtls_ecdsa_write_signature - .text.mbedtls_ecdsa_read_signature_restartable - 0x420b7158 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b7158 mbedtls_ecdsa_read_signature_restartable - .text.mbedtls_ecdsa_read_signature - 0x420b7214 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b7214 mbedtls_ecdsa_read_signature - .text.mbedtls_ecdsa_init - 0x420b7224 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b7224 mbedtls_ecdsa_init - .text.mbedtls_ecdsa_free - 0x420b7232 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x420b7232 mbedtls_ecdsa_free - .text.ecp_group_is_static_comb_table - 0x420b7242 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_pick_window_size - 0x420b7246 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mpi_init_many - 0x420b7288 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mpi_free_many - 0x420b72ae 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_check_bad_points_mx - 0x420b72d4 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_check_pubkey_mx - 0x420b7396 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_sub_int_mod - 0x420b73e4 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_sub_mod - 0x420b7430 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_modp - 0x420b747c 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_mul_mod - 0x420b7524 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_add_mod - 0x420b7560 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_sw_rhs - 0x420b75ac 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_sw_derive_y - 0x420b7612 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_check_pubkey_sw - 0x420b76c2 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_double_add_mxz - 0x420b776e 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_randomize_mxz - 0x420b78cc 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_randomize_jac - 0x420b7948 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_gen_privkey_sw - 0x420b79f8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_normalize_mxz - 0x420b7a20 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_normalize_jac - 0x420b7a64 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_mul_int_mod - 0x420b7b08 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_mpi_shift_l_mod - 0x420b7b54 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_double_jac - 0x420b7b9e 0x212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_normalize_jac_many - 0x420b7db0 0x1b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_safe_invert_jac - 0x420b7f62 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_select_comb - 0x420b7fc6 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_comb_recode_core - 0x420b805c 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_comb_recode_scalar - 0x420b8114 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_gen_privkey_mx - 0x420b81c2 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_curve_list - 0x420b8236 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8236 mbedtls_ecp_curve_list - .text.mbedtls_ecp_grp_id_list - 0x420b8240 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8240 mbedtls_ecp_grp_id_list - .text.mbedtls_ecp_curve_info_from_grp_id - 0x420b8296 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8296 mbedtls_ecp_curve_info_from_grp_id - .text.mbedtls_ecp_curve_info_from_tls_id - 0x420b82ba 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b82ba mbedtls_ecp_curve_info_from_tls_id - .text.mbedtls_ecp_get_type - 0x420b82e2 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b82e2 mbedtls_ecp_get_type - .text.mbedtls_ecp_point_init - 0x420b82f6 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b82f6 mbedtls_ecp_point_init - .text.mbedtls_ecp_group_init - 0x420b831a 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b831a mbedtls_ecp_group_init - .text.mbedtls_ecp_keypair_init - 0x420b8378 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8378 mbedtls_ecp_keypair_init - .text.mbedtls_ecp_point_free - 0x420b839c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b839c mbedtls_ecp_point_free - .text.mbedtls_ecp_group_free - 0x420b83c2 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b83c2 mbedtls_ecp_group_free - .text.mbedtls_ecp_keypair_free - 0x420b8440 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8440 mbedtls_ecp_keypair_free - .text.mbedtls_ecp_copy - 0x420b8466 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8466 mbedtls_ecp_copy - .text.ecp_mul_mxz - 0x420b849e 0x166 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_group_copy - 0x420b8604 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8604 mbedtls_ecp_group_copy - .text.mbedtls_ecp_set_zero - 0x420b8614 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8614 mbedtls_ecp_set_zero - .text.ecp_add_mixed - 0x420b8644 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_precompute_comb - 0x420b8824 0x194 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_mul_comb_core - 0x420b89b8 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_mul_comb_after_precomp - 0x420b8a7e 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_mul_comb - 0x420b8b24 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_is_zero - 0x420b8c28 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8c28 mbedtls_ecp_is_zero - .text.mbedtls_ecp_point_cmp - 0x420b8c3e 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8c3e mbedtls_ecp_point_cmp - .text.mbedtls_ecp_point_write_binary - 0x420b8c8e 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8c8e mbedtls_ecp_point_write_binary - .text.mbedtls_ecp_point_read_binary - 0x420b8dbe 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8dbe mbedtls_ecp_point_read_binary - .text.mbedtls_ecp_tls_read_point - 0x420b8f1c 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8f1c mbedtls_ecp_tls_read_point - .text.mbedtls_ecp_tls_write_point - 0x420b8f66 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8f66 mbedtls_ecp_tls_write_point - .text.mbedtls_ecp_tls_read_group_id - 0x420b8fac 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b8fac mbedtls_ecp_tls_read_group_id - .text.mbedtls_ecp_tls_write_group - 0x420b9014 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9014 mbedtls_ecp_tls_write_group - .text.mbedtls_ecp_check_pubkey - 0x420b907a 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b907a mbedtls_ecp_check_pubkey - .text.mbedtls_ecp_check_privkey - 0x420b90d0 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b90d0 mbedtls_ecp_check_privkey - .text.ecp_mul_restartable_internal - 0x420b9170 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_mul_restartable - 0x420b920a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b920a mbedtls_ecp_mul_restartable - .text.mbedtls_ecp_mul - 0x420b9222 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9222 mbedtls_ecp_mul - .text.mbedtls_ecp_mul_shortcuts - 0x420b9232 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.mbedtls_ecp_muladd_restartable - 0x420b930e 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b930e mbedtls_ecp_muladd_restartable - .text.mbedtls_ecp_muladd - 0x420b93bc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b93bc mbedtls_ecp_muladd - .text.mbedtls_ecp_gen_privkey - 0x420b93cc 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b93cc mbedtls_ecp_gen_privkey - .text.mbedtls_ecp_gen_keypair_base - 0x420b9422 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9422 mbedtls_ecp_gen_keypair_base - .text.mbedtls_ecp_gen_keypair - 0x420b946e 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b946e mbedtls_ecp_gen_keypair - .text.mbedtls_ecp_gen_key - 0x420b9488 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9488 mbedtls_ecp_gen_key - .text.mbedtls_ecp_read_key - 0x420b94c2 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b94c2 mbedtls_ecp_read_key - .text.mbedtls_ecp_write_key_ext - 0x420b9614 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9614 mbedtls_ecp_write_key_ext - .text.mbedtls_ecp_check_pub_priv - 0x420b9684 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x420b9684 mbedtls_ecp_check_pub_priv - .text.add64 0x420b9760 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.carry64 0x420b979a 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.mbedtls_ecp_fix_negative - 0x420b97be 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p255 - 0x420b9812 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_koblitz - 0x420b9888 0x1fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p256k1 - 0x420b9a86 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p224k1 - 0x420b9aa4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p192k1 - 0x420b9ac2 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p521 - 0x420b9ae0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p384 - 0x420b9b68 0x572 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p256 - 0x420ba0da 0x442 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p224 - 0x420ba51c 0x22c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_mod_p192 - 0x420ba748 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_group_load - 0x420ba81a 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.ecp_use_curve25519 - 0x420ba8bc 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .text.mbedtls_ecp_group_load - 0x420ba974 0x406 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x420ba974 mbedtls_ecp_group_load - .text.entropy_update - 0x420bad7a 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.entropy_gather_internal - 0x420bae1c 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .text.mbedtls_entropy_free - 0x420baec6 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x420baec6 mbedtls_entropy_free - .text.mbedtls_entropy_add_source - 0x420baef6 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x420baef6 mbedtls_entropy_add_source - .text.mbedtls_entropy_init - 0x420baf22 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x420baf22 mbedtls_entropy_init - .text.mbedtls_entropy_func - 0x420baf64 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x420baf64 mbedtls_entropy_func - .text.mbedtls_hmac_drbg_init - 0x420bb092 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb092 mbedtls_hmac_drbg_init - .text.mbedtls_hmac_drbg_update - 0x420bb0b8 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb0b8 mbedtls_hmac_drbg_update - .text.hmac_drbg_reseed_core - 0x420bb19a 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .text.mbedtls_hmac_drbg_seed_buf - 0x420bb278 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb278 mbedtls_hmac_drbg_seed_buf - .text.mbedtls_hmac_drbg_reseed - 0x420bb2d4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb2d4 mbedtls_hmac_drbg_reseed - .text.mbedtls_hmac_drbg_random_with_add - 0x420bb2e4 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb2e4 mbedtls_hmac_drbg_random_with_add - .text.mbedtls_hmac_drbg_random - 0x420bb3c8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb3c8 mbedtls_hmac_drbg_random - .text.mbedtls_hmac_drbg_free - 0x420bb3da 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x420bb3da mbedtls_hmac_drbg_free - .text.mbedtls_md_info_from_type - 0x420bb400 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb400 mbedtls_md_info_from_type - .text.mbedtls_md_init - 0x420bb46c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb46c mbedtls_md_init - .text.mbedtls_md_free - 0x420bb49e 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb49e mbedtls_md_free - .text.mbedtls_md_clone - 0x420bb522 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb522 mbedtls_md_clone - .text.mbedtls_md_setup - 0x420bb5e4 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb5e4 mbedtls_md_setup - .text.mbedtls_md_starts - 0x420bb728 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb728 mbedtls_md_starts - .text.mbedtls_md_update - 0x420bb7b8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb7b8 mbedtls_md_update - .text.mbedtls_md_finish - 0x420bb840 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb840 mbedtls_md_finish - .text.mbedtls_md - 0x420bb8c8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb8c8 mbedtls_md - .text.mbedtls_md_get_size - 0x420bb946 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb946 mbedtls_md_get_size - .text.mbedtls_md_get_type - 0x420bb952 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb952 mbedtls_md_get_type - .text.mbedtls_md_info_from_ctx - 0x420bb95c 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb95c mbedtls_md_info_from_ctx - .text.mbedtls_md_hmac_starts - 0x420bb962 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bb962 mbedtls_md_hmac_starts - .text.mbedtls_md_hmac_update - 0x420bba80 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bba80 mbedtls_md_hmac_update - .text.mbedtls_md_hmac_finish - 0x420bbab0 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bbab0 mbedtls_md_hmac_finish - .text.mbedtls_md_hmac_reset - 0x420bbb2e 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x420bbb2e mbedtls_md_hmac_reset - .text.mbedtls_md5 - 0x420bbb7a 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x420bbb7a mbedtls_md5 - .text.mbedtls_md_get_size_from_type - 0x420bbbce 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.pk_hashlen_helper - 0x420bbbe0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .text.mbedtls_pk_init - 0x420bbc06 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbc06 mbedtls_pk_init - .text.mbedtls_pk_free - 0x420bbc10 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbc10 mbedtls_pk_free - .text.mbedtls_pk_info_from_type - 0x420bbc36 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbc36 mbedtls_pk_info_from_type - .text.mbedtls_pk_setup - 0x420bbc82 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbc82 mbedtls_pk_setup - .text.mbedtls_pk_setup_rsa_alt - 0x420bbcc4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbcc4 mbedtls_pk_setup_rsa_alt - .text.mbedtls_pk_can_do - 0x420bbd2a 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbd2a mbedtls_pk_can_do - .text.mbedtls_pk_verify_restartable - 0x420bbd4a 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbd4a mbedtls_pk_verify_restartable - .text.mbedtls_pk_verify - 0x420bbdbc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbdbc mbedtls_pk_verify - .text.mbedtls_pk_sign_restartable - 0x420bbdcc 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbdcc mbedtls_pk_sign_restartable - .text.mbedtls_pk_sign - 0x420bbe50 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbe50 mbedtls_pk_sign - .text.mbedtls_pk_decrypt - 0x420bbe64 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbe64 mbedtls_pk_decrypt - .text.mbedtls_pk_encrypt - 0x420bbe90 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbe90 mbedtls_pk_encrypt - .text.mbedtls_pk_get_bitlen - 0x420bbebc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbebc mbedtls_pk_get_bitlen - .text.mbedtls_pk_get_type - 0x420bbed8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbed8 mbedtls_pk_get_type - .text.mbedtls_pk_verify_ext - 0x420bbeea 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x420bbeea mbedtls_pk_verify_ext - .text.mbedtls_pk_ecc_set_group - 0x420bbff6 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - 0x420bbff6 mbedtls_pk_ecc_set_group - .text.mbedtls_pk_ecc_set_key - 0x420bc07e 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - 0x420bc07e mbedtls_pk_ecc_set_key - .text.mbedtls_pk_ecc_set_pubkey_from_prv - 0x420bc0c6 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - 0x420bc0c6 mbedtls_pk_ecc_set_pubkey_from_prv - .text.mbedtls_pk_ecc_set_pubkey - 0x420bc0e6 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - 0x420bc0e6 mbedtls_pk_ecc_set_pubkey - .text.rsa_can_do - 0x420bc116 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_debug - 0x420bc12e 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_can_do - 0x420bc156 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_get_bitlen - 0x420bc15e 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_debug - 0x420bc164 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckeydh_can_do - 0x420bc17c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.ecdsa_can_do - 0x420bc184 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_can_do - 0x420bc18c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_get_bitlen - 0x420bc194 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_sign_wrap - 0x420bc1a8 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_decrypt_wrap - 0x420bc21a 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_free_wrap - 0x420bc268 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alloc_wrap - 0x420bc282 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_check_pair_wrap - 0x420bc2a4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_encrypt_wrap - 0x420bc2b6 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_decrypt_wrap - 0x420bc316 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_sign_wrap - 0x420bc376 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_verify_wrap - 0x420bc3d8 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_get_bitlen - 0x420bc43c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_free_wrap - 0x420bc44c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_alloc_wrap - 0x420bc466 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.eckey_check_pair_wrap - 0x420bc488 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.ecdsa_sign_wrap - 0x420bc49a 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.ecdsa_verify_wrap - 0x420bc4ae 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_free_wrap - 0x420bc4d8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_alloc_wrap - 0x420bc4e8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.rsa_alt_check_pair - 0x420bc510 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .text.pk_ecc_tag_is_specified_ec_domain - 0x420bc5c2 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_get_ecparams - 0x420bc5cc 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_get_pk_alg - 0x420bc64c 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_use_ecparams_rfc8410 - 0x420bc706 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_group_from_specified - 0x420bc730 0x23e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_group_id_from_group - 0x420bc96e 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_ecc_group_id_from_specified - 0x420bca46 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_use_ecparams - 0x420bca9e 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_parse_key_rfc8410_der - 0x420bcad6 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_parse_key_sec1_der - 0x420bcb3e 0x16a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.pk_parse_key_pkcs8_unencrypted_der - 0x420bcca8 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.mbedtls_pk_parse_key_pkcs8_encrypted_der - 0x420bce40 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .text.mbedtls_pk_parse_subpubkey - 0x420bcf70 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x420bcf70 mbedtls_pk_parse_subpubkey - .text.mbedtls_pk_parse_key - 0x420bd0c6 0x334 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x420bd0c6 mbedtls_pk_parse_key - .text.mbedtls_pk_parse_public_key - 0x420bd3fa 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x420bd3fa mbedtls_pk_parse_public_key - .text.pk_get_type_ext - 0x420bd5a2 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.mbedtls_pk_get_ec_group_id - 0x420bd5b0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.mbedtls_pk_is_rfc8410 - 0x420bd5d8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_ec_pubkey - 0x420bd5fc 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_ec_param - 0x420bd676 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_rsa_der - 0x420bd6a6 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_ec_private - 0x420bd6de 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_ec_rfc8410_der - 0x420bd748 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.pk_write_ec_der - 0x420bd7ee 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .text.mbedtls_pk_write_pubkey - 0x420bd8f6 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x420bd8f6 mbedtls_pk_write_pubkey - .text.mbedtls_pk_write_pubkey_der - 0x420bd960 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x420bd960 mbedtls_pk_write_pubkey_der - .text.mbedtls_pk_write_key_der - 0x420bda74 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x420bda74 mbedtls_pk_write_key_der - .text.mbedtls_pk_write_key_pem - 0x420bdade 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x420bdade mbedtls_pk_write_key_pem - .text.mbedtls_calloc - 0x420bdbb0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - 0x420bdbb0 mbedtls_calloc - .text.mbedtls_free - 0x420bdbc0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - 0x420bdbc0 mbedtls_free - .text.mbedtls_platform_zeroize - 0x420bdbd0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - 0x420bdbd0 mbedtls_platform_zeroize - .text.mbedtls_zeroize_and_free - 0x420bdbf0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - 0x420bdbf0 mbedtls_zeroize_and_free - .text.mbedtls_ct_uint_lt - 0x420bdc0c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.asn1_get_nonzero_mpi - 0x420bdc40 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.rsa_check_context - 0x420bdc70 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.rsa_prepare_blinding - 0x420bdd6e 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.rsa_unblind - 0x420bdea8 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_md_get_size_from_type - 0x420bdf62 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.compute_hash - 0x420bdf74 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mgf_mask - 0x420bdfa8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.hash_mprime - 0x420be0a8 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_ct_rsaes_pkcs1_v15_unpadding - 0x420be14e 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.rsa_rsassa_pkcs1_v15_encode - 0x420be2a0 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_import - 0x420be444 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be444 mbedtls_rsa_import - .text.mbedtls_rsa_import_raw - 0x420be4d8 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be4d8 mbedtls_rsa_import_raw - .text.mbedtls_rsa_complete - 0x420be576 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be576 mbedtls_rsa_complete - .text.mbedtls_rsa_export - 0x420be758 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be758 mbedtls_rsa_export - .text.mbedtls_rsa_write_pubkey - 0x420be83a 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be83a mbedtls_rsa_write_pubkey - .text.mbedtls_rsa_export_crt - 0x420be8ea 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be8ea mbedtls_rsa_export_crt - .text.mbedtls_rsa_write_key - 0x420be988 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420be988 mbedtls_rsa_write_key - .text.mbedtls_rsa_init - 0x420beb2a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420beb2a mbedtls_rsa_init - .text.mbedtls_rsa_set_padding - 0x420beb42 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420beb42 mbedtls_rsa_set_padding - .text.mbedtls_rsa_get_bitlen - 0x420beb8a 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420beb8a mbedtls_rsa_get_bitlen - .text.mbedtls_rsa_get_len - 0x420beb9a 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420beb9a mbedtls_rsa_get_len - .text.mbedtls_rsa_check_pubkey - 0x420beb9e 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420beb9e mbedtls_rsa_check_pubkey - .text.mbedtls_rsa_parse_pubkey - 0x420bec12 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bec12 mbedtls_rsa_parse_pubkey - .text.mbedtls_rsa_check_privkey - 0x420becea 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420becea mbedtls_rsa_check_privkey - .text.mbedtls_rsa_check_pub_priv - 0x420bed6c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bed6c mbedtls_rsa_check_pub_priv - .text.mbedtls_rsa_public - 0x420bedbc 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bedbc mbedtls_rsa_public - .text.mbedtls_rsa_private - 0x420bee56 0x296 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bee56 mbedtls_rsa_private - .text.rsa_rsassa_pss_sign_no_mode_check - 0x420bf0ec 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.rsa_rsassa_pss_sign - 0x420bf296 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .text.mbedtls_rsa_rsaes_oaep_encrypt - 0x420bf2c8 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf2c8 mbedtls_rsa_rsaes_oaep_encrypt - .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt - 0x420bf3f6 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf3f6 mbedtls_rsa_rsaes_pkcs1_v15_encrypt - .text.mbedtls_rsa_pkcs1_encrypt - 0x420bf4c6 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf4c6 mbedtls_rsa_pkcs1_encrypt - .text.mbedtls_rsa_rsaes_oaep_decrypt - 0x420bf4fa 0x20c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf4fa mbedtls_rsa_rsaes_oaep_decrypt - .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt - 0x420bf706 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf706 mbedtls_rsa_rsaes_pkcs1_v15_decrypt - .text.mbedtls_rsa_pkcs1_decrypt - 0x420bf794 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf794 mbedtls_rsa_pkcs1_decrypt - .text.mbedtls_rsa_rsassa_pss_sign - 0x420bf7ca 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf7ca mbedtls_rsa_rsassa_pss_sign - .text.mbedtls_rsa_rsassa_pkcs1_v15_sign - 0x420bf7dc 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf7dc mbedtls_rsa_rsassa_pkcs1_v15_sign - .text.mbedtls_rsa_pkcs1_sign - 0x420bf8c6 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf8c6 mbedtls_rsa_pkcs1_sign - .text.mbedtls_rsa_rsassa_pss_verify_ext - 0x420bf8fe 0x1ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bf8fe mbedtls_rsa_rsassa_pss_verify_ext - .text.mbedtls_rsa_rsassa_pss_verify - 0x420bfae8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfae8 mbedtls_rsa_rsassa_pss_verify - .text.mbedtls_rsa_rsassa_pkcs1_v15_verify - 0x420bfb12 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfb12 mbedtls_rsa_rsassa_pkcs1_v15_verify - .text.mbedtls_rsa_pkcs1_verify - 0x420bfbc6 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfbc6 mbedtls_rsa_pkcs1_verify - .text.mbedtls_rsa_free - 0x420bfbfa 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfbfa mbedtls_rsa_free - .text.mbedtls_rsa_parse_key - 0x420bfc74 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfc74 mbedtls_rsa_parse_key - .text.mbedtls_rsa_gen_key - 0x420bfe18 0x222 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x420bfe18 mbedtls_rsa_gen_key - .text.mbedtls_rsa_deduce_primes - 0x420c003a 0x234 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - 0x420c003a mbedtls_rsa_deduce_primes - .text.mbedtls_rsa_deduce_private_exponent - 0x420c026e 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - 0x420c026e mbedtls_rsa_deduce_private_exponent - .text.mbedtls_rsa_deduce_crt - 0x420c033e 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - 0x420c033e mbedtls_rsa_deduce_crt - .text.mbedtls_rsa_validate_params - 0x420c03d2 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - 0x420c03d2 mbedtls_rsa_validate_params - .text.mbedtls_rsa_validate_crt - 0x420c05ca 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - 0x420c05ca mbedtls_rsa_validate_crt - .text.mbedtls_sha1 - 0x420c0728 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - 0x420c0728 mbedtls_sha1 - .text.mbedtls_sha256 - 0x420c077c 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - 0x420c077c mbedtls_sha256 - .text.mbedtls_sha512_init - 0x420c07e6 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c07e6 mbedtls_sha512_init - .text.mbedtls_sha512_free - 0x420c07fe 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c07fe mbedtls_sha512_free - .text.mbedtls_sha512_clone - 0x420c0812 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c0812 mbedtls_sha512_clone - .text.mbedtls_sha512_starts - 0x420c0844 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c0844 mbedtls_sha512_starts - .text.mbedtls_internal_sha512_process - 0x420c096c 0xd84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c096c mbedtls_internal_sha512_process - .text.mbedtls_internal_sha512_process_many - 0x420c16f0 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .text.mbedtls_sha512_update - 0x420c1736 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c1736 mbedtls_sha512_update - .text.mbedtls_sha512_finish - 0x420c180a 0x34c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c180a mbedtls_sha512_finish - .text.mbedtls_sha512 - 0x420c1b56 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x420c1b56 mbedtls_sha512 - .text.mbedtls_hardware_poll - 0x420c1bc0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - 0x420c1bc0 mbedtls_hardware_poll - .text.esp_mbedtls_mem_calloc - 0x420c1be2 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - 0x420c1be2 esp_mbedtls_mem_calloc - .text.esp_mbedtls_mem_free - 0x420c1bfa 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - 0x420c1bfa esp_mbedtls_mem_free - .text.esp_aes_xts_decode_keys - 0x420c1c0c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_gf128mul_x_ble - 0x420c1c3a 0x12a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_xts_init - 0x420c1d64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x420c1d64 esp_aes_xts_init - .text.esp_aes_xts_free - 0x420c1d7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x420c1d7c esp_aes_xts_free - .text.esp_aes_xts_setkey_enc - 0x420c1d94 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x420c1d94 esp_aes_xts_setkey_enc - .text.esp_aes_xts_setkey_dec - 0x420c1dcc 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x420c1dcc esp_aes_xts_setkey_dec - .text.esp_aes_crypt_xts - 0x420c1e04 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x420c1e04 esp_aes_crypt_xts - .text.valid_key_length - 0x420c1fae 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420c1fae valid_key_length - .text.esp_aes_init - 0x420c1fcc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420c1fcc esp_aes_init - .text.esp_aes_free - 0x420c1fe8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420c1fe8 esp_aes_free - .text.esp_aes_setkey - 0x420c2002 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420c2002 esp_aes_setkey - .text.esp_aes_validate_input - 0x420c2050 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_acquire_hardware - 0x420c20e6 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c20e6 esp_aes_acquire_hardware - .text.esp_aes_release_hardware - 0x420c2138 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c2138 esp_aes_release_hardware - .text.esp_aes_crypt_ecb - 0x420c2172 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c2172 esp_aes_crypt_ecb - .text.esp_aes_crypt_cbc - 0x420c21e6 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c21e6 esp_aes_crypt_cbc - .text.esp_aes_crypt_cfb128 - 0x420c22bc 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c22bc esp_aes_crypt_cfb128 - .text.esp_aes_crypt_ofb - 0x420c244a 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c244a esp_aes_crypt_ofb - .text.esp_aes_crypt_ctr - 0x420c2580 0x172 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x420c2580 esp_aes_crypt_ctr - .text.esp_sha 0x420c26f2 0x1ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - 0x420c26f2 esp_sha - .text.rsa_rsassa_pkcs1_v15_encode - 0x420c28de 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .text.esp_ds_conn_lock - 0x420c2a6e 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .text.esp_ds_set_session_timeout - 0x420c2ab6 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - 0x420c2ab6 esp_ds_set_session_timeout - .text.esp_ds_init_data_ctx - 0x420c2ad0 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - 0x420c2ad0 esp_ds_init_data_ctx - .text.esp_ds_release_ds_lock - 0x420c2bca 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - 0x420c2bca esp_ds_release_ds_lock - .text.esp_ds_get_keylen - 0x420c2c0e 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - 0x420c2c0e esp_ds_get_keylen - .text.esp_ds_rsa_sign - 0x420c2c1e 0x232 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - 0x420c2c1e esp_ds_rsa_sign - .text.mpi_words - 0x420c2e50 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.modular_inverse - 0x420c2e70 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.calculate_rinv - 0x420c2f08 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.esp_mpi_isr_initialise - 0x420c2f58 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.esp_mpi_wait_intr - 0x420c3018 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.esp_mpi_exp_mod - 0x420c306c 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.mpi_mult_mpi_failover_mod_mult - 0x420c31da 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.mbedtls_mpi_exp_mod - 0x420c3274 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x420c3274 mbedtls_mpi_exp_mod - .text.mbedtls_mpi_mul_mpi - 0x420c32b6 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x420c32b6 mbedtls_mpi_mul_mpi - .text.mpi_mult_mpi_overlong - 0x420c3400 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .text.mbedtls_mpi_mul_int - 0x420c3492 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x420c3492 mbedtls_mpi_mul_int - .text.esp_mpi_enable_hardware_hw_op - 0x420c34b2 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - 0x420c34b2 esp_mpi_enable_hardware_hw_op - .text.esp_mpi_disable_hardware_hw_op - 0x420c3508 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - 0x420c3508 esp_mpi_disable_hardware_hw_op - .text.esp_mpi_mul_mpi_hw_op - 0x420c3546 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - 0x420c3546 esp_mpi_mul_mpi_hw_op - .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op - 0x420c358e 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - 0x420c358e esp_mpi_mult_mpi_failover_mod_mult_hw_op - .text.esp_mpi_exp_mpi_mod_hw_op - 0x420c3618 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - 0x420c3618 esp_mpi_exp_mpi_mod_hw_op - .text.mbedtls_zeroize - 0x420c36c6 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .text.esp_internal_sha1_dma_process - 0x420c36d8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .text.esp_internal_sha_update_state - 0x420c36ee 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .text.mbedtls_sha1_init - 0x420c3718 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c3718 mbedtls_sha1_init - .text.mbedtls_sha1_free - 0x420c3730 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c3730 mbedtls_sha1_free - .text.mbedtls_sha1_clone - 0x420c3744 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c3744 mbedtls_sha1_clone - .text.mbedtls_sha1_starts - 0x420c375a 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c375a mbedtls_sha1_starts - .text.mbedtls_internal_sha1_process - 0x420c377c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c377c mbedtls_internal_sha1_process - .text.mbedtls_sha1_update - 0x420c37cc 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c37cc mbedtls_sha1_update - .text.mbedtls_sha1_finish - 0x420c38aa 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x420c38aa mbedtls_sha1_finish - .text.mbedtls_zeroize - 0x420c395e 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.esp_internal_sha_update_state - 0x420c3970 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_init - 0x420c399a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c399a mbedtls_sha256_init - .text.mbedtls_sha256_free - 0x420c39b2 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c39b2 mbedtls_sha256_free - .text.mbedtls_sha256_clone - 0x420c39c6 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c39c6 mbedtls_sha256_clone - .text.mbedtls_sha256_starts - 0x420c39ec 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c39ec mbedtls_sha256_starts - .text.mbedtls_sha256_update - 0x420c3a1e 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c3a1e mbedtls_sha256_update - .text.mbedtls_sha256_finish - 0x420c3b00 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x420c3b00 mbedtls_sha256_finish - .text.xor_data - 0x420c3bd0 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.gcm_gen_table - 0x420c3bf4 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.gcm_mult - 0x420c3d5c 0x1e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.increment32_j0 - 0x420c3f42 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.esp_gcm_ghash - 0x420c3f96 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.esp_gcm_derive_J0 - 0x420c4006 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.esp_aes_gcm_setkey - 0x420c4086 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4086 esp_aes_gcm_setkey - .text.esp_aes_gcm_init - 0x420c4132 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4132 esp_aes_gcm_init - .text.esp_aes_gcm_free - 0x420c415a 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c415a esp_aes_gcm_free - .text.esp_aes_gcm_starts - 0x420c4192 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4192 esp_aes_gcm_starts - .text.esp_aes_gcm_update_ad - 0x420c42a8 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c42a8 esp_aes_gcm_update_ad - .text.esp_aes_gcm_update - 0x420c4374 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4374 esp_aes_gcm_update - .text.esp_aes_gcm_finish - 0x420c4518 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4518 esp_aes_gcm_finish - .text.esp_aes_gcm_crypt_and_tag_partial_hw - 0x420c45ba 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .text.esp_aes_gcm_crypt_and_tag - 0x420c461c 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c461c esp_aes_gcm_crypt_and_tag - .text.esp_aes_gcm_auth_decrypt - 0x420c4680 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - 0x420c4680 esp_aes_gcm_auth_decrypt - .text.esp_md5_finish - 0x420c4706 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c4706 esp_md5_finish - .text.esp_md5_update - 0x420c4720 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c4720 esp_md5_update - .text.esp_md5_init - 0x420c4734 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c4734 esp_md5_init - .text.esp_md5_starts - 0x420c4746 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c4746 esp_md5_starts - .text.esp_md5_free - 0x420c4756 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c4756 esp_md5_free - .text.esp_md5_clone - 0x420c476a 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - 0x420c476a esp_md5_clone - .text.aria_a 0x420c4794 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.aria_sl 0x420c48c2 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.aria_fo_xor - 0x420c49d2 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.aria_fe_xor - 0x420c4a7c 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.aria_rot128 - 0x420c4b26 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .text.mbedtls_aria_setkey_enc - 0x420c4bd8 0x27a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c4bd8 mbedtls_aria_setkey_enc - .text.mbedtls_aria_setkey_dec - 0x420c4e52 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c4e52 mbedtls_aria_setkey_dec - .text.mbedtls_aria_crypt_ecb - 0x420c4edc 0x214 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c4edc mbedtls_aria_crypt_ecb - .text.mbedtls_aria_init - 0x420c50f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c50f0 mbedtls_aria_init - .text.mbedtls_aria_free - 0x420c5108 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c5108 mbedtls_aria_free - .text.mbedtls_aria_crypt_cbc - 0x420c511c 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c511c mbedtls_aria_crypt_cbc - .text.mbedtls_aria_crypt_cfb128 - 0x420c5210 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c5210 mbedtls_aria_crypt_cfb128 - .text.mbedtls_aria_crypt_ctr - 0x420c52cc 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - 0x420c52cc mbedtls_aria_crypt_ctr - .text.asn1_get_sequence_of_cb - 0x420c5366 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .text.mbedtls_asn1_get_len - 0x420c53bc 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c53bc mbedtls_asn1_get_len - .text.mbedtls_asn1_get_tag - 0x420c5448 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c5448 mbedtls_asn1_get_tag - .text.asn1_get_tagged_int - 0x420c5478 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .text.mbedtls_asn1_get_bool - 0x420c550a 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c550a mbedtls_asn1_get_bool - .text.mbedtls_asn1_get_int - 0x420c554a 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c554a mbedtls_asn1_get_int - .text.mbedtls_asn1_get_mpi - 0x420c555c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c555c mbedtls_asn1_get_mpi - .text.mbedtls_asn1_get_bitstring - 0x420c5590 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c5590 mbedtls_asn1_get_bitstring - .text.mbedtls_asn1_traverse_sequence_of - 0x420c55f0 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c55f0 mbedtls_asn1_traverse_sequence_of - .text.mbedtls_asn1_get_bitstring_null - 0x420c56a4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c56a4 mbedtls_asn1_get_bitstring_null - .text.mbedtls_asn1_sequence_free - 0x420c56e2 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c56e2 mbedtls_asn1_sequence_free - .text.mbedtls_asn1_get_sequence_of - 0x420c56fc 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c56fc mbedtls_asn1_get_sequence_of - .text.mbedtls_asn1_get_alg - 0x420c574a 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c574a mbedtls_asn1_get_alg - .text.mbedtls_asn1_get_alg_null - 0x420c5804 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c5804 mbedtls_asn1_get_alg_null - .text.mbedtls_asn1_free_named_data_list - 0x420c583a 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c583a mbedtls_asn1_free_named_data_list - .text.mbedtls_asn1_free_named_data_list_shallow - 0x420c586a 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c586a mbedtls_asn1_free_named_data_list_shallow - .text.mbedtls_asn1_find_named_data - 0x420c5884 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x420c5884 mbedtls_asn1_find_named_data - .text.mbedtls_asn1_write_len - 0x420c58be 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c58be mbedtls_asn1_write_len - .text.mbedtls_asn1_write_tag - 0x420c590e 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c590e mbedtls_asn1_write_tag - .text.mbedtls_asn1_write_len_and_tag - 0x420c592c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.asn1_write_tagged_int - 0x420c5968 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .text.mbedtls_asn1_write_raw_buffer - 0x420c59ce 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c59ce mbedtls_asn1_write_raw_buffer - .text.mbedtls_asn1_write_mpi - 0x420c5a12 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5a12 mbedtls_asn1_write_mpi - .text.mbedtls_asn1_write_null - 0x420c5aac 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5aac mbedtls_asn1_write_null - .text.mbedtls_asn1_write_oid - 0x420c5abe 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5abe mbedtls_asn1_write_oid - .text.mbedtls_asn1_write_algorithm_identifier_ext - 0x420c5ae8 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5ae8 mbedtls_asn1_write_algorithm_identifier_ext - .text.mbedtls_asn1_write_bool - 0x420c5b44 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5b44 mbedtls_asn1_write_bool - .text.mbedtls_asn1_write_int - 0x420c5b7a 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5b7a mbedtls_asn1_write_int - .text.mbedtls_asn1_write_tagged_string - 0x420c5b8a 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5b8a mbedtls_asn1_write_tagged_string - .text.mbedtls_asn1_write_octet_string - 0x420c5bc0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5bc0 mbedtls_asn1_write_octet_string - .text.mbedtls_asn1_store_named_data - 0x420c5bea 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x420c5bea mbedtls_asn1_store_named_data - .text.mbedtls_ccm_clear_state - 0x420c5cd8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.ccm_calculate_first_block_if_ready - 0x420c5d0e 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_crypt - 0x420c5dbc 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_compare_tags - 0x420c5e58 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_init - 0x420c5e6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5e6c mbedtls_ccm_init - .text.mbedtls_ccm_setkey - 0x420c5e84 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5e84 mbedtls_ccm_setkey - .text.mbedtls_ccm_free - 0x420c5ee6 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5ee6 mbedtls_ccm_free - .text.mbedtls_ccm_starts - 0x420c5f0a 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5f0a mbedtls_ccm_starts - .text.mbedtls_ccm_set_lengths - 0x420c5faa 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5faa mbedtls_ccm_set_lengths - .text.mbedtls_ccm_update_ad - 0x420c5ff6 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c5ff6 mbedtls_ccm_update_ad - .text.mbedtls_ccm_update - 0x420c6100 0x1ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c6100 mbedtls_ccm_update - .text.mbedtls_ccm_finish - 0x420c62ba 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c62ba mbedtls_ccm_finish - .text.ccm_auth_crypt - 0x420c634c 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.ccm_auth_decrypt - 0x420c63b6 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .text.mbedtls_ccm_encrypt_and_tag - 0x420c6402 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c6402 mbedtls_ccm_encrypt_and_tag - .text.mbedtls_ccm_auth_decrypt - 0x420c6428 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x420c6428 mbedtls_ccm_auth_decrypt - .text.gcm_gen_table_rightshift - 0x420c644e 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.gcm_gen_table - 0x420c6598 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.gcm_mult_smalltable - 0x420c6728 0x206 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.gcm_mult - 0x420c692e 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.gcm_mask - 0x420c694c 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.gcm_incr - 0x420c6a22 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .text.mbedtls_gcm_init_soft - 0x420c6a7a 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6a7a mbedtls_gcm_init_soft - .text.mbedtls_gcm_setkey_soft - 0x420c6a92 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6a92 mbedtls_gcm_setkey_soft - .text.mbedtls_gcm_starts_soft - 0x420c6b14 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6b14 mbedtls_gcm_starts_soft - .text.mbedtls_gcm_update_ad_soft - 0x420c6c38 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6c38 mbedtls_gcm_update_ad_soft - .text.mbedtls_gcm_update_soft - 0x420c6d6a 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6d6a mbedtls_gcm_update_soft - .text.mbedtls_gcm_finish_soft - 0x420c6ee0 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c6ee0 mbedtls_gcm_finish_soft - .text.mbedtls_gcm_crypt_and_tag_soft - 0x420c7022 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c7022 mbedtls_gcm_crypt_and_tag_soft - .text.mbedtls_gcm_auth_decrypt_soft - 0x420c7084 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c7084 mbedtls_gcm_auth_decrypt_soft - .text.mbedtls_gcm_free_soft - 0x420c70d6 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x420c70d6 mbedtls_gcm_free_soft - .text.oid_parse_number - 0x420c70f6 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_subidentifier_num_bytes - 0x420c7152 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_subidentifier_encode_into - 0x420c715e 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_x509_ext_from_asn1 - 0x420c71c4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_sig_alg_from_asn1 - 0x420c7200 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_pk_alg_from_asn1 - 0x420c723c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_grp_id_from_asn1 - 0x420c7278 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_grp_id_algid_from_asn1 - 0x420c72b4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_cipher_alg_from_asn1 - 0x420c72f0 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_md_alg_from_asn1 - 0x420c732c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_md_hmac_from_asn1 - 0x420c7368 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.oid_pkcs12_pbe_alg_from_asn1 - 0x420c73a4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .text.mbedtls_oid_get_x509_ext_type - 0x420c73e0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c73e0 mbedtls_oid_get_x509_ext_type - .text.mbedtls_oid_get_sig_alg - 0x420c7402 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c7402 mbedtls_oid_get_sig_alg - .text.mbedtls_oid_get_oid_by_sig_alg - 0x420c742e 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c742e mbedtls_oid_get_oid_by_sig_alg - .text.mbedtls_oid_get_pk_alg - 0x420c745e 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c745e mbedtls_oid_get_pk_alg - .text.mbedtls_oid_get_oid_by_pk_alg - 0x420c7480 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c7480 mbedtls_oid_get_oid_by_pk_alg - .text.mbedtls_oid_get_ec_grp - 0x420c74a6 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c74a6 mbedtls_oid_get_ec_grp - .text.mbedtls_oid_get_oid_by_ec_grp - 0x420c74c8 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c74c8 mbedtls_oid_get_oid_by_ec_grp - .text.mbedtls_oid_get_ec_grp_algid - 0x420c74ee 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c74ee mbedtls_oid_get_ec_grp_algid - .text.mbedtls_oid_get_oid_by_ec_grp_algid - 0x420c7510 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c7510 mbedtls_oid_get_oid_by_ec_grp_algid - .text.mbedtls_oid_get_cipher_alg - 0x420c7536 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c7536 mbedtls_oid_get_cipher_alg - .text.mbedtls_oid_get_md_alg - 0x420c7558 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c7558 mbedtls_oid_get_md_alg - .text.mbedtls_oid_get_oid_by_md - 0x420c757a 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c757a mbedtls_oid_get_oid_by_md - .text.mbedtls_oid_get_md_hmac - 0x420c75a0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c75a0 mbedtls_oid_get_md_hmac - .text.mbedtls_oid_get_pkcs12_pbe_alg - 0x420c75c2 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c75c2 mbedtls_oid_get_pkcs12_pbe_alg - .text.mbedtls_oid_from_numeric_string - 0x420c75ee 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x420c75ee mbedtls_oid_from_numeric_string - .text.pem_check_pkcs_padding - 0x420c7794 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .text.pem_get_iv - 0x420c77ce 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .text.pem_pbkdf1 - 0x420c786a 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .text.pem_aes_decrypt - 0x420c7976 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .text.mbedtls_pem_init - 0x420c79f0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x420c79f0 mbedtls_pem_init - .text.mbedtls_pem_read_buffer - 0x420c7a22 0x34c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x420c7a22 mbedtls_pem_read_buffer - .text.mbedtls_pem_free - 0x420c7d6e 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x420c7d6e mbedtls_pem_free - .text.mbedtls_pem_write_buffer - 0x420c7d98 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x420c7d98 mbedtls_pem_write_buffer - .text.pkcs12_parse_pbe_params - 0x420c7ef8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text.pkcs12_fill_buffer - 0x420c7f80 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text.mbedtls_md_get_size_from_type - 0x420c7fc8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text.calculate_hashes - 0x420c7fda 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text.mbedtls_pkcs12_derivation - 0x420c80aa 0x24e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x420c80aa mbedtls_pkcs12_derivation - .text.pkcs12_pbe_derive_key_iv - 0x420c82f8 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .text.mbedtls_pkcs12_pbe_ext - 0x420c840c 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x420c840c mbedtls_pkcs12_pbe_ext - .text.pkcs5_parse_pbkdf2_params - 0x420c8552 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .text.pkcs5_pbkdf2_hmac - 0x420c8636 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .text.mbedtls_pkcs5_pbkdf2_hmac_ext - 0x420c8782 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x420c8782 mbedtls_pkcs5_pbkdf2_hmac_ext - .text.mbedtls_pkcs5_pbes2_ext - 0x420c8806 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x420c8806 mbedtls_pkcs5_pbes2_ext - .text.s_check_dma_capable - 0x420c89ea 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.esp_aes_isr_initialise - 0x420c89fa 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.dma_desc_setup_link - 0x420c8a0c 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.esp_aes_dma_wait_complete - 0x420c8afa 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.esp_aes_intr_alloc - 0x420c8b5c 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - 0x420c8b5c esp_aes_intr_alloc - .text.esp_aes_process_dma - 0x420c8c06 0x384 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - 0x420c8c06 esp_aes_process_dma - .text.esp_aes_process_dma_ext_ram - 0x420c8f8a 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.s_check_dma_capable - 0x420c90f8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_block_mode - 0x420c9108 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_dma_process - 0x420c917e 0x19e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_write_digest_state - 0x420c931c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x420c931c esp_sha_write_digest_state - .text.esp_sha_read_digest_state - 0x420c932a 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x420c932a esp_sha_read_digest_state - .text.esp_sha_acquire_hardware - 0x420c9338 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x420c9338 esp_sha_acquire_hardware - .text.esp_sha_release_hardware - 0x420c9392 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x420c9392 esp_sha_release_hardware - .text.esp_sha_dma - 0x420c93cc 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x420c93cc esp_sha_dma - .text.mbedtls_ct_base64_enc_char - 0x420c952c 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .text.mbedtls_ct_base64_dec_value - 0x420c9608 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .text.mbedtls_base64_encode - 0x420c9702 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0x420c9702 mbedtls_base64_encode - .text.mbedtls_base64_decode - 0x420c987c 0x1b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0x420c987c mbedtls_base64_decode - .text.esp_sha_dma_start - 0x420c9a30 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - 0x420c9a30 esp_sha_dma_start - .text.esp_aes_dma_start - 0x420c9a40 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - 0x420c9a40 esp_aes_dma_start - .text.esp_aes_dma_done - 0x420c9a4e 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - 0x420c9a4e esp_aes_dma_done - .text.crypto_shared_gdma_new_channel - 0x420c9a58 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.crypto_shared_gdma_init - 0x420c9a9a 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_start_axi_ahb - 0x420c9b96 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - 0x420c9b96 esp_crypto_shared_gdma_start_axi_ahb - .text.x509_profile_check_md_alg - 0x420c9c78 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_profile_check_pk_alg - 0x420c9c94 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_memcasecmp - 0x420c9cb0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_verify_chain_reset - 0x420c9d00 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_merge_flags_with_cb - 0x420c9d20 0x5e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_uid - 0x420c9d7e 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_subject_key_id - 0x420c9dd0 0x4e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_certificate_policies - 0x420c9e1e 0x15c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_check_san_uri - 0x420c9f7a 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_string_cmp - 0x420c9fc2 0x7c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_name_cmp - 0x420ca03e 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_check_ee_locally_trusted - 0x420ca0b6 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_version - 0x420ca0fe 0x6a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_dates - 0x420ca168 0x62 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_basic_constraints - 0x420ca1ca 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_ext_key_usage - 0x420ca2a2 0x2e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_authority_key_id - 0x420ca2d0 0x108 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_get_crt_ext - 0x420ca3d8 0x286 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_inet_pton_ipv4 - 0x420ca65e 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_inet_pton_ipv6 - 0x420ca67e 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_pk_get_ec_group_id - 0x420ca69e 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_profile_check_key - 0x420ca6c6 0x72 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_check_wildcard - 0x420ca738 0x8c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_check_cn - 0x420ca7c4 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_check_signature - 0x420ca7fa 0x72 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_check_key_usage - 0x420ca86c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420ca86c mbedtls_x509_crt_check_key_usage - .text.x509_crt_check_parent - 0x420ca8ac 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_find_parent_in - 0x420ca8f6 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_find_parent - 0x420ca97e 0x7e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_check_extended_key_usage - 0x420ca9fc 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420ca9fc mbedtls_x509_crt_check_extended_key_usage - .text.mbedtls_x509_crt_is_revoked - 0x420caa70 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420caa70 mbedtls_x509_crt_is_revoked - .text.x509_crt_verifycrl - 0x420caab0 0xfc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_verify_chain - 0x420cabac 0x152 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_cn_inet_pton - 0x420cacfe 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420cacfe mbedtls_x509_crt_parse_cn_inet_pton - .text.x509_crt_check_san_ip - 0x420cad44 0x4e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_check_san - 0x420cad92 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_verify_name - 0x420cae1a 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.x509_crt_verify_restartable_ca_cb - 0x420caea0 0xdc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_verify_restartable - 0x420caf7c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420caf7c mbedtls_x509_crt_verify_restartable - .text.mbedtls_x509_crt_init - 0x420caf9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420caf9c mbedtls_x509_crt_init - .text.mbedtls_x509_crt_free - 0x420cafb4 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420cafb4 mbedtls_x509_crt_free - .text.x509_crt_parse_der_core - 0x420cb03a 0x374 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_der_internal - 0x420cb3ae 0xba esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .text.mbedtls_x509_crt_parse_der - 0x420cb468 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420cb468 mbedtls_x509_crt_parse_der - .text.mbedtls_x509_crt_parse - 0x420cb47c 0x122 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x420cb47c mbedtls_x509_crt_parse - .text.x509write_csr_der_internal - 0x420cb59e 0x258 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .text.mbedtls_x509write_csr_init - 0x420cb7f6 0x16 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb7f6 mbedtls_x509write_csr_init - .text.mbedtls_x509write_csr_free - 0x420cb80c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb80c mbedtls_x509write_csr_free - .text.mbedtls_x509write_csr_set_md_alg - 0x420cb834 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb834 mbedtls_x509write_csr_set_md_alg - .text.mbedtls_x509write_csr_set_key - 0x420cb838 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb838 mbedtls_x509write_csr_set_key - .text.mbedtls_x509write_csr_set_subject_name - 0x420cb83c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb83c mbedtls_x509write_csr_set_subject_name - .text.mbedtls_x509write_csr_der - 0x420cb84c 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb84c mbedtls_x509write_csr_der - .text.mbedtls_x509write_csr_pem - 0x420cb8ac 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - 0x420cb8ac mbedtls_x509write_csr_pem - .text.x509_date_is_valid - 0x420cb8f0 0xde esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.x509_parse2_int - 0x420cb9ce 0x2e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.x509_parse_time - 0x420cb9fc 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.x509_get_attr_type_value - 0x420cbaa0 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.x509_get_hash_alg - 0x420cbb84 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.x509_get_other_name - 0x420cbc28 0x14c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .text.mbedtls_x509_get_serial - 0x420cbd74 0x6e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cbd74 mbedtls_x509_get_serial - .text.mbedtls_x509_get_alg_null - 0x420cbde2 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cbde2 mbedtls_x509_get_alg_null - .text.mbedtls_x509_get_alg - 0x420cbdfc 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cbdfc mbedtls_x509_get_alg - .text.mbedtls_x509_get_rsassa_pss_params - 0x420cbe16 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cbe16 mbedtls_x509_get_rsassa_pss_params - .text.mbedtls_x509_get_name - 0x420cc012 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc012 mbedtls_x509_get_name - .text.mbedtls_x509_get_time - 0x420cc0be 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc0be mbedtls_x509_get_time - .text.mbedtls_x509_get_sig - 0x420cc166 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc166 mbedtls_x509_get_sig - .text.mbedtls_x509_get_sig_alg - 0x420cc1b8 0xaa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc1b8 mbedtls_x509_get_sig_alg - .text.mbedtls_x509_get_ext - 0x420cc262 0x6c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc262 mbedtls_x509_get_ext - .text.mbedtls_x509_get_ns_cert_type - 0x420cc2ce 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc2ce mbedtls_x509_get_ns_cert_type - .text.mbedtls_x509_get_key_usage - 0x420cc31a 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc31a mbedtls_x509_get_key_usage - .text.mbedtls_x509_parse_subject_alt_name - 0x420cc37a 0x2ca esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc37a mbedtls_x509_parse_subject_alt_name - .text.mbedtls_x509_free_subject_alt_name - 0x420cc644 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc644 mbedtls_x509_free_subject_alt_name - .text.mbedtls_x509_get_subject_alt_name_ext - 0x420cc65e 0x10a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc65e mbedtls_x509_get_subject_alt_name_ext - .text.mbedtls_x509_get_subject_alt_name - 0x420cc768 0x4e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x420cc768 mbedtls_x509_get_subject_alt_name - .text.hex_to_int - 0x420cc7b6 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.hexpair_to_int - 0x420cc7f6 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.x509_attr_descr_from_name - 0x420cc82e 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.parse_attribute_value_hex_der_encoded - 0x420cc87a 0x116 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.parse_attribute_value_string - 0x420cc990 0xcc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.x509_write_name - 0x420cca5c 0x90 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.x509_write_extension - 0x420ccaec 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .text.mbedtls_x509_string_to_names - 0x420ccbac 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x420ccbac mbedtls_x509_string_to_names - .text.mbedtls_x509_write_names - 0x420ccd9c 0x5c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x420ccd9c mbedtls_x509_write_names - .text.mbedtls_x509_write_sig - 0x420ccdf8 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x420ccdf8 mbedtls_x509_write_sig - .text.mbedtls_x509_write_extensions - 0x420cceac 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x420cceac mbedtls_x509_write_extensions - .text.esp_coex_adapter_register - 0x420ccee8 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccee8 esp_coex_adapter_register - .text.coex_pti_get - 0x420ccf4a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf4a coex_pti_get - .text.coex_wifi_request - 0x420ccf52 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf52 coex_wifi_request - .text.coex_pre_init - 0x420ccf62 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf62 coex_pre_init - .text.coex_init - 0x420ccf7c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf7c coex_init - .text.coex_deinit - 0x420ccf7e 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf7e coex_deinit - .text.coex_enable - 0x420ccf80 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf80 coex_enable - .text.coex_disable - 0x420ccf82 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf82 coex_disable - .text.coex_update_lpclk_interval - 0x420ccf84 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf84 coex_update_lpclk_interval - .text.coex_register_start_cb - 0x420ccf94 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - 0x420ccf94 coex_register_start_cb - .text.coex_core_lock - 0x420ccf96 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .text.coex_core_unlock - 0x420ccff8 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .text.coex_core_timer_idx_get - 0x420cd058 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd058 coex_core_timer_idx_get - .text.coex_core_event_duration_get - 0x420cd078 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd078 coex_core_event_duration_get - .text.coex_core_pre_init - 0x420cd0ca 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd0ca coex_core_pre_init - .text.coex_core_init - 0x420cd160 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd160 coex_core_init - .text.coex_core_deinit - 0x420cd164 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd164 coex_core_deinit - .text.coex_core_enable - 0x420cd168 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd168 coex_core_enable - .text.coex_core_disable - 0x420cd1bc 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd1bc coex_core_disable - .text.coex_core_register_start_cb - 0x420cd200 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - 0x420cd200 coex_core_register_start_cb - .text.coex_rom_data_init - 0x420cd22e 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - 0x420cd22e coex_rom_data_init - .text.coex_rom_osi_funcs_init - 0x420cd27c 0xe8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - 0x420cd27c coex_rom_osi_funcs_init - .text.coex_schm_status_change - 0x420cd364 0x598 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_change_phase - 0x420cd8fc 0x122 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_timeout_process - 0x420cda1e 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .text.coex_schm_status_bit_set - 0x420cda24 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cda24 coex_schm_status_bit_set - .text.coex_schm_status_bit_clear - 0x420cdacc 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdacc coex_schm_status_bit_clear - .text.coex_schm_interval_get - 0x420cdb78 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdb78 coex_schm_interval_get - .text.coex_schm_curr_period_get - 0x420cdba0 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdba0 coex_schm_curr_period_get - .text.coex_schm_curr_phase_get - 0x420cdbce 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdbce coex_schm_curr_phase_get - .text.coex_schm_register_callback - 0x420cdc0e 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdc0e coex_schm_register_callback - .text.coex_wifi_channel_set - 0x420cdc54 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdc54 coex_wifi_channel_set - .text.coex_schm_process_restart - 0x420cdc9e 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdc9e coex_schm_process_restart - .text.coex_schm_init - 0x420cdca4 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - 0x420cdca4 coex_schm_init - .text.add_appie - 0x420cdd18 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_vnd_ie_size.part.5 - 0x420cdd3e 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .text.ieee80211_add_tie_param - 0x420cdd78 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cdd78 ieee80211_add_tie_param - .text.ieee80211_reg_netstack_buf_cb - 0x420cdde4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cdde4 ieee80211_reg_netstack_buf_cb - .text.ieee80211_set_hmac_stop - 0x420cddf6 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cddf6 ieee80211_set_hmac_stop - .text.ieee80211_empty_txq - 0x420cde36 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cde36 ieee80211_empty_txq - .text.is_wapi_alloc_tx_buf - 0x420cdece 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cdece is_wapi_alloc_tx_buf - .text.ieee80211_wapi_alloc_tx_buf - 0x420cdf00 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cdf00 ieee80211_wapi_alloc_tx_buf - .text.ieee80211_amsdu_adjust_head - 0x420cdf4c 0xea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cdf4c ieee80211_amsdu_adjust_head - .text.ieee80211_amsdu_length_check - 0x420ce036 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce036 ieee80211_amsdu_length_check - .text.ieee80211_output_init - 0x420ce060 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce060 ieee80211_output_init - .text.ieee80211_send_setup - 0x420ce096 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce096 ieee80211_send_setup - .text.ieee80211_tx_mgt_cb - 0x420ce1ee 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce1ee ieee80211_tx_mgt_cb - .text.ieee80211_classify - 0x420ce3bc 0x172 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce3bc ieee80211_classify - .text.ieee80211_add_rates - 0x420ce52e 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce52e ieee80211_add_rates - .text.ieee80211_add_dsparams - 0x420ce56a 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce56a ieee80211_add_dsparams - .text.ieee80211_add_xrates - 0x420ce596 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce596 ieee80211_add_xrates - .text.ieee80211_add_probe_resp_app_ies - 0x420ce5f4 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce5f4 ieee80211_add_probe_resp_app_ies - .text.ieee80211_add_beacon_app_ies - 0x420ce62a 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce62a ieee80211_add_beacon_app_ies - .text.ieee80211_add_assoc_resp_ies - 0x420ce660 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce660 ieee80211_add_assoc_resp_ies - .text.ieee80211_add_assoc_req_ies - 0x420ce692 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce692 ieee80211_add_assoc_req_ies - .text.ieee80211_add_probe_req_ies - 0x420ce6c4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce6c4 ieee80211_add_probe_req_ies - .text.ieee80211_add_wme_param - 0x420ce6f6 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce6f6 ieee80211_add_wme_param - .text.ieee80211_add_dh_param - 0x420ce778 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce778 ieee80211_add_dh_param - .text.ieee80211_add_csa - 0x420ce7d2 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce7d2 ieee80211_add_csa - .text.ieee80211_add_extcap - 0x420ce802 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce802 ieee80211_add_extcap - .text.ieee80211_vnd_ie_set - 0x420ce8e8 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce8e8 ieee80211_vnd_ie_set - .text.ieee80211_vnd_lora_ie_size - 0x420ce96a 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce96a ieee80211_vnd_lora_ie_size - .text.ieee80211_vnd_lora_ie_set - 0x420ce986 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce986 ieee80211_vnd_lora_ie_set - .text.ieee80211_setup_robust_mgmtframe - 0x420ce9cc 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ce9cc ieee80211_setup_robust_mgmtframe - .text.ieee80211_mgmt_output - 0x420cea7a 0x220 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cea7a ieee80211_mgmt_output - .text.ieee80211_getcapinfo - 0x420cec9a 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cec9a ieee80211_getcapinfo - .text.ieee80211_assoc_req_construct - 0x420ced1c 0x486 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420ced1c ieee80211_assoc_req_construct - .text.ieee80211_assoc_resp_construct - 0x420cf1a2 0x306 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf1a2 ieee80211_assoc_resp_construct - .text.ieee80211_auth_construct - 0x420cf4a8 0x316 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf4a8 ieee80211_auth_construct - .text.ieee80211_get_robustmgtframe - 0x420cf7be 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf7be ieee80211_get_robustmgtframe - .text.ieee80211_deauth_construct - 0x420cf7f4 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf7f4 ieee80211_deauth_construct - .text.ieee80211_disassoc_construct - 0x420cf856 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf856 ieee80211_disassoc_construct - .text.ieee80211_output - 0x420cf8ba 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf8ba ieee80211_output - .text.ieee80211_amsdu_send_check - 0x420cf8c2 0xe2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf8c2 ieee80211_amsdu_send_check - .text.ieee80211_amsdu_encap_check - 0x420cf9a4 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cf9a4 ieee80211_amsdu_encap_check - .text.ieee80211_encap_amsdu - 0x420cfa28 0x200 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cfa28 ieee80211_encap_amsdu - .text.ieee80211_alloc_proberesp - 0x420cfc28 0x2d4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cfc28 ieee80211_alloc_proberesp - .text.ieee80211_alloc_deauth - 0x420cfefc 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cfefc ieee80211_alloc_deauth - .text.ieee80211_output_raw_process - 0x420cff4c 0x1b4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420cff4c ieee80211_output_raw_process - .text.ieee80211_beacon_construct - 0x420d0100 0x292 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0100 ieee80211_beacon_construct - .text.ieee80211_send_nulldata - 0x420d0392 0x13c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0392 ieee80211_send_nulldata - .text.ieee80211_send_probereq - 0x420d04ce 0x262 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d04ce ieee80211_send_probereq - .text.ieee80211_send_mgmt - 0x420d0730 0x11e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0730 ieee80211_send_mgmt - .text.ieee80211_send_proberesp - 0x420d084e 0xf6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d084e ieee80211_send_proberesp - .text.ieee80211_send_deauth_no_bss - 0x420d0944 0x13e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0944 ieee80211_send_deauth_no_bss - .text.ieee80211_beacon_alloc - 0x420d0a82 0x21a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0a82 ieee80211_beacon_alloc - .text.ieee80211_encap_null_data - 0x420d0c9c 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0c9c ieee80211_encap_null_data - .text.ieee80211_pm_tx_null_process - 0x420d0dc8 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x420d0dc8 ieee80211_pm_tx_null_process - .text.is_non_esp_oui - 0x420d0df4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.is_esp_manufacturer_oui - 0x420d0e26 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.ieee80211_is_action_category_robust - 0x420d0e60 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.ieee80211_hostapd_beacon_txcb - 0x420d0e9c 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d0e9c ieee80211_hostapd_beacon_txcb - .text.ieee80211_hostap_send_beacon - 0x420d0f7c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.hostap_handle_timer - 0x420d0f86 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d0f86 hostap_handle_timer - .text.ap_try_sa_query - 0x420d0f90 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.ap_sa_query_timeout - 0x420d0f9a 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.free_mac_info - 0x420d0fa4 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.clear_mac_queue - 0x420d0fc6 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .text.ieee80211_hostapd_ps_txcb - 0x420d1050 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1050 ieee80211_hostapd_ps_txcb - .text.ieee80211_free_beacon_eb - 0x420d1094 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1094 ieee80211_free_beacon_eb - .text.ieee80211_hostap_send_beacon_process - 0x420d1112 0x394 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1112 ieee80211_hostap_send_beacon_process - .text.hostap_delete_ptk - 0x420d14a6 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d14a6 hostap_delete_ptk - .text.ieee80211_hostap_attach - 0x420d14e0 0x20a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d14e0 ieee80211_hostap_attach - .text.hostap_deliver_data - 0x420d16ea 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d16ea hostap_deliver_data - .text.hostap_handle_timer_process - 0x420d17a4 0x18a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d17a4 hostap_handle_timer_process - .text.wifi_ap_reg_rxcb - 0x420d192e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d192e wifi_ap_reg_rxcb - .text.hostap_query_mac_in_list - 0x420d1938 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1938 hostap_query_mac_in_list - .text.hostap_add_in_mac_list - 0x420d19e0 0x102 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d19e0 hostap_add_in_mac_list - .text.hostap_del_mac_info_from_list - 0x420d1ae2 0x108 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1ae2 hostap_del_mac_info_from_list - .text.ap_rx_cb - 0x420d1bea 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1bea ap_rx_cb - .text.hostap_auth_open - 0x420d1c08 0x186 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1c08 hostap_auth_open - .text.hostap_recv_ctl - 0x420d1d8e 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1d8e hostap_recv_ctl - .text.wifi_softap_start - 0x420d1f16 0x3ee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d1f16 wifi_softap_start - .text.wifi_softap_stop - 0x420d2304 0x1a0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d2304 wifi_softap_stop - .text.create_new_bss_for_sa_query_failed_sta - 0x420d24a4 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d24a4 create_new_bss_for_sa_query_failed_sta - .text.ap_sa_query_timeout_process - 0x420d2576 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d2576 ap_sa_query_timeout_process - .text.ap_try_sa_query_process - 0x420d263c 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d263c ap_try_sa_query_process - .text.hostap_recv_mgmt - 0x420d27c4 0xee8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d27c4 hostap_recv_mgmt - .text.hostap_input - 0x420d36ac 0x6bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d36ac hostap_input - .text.add_mic_ie_bip - 0x420d3d68 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - 0x420d3d68 add_mic_ie_bip - .text.ieee80211_crypto_attach - 0x420d3dc2 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d3dc2 ieee80211_crypto_attach - .text.ieee80211_crypto_decap - 0x420d3dc4 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d3dc4 ieee80211_crypto_decap - .text.ieee80211_crypto_aes_128_cmac_encrypt - 0x420d3e78 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d3e78 ieee80211_crypto_aes_128_cmac_encrypt - .text.ieee80211_crypto_aes_128_cmac_decrypt - 0x420d3fa4 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d3fa4 ieee80211_crypto_aes_128_cmac_decrypt - .text.ieee80211_crypto_gmac_decrypt - 0x420d412c 0x1e2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d412c ieee80211_crypto_gmac_decrypt - .text.ieee80211_get_cipher_mic_len - 0x420d430e 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - 0x420d430e ieee80211_get_cipher_mic_len - .text.ieee80211_phy_deinit - 0x420d4338 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - 0x420d4338 ieee80211_phy_deinit - .text.ieee80211_phy_type_get - 0x420d4348 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - 0x420d4348 ieee80211_phy_type_get - .text.ieee80211_phy_mode_show - 0x420d43a2 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - 0x420d43a2 ieee80211_phy_mode_show - .text.ieee80211_setup_ratetable - 0x420d4428 0x148 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - 0x420d4428 ieee80211_setup_ratetable - .text.ieee80211_phy_init - 0x420d4570 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - 0x420d4570 ieee80211_phy_init - .text.chm_end_op_timeout - 0x420d461c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text.chm_phy_change_channel.constprop.3 - 0x420d4626 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text.chm_mhz2num - 0x420d465a 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d465a chm_mhz2num - .text.chm_deinit - 0x420d46aa 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d46aa chm_deinit - .text.chm_release_lock - 0x420d46e6 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d46e6 chm_release_lock - .text.chm_end_op - 0x420d46fc 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d46fc chm_end_op - .text.chm_end_op_timeout_process - 0x420d4758 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4758 chm_end_op_timeout_process - .text.chm_cancel_op - 0x420d4786 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4786 chm_cancel_op - .text.chm_acquire_lock - 0x420d47f0 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d47f0 chm_acquire_lock - .text.chm_get_current_channel - 0x420d483e 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d483e chm_get_current_channel - .text.chm_get_current_band - 0x420d484c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d484c chm_get_current_band - .text.chm_get_band_from_chan - 0x420d4850 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4850 chm_get_band_from_chan - .text.chm_get_home_channel - 0x420d4854 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4854 chm_get_home_channel - .text.chm_set_home_channel - 0x420d4862 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4862 chm_set_home_channel - .text.chm_get_channel_index - 0x420d4922 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4922 chm_get_channel_index - .text.chm_bitmap_idx_to_channel - 0x420d4934 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4934 chm_bitmap_idx_to_channel - .text.chm_get_chan_info - 0x420d497e 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d497e chm_get_chan_info - .text.chm_set_current_channel - 0x420d49a4 0x138 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d49a4 chm_set_current_channel - .text.chm_init - 0x420d4adc 0x154 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4adc chm_init - .text.chm_change_channel - 0x420d4c30 0x12e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .text.chm_start_op - 0x420d4d5e 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4d5e chm_start_op - .text.chm_return_home_channel - 0x420d4daa 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - 0x420d4daa chm_return_home_channel - .text.ieee80211_psq_init - 0x420d4e10 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4e10 ieee80211_psq_init - .text.ieee80211_gpsq_init - 0x420d4e2c 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4e2c ieee80211_gpsq_init - .text.ieee80211_psq_find_max_bss - 0x420d4e6c 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4e6c ieee80211_psq_find_max_bss - .text.ieee80211_set_tim - 0x420d4ea2 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4ea2 ieee80211_set_tim - .text.ieee80211_psq_take_head - 0x420d4f20 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4f20 ieee80211_psq_take_head - .text.ieee80211_psq_drop_one_pkt - 0x420d4f5e 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4f5e ieee80211_psq_drop_one_pkt - .text.ieee80211_psq_send_one_pkt - 0x420d4fc6 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d4fc6 ieee80211_psq_send_one_pkt - .text.ieee80211_psq_is_buff_pkt - 0x420d5044 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d5044 ieee80211_psq_is_buff_pkt - .text.ieee80211_pwrsave - 0x420d508e 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d508e ieee80211_pwrsave - .text.pwrsave_flushq - 0x420d5120 0x11a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d5120 pwrsave_flushq - .text.ieee80211_node_pwrsave - 0x420d523a 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d523a ieee80211_node_pwrsave - .text.ieee80211_pwrsave_node_cleanup - 0x420d52a8 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d52a8 ieee80211_pwrsave_node_cleanup - .text.ieee80211_pwrsave_txcb - 0x420d52fe 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d52fe ieee80211_pwrsave_txcb - .text.ieee80211_is_bufferable_mmpdu - 0x420d5350 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - 0x420d5350 ieee80211_is_bufferable_mmpdu - .text.ieee80211_getmgtframe - 0x420d53a0 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - 0x420d53a0 ieee80211_getmgtframe - .text.ieee80211_getbcnframe - 0x420d53fc 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - 0x420d53fc ieee80211_getbcnframe - .text.get_country_chan_info - 0x420d5498 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .text.ieee80211_is_40mhz_valid_bw - 0x420d54d2 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - 0x420d54d2 ieee80211_is_40mhz_valid_bw - .text.offchan_in_progress - 0x420d5528 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - 0x420d5528 offchan_in_progress - .text.offchan_recv_action - 0x420d5532 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - 0x420d5532 offchan_recv_action - .text.offchan_send_action_tx_status - 0x420d5544 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - 0x420d5544 offchan_send_action_tx_status - .text.is_esp_mesh_assoc - 0x420d5572 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - 0x420d5572 is_esp_mesh_assoc - .text.wifi_log - 0x420d5608 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - 0x420d5608 wifi_log - .text.cnx_sta_connect_led_timer_cb - 0x420d56d4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d56d4 cnx_sta_connect_led_timer_cb - .text.cnx_cal_rc_util - 0x420d56ec 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_get_next_rc - 0x420d573a 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_traverse_rc_lis_done - 0x420d5790 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_connect_timeout - 0x420d57ce 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d57ce cnx_connect_timeout - .text.cnx_connect_next_ap_timeout - 0x420d57d8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d57d8 cnx_connect_next_ap_timeout - .text.cnx_handshake_timeout - 0x420d57e2 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d57e2 cnx_handshake_timeout - .text.cnx_csa_fn - 0x420d57ec 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d57ec cnx_csa_fn - .text.mgd_probe_send_timeout - 0x420d5802 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_beacon_timeout - 0x420d580c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_connect_op - 0x420d5816 0x1e8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_connect_to_bss - 0x420d59fe 0x354 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_probe_rc - 0x420d5d52 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_sta_pm.part.12 - 0x420d5dc0 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.ieee80211_cnx_attach - 0x420d5de2 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d5de2 ieee80211_cnx_attach - .text._cnx_start_connect_without_scan - 0x420d5e38 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d5e38 _cnx_start_connect_without_scan - .text.cnx_can_do_obss_scan - 0x420d5e9c 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d5e9c cnx_can_do_obss_scan - .text.cnx_obss_scan - 0x420d5f0c 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d5f0c cnx_obss_scan - .text.cnx_obss_scan_timeout - 0x420d5fa8 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d5fa8 cnx_obss_scan_timeout - .text.cnx_sta_scan_cmd - 0x420d600e 0x2ea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d600e cnx_sta_scan_cmd - .text.cnx_connect_next_ap - 0x420d62f8 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d62f8 cnx_connect_next_ap - .text.cnx_auth_timeout - 0x420d63aa 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d63aa cnx_auth_timeout - .text.cnx_assoc_timeout - 0x420d63b4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d63b4 cnx_assoc_timeout - .text.wl_is_ap_no_lr - 0x420d63be 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d63be wl_is_ap_no_lr - .text.wl_clear_ap_no_lr - 0x420d63c8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d63c8 wl_clear_ap_no_lr - .text.cnx_csa_fn_process - 0x420d63d2 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d63d2 cnx_csa_fn_process - .text.cnx_validate_owe_bss - 0x420d64a8 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d64a8 cnx_validate_owe_bss - .text.cnx_bss_init - 0x420d65a4 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d65a4 cnx_bss_init - .text.cnx_check_bssid_in_blacklist - 0x420d6662 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6662 cnx_check_bssid_in_blacklist - .text.cnx_remove_from_blacklist - 0x420d669e 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d669e cnx_remove_from_blacklist - .text.cnx_add_to_blacklist - 0x420d6746 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6746 cnx_add_to_blacklist - .text.cnx_clear_blacklist - 0x420d6836 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6836 cnx_clear_blacklist - .text.cnx_choose_rc - 0x420d68ac 0x1e6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_rc_search - 0x420d6a92 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6a92 cnx_rc_search - .text.cnx_do_handoff_internal - 0x420d6af4 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6af4 cnx_do_handoff_internal - .text.cnx_add_rc - 0x420d6ba2 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6ba2 cnx_add_rc - .text.cnx_remove_all_rc - 0x420d6c4c 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d6c4c cnx_remove_all_rc - .text.cnx_do_handoff - 0x420d6cd6 0x376 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_connect_next_ap_timeout_process - 0x420d704c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d704c cnx_connect_next_ap_timeout_process - .text.cnx_start_handoff_cb - 0x420d706a 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d706a cnx_start_handoff_cb - .text.cnx_remove_rc - 0x420d70d8 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d70d8 cnx_remove_rc - .text.cnx_sta_connect_cmd - 0x420d71d0 0x280 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d71d0 cnx_sta_connect_cmd - .text.cnx_connect_timeout_process - 0x420d7450 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7450 cnx_connect_timeout_process - .text.cnx_auth_timeout_process - 0x420d74f2 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d74f2 cnx_auth_timeout_process - .text.cnx_assoc_timeout_process - 0x420d7540 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7540 cnx_assoc_timeout_process - .text.cnx_handshake_timeout_process - 0x420d757c 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d757c cnx_handshake_timeout_process - .text.cnx_bss_alloc - 0x420d75e6 0x174 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d75e6 cnx_bss_alloc - .text.cnx_remove_rc_except - 0x420d775a 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d775a cnx_remove_rc_except - .text.cnx_rc_update_rssi - 0x420d7810 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7810 cnx_rc_update_rssi - .text.cnx_rc_update_state_metric - 0x420d7870 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7870 cnx_rc_update_state_metric - .text.cnx_probe_rc_tx_cb - 0x420d78be 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .text.cnx_rc_update_age - 0x420d7920 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7920 cnx_rc_update_age - .text.cnx_update_bss - 0x420d7936 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7936 cnx_update_bss - .text.cnx_update_bss_more - 0x420d7968 0x3a6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7968 cnx_update_bss_more - .text.send_ap_probe - 0x420d7d0e 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7d0e send_ap_probe - .text.cnx_beacon_timeout_process - 0x420d7dcc 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7dcc cnx_beacon_timeout_process - .text.mgd_probe_send_timeout_process - 0x420d7e80 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7e80 mgd_probe_send_timeout_process - .text.cnx_node_alloc - 0x420d7fd8 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d7fd8 cnx_node_alloc - .text.cnx_node_remove - 0x420d80c8 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d80c8 cnx_node_remove - .text.ic_set_sta - 0x420d81f4 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d81f4 ic_set_sta - .text.cnx_sta_leave - 0x420d82d4 0x2fe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d82d4 cnx_sta_leave - .text.cnx_sta_associated - 0x420d85d2 0x1bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d85d2 cnx_sta_associated - .text.cnx_node_leave - 0x420d878e 0x202 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d878e cnx_node_leave - .text.cnx_node_join - 0x420d8990 0x2f4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d8990 cnx_node_join - .text.cnx_start_obss_scan - 0x420d8c84 0xd0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d8c84 cnx_start_obss_scan - .text.cnx_obss_scan_done_cb - 0x420d8d54 0x150 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d8d54 cnx_obss_scan_done_cb - .text.cnx_auth_done - 0x420d8ea4 0x31e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - 0x420d8ea4 cnx_auth_done - .text.wpa_cipher - 0x420d91c2 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .text.rsn_cipher - 0x420d9226 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .text.ieee80211_decap - 0x420d933a 0x1be /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d933a ieee80211_decap - .text.ieee80211_is_support_rate - 0x420d94f8 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d94f8 ieee80211_is_support_rate - .text.ieee80211_setup_rates - 0x420d9540 0xf0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9540 ieee80211_setup_rates - .text.ieee80211_set_max_rate - 0x420d9630 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9630 ieee80211_set_max_rate - .text.ieee80211_is_lr_only - 0x420d9750 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9750 ieee80211_is_lr_only - .text.ieee80211_setup_phy_mode - 0x420d9760 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9760 ieee80211_setup_phy_mode - .text.ieee80211_setup_lr_rates - 0x420d981a 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d981a ieee80211_setup_lr_rates - .text.ieee80211_alloc_challenge - 0x420d9880 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9880 ieee80211_alloc_challenge - .text.ieee80211_parse_beacon - 0x420d98c8 0x57a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d98c8 ieee80211_parse_beacon - .text.ieee80211_parse_wpa - 0x420d9e42 0x118 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9e42 ieee80211_parse_wpa - .text.ieee80211_rsn_cipher_priority - 0x420d9f5a 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9f5a ieee80211_rsn_cipher_priority - .text.ieee80211_better_rsn_pairwise_cipher - 0x420d9f92 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9f92 ieee80211_better_rsn_pairwise_cipher - .text.ieee80211_amsdu_negotiate - 0x420d9fbe 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420d9fbe ieee80211_amsdu_negotiate - .text.ieee80211_parse_rsn - 0x420da04e 0x7de /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420da04e ieee80211_parse_rsn - .text.ieee80211_is_ht_cipher - 0x420da82c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420da82c ieee80211_is_ht_cipher - .text.ieee80211_parse_wapi - 0x420da84a 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420da84a ieee80211_parse_wapi - .text.ieee80211_parse_action - 0x420da8e8 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420da8e8 ieee80211_parse_action - .text.ieee80211_setup_rateset - 0x420da99a 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - 0x420da99a ieee80211_setup_rateset - .text.ieee80211_add_ie_vendor_esp_head - 0x420da99e 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - 0x420da99e ieee80211_add_ie_vendor_esp_head - .text.ieee80211_add_ie_vendor_esp_manufacturer - 0x420da9e6 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - 0x420da9e6 ieee80211_add_ie_vendor_esp_manufacturer - .text.wifi_nvs_cfg_item_init - 0x420daa44 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420daa44 wifi_nvs_cfg_item_init - .text.wifi_nvs_cfg_init - 0x420daaec 0xa58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420daaec wifi_nvs_cfg_init - .text.wifi_nvs_get - 0x420db544 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db544 wifi_nvs_get - .text.wifi_nvs_commit - 0x420db54a 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db54a wifi_nvs_commit - .text.wifi_nvs_set - 0x420db580 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db580 wifi_nvs_set - .text.ieee80211_adjust_2nd_chan - 0x420db708 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db708 ieee80211_adjust_2nd_chan - .text.wifi_nvs_compare_cfg_diff - 0x420db76c 0x192 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db76c wifi_nvs_compare_cfg_diff - .text.wifi_set_default_ssid - 0x420db8fe 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db8fe wifi_set_default_ssid - .text.wifi_nvs_validate_ap_ssid - 0x420db954 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db954 wifi_nvs_validate_ap_ssid - .text.wifi_nvs_validate_ap_password - 0x420db978 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db978 wifi_nvs_validate_ap_password - .text.wifi_nvs_validate_sta_password - 0x420db9c4 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420db9c4 wifi_nvs_validate_sta_password - .text.wifi_nvs_validate_country - 0x420dba18 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dba18 wifi_nvs_validate_country - .text.wifi_nvs_validate_ap_chan - 0x420dba62 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dba62 wifi_nvs_validate_ap_chan - .text.wifi_nvs_validate_ap_num - 0x420dbab0 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbab0 wifi_nvs_validate_ap_num - .text.wifi_nvs_validate_sta_listen_interval - 0x420dbac6 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbac6 wifi_nvs_validate_sta_listen_interval - .text.wifi_nvs_load - 0x420dbada 0x26a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .text.wifi_nvs_restore - 0x420dbd44 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbd44 wifi_nvs_restore - .text.wifi_nvs_get_sta_listen_interval - 0x420dbd56 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbd56 wifi_nvs_get_sta_listen_interval - .text.wifi_nvs_reset_current_ap_info - 0x420dbd60 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbd60 wifi_nvs_reset_current_ap_info - .text.wifi_nvs_deinit - 0x420dbde0 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbde0 wifi_nvs_deinit - .text.wifi_nvs_init - 0x420dbe3e 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - 0x420dbe3e wifi_nvs_init - .text.wifi_sta_connect_internal_process - 0x420dbebc 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbebc wifi_sta_connect_internal_process - .text.esp_wifi_get_sta_hw_key_idx_internal - 0x420dbede 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .text.esp_wifi_ap_get_prof_pmk_internal - 0x420dbf06 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf06 esp_wifi_ap_get_prof_pmk_internal - .text.esp_wifi_sta_update_ap_info_internal - 0x420dbf10 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf10 esp_wifi_sta_update_ap_info_internal - .text.esp_wifi_sta_get_ap_info_prof_pmk_internal - 0x420dbf3a 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf3a esp_wifi_sta_get_ap_info_prof_pmk_internal - .text.esp_wifi_ap_get_prof_ap_ssid_internal - 0x420dbf52 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf52 esp_wifi_ap_get_prof_ap_ssid_internal - .text.esp_wifi_sta_get_prof_ssid_internal - 0x420dbf5c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf5c esp_wifi_sta_get_prof_ssid_internal - .text.esp_wifi_ap_get_prof_authmode_internal - 0x420dbf64 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf64 esp_wifi_ap_get_prof_authmode_internal - .text.esp_wifi_ap_get_max_sta_conn - 0x420dbf6e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf6e esp_wifi_ap_get_max_sta_conn - .text.esp_wifi_ap_get_prof_pairwise_cipher_internal - 0x420dbf78 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf78 esp_wifi_ap_get_prof_pairwise_cipher_internal - .text.esp_wifi_sta_get_prof_authmode_internal - 0x420dbf82 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf82 esp_wifi_sta_get_prof_authmode_internal - .text.esp_wifi_get_pmf_config_internal - 0x420dbf8c 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbf8c esp_wifi_get_pmf_config_internal - .text.esp_wifi_get_config_sae_pwe_h2e_internal - 0x420dbfbe 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbfbe esp_wifi_get_config_sae_pwe_h2e_internal - .text.esp_wifi_sta_get_rsnxe - 0x420dbff8 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dbff8 esp_wifi_sta_get_rsnxe - .text.esp_wifi_sta_disable_wpa2_authmode_internal - 0x420dc01e 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc01e esp_wifi_sta_disable_wpa2_authmode_internal - .text.esp_wifi_sta_get_config_sae_pk_internal - 0x420dc06e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc06e esp_wifi_sta_get_config_sae_pk_internal - .text.esp_wifi_enable_sae_pk_only_mode_internal - 0x420dc078 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc078 esp_wifi_enable_sae_pk_only_mode_internal - .text.esp_wifi_sta_disable_owe_trans_internal - 0x420dc0a2 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc0a2 esp_wifi_sta_disable_owe_trans_internal - .text.esp_wifi_ap_notify_node_sae_auth_done - 0x420dc0dc 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc0dc esp_wifi_ap_notify_node_sae_auth_done - .text.esp_wifi_ap_is_sta_sae_reauth_node - 0x420dc12c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc12c esp_wifi_ap_is_sta_sae_reauth_node - .text.esp_wifi_sta_get_sae_identifier_internal - 0x420dc150 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc150 esp_wifi_sta_get_sae_identifier_internal - .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal - 0x420dc15a 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc15a esp_wifi_sta_is_ap_notify_completed_rsne_internal - .text.esp_wifi_ap_get_prof_password_internal - 0x420dc168 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc168 esp_wifi_ap_get_prof_password_internal - .text.wifi_sta_get_prof_password - 0x420dc172 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc172 wifi_sta_get_prof_password - .text.esp_wifi_sta_get_prof_password_internal - 0x420dc17c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc17c esp_wifi_sta_get_prof_password_internal - .text.esp_wifi_sta_get_reset_param_internal - 0x420dc186 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc186 esp_wifi_sta_get_reset_param_internal - .text.esp_wifi_sta_set_reset_param_internal - 0x420dc190 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc190 esp_wifi_sta_set_reset_param_internal - .text.esp_wifi_sta_prof_is_wpa_internal - 0x420dc19c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc19c esp_wifi_sta_prof_is_wpa_internal - .text.esp_wifi_sta_prof_is_wpa2_internal - 0x420dc1ba 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc1ba esp_wifi_sta_prof_is_wpa2_internal - .text.esp_wifi_sta_prof_is_wapi_internal - 0x420dc1dc 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc1dc esp_wifi_sta_prof_is_wapi_internal - .text.esp_wifi_sta_prof_is_rsn_internal - 0x420dc1ec 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc1ec esp_wifi_sta_prof_is_rsn_internal - .text.esp_wifi_sta_get_pairwise_cipher_internal - 0x420dc20c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc20c esp_wifi_sta_get_pairwise_cipher_internal - .text.esp_wifi_sta_get_group_cipher_internal - 0x420dc216 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc216 esp_wifi_sta_get_group_cipher_internal - .text.ieee80211_get_key - 0x420dc220 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc220 ieee80211_get_key - .text.ieee80211_set_key - 0x420dc23e 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc23e ieee80211_set_key - .text.ieee80211_set_sta_gtk_index - 0x420dc2a0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc2a0 ieee80211_set_sta_gtk_index - .text.ieee80211_set_gtk - 0x420dc2b8 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc2b8 ieee80211_set_gtk - .text.ieee80211_get_ptk - 0x420dc300 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc300 ieee80211_get_ptk - .text.ieee80211_get_spp - 0x420dc31c 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc31c ieee80211_get_spp - .text.esp_wifi_wpa_ptk_init_done_internal - 0x420dc356 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc356 esp_wifi_wpa_ptk_init_done_internal - .text.esp_wifi_auth_done_internal - 0x420dc3e4 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc3e4 esp_wifi_auth_done_internal - .text.esp_wifi_unregister_wpa_cb_internal - 0x420dc3f4 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc3f4 esp_wifi_unregister_wpa_cb_internal - .text.esp_wifi_register_wpa_cb_internal - 0x420dc428 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc428 esp_wifi_register_wpa_cb_internal - .text.ieee80211_sta_is_connected - 0x420dc446 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc446 ieee80211_sta_is_connected - .text.esp_wifi_get_hostap_private_internal - 0x420dc456 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc456 esp_wifi_get_hostap_private_internal - .text.esp_wifi_deauthenticate_internal - 0x420dc468 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc468 esp_wifi_deauthenticate_internal - .text.esp_wifi_get_spp_attrubute_internal - 0x420dc4a0 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc4a0 esp_wifi_get_spp_attrubute_internal - .text.esp_wifi_get_user_init_flag_internal - 0x420dc4c0 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc4c0 esp_wifi_get_user_init_flag_internal - .text.wifi_set_rx_policy - 0x420dc4d2 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc4d2 wifi_set_rx_policy - .text.esp_wifi_register_eapol_txdonecb_internal - 0x420dc62a 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc62a esp_wifi_register_eapol_txdonecb_internal - .text.esp_wifi_get_macaddr_internal - 0x420dc63a 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc63a esp_wifi_get_macaddr_internal - .text.esp_wifi_ap_deauth_internal - 0x420dc658 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc658 esp_wifi_ap_deauth_internal - .text.wifi_init_key - 0x420dc6bc 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc6bc wifi_init_key - .text.esp_wifi_set_ap_key_internal - 0x420dc6ea 0x190 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc6ea esp_wifi_set_ap_key_internal - .text.ppInstallKey - 0x420dc87a 0x166 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc87a ppInstallKey - .text.esp_wifi_set_sta_key_internal - 0x420dc9e0 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dc9e0 esp_wifi_set_sta_key_internal - .text.esp_wifi_get_sta_key_internal - 0x420dca46 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dca46 esp_wifi_get_sta_key_internal - .text.esp_wifi_set_appie_internal - 0x420dcaa2 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcaa2 esp_wifi_set_appie_internal - .text.esp_wifi_unset_appie_internal - 0x420dcb18 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcb18 esp_wifi_unset_appie_internal - .text.esp_wifi_get_wps_status_internal - 0x420dcb22 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcb22 esp_wifi_get_wps_status_internal - .text.esp_wifi_sta_pmf_enabled - 0x420dcb2e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcb2e esp_wifi_sta_pmf_enabled - .text.esp_wifi_sta_get_mgmt_group_cipher - 0x420dcb38 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcb38 esp_wifi_sta_get_mgmt_group_cipher - .text.esp_wifi_set_igtk_internal - 0x420dcb5e 0xce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcb5e esp_wifi_set_igtk_internal - .text.ieee80211w_get_active_igtk_key_id - 0x420dcc2c 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcc2c ieee80211w_get_active_igtk_key_id - .text.ieee80211w_get_igtk_from_keyidx - 0x420dcc46 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcc46 ieee80211w_get_igtk_from_keyidx - .text.esp_wifi_skip_supp_pmkcaching - 0x420dcc94 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcc94 esp_wifi_skip_supp_pmkcaching - .text.esp_wifi_register_mgmt_frame_internal - 0x420dcc9e 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcc9e esp_wifi_register_mgmt_frame_internal - .text.esp_wifi_send_mgmt_frm_internal - 0x420dcd00 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcd00 esp_wifi_send_mgmt_frm_internal - .text.esp_wifi_sta_connect_internal - 0x420dcd98 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcd98 esp_wifi_sta_connect_internal - .text.esp_wifi_ap_get_transition_disable_internal - 0x420dcdd0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - 0x420dcdd0 esp_wifi_ap_get_transition_disable_internal - .text.wifi_pmk_is_valid - 0x420dcdda 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.ieee80211_ioctl_process - 0x420dce10 0x112 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dce10 ieee80211_ioctl_process - .text.wifi_station_set_config_local_2.isra.2 - 0x420dcf22 0x492 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.current_task_is_wifi_task - 0x420dd3b4 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd3b4 current_task_is_wifi_task - .text.wifi_station_get_reconnect_policy - 0x420dd3dc 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd3dc wifi_station_get_reconnect_policy - .text._do_wifi_stop - 0x420dd3e0 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd3e0 _do_wifi_stop - .text.wifi_stop_old_mode - 0x420dd464 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text._do_wifi_start - 0x420dd4c0 0xce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd4c0 _do_wifi_start - .text.ieee80211_set_phy_bw - 0x420dd58e 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd58e ieee80211_set_phy_bw - .text.ieee80211_protocol_attach - 0x420dd688 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd688 ieee80211_protocol_attach - .text.wifi_station_save_ap_channel - 0x420dd6e0 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd6e0 wifi_station_save_ap_channel - .text.ieee80211_sta_connect - 0x420dd756 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd756 ieee80211_sta_connect - .text.ieee80211_sta_disconnect - 0x420dd836 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd836 ieee80211_sta_disconnect - .text._do_wifi_disconnect - 0x420dd8ea 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.ieee80211_sta_scan - 0x420dd976 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd976 ieee80211_sta_scan - .text.wifi_softap_max_support_num - 0x420dd998 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd998 wifi_softap_max_support_num - .text.wifi_softap_set_config - 0x420dd9b2 0x806 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dd9b2 wifi_softap_set_config - .text.chip_enable - 0x420de1b8 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de1b8 chip_enable - .text.chip_disable - 0x420de1de 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de1de chip_disable - .text.wifi_reset_mac - 0x420de204 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de204 wifi_reset_mac - .text.wifi_hw_start - 0x420de26a 0x16c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de26a wifi_hw_start - .text.wifi_txq_empty - 0x420de3d6 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de3d6 wifi_txq_empty - .text.wifi_stop_sw_txq - 0x420de414 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de414 wifi_stop_sw_txq - .text.wifi_hw_stop - 0x420de448 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de448 wifi_hw_stop - .text.wifi_hw_mode_switch - 0x420de58a 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .text.wifi_set_mode_process - 0x420de634 0x14a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de634 wifi_set_mode_process - .text.wifi_menuconfig_init - 0x420de77e 0x1e2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de77e wifi_menuconfig_init - .text.wpa_crypto_funcs_init - 0x420de960 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de960 wpa_crypto_funcs_init - .text.wifi_crypto_init - 0x420de9a4 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de9a4 wifi_crypto_init - .text.wifi_hmac_init - 0x420de9aa 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de9aa wifi_hmac_init - .text.wifi_lmac_init - 0x420de9e6 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420de9e6 wifi_lmac_init - .text.wifi_deinit - 0x420deaec 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420deaec wifi_deinit - .text.wifi_init_process - 0x420deb0c 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420deb0c wifi_init_process - .text.wifi_deinit_process - 0x420debe2 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420debe2 wifi_deinit_process - .text.wifi_start_process - 0x420debe6 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420debe6 wifi_start_process - .text.wifi_stop_process - 0x420dec70 0x10e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dec70 wifi_stop_process - .text.wifi_connect_process - 0x420ded7e 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420ded7e wifi_connect_process - .text.wifi_disconnect_process - 0x420dedd2 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dedd2 wifi_disconnect_process - .text.wifi_scan_start_process - 0x420dee36 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dee36 wifi_scan_start_process - .text.wifi_ant_to_ant_type - 0x420deeb4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420deeb4 wifi_ant_to_ant_type - .text.wifi_clear_ap_list_process - 0x420deec6 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420deec6 wifi_clear_ap_list_process - .text.wifi_copy_ap_record - 0x420def12 0xf4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420def12 wifi_copy_ap_record - .text.wifi_get_ap_list_process - 0x420df006 0x1f2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df006 wifi_get_ap_list_process - .text.wifi_get_ap_info_process - 0x420df1f8 0x190 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df1f8 wifi_get_ap_info_process - .text.wifi_set_config_process - 0x420df388 0x448 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df388 wifi_set_config_process - .text.wifi_set_ps_process - 0x420df7d0 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df7d0 wifi_set_ps_process - .text.wifi_set_rxcb_process - 0x420df7e4 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df7e4 wifi_set_rxcb_process - .text.wifi_restore_process - 0x420df810 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df810 wifi_restore_process - .text.wifi_wps_is_started - 0x420df824 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df824 wifi_wps_is_started - .text.wifi_wpa2_is_started - 0x420df82e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df82e wifi_wpa2_is_started - .text.wifi_ipc_process - 0x420df838 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df838 wifi_ipc_process - .text.ieee80211_set_appie - 0x420df8ac 0x17e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420df8ac ieee80211_set_appie - .text.wifi_set_appie_process - 0x420dfa2a 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfa2a wifi_set_appie_process - .text.wifi_send_mgmt_frame - 0x420dfa46 0x15a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfa46 wifi_send_mgmt_frame - .text.wifi_register_mgmt_frame - 0x420dfba0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfba0 wifi_register_mgmt_frame - .text.wifi_ap_remove_sta_node_process - 0x420dfbb8 0x11c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfbb8 wifi_ap_remove_sta_node_process - .text.wifi_ap_sta_sae_auth_done_process - 0x420dfcd4 0xec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfcd4 wifi_ap_sta_sae_auth_done_process - .text.wifi_on_coex_start_process - 0x420dfdc0 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfdc0 wifi_on_coex_start_process - .text.wifi_on_coex_schm_phase_process - 0x420dfde8 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfde8 wifi_on_coex_schm_phase_process - .text.wifi_mesh_ps_duty_cycle_get_process - 0x420dfdf8 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfdf8 wifi_mesh_ps_duty_cycle_get_process - .text.ieee80211_ioctl_init - 0x420dfe20 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfe20 ieee80211_ioctl_init - .text.ieee80211_ioctl_deinit - 0x420dfe50 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfe50 ieee80211_ioctl_deinit - .text.ieee80211_ioctl - 0x420dfe5c 0x1b2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420dfe5c ieee80211_ioctl - .text.config_get_wifi_task_stack_size - 0x420e000e 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - 0x420e000e config_get_wifi_task_stack_size - .text.ieee80211_ampdu_age_handle - 0x420e0038 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_addba - 0x420e004a 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_ap_try_sa_query - 0x420e005c 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x420e005c ieee80211_ap_try_sa_query - .text.ieee80211_ap_sa_query_timeout - 0x420e0096 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x420e0096 ieee80211_ap_sa_query_timeout - .text.ieee80211_cnx_connect_next_ap - 0x420e00d0 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_sta_retry_assoc - 0x420e0108 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_sta_sa_query_timeout - 0x420e0140 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_sta_try_sa_query - 0x420e0178 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_assoc - 0x420e01b0 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_auth - 0x420e01e8 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_chm_dwell - 0x420e0220 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_handshake - 0x420e025a 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_beacon - 0x420e0292 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_probe_send - 0x420e02e2 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_csa - 0x420e0332 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_scan_enter_op_chan - 0x420e0374 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_scan_inter_chan - 0x420e03ae 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_timer_connect - 0x420e03e8 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_hostap_handle - 0x420e0420 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_send_beacon - 0x420e045a 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .text.ieee80211_register_hostap_timer - 0x420e0494 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x420e0494 ieee80211_register_hostap_timer - .text.ieee80211_timer_do_process - 0x420e04ca 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x420e04ca ieee80211_timer_do_process - .text.ieee80211_timer_process - 0x420e056a 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - 0x420e056a ieee80211_timer_process - .text.gcmp_encap - 0x420e0634 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .text.gcmp_decap - 0x420e06a4 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .text.ftm_is_responder_supported - 0x420e0768 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e0768 ftm_is_responder_supported - .text.ftm_responder_cleanup - 0x420e0784 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e0784 ftm_responder_cleanup - .text.ftm_is_initiator_supported - 0x420e0806 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e0806 ftm_is_initiator_supported - .text.ftm_initiator_post_event - 0x420e0814 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e0814 ftm_initiator_post_event - .text.ftm_initiator_cleanup - 0x420e089e 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e089e ftm_initiator_cleanup - .text.ieee80211_ftm_detach - 0x420e094a 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - 0x420e094a ieee80211_ftm_detach - .text.wifi_ant_update_empty_func - 0x420e094e 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e094e wifi_ant_update_empty_func - .text.esp_wifi_internal_reg_netstack_buf_cb_local - 0x420e0952 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0952 esp_wifi_internal_reg_netstack_buf_cb_local - .text.esp_wifi_send_deauth_local - 0x420e0966 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0966 esp_wifi_send_deauth_local - .text.esp_wifi_ap_get_sta_aid_local - 0x420e097a 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e097a esp_wifi_ap_get_sta_aid_local - .text.wifi_get_init_state - 0x420e0a0c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0a0c wifi_get_init_state - .text.wifi_is_stop_in_progress - 0x420e0a16 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0a16 wifi_is_stop_in_progress - .text.wifi_api_lock - 0x420e0a20 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0a20 wifi_api_lock - .text.wifi_api_unlock - 0x420e0a78 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0a78 wifi_api_unlock - .text.wifi_init_completed - 0x420e0aa0 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0aa0 wifi_init_completed - .text.wifi_station_get_config_local - 0x420e0ad0 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .text.wifi_softap_get_config - 0x420e0c74 0x184 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0c74 wifi_softap_get_config - .text.esp_wifi_get_mode - 0x420e0df8 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0df8 esp_wifi_get_mode - .text.wifi_deinit_in_caller_task - 0x420e0e2e 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0e2e wifi_deinit_in_caller_task - .text.wifi_init_in_caller_task - 0x420e0e7e 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0e7e wifi_init_in_caller_task - .text.wifi_osi_funcs_register - 0x420e0f2a 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0f2a wifi_osi_funcs_register - .text.net80211_data_ptr_init - 0x420e0f8e 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e0f8e net80211_data_ptr_init - .text.net80211_softap_funcs_init - 0x420e1060 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1060 net80211_softap_funcs_init - .text.net80211_funcs_init - 0x420e10d6 0x242 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e10d6 net80211_funcs_init - .text.net80211_funcs_deinit - 0x420e1318 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1318 net80211_funcs_deinit - .text.esp_wifi_init_internal - 0x420e1344 0x122 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1344 esp_wifi_init_internal - .text.esp_wifi_deinit_internal - 0x420e1466 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1466 esp_wifi_deinit_internal - .text.esp_wifi_set_mode - 0x420e156a 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e156a esp_wifi_set_mode - .text.esp_wifi_start - 0x420e15ba 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e15ba esp_wifi_start - .text.esp_wifi_stop - 0x420e15fe 0x1a4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e15fe esp_wifi_stop - .text.esp_wifi_connect_internal - 0x420e17a2 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e17a2 esp_wifi_connect_internal - .text.esp_wifi_disconnect_internal - 0x420e17fa 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e17fa esp_wifi_disconnect_internal - .text.get_total_scan_time - 0x420e1852 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1852 get_total_scan_time - .text.esp_wifi_scan_start - 0x420e1932 0x17c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1932 esp_wifi_scan_start - .text.esp_wifi_scan_get_ap_num - 0x420e1aae 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1aae esp_wifi_scan_get_ap_num - .text.esp_wifi_scan_get_ap_records - 0x420e1b0c 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1b0c esp_wifi_scan_get_ap_records - .text.esp_wifi_clear_ap_list - 0x420e1bae 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1bae esp_wifi_clear_ap_list - .text.esp_wifi_set_config - 0x420e1c08 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1c08 esp_wifi_set_config - .text.esp_wifi_get_config - 0x420e1c98 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1c98 esp_wifi_get_config - .text.esp_wifi_set_ps - 0x420e1cf2 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1cf2 esp_wifi_set_ps - .text.esp_wifi_get_ps - 0x420e1d4a 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1d4a esp_wifi_get_ps - .text.esp_wifi_get_mac - 0x420e1d74 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1d74 esp_wifi_get_mac - .text.esp_wifi_sta_get_ap_info - 0x420e1dbe 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1dbe esp_wifi_sta_get_ap_info - .text.esp_wifi_set_storage - 0x420e1e20 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1e20 esp_wifi_set_storage - .text.esp_wifi_internal_reg_rxcb - 0x420e1e78 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1e78 esp_wifi_internal_reg_rxcb - .text.esp_wifi_internal_set_sta_ip - 0x420e1ee6 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1ee6 esp_wifi_internal_set_sta_ip - .text.esp_wifi_restore - 0x420e1f1a 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1f1a esp_wifi_restore - .text.wifi_event_post - 0x420e1f62 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1f62 wifi_event_post - .text.wifi_mesh_event_post - 0x420e1fb4 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e1fb4 wifi_mesh_event_post - .text.esp_wifi_vnd_lora_enable - 0x420e2006 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2006 esp_wifi_vnd_lora_enable - .text.esp_wifi_vnd_lora_disable - 0x420e20c6 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e20c6 esp_wifi_vnd_lora_disable - .text.esp_wifi_get_event_mask - 0x420e2124 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2124 esp_wifi_get_event_mask - .text.esp_wifi_ipc_internal - 0x420e2152 0x148 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2152 esp_wifi_ipc_internal - .text.esp_wifi_internal_set_log_level - 0x420e229a 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e229a esp_wifi_internal_set_log_level - .text.esp_wifi_internal_on_coex_start - 0x420e22b0 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e22b0 esp_wifi_internal_on_coex_start - .text.esp_wifi_internal_on_coex_schm_phase - 0x420e22f2 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e22f2 esp_wifi_internal_on_coex_schm_phase - .text.esp_wifi_set_sleep_min_active_time - 0x420e2334 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2334 esp_wifi_set_sleep_min_active_time - .text.esp_wifi_set_keep_alive_time - 0x420e2338 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2338 esp_wifi_set_keep_alive_time - .text.esp_wifi_set_sleep_wait_broadcast_data_time - 0x420e233c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e233c esp_wifi_set_sleep_wait_broadcast_data_time - .text.esp_wifi_internal_reg_netstack_buf_cb - 0x420e2340 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2340 esp_wifi_internal_reg_netstack_buf_cb - .text.esp_wifi_internal_issue_disconnect - 0x420e2366 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e2366 esp_wifi_internal_issue_disconnect - .text.esp_wifi_ap_get_sta_aid - 0x420e238e 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e238e esp_wifi_ap_get_sta_aid - .text.esp_mesh_map_deauth - 0x420e23c6 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e23c6 esp_mesh_map_deauth - .text.esp_mesh_get_running_active_duty_cycle - 0x420e245a 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - 0x420e245a esp_mesh_get_running_active_duty_cycle - .text.ieee80211_freedom_inside_cb - 0x420e24a6 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e24a6 ieee80211_freedom_inside_cb - .text.ieee80211_send_sa_query - 0x420e24d0 0xc8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_send_sa_query_resp - 0x420e2598 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_send_sa_query_req - 0x420e25b2 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_recv_sa_query_resp - 0x420e25cc 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_recv_sa_query_req - 0x420e26c8 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .text.ieee80211_rate_ref_init - 0x420e26e4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e26e4 ieee80211_rate_ref_init - .text.ieee80211_freedom_init - 0x420e26fc 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e26fc ieee80211_freedom_init - .text.ieee80211_user_ie_init - 0x420e271e 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e271e ieee80211_user_ie_init - .text.ieee80211_ifattach - 0x420e2766 0xca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2766 ieee80211_ifattach - .text.ieee80211_ifdetach - 0x420e2830 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2830 ieee80211_ifdetach - .text.wifi_destroy_softap - 0x420e2848 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2848 wifi_destroy_softap - .text.wifi_destroy_sta - 0x420e28d2 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e28d2 wifi_destroy_sta - .text.ieee80211_find_elem_match - 0x420e2960 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2960 ieee80211_find_elem_match - .text.ieee80211_find_ie - 0x420e29e0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e29e0 ieee80211_find_ie - .text.ieee80211_setup_pmf - 0x420e29ea 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e29ea ieee80211_setup_pmf - .text.wifi_create_softap - 0x420e2a32 0x11e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2a32 wifi_create_softap - .text.wifi_create_sta - 0x420e2b50 0x12c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2b50 wifi_create_sta - .text.wifi_mode_set - 0x420e2c7c 0x170 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2c7c wifi_mode_set - .text.ieee80211_is_robust_mgmt_frm - 0x420e2dec 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x420e2dec ieee80211_is_robust_mgmt_frm - .text.get_iav_key - 0x420e2e36 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - 0x420e2e36 get_iav_key - .text.ieee80211_recv_action_vendor_esp_now - 0x420e2e4a 0x132 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - 0x420e2e4a ieee80211_recv_action_vendor_esp_now - .text.ieee80211_recv_action_vendor_spec - 0x420e2f7c 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - 0x420e2f7c ieee80211_recv_action_vendor_spec - .text.ieee80211_action_vendor_spec_attach - 0x420e3028 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - 0x420e3028 ieee80211_action_vendor_spec_attach - .text.ieee80211_is_action_category_robust - 0x420e3058 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .text.sta_eapol_txdone_cb - 0x420e3094 0xce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3094 sta_eapol_txdone_cb - .text.sta_assoc_comeback - 0x420e3162 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .text.sta_try_sa_query - 0x420e316c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .text.sta_sa_query_timeout - 0x420e3176 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .text.wifi_sta_reg_eapol_txdone_cb - 0x420e3180 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3180 wifi_sta_reg_eapol_txdone_cb - .text.wifi_sta_reg_rxcb - 0x420e3198 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3198 wifi_sta_reg_rxcb - .text.sta_michael_mic_failure - 0x420e31a2 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e31a2 sta_michael_mic_failure - .text.ieee80211_wme_standard_ac_to_esp_ac - 0x420e31d6 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e31d6 ieee80211_wme_standard_ac_to_esp_ac - .text.ieee80211_parse_wmeparams - 0x420e3218 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3218 ieee80211_parse_wmeparams - .text.sta_rx_csa - 0x420e32c2 0x276 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e32c2 sta_rx_csa - .text.update_cs_thres - 0x420e3538 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3538 update_cs_thres - .text.reset_cs_thres - 0x420e35b4 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e35b4 reset_cs_thres - .text.ieee80211_parse_obss_scan_param - 0x420e35dc 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e35dc ieee80211_parse_obss_scan_param - .text.sta_recv_ctl - 0x420e35f0 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e35f0 sta_recv_ctl - .text.wifi_station_start - 0x420e35fe 0xc0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e35fe wifi_station_start - .text.wifi_station_stop - 0x420e36be 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e36be wifi_station_stop - .text.sta_bip_check - 0x420e3754 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3754 sta_bip_check - .text.sta_is_wpa3_enabled - 0x420e37d6 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e37d6 sta_is_wpa3_enabled - .text.sta_is_11r_enabled - 0x420e37f4 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e37f4 sta_is_11r_enabled - .text.sta_is_wifi_ent_enabled - 0x420e3802 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3802 sta_is_wifi_ent_enabled - .text.sta_get_owe_data - 0x420e3810 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3810 sta_get_owe_data - .text.sta_update_power_off_reset_flag - 0x420e381a 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e381a sta_update_power_off_reset_flag - .text.ieee80211_sta_new_state - 0x420e3886 0xb32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e3886 ieee80211_sta_new_state - .text.sta_auth_ft - 0x420e43b8 0xea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e43b8 sta_auth_ft - .text.sta_auth_open - 0x420e44a2 0x176 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e44a2 sta_auth_open - .text.sta_auth_shared - 0x420e4618 0x15e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e4618 sta_auth_shared - .text.sta_auth_sae - 0x420e4776 0x1d4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e4776 sta_auth_sae - .text.sta_retry_assoc - 0x420e494a 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e494a sta_retry_assoc - .text.sta_recv_assoc - 0x420e4a4e 0x6bc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e4a4e sta_recv_assoc - .text.sta_sa_query_process_timeout - 0x420e510a 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e510a sta_sa_query_process_timeout - .text.sta_try_sa_query_process - 0x420e51a2 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e51a2 sta_try_sa_query_process - .text.sta_recv_mgmt - 0x420e532a 0xad8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x420e532a sta_recv_mgmt - .text.ieee80211_proto_attach - 0x420e5e02 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - 0x420e5e02 ieee80211_proto_attach - .text.ieee80211_set_shortslottime - 0x420e5e20 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - 0x420e5e20 ieee80211_set_shortslottime - .text.ieee80211_wme_updateparams - 0x420e5e32 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - 0x420e5e32 ieee80211_wme_updateparams - .text.ieee80211_mlme_connect_bss - 0x420e5e9a 0x17e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - 0x420e5e9a ieee80211_mlme_connect_bss - .text.ieee80211_rfid_locp_recv_reset - 0x420e6018 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - 0x420e6018 ieee80211_rfid_locp_recv_reset - .text.ieee80211_rfid_locp_recv - 0x420e6022 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - 0x420e6022 ieee80211_rfid_locp_recv - .text.ieee80211_regdomain_get_country - 0x420e603a 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e603a ieee80211_regdomain_get_country - .text.ieee80211_update_phy_country - 0x420e606e 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e606e ieee80211_update_phy_country - .text.ieee80211_regdomain_update - 0x420e609e 0x142 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e609e ieee80211_regdomain_update - .text.ieee80211_regdomain_update_in_scan - 0x420e61e0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e61e0 ieee80211_regdomain_update_in_scan - .text.ieee80211_regdomain_update_in_connect - 0x420e61e8 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e61e8 ieee80211_regdomain_update_in_connect - .text.ieee80211_add_countryie - 0x420e61f0 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e61f0 ieee80211_add_countryie - .text.ieee80211_regdomain_max_chan - 0x420e625e 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e625e ieee80211_regdomain_max_chan - .text.ieee80211_regdomain_ap_max_chan - 0x420e628a 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e628a ieee80211_regdomain_ap_max_chan - .text.ieee80211_regdomain_min_chan - 0x420e62a8 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e62a8 ieee80211_regdomain_min_chan - .text.ieee80211_regdomain_ap_min_chan - 0x420e62c8 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e62c8 ieee80211_regdomain_ap_min_chan - .text.ieee80211_regdomain_policy - 0x420e62da 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e62da ieee80211_regdomain_policy - .text.ieee80211_regdomain_chan_in_range - 0x420e62ea 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e62ea ieee80211_regdomain_chan_in_range - .text.ieee80211_regdomain_is_active_scan - 0x420e6312 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - 0x420e6312 ieee80211_regdomain_is_active_scan - .text.addba_stop_timeout - 0x420e6326 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ampdu_timeout - 0x420e6356 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.addba_timeout - 0x420e6360 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ampdu_stop_age_timer - 0x420e636a 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_add_htcap_body - 0x420e63a2 0x216 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ht_recv_action_ba_addba_response - 0x420e65b8 0x1a6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ampdu_tx_stop - 0x420e675e 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.addba_response_txcb - 0x420e67ee 0x1b0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ht_attach - 0x420e699e 0x274 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e699e ieee80211_ht_attach - .text.ampdu_free_rx_ba_index - 0x420e6c12 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e6c12 ampdu_free_rx_ba_index - .text.ampdu_rx_stop.isra.7 - 0x420e6c3e 0xda /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ht_recv_action_ba_delba - 0x420e6d18 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ampdu_alloc_rx_ba_index - 0x420e6dc0 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e6dc0 ampdu_alloc_rx_ba_index - .text.ampdu_rx_start.isra.10 - 0x420e6e2e 0x13e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ht_recv_action_ba_addba_request - 0x420e6f6c 0x188 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ht_deattach - 0x420e70f4 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e70f4 ieee80211_ht_deattach - .text.ieee80211_ampdu_enable - 0x420e7176 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7176 ieee80211_ampdu_enable - .text.addba_timeout_process - 0x420e7182 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7182 addba_timeout_process - .text.ieee80211_ampdu_request - 0x420e719a 0x19a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e719a ieee80211_ampdu_request - .text.ieee80211_ampdu_age_bss - 0x420e7334 0x108 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ampdu_age_all - 0x420e743c 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e743c ieee80211_ampdu_age_all - .text.ampdu_process_multicast_address_qos_frame - 0x420e74e8 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e74e8 ampdu_process_multicast_address_qos_frame - .text.ieee80211_process_bar_info - 0x420e7574 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7574 ieee80211_process_bar_info - .text.ieee80211_recv_bar - 0x420e75b2 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e75b2 ieee80211_recv_bar - .text.ieee80211_ht_node_cleanup - 0x420e75fe 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e75fe ieee80211_ht_node_cleanup - .text.ieee80211_ht_node_init - 0x420e7648 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7648 ieee80211_ht_node_init - .text.ieee80211_parse_htcap - 0x420e76d4 0x120 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e76d4 ieee80211_parse_htcap - .text.ieee80211_has_ht40_bss - 0x420e77f4 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e77f4 ieee80211_has_ht40_bss - .text.ieee80211_update_channel - 0x420e78a6 0x35a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e78a6 ieee80211_update_channel - .text.public_recv_action_ht2040_coex - 0x420e7c00 0x242 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_ht_updatehtcap - 0x420e7e42 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7e42 ieee80211_ht_updatehtcap - .text.ieee80211_ht_updateparams - 0x420e7eae 0x1a8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e7eae ieee80211_ht_updateparams - .text.ieee80211_setup_htrates - 0x420e8056 0x100 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8056 ieee80211_setup_htrates - .text.ieee80211_setup_basic_htrates - 0x420e8156 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8156 ieee80211_setup_basic_htrates - .text.ieee80211_add_htcap - 0x420e81f6 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e81f6 ieee80211_add_htcap - .text.ieee80211_add_htcap_vendor - 0x420e8234 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8234 ieee80211_add_htcap_vendor - .text.ieee80211_add_htinfo_body - 0x420e8264 0x14e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8264 ieee80211_add_htinfo_body - .text.ieee80211_add_htinfo - 0x420e83b2 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e83b2 ieee80211_add_htinfo - .text.ieee80211_add_htinfo_vendor - 0x420e83f0 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e83f0 ieee80211_add_htinfo_vendor - .text.ht_action_output - 0x420e844a 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e844a ht_action_output - .text.ht_send_action_ba_delba - 0x420e8478 0xea /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ht_send_action_ba_addba - 0x420e8562 0x152 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .text.ieee80211_decap1 - 0x420e86b4 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e86b4 ieee80211_decap1 - .text.ieee80211_decap_amsdu - 0x420e8730 0x140 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8730 ieee80211_decap_amsdu - .text.hostap_ht_operation_update - 0x420e8870 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - 0x420e8870 hostap_ht_operation_update - .text.ccmp_encap - 0x420e88c0 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x420e88c0 ccmp_encap - .text.ccmp_decap - 0x420e8934 0xc4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x420e8934 ccmp_decap - .text.ieee80211_decrypt_espnow_pkt - 0x420e89f8 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x420e89f8 ieee80211_decrypt_espnow_pkt - .text.ieee80211_ccmp_decrypt - 0x420e8a3e 0x19e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x420e8a3e ieee80211_ccmp_decrypt - .text.send_inval - 0x420e8bdc 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .text.recv_inval - 0x420e8be0 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .text.ieee80211_send_action_register - 0x420e8be4 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - 0x420e8be4 ieee80211_send_action_register - .text.ieee80211_send_action - 0x420e8c64 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - 0x420e8c64 ieee80211_send_action - .text.ieee80211_recv_action_register - 0x420e8cfa 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - 0x420e8cfa ieee80211_recv_action_register - .text.ieee80211_recv_action - 0x420e8d7a 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - 0x420e8d7a ieee80211_recv_action - .text.tkip_decap - 0x420e8e46 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - 0x420e8e46 tkip_decap - .text.tkip_encap - 0x420e8f1a 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - 0x420e8f1a tkip_encap - .text.scan_enter_oper_channel - 0x420e8fac 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_inter_channel_timeout - 0x420e8fb6 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_op_start - 0x420e8fc0 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.sta_update_owe_bssid.isra.0 - 0x420e91b0 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_set_global_scan_times.constprop.13 - 0x420e922e 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.ieee80211_scan_deattach - 0x420e9254 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9254 ieee80211_scan_deattach - .text.scan_get_apnum - 0x420e928c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e928c scan_get_apnum - .text.scan_set_current_scan_times - 0x420e9296 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9296 scan_set_current_scan_times - .text.scan_reset_default_app_params - 0x420e932c 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e932c scan_reset_default_app_params - .text.ieee80211_scan_attach - 0x420e9378 0xce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9378 ieee80211_scan_attach - .text.scan_flush_all_tx_buf - 0x420e9446 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9446 scan_flush_all_tx_buf - .text.scan_cancel - 0x420e94d4 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e94d4 scan_cancel - .text.scan_add_bssid - 0x420e9570 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9570 scan_add_bssid - .text.scan_remove_bssid - 0x420e959c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e959c scan_remove_bssid - .text.scan_hidden_ssid - 0x420e95aa 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e95aa scan_hidden_ssid - .text.scan_set_act_duration - 0x420e95b8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e95b8 scan_set_act_duration - .text.scan_set_pas_duration - 0x420e95c6 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e95c6 scan_set_pas_duration - .text.scan_add_probe_ssid - 0x420e95d2 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e95d2 scan_add_probe_ssid - .text.scan_remove_probe_ssid - 0x420e965e 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e965e scan_remove_probe_ssid - .text.scan_prefer_chan - 0x420e9684 0x1fa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9684 scan_prefer_chan - .text.scan_update_scan_history - 0x420e987e 0x17c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e987e scan_update_scan_history - .text.scan_build_chan_list - 0x420e99fa 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e99fa scan_build_chan_list - .text.scan_bitmap_to_channel_list - 0x420e9a90 0x174 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9a90 scan_bitmap_to_channel_list - .text.scan_set_desChan - 0x420e9c04 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9c04 scan_set_desChan - .text.scan_get_type - 0x420e9c12 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9c12 scan_get_type - .text.scan_check_hidden - 0x420e9c1e 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420e9c1e scan_check_hidden - .text.scan_add_ssid_do.isra.6 - 0x420e9c3a 0x4c6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_add_ssid.isra.7 - 0x420ea100 0x1ca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_reset_cipher_and_akm - 0x420ea2ca 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420ea2ca scan_reset_cipher_and_akm - .text.cnx_get_authtype_strength - 0x420ea2f0 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420ea2f0 cnx_get_authtype_strength - .text.scan_profile_check - 0x420ea30a 0x6da /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420ea30a scan_profile_check - .text.free_bss_info - 0x420ea9e4 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420ea9e4 free_bss_info - .text.clear_bss_queue - 0x420eaa36 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eaa36 clear_bss_queue - .text.scan_done - 0x420eaab2 0x25e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_next_channel - 0x420ead10 0x1f6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_enter_oper_channel_process - 0x420eaf06 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eaf06 scan_enter_oper_channel_process - .text.scan_inter_channel_timeout_process - 0x420eaf2c 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eaf2c scan_inter_channel_timeout_process - .text.scan_op_end - 0x420eafc2 0x1c6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .text.scan_start - 0x420eb188 0x196 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb188 scan_start - .text.check_bss_queue - 0x420eb31e 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb31e check_bss_queue - .text.scan_set_scan_id - 0x420eb390 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb390 scan_set_scan_id - .text.scan_get_scan_id - 0x420eb3f0 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb3f0 scan_get_scan_id - .text.scan_parse_ht2040_coex - 0x420eb452 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb452 scan_parse_ht2040_coex - .text.scan_fill_wps_scan_ie - 0x420eb4d8 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb4d8 scan_fill_wps_scan_ie - .text.scan_get_owe_channel_info - 0x420eb500 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb500 scan_get_owe_channel_info - .text.scan_validate_owe_scenarios - 0x420eb596 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb596 scan_validate_owe_scenarios - .text.scan_parse_beacon - 0x420eb638 0xb40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - 0x420eb638 scan_parse_beacon - .text.wep_encap - 0x420ec178 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - 0x420ec178 wep_encap - .text.wep_decap - 0x420ec1d2 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - 0x420ec1d2 wep_decap - .text.sms4_decap - 0x420ec1fa 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .text.sms4_encap - 0x420ec2ae 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .text.hal_pm_unblock_txq - 0x420ec364 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.hal_clear_sta_tsf_active_state - 0x420ec37a 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_incr_coex_active_cnt - 0x420ec388 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_disable_active_timer - 0x420ec39e 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_set_state - 0x420ec3b4 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_beacon_monitor_tbtt_timeout - 0x420ec402 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_coex_restart_timeout - 0x420ec40a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_beacon_monitor_timeout - 0x420ec412 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_connectionless_wake_window_timeout - 0x420ec41a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_connectionless_wake_interval_timeout - 0x420ec422 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_disconnected_sleep_delay_timeout - 0x420ec42a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_coex_slice_wifi_timeout - 0x420ec432 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_sleep_delay_timeout - 0x420ec43a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_active_timeout - 0x420ec442 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_dream_timeout - 0x420ec44a 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_is_sleeping - 0x420ec452 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec452 pm_is_sleeping - .text.pm_is_open - 0x420ec472 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec472 pm_is_open - .text.pm_noise_check_disable - 0x420ec47c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec47c pm_noise_check_disable - .text.pm_noise_check_enable - 0x420ec486 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec486 pm_noise_check_enable - .text.pm_reset_keep_alive - 0x420ec492 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .text.pm_disable_disconnected_sleep_delay_timer - 0x420ec4e4 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec4e4 pm_disable_disconnected_sleep_delay_timer - .text.pm_enable_disconnected_sleep_delay_timer - 0x420ec502 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec502 pm_enable_disconnected_sleep_delay_timer - .text.pm_noise_check - 0x420ec560 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec560 pm_noise_check - .text.pm_pend_noise_check - 0x420ec5d8 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec5d8 pm_pend_noise_check - .text.pm_noise_check_process - 0x420ec5da 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec5da pm_noise_check_process - .text.pm_register_pm_tx_null_cb - 0x420ec5dc 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec5dc pm_register_pm_tx_null_cb - .text.pm_send_nullfunc - 0x420ec5e8 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec5e8 pm_send_nullfunc - .text.pm_beacon_monitor_init - 0x420ec656 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec656 pm_beacon_monitor_init - .text.pm_disconnected_wake - 0x420ec6be 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec6be pm_disconnected_wake - .text.pm_disconnected_sleep - 0x420ec728 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec728 pm_disconnected_sleep - .text.pm_wake_up - 0x420ec7d0 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec7d0 pm_wake_up - .text.pm_send_probe_start - 0x420ec81e 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec81e pm_send_probe_start - .text.pm_off_channel - 0x420ec86a 0xc6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec86a pm_off_channel - .text.pm_wake_done - 0x420ec930 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec930 pm_wake_done - .text.pm_coex_separate_connectionless_window - 0x420ec984 0x2ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ec984 pm_coex_separate_connectionless_window - .text.pm_go_to_sleep - 0x420ecc3e 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecc3e pm_go_to_sleep - .text.pm_set_next_tbtt - 0x420eccc8 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420eccc8 pm_set_next_tbtt - .text.pm_mesh_set_next_tbtt - 0x420ecd24 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecd24 pm_mesh_set_next_tbtt - .text.pm_update_at_next_beacon - 0x420ecd76 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecd76 pm_update_at_next_beacon - .text.pm_beacon_timestamp_statistic - 0x420ecd90 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecd90 pm_beacon_timestamp_statistic - .text.pm_beacon_misc_process - 0x420ecdd2 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecdd2 pm_beacon_misc_process - .text.pm_coex_schm_process - 0x420ecdd6 0x1ce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecdd6 pm_coex_schm_process - .text.pm_coex_schm_process_restart - 0x420ecfa4 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecfa4 pm_coex_schm_process_restart - .text.pm_coex_slice_timeout_process - 0x420ecfb2 0x11e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ecfb2 pm_coex_slice_timeout_process - .text.pm_dream_timeout_process - 0x420ed0d0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed0d0 pm_dream_timeout_process - .text.pm_sleep_delay_timeout_process - 0x420ed0e0 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed0e0 pm_sleep_delay_timeout_process - .text.pm_disconnected_sleep_delay_timeout_process - 0x420ed100 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed100 pm_disconnected_sleep_delay_timeout_process - .text.pm_coex_restart_timeout_process - 0x420ed11c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed11c pm_coex_restart_timeout_process - .text.pm_tx_data_done_process - 0x420ed148 0x94 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed148 pm_tx_data_done_process - .text.pm_tx_null_data_done_quick_wake_process - 0x420ed1dc 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed1dc pm_tx_null_data_done_quick_wake_process - .text.pm_tx_null_data_done_process - 0x420ed24e 0x21a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed24e pm_tx_null_data_done_process - .text.pm_go_to_wake - 0x420ed468 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed468 pm_go_to_wake - .text.pm_send_probe_stop - 0x420ed562 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed562 pm_send_probe_stop - .text.pm_on_channel - 0x420ed5bc 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed5bc pm_on_channel - .text.pm_update_params - 0x420ed668 0x13a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed668 pm_update_params - .text.pm_coex_tbtt_process - 0x420ed7a2 0x100 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed7a2 pm_coex_tbtt_process - .text.pm_active_timeout_process - 0x420ed8a2 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed8a2 pm_active_timeout_process - .text.pm_send_sleep_null_cb - 0x420ed90a 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed90a pm_send_sleep_null_cb - .text.pm_send_wake_null_cb - 0x420ed916 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed916 pm_send_wake_null_cb - .text.pm_on_coex_schm_process_restart - 0x420ed922 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed922 pm_on_coex_schm_process_restart - .text.pm_on_coex_schm_status_config - 0x420ed926 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed926 pm_on_coex_schm_status_config - .text.pm_on_coex_start - 0x420ed9c2 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ed9c2 pm_on_coex_start - .text.pm_on_data_tx_done - 0x420eda0a 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420eda0a pm_on_data_tx_done - .text.pm_on_sample_beacon - 0x420eda0e 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420eda0e pm_on_sample_beacon - .text.pm_on_probe_resp_rx - 0x420eda64 0x8a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420eda64 pm_on_probe_resp_rx - .text.pm_disconnected_start - 0x420edaee 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420edaee pm_disconnected_start - .text.pm_disconnected_stop - 0x420edb7c 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420edb7c pm_disconnected_stop - .text.pm_start - 0x420edbe6 0x222 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420edbe6 pm_start - .text.pm_stop 0x420ede08 0x220 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ede08 pm_stop - .text.pm_attach - 0x420ee028 0x1b6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee028 pm_attach - .text.pm_deattach - 0x420ee1de 0xb0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee1de pm_deattach - .text.pm_set_sleep_type - 0x420ee28e 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee28e pm_set_sleep_type - .text.pm_get_sleep_type - 0x420ee364 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee364 pm_get_sleep_type - .text.pm_set_sleep_min_active_time - 0x420ee36e 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee36e pm_set_sleep_min_active_time - .text.pm_set_keep_alive_time - 0x420ee378 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee378 pm_set_keep_alive_time - .text.pm_set_sleep_wait_broadcast_data_time - 0x420ee382 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee382 pm_set_sleep_wait_broadcast_data_time - .text.pm_force_scan_unlock - 0x420ee38c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee38c pm_force_scan_unlock - .text.pm_enable_sta_disconnected_power_management - 0x420ee38e 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x420ee38e pm_enable_sta_disconnected_power_management - .text.ic_get_addr - 0x420ee3ba 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee3ba ic_get_addr - .text.ic_get_ptk_alg - 0x420ee3cc 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee3cc ic_get_ptk_alg - .text.ic_disable_crypto - 0x420ee3e2 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee3e2 ic_disable_crypto - .text.ic_set_key - 0x420ee3fe 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee3fe ic_set_key - .text.ic_get_key - 0x420ee43e 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee43e ic_get_key - .text.ic_obtain_key - 0x420ee49c 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee49c ic_obtain_key - .text.ic_tx_pkt - 0x420ee522 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee522 ic_tx_pkt - .text.esp_wifi_internal_free_rx_buffer - 0x420ee52c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee52c esp_wifi_internal_free_rx_buffer - .text.ic_register_tx_cb - 0x420ee534 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee534 ic_register_tx_cb - .text.ic_register_rx_cb - 0x420ee536 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee536 ic_register_rx_cb - .text.ic_register_timer_post_cb - 0x420ee538 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee538 ic_register_timer_post_cb - .text.ic_register_michael_mic_failure_cb - 0x420ee53c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee53c ic_register_michael_mic_failure_cb - .text.ic_register_config_cb - 0x420ee53e 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee53e ic_register_config_cb - .text.ic_is_mgmt_hwdecr_enabled - 0x420ee552 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee552 ic_is_mgmt_hwdecr_enabled - .text.ic_register_pm_tx_null_cb - 0x420ee556 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee556 ic_register_pm_tx_null_cb - .text.ic_register_net80211_tx_cb - 0x420ee56c 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee56c ic_register_net80211_tx_cb - .text.ic_register_timer_cb - 0x420ee572 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee572 ic_register_timer_cb - .text.ic_enable_sniffer - 0x420ee578 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee578 ic_enable_sniffer - .text.ic_disable_sniffer - 0x420ee57e 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee57e ic_disable_sniffer - .text.ic_set_vif - 0x420ee584 0x1da /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee584 ic_set_vif - .text.ic_get_next_tbtt - 0x420ee75e 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee75e ic_get_next_tbtt - .text.ic_del_rx_ba - 0x420ee762 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee762 ic_del_rx_ba - .text.ic_add_rx_ba - 0x420ee766 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee766 ic_add_rx_ba - .text.ic_reset_tbtt - 0x420ee770 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee770 ic_reset_tbtt - .text.ic_del_key_all - 0x420ee774 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee774 ic_del_key_all - .text.ic_del_key - 0x420ee778 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee778 ic_del_key - .text.ic_set_ac_param - 0x420ee77c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee77c ic_set_ac_param - .text.ic_ampdu_op - 0x420ee780 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee780 ic_ampdu_op - .text.ic_set_trc - 0x420ee7aa 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee7aa ic_set_trc - .text.ic_deinit - 0x420ee88e 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee88e ic_deinit - .text.ic_init 0x420ee8aa 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee8aa ic_init - .text.ic_set_interrupt_handler - 0x420ee926 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee926 ic_set_interrupt_handler - .text.ic_clear_interrupt_handler - 0x420ee986 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee986 ic_clear_interrupt_handler - .text.ic_enable_rx - 0x420ee9ca 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee9ca ic_enable_rx - .text.ic_disable_rx - 0x420ee9de 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee9de ic_disable_rx - .text.ic_set_beacon_int - 0x420ee9f6 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee9f6 ic_set_beacon_int - .text.ic_set_mac - 0x420ee9fa 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee9fa ic_set_mac - .text.ic_set_bssid - 0x420ee9fe 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420ee9fe ic_set_bssid - .text.ic_set_current_channel - 0x420eea02 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea02 ic_set_current_channel - .text.ic_get_pp_hdl - 0x420eea0a 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea0a ic_get_pp_hdl - .text.ic_set_rx_policy_ubssid_check - 0x420eea0e 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea0e ic_set_rx_policy_ubssid_check - .text.ic_set_rx_policy - 0x420eea28 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea28 ic_set_rx_policy - .text.ic_set_sta_auth_flag - 0x420eea38 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea38 ic_set_sta_auth_flag - .text.ic_set_interface - 0x420eea3c 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea3c ic_set_interface - .text.ic_trc_set_per_pkt_rate - 0x420eea3e 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea3e ic_trc_set_per_pkt_rate - .text.ic_trc_update_ifx_phy_mode - 0x420eea42 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea42 ic_trc_update_ifx_phy_mode - .text.ic_stop_hw_txq - 0x420eea46 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea46 ic_stop_hw_txq - .text.ic_stop_sw_txq - 0x420eea4a 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea4a ic_stop_sw_txq - .text.ic_txq_empty - 0x420eea6c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea6c ic_txq_empty - .text.ic_create_wifi_task - 0x420eea70 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea70 ic_create_wifi_task - .text.ic_delete_wifi_task - 0x420eea74 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea74 ic_delete_wifi_task - .text.ic_update_sta_tsf - 0x420eea78 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea78 ic_update_sta_tsf - .text.ic_set_sleep_min_active_time - 0x420eea8e 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea8e ic_set_sleep_min_active_time - .text.ic_set_keep_alive_time - 0x420eea92 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea92 ic_set_keep_alive_time - .text.ic_set_sleep_wait_broadcast_data_time - 0x420eea96 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - 0x420eea96 ic_set_sleep_wait_broadcast_data_time - .text.pp_delete_task_manually - 0x420eea9a 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .text.getle32 0x420eeae2 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeae2 getle32 - .text.putle32 0x420eeb00 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb00 putle32 - .text.xswap 0x420eeb1c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb1c xswap - .text.pp_register_net80211_tx_cb - 0x420eeb3a 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb3a pp_register_net80211_tx_cb - .text.pp_register_config_cb - 0x420eeb46 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb46 pp_register_config_cb - .text.pp_register_timer_cb - 0x420eeb52 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb52 pp_register_timer_cb - .text.pp_register_michael_mic_failure_cb - 0x420eeb5e 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb5e pp_register_michael_mic_failure_cb - .text.pp_default_event_handler - 0x420eeb6a 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb6a pp_default_event_handler - .text.ppRegisterRxCallback - 0x420eeb92 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeb92 ppRegisterRxCallback - .text.ppRegisterTxCallback - 0x420eebb2 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eebb2 ppRegisterTxCallback - .text.ppCheckTxQIdle - 0x420eec00 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eec00 ppCheckTxQIdle - .text.ppCheckIsConnTraffic - 0x420eec36 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eec36 ppCheckIsConnTraffic - .text.ppCheckTxConnTrafficIdle - 0x420eec86 0xee /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eec86 ppCheckTxConnTrafficIdle - .text.ppSetInterface - 0x420eed74 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eed74 ppSetInterface - .text.pp_gettid - 0x420eed76 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eed76 pp_gettid - .text.ppAssembleMicHdr - 0x420eeda4 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eeda4 ppAssembleMicHdr - .text.ppCalTkipMic - 0x420eee56 0x130 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eee56 ppCalTkipMic - .text.ppTxFragmentProc - 0x420eef86 0x778 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eef86 ppTxFragmentProc - .text.ppClearRxFragment - 0x420ef6fe 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420ef6fe ppClearRxFragment - .text.ppFillAMPDUBar - 0x420ef73a 0x114 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420ef73a ppFillAMPDUBar - .text.ppReSendBar - 0x420ef84e 0xd2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420ef84e ppReSendBar - .text.pp_create_task - 0x420ef920 0x1c8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420ef920 pp_create_task - .text.pp_deattach - 0x420efae8 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efae8 pp_deattach - .text.ppInitTxq - 0x420efb34 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efb34 ppInitTxq - .text.ppTxqEmpty - 0x420efb98 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efb98 ppTxqEmpty - .text.pp_delete_task - 0x420efbe8 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efbe8 pp_delete_task - .text.ppCheckTxIdle - 0x420efc74 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efc74 ppCheckTxIdle - .text.ppCalTxopDur - 0x420efd30 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efd30 ppCalTxopDur - .text.ppPrepareBarFrame - 0x420efe88 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420efe88 ppPrepareBarFrame - .text.pp_attach - 0x420eff5c 0xf8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420eff5c pp_attach - .text.ppClearTxq - 0x420f0054 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420f0054 ppClearTxq - .text.pp_stop_sw_txq - 0x420f00a4 0x92 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420f00a4 pp_stop_sw_txq - .text.ppGetTaskHdl - 0x420f0136 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x420f0136 ppGetTaskHdl - .text.pm_funcs_init - 0x420f0140 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - 0x420f0140 pm_funcs_init - .text.pm_funcs_deinit - 0x420f0186 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - 0x420f0186 pm_funcs_deinit - .text.esf_buf_alloc_dynamic_default_handler - 0x420f01b4 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f01b4 esf_buf_alloc_dynamic_default_handler - .text.esf_buf_alloc_default_handler - 0x420f01d6 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f01d6 esf_buf_alloc_default_handler - .text.esf_buf_recycle_default_handler - 0x420f01f8 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f01f8 esf_buf_recycle_default_handler - .text.esf_buf_setup_static - 0x420f021a 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f021a esf_buf_setup_static - .text.esf_buf_free_static - 0x420f0284 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f0284 esf_buf_free_static - .text.esf_buf_setdown - 0x420f033a 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f033a esf_buf_setdown - .text.esf_buf_setup - 0x420f035c 0x202 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x420f035c esf_buf_setup - .text.lmacGetTxFrame - 0x420f055e 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f055e lmacGetTxFrame - .text.lmacSetAcParam - 0x420f057e 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f057e lmacSetAcParam - .text.lmacInitAc - 0x420f05c2 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f05c2 lmacInitAc - .text.lmacInit - 0x420f060a 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f060a lmacInit - .text.lmacEndRetryAMPDUFail - 0x420f06b0 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f06b0 lmacEndRetryAMPDUFail - .text.lmacDebugTxDrop - 0x420f0734 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f0734 dbg_cnt_lmac_drop - .text.lmac_record_txtime - 0x420f07ca 0x130 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f07ca lmac_record_txtime - .text.lmac_update_tx_statistic - 0x420f08fa 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f08fa lmac_update_tx_statistic - .text.lmacDiscardMSDU - 0x420f08fc 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f08fc lmacDiscardMSDU - .text.lmacRetryTxFrame - 0x420f09b8 0xe2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f09b8 lmacRetryTxFrame - .text.lmacProcessTxopQComplete - 0x420f0a9a 0x17c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f0a9a lmacProcessTxopQComplete - .text.lmacProcessShortRetryFail - 0x420f0c16 0x27e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f0c16 lmacProcessShortRetryFail - .text.lmacProcessCtsTimeout - 0x420f0e94 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f0e94 lmacProcessCtsTimeout - .text.lmacProcessLongRetryFail - 0x420f0f06 0x1dc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f0f06 lmacProcessLongRetryFail - .text.lmacProcessCollision - 0x420f10e2 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f10e2 lmacProcessCollision - .text.lmacProcessCollisions_task - 0x420f11c8 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f11c8 lmacProcessCollisions_task - .text.lmacProcessAckTimeout - 0x420f121e 0x12e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f121e lmacProcessAckTimeout - .text.lmacProcessTxRtsError - 0x420f134c 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f134c lmacProcessTxRtsError - .text.lmacProcessTxseckiderr - 0x420f142c 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f142c lmacProcessTxseckiderr - .text.lmacProcessTxError - 0x420f1456 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f1456 lmacProcessTxError - .text.lmacDisableTransmit - 0x420f14fc 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f14fc lmacDisableTransmit - .text.lmacProcessTxTimeout - 0x420f1588 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f1588 lmacProcessTxTimeout - .text.lmacStopTransmit - 0x420f15d2 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f15d2 lmacStopTransmit - .text.lmac_stop_hw_txq - 0x420f16d6 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x420f16d6 lmac_stop_hw_txq - .text.rc11NRate2SchedIdx - 0x420f1748 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc11GRate2SchedIdx - 0x420f179a 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rc11BRate2SchedIdx - 0x420f17b8 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcLoRaRate2SchedIdx - 0x420f17d6 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f17d6 rcLoRaRate2SchedIdx - .text.rcBuildIndex - 0x420f17f4 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .text.rcUpdateAMPDUParam - 0x420f1808 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1808 rcUpdateAMPDUParam - .text.rcGet11NHighestRateIdx - 0x420f18b6 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f18b6 rcGet11NHighestRateIdx - .text.rcGet11GHighestRateIdx - 0x420f1938 0x78 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1938 rcGet11GHighestRateIdx - .text.rcGet11BHighestRateIdx - 0x420f19b0 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f19b0 rcGet11BHighestRateIdx - .text.rcGetDefaultHigestRateIdx - 0x420f19f8 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f19f8 rcGetDefaultHigestRateIdx - .text.rcGetHighestRateIdx - 0x420f1a08 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1a08 rcGetHighestRateIdx - .text.rcUpdatePhyMode - 0x420f1a32 0x30a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1a32 rcUpdatePhyMode - .text.rcTxUpdatePer - 0x420f1d3c 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1d3c rcTxUpdatePer - .text.trc_set_per_pkt_rate - 0x420f1db6 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1db6 trc_set_per_pkt_rate - .text.rcUpdateRate - 0x420f1dce 0x242 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f1dce rcUpdateRate - .text.rcReachRetryLimit - 0x420f2010 0xe0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f2010 rcReachRetryLimit - .text.rcAttach - 0x420f20f0 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f20f0 rcAttach - .text.rc_disable_trc - 0x420f2160 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f2160 rc_disable_trc - .text.rc_disable_trc_by_interface - 0x420f21ee 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f21ee rc_disable_trc_by_interface - .text.trc_init - 0x420f2208 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f2208 trc_init - .text.trc_update_ifx_phy_mode - 0x420f22b6 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f22b6 trc_update_ifx_phy_mode - .text.trc_deinit - 0x420f2344 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f2344 trc_deinit - .text.rc_set_per_conn_fix_rate - 0x420f2384 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f2384 rc_set_per_conn_fix_rate - .text.rc_enable_trc - 0x420f23f0 0x112 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x420f23f0 rc_enable_trc - .text.pm_coex_reconnect_policy - 0x420f2502 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - 0x420f2502 pm_coex_reconnect_policy - .text.pm_coex_set_reconnect_policy - 0x420f2510 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - 0x420f2510 pm_coex_set_reconnect_policy - .text.dbg_lmac_ps_statis_reset - 0x420f2548 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - 0x420f2548 dbg_lmac_ps_statis_reset - .text.dbg_lmac_init - 0x420f255e 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - 0x420f255e dbg_lmac_init - .text.wdev_csi_hw_bug_check - 0x420f2560 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2560 wdev_csi_hw_bug_check - .text.wDev_ftm_set_t1t4 - 0x420f2564 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2564 wDev_ftm_set_t1t4 - .text.wdev_csi_rx_process - 0x420f2574 0x15e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2574 wdev_csi_rx_process - .text.wDev_SnifferRxData - 0x420f26d2 0x27e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f26d2 wDev_SnifferRxData - .text.wDev_IndicateCtrlFrame - 0x420f2950 0x10c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2950 wDev_IndicateCtrlFrame - .text.wDev_SnifferRxAmpdu - 0x420f2a5c 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2a5c wDev_SnifferRxAmpdu - .text.wDev_SetCurChannel - 0x420f2b10 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b10 wDev_SetCurChannel - .text.wDev_SetAuthed - 0x420f2b2a 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b2a wDev_SetAuthed - .text.wDev_Set_Beacon_Int - 0x420f2b2c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b2c wDev_Set_Beacon_Int - .text.wDev_Reset_TBTT - 0x420f2b36 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b36 wDev_Reset_TBTT - .text.wDev_reset_bcnSendTick - 0x420f2b3c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b3c wDev_reset_bcnSendTick - .text.wDev_Get_Next_TBTT - 0x420f2b46 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b46 wDev_Get_Next_TBTT - .text.wdev_set_promis_misc_pkt - 0x420f2b92 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2b92 wdev_set_promis_misc_pkt - .text.wdev_set_promis_ctrl_pkt - 0x420f2bc0 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2bc0 wdev_set_promis_ctrl_pkt - .text.wdev_set_promis - 0x420f2bf8 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2bf8 wdev_set_promis - .text.wDev_ftm_record_t1t4 - 0x420f2c66 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2c66 wDev_ftm_record_t1t4 - .text.wDev_ftm_record_t2t3 - 0x420f2c76 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2c76 wDev_ftm_record_t2t3 - .text.wDev_record_ftm_data_local - 0x420f2c86 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2c86 wDev_record_ftm_data_local - .text.wDev_Rxbuf_Deinit - 0x420f2d42 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2d42 wDev_Rxbuf_Deinit - .text.wDev_Rxbuf_Init - 0x420f2dc4 0x222 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2dc4 wDev_Rxbuf_Init - .text.wDev_disable_low_rate - 0x420f2fe6 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2fe6 wDev_disable_low_rate - .text.wDev_enable_low_rate - 0x420f2fea 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2fea wDev_enable_low_rate - .text.wDev_Insert_KeyEntry - 0x420f2fee 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f2fee wDev_Insert_KeyEntry - .text.wDev_remove_KeyEntry - 0x420f306c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f306c wDev_remove_KeyEntry - .text.wDev_remove_KeyEntry_all_cnx - 0x420f3094 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f3094 wDev_remove_KeyEntry_all_cnx - .text.wDev_Crypto_Disable - 0x420f30e0 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f30e0 wDev_Crypto_Disable - .text.wdev_is_mgmt_hwdecr_enabled - 0x420f3100 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f3100 wdev_is_mgmt_hwdecr_enabled - .text.wdev_data_init - 0x420f3104 0x144 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f3104 wdev_data_init - .text.wdev_funcs_init - 0x420f3248 0x95e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f3248 wdev_funcs_init - .text.wdev_funcs_deinit - 0x420f3ba6 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - 0x420f3ba6 wdev_funcs_deinit - .text.hal_agreement_add_rx_ba - 0x420f3bd2 0x118 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - 0x420f3bd2 hal_agreement_add_rx_ba - .text.hal_agreement_del_rx_ba - 0x420f3cea 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - 0x420f3cea hal_agreement_del_rx_ba - .text.hal_ba_session_restore_by_hw_index - 0x420f3d58 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - 0x420f3d58 hal_ba_session_restore_by_hw_index - .text.hal_coex_pti_init - 0x420f3dc6 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3dc6 hal_coex_pti_init - .text.hal_set_rx_beacon_pti - 0x420f3dd8 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3dd8 hal_set_rx_beacon_pti - .text.hal_set_rx_beacon_time - 0x420f3e02 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3e02 hal_set_rx_beacon_time - .text.hal_set_rx_active_pti - 0x420f3e2e 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3e2e hal_set_rx_active_pti - .text.hal_set_rx_ack_pti - 0x420f3e42 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3e42 hal_set_rx_ack_pti - .text.hal_set_wifi_default_pti - 0x420f3e5c 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x420f3e5c hal_set_wifi_default_pti - .text.hal_crypto_clr_key_entry - 0x420f3e7e 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f3e7e hal_crypto_clr_key_entry - .text.hal_crypto_set_key_entry - 0x420f3f04 0x1b6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f3f04 hal_crypto_set_key_entry - .text.hal_crypto_is_key_valid - 0x420f40ba 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f40ba hal_crypto_is_key_valid - .text.hal_crypto_get_key_entry - 0x420f40ca 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f40ca hal_crypto_get_key_entry - .text.hal_crypto_init - 0x420f4184 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f4184 hal_crypto_init - .text.hal_crypto_mgmt_rx_enabled - 0x420f41ae 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f41ae hal_crypto_mgmt_rx_enabled - .text.hal_crypto_enable - 0x420f41ce 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f41ce hal_crypto_enable - .text.hal_crypto_disable - 0x420f4254 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - 0x420f4254 hal_crypto_disable - .text.hal_mac_tx_set_ppdu - 0x420f428a 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f428a hal_mac_tx_set_ppdu - .text.hal_mac_set_txq_invalid - 0x420f42d4 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f42d4 hal_mac_set_txq_invalid - .text.hal_mac_is_txq_valid - 0x420f42f0 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f42f0 hal_mac_is_txq_valid - .text.hal_mac_tx_set_cca - 0x420f4306 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4306 hal_mac_tx_set_cca - .text.hal_mac_disable_low_rate - 0x420f4322 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4322 hal_mac_disable_low_rate - .text.hal_mac_enable_low_rate - 0x420f4354 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4354 hal_mac_enable_low_rate - .text.mac_rxbuf_init - 0x420f437e 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f437e mac_rxbuf_init - .text.mac_txrx_init - 0x420f43da 0x196 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f43da mac_txrx_init - .text.hal_mac_set_rxq_policy - 0x420f4570 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4570 hal_mac_set_rxq_policy - .text.mac_last_rxbuf_init - 0x420f458c 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f458c mac_last_rxbuf_init - .text.hal_deinit - 0x420f463e 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f463e hal_deinit - .text.hal_mac_set_addr - 0x420f46a2 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f46a2 hal_mac_set_addr - .text.hal_mac_set_bssid - 0x420f46ee 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f46ee hal_mac_set_bssid - .text.hal_mac_rx_set_policy - 0x420f476a 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f476a hal_mac_rx_set_policy - .text.hal_init - 0x420f4816 0x140 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4816 hal_init - .text.hal_mac_tsf_reset - 0x420f4956 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4956 hal_mac_tsf_reset - .text.hal_disable_sta_beacon_filter - 0x420f49e2 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f49e2 hal_disable_sta_beacon_filter - .text.hal_mac_ftm_get_t3 - 0x420f4a04 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x420f4a04 hal_mac_ftm_get_t3 - .text.mac_tx_set_plcp1 - 0x420f4a3c 0xf6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4a3c mac_tx_set_plcp1 - .text.mac_tx_set_htsig - 0x420f4b32 0x248 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4b32 mac_tx_set_htsig - .text.hal_mac_fill_hwtxop - 0x420f4d7a 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4d7a hal_mac_fill_hwtxop - .text.mac_tx_set_txop_q - 0x420f4dc0 0x11c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4dc0 mac_tx_set_txop_q - .text.hal_mac_get_txq_state - 0x420f4edc 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4edc hal_mac_get_txq_state - .text.hal_mac_clr_txq_state - 0x420f4f18 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4f18 hal_mac_clr_txq_state - .text.hal_mac_get_txq_pmd - 0x420f4f72 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4f72 hal_mac_get_txq_pmd - .text.hal_attenna_init - 0x420f4fbc 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f4fbc hal_attenna_init - .text.hal_mac_rate_autoack_init - 0x420f501e 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - 0x420f501e hal_mac_rate_autoack_init - .text.hal_sniffer_enable - 0x420f5034 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - 0x420f5034 hal_sniffer_enable - .text.hal_sniffer_disable - 0x420f5092 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - 0x420f5092 hal_sniffer_disable - .text.hal_sniffer_rx_set_promis - 0x420f50fa 0x8c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - 0x420f50fa hal_sniffer_rx_set_promis - .text.hal_sniffer_set_promis_misc_pkt - 0x420f5186 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - 0x420f5186 hal_sniffer_set_promis_misc_pkt - .text.hal_enable_sta_tsf - 0x420f520e 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f520e hal_enable_sta_tsf - .text.hal_disable_sta_tsf - 0x420f521e 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f521e hal_disable_sta_tsf - .text.hal_disable_softap_tsf - 0x420f5230 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f5230 hal_disable_softap_tsf - .text.hal_timer_update_by_rtc - 0x420f5242 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f5242 hal_timer_update_by_rtc - .text.hal_set_sta_tsf - 0x420f527a 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f527a hal_set_sta_tsf - .text.hal_enable_sta_tbtt - 0x420f528c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f528c hal_enable_sta_tbtt - .text.hal_disable_sta_tbtt - 0x420f52b4 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f52b4 hal_disable_sta_tbtt - .text.hal_set_sta_tbtt - 0x420f52d0 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f52d0 hal_set_sta_tbtt - .text.hal_set_sta_tbtt_interval - 0x420f5332 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f5332 hal_set_sta_tbtt_interval - .text.hal_set_sta_tbtt_ahead_time - 0x420f5348 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f5348 hal_set_sta_tbtt_ahead_time - .text.hal_set_sta_tsf_wakeup - 0x420f535a 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f535a hal_set_sta_tsf_wakeup - .text.hal_tsf_get_tbttstart - 0x420f537e 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x420f537e hal_tsf_get_tbttstart - .text.RC_GetDuration - 0x420f538c 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .text.RC_SetBasicRate - 0x420f5406 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - 0x420f5406 RC_SetBasicRate - .text.RC_GetCtsTime - 0x420f540a 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - 0x420f540a RC_GetCtsTime - .text.pp_timer_resample - 0x420f546c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_coex_restart - 0x420f548c 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_beacon_monitor_tbtt - 0x420f549e 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_beacon_monitor - 0x420f54b4 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_connectionless_wake_window - 0x420f54ca 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_connectionless_wake_interval - 0x420f54dc 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_disconnected_sleep_delay - 0x420f54ee 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_sleep_delay - 0x420f5500 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_coex_slice - 0x420f5512 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_active - 0x420f5524 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_dream - 0x420f5536 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_noise_check - 0x420f5548 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .text.pp_timer_register_post_cb - 0x420f555a 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - 0x420f555a pp_timer_register_post_cb - .text.pp_timer_process - 0x420f5566 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - 0x420f5566 pp_timer_process - .text.esp_efuse_rtc_calib_get_ver - 0x420f557e 0x5e esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - 0x420f557e esp_efuse_rtc_calib_get_ver - .text.esp_efuse_rtc_calib_get_init_code - 0x420f55dc 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - 0x420f55dc esp_efuse_rtc_calib_get_init_code - .text.rmt_hal_tx_channel_reset - 0x420f56c4 0x82 esp-idf/hal/libhal.a(rmt_hal.c.obj) - 0x420f56c4 rmt_hal_tx_channel_reset - .text.rmt_hal_rx_channel_reset - 0x420f5746 0x58 esp-idf/hal/libhal.a(rmt_hal.c.obj) - 0x420f5746 rmt_hal_rx_channel_reset - .text.get_controller - 0x420f579e 0x1e esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_ll_calibration_prepare - 0x420f57bc 0x6e esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_ll_calibration_finish - 0x420f582a 0x3a esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.read_cal_channel - 0x420f5864 0xbe esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_set_controller - 0x420f5922 0xe esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 0x420f5922 adc_hal_set_controller - .text.cal_setup - 0x420f5930 0xc2 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_arbiter_config - 0x420f59f2 0x12e esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 0x420f59f2 adc_hal_arbiter_config - .text.adc_hal_calibration_init - 0x420f5b20 0x3a esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 0x420f5b20 adc_hal_calibration_init - .text.adc_hal_set_calibration_param - 0x420f5b5a 0x98 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 0x420f5b5a adc_hal_set_calibration_param - .text.adc_hal_self_calibration - 0x420f5bf2 0x246 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 0x420f5bf2 adc_hal_self_calibration - .text.mpi_ll_write_to_mem_block - 0x420f5e38 0x44 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .text.mpi_ll_read_from_mem_block - 0x420f5e7c 0x38 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .text.mpi_hal_calc_hardware_words - 0x420f5eb4 0x2 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5eb4 mpi_hal_calc_hardware_words - .text.mpi_hal_enable_hardware_hw_op - 0x420f5eb6 0x1e esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5eb6 mpi_hal_enable_hardware_hw_op - .text.mpi_hal_disable_hardware_hw_op - 0x420f5ed4 0xe esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5ed4 mpi_hal_disable_hardware_hw_op - .text.mpi_hal_interrupt_enable - 0x420f5ee2 0x18 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5ee2 mpi_hal_interrupt_enable - .text.mpi_hal_clear_interrupt - 0x420f5efa 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5efa mpi_hal_clear_interrupt - .text.mpi_hal_set_mode - 0x420f5f06 0xa esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f06 mpi_hal_set_mode - .text.mpi_hal_write_to_mem_block - 0x420f5f10 0xe esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f10 mpi_hal_write_to_mem_block - .text.mpi_hal_write_at_offset - 0x420f5f1e 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f1e mpi_hal_write_at_offset - .text.mpi_hal_write_m_prime - 0x420f5f32 0xa esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f32 mpi_hal_write_m_prime - .text.mpi_hal_write_rinv - 0x420f5f3c 0xe esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f3c mpi_hal_write_rinv - .text.mpi_hal_enable_constant_time - 0x420f5f4a 0x18 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f4a mpi_hal_enable_constant_time - .text.mpi_hal_enable_search - 0x420f5f62 0x18 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f62 mpi_hal_enable_search - .text.mpi_hal_set_search_position - 0x420f5f7a 0xa esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f7a mpi_hal_set_search_position - .text.mpi_hal_start_op - 0x420f5f84 0x26 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5f84 mpi_hal_start_op - .text.mpi_hal_wait_op_complete - 0x420f5faa 0x18 esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5faa mpi_hal_wait_op_complete - .text.mpi_hal_read_result_hw_op - 0x420f5fc2 0x2a esp-idf/hal/libhal.a(mpi_hal.c.obj) - 0x420f5fc2 mpi_hal_read_result_hw_op - .text.sha_hal_wait_idle - 0x420f5fec 0xa esp-idf/hal/libhal.a(sha_hal.c.obj) - 0x420f5fec sha_hal_wait_idle - .text.sha_hal_hash_block - 0x420f5ff6 0x62 esp-idf/hal/libhal.a(sha_hal.c.obj) - 0x420f5ff6 sha_hal_hash_block - .text.sha_hal_hash_dma - 0x420f6058 0x3c esp-idf/hal/libhal.a(sha_hal.c.obj) - 0x420f6058 sha_hal_hash_dma - .text.sha_hal_read_digest - 0x420f6094 0x68 esp-idf/hal/libhal.a(sha_hal.c.obj) - 0x420f6094 sha_hal_read_digest - .text.sha_hal_write_digest - 0x420f60fc 0x34 esp-idf/hal/libhal.a(sha_hal.c.obj) - 0x420f60fc sha_hal_write_digest - .text.aes_ll_write_key - 0x420f6130 0x5c esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_ll_set_iv - 0x420f618c 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_ll_read_iv - 0x420f61d4 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_setkey - 0x420f621c 0x2c esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f621c aes_hal_setkey - .text.aes_hal_transform_dma_start - 0x420f6248 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f6248 aes_hal_transform_dma_start - .text.aes_hal_transform_dma_finish - 0x420f625a 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f625a aes_hal_transform_dma_finish - .text.aes_hal_mode_init - 0x420f6268 0x1a esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f6268 aes_hal_mode_init - .text.aes_hal_set_iv - 0x420f6282 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f6282 aes_hal_set_iv - .text.aes_hal_read_iv - 0x420f6290 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f6290 aes_hal_read_iv - .text.aes_hal_wait_done - 0x420f629e 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x420f629e aes_hal_wait_done - .text.hmac_ll_config_output - 0x420f62ac 0x44 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .text.hmac_hal_start - 0x420f62f0 0x12 esp-idf/hal/libhal.a(hmac_hal.c.obj) - 0x420f62f0 hmac_hal_start - .text.hmac_hal_configure - 0x420f6302 0x58 esp-idf/hal/libhal.a(hmac_hal.c.obj) - 0x420f6302 hmac_hal_configure - .text.hmac_hal_clean - 0x420f635a 0x14 esp-idf/hal/libhal.a(hmac_hal.c.obj) - 0x420f635a hmac_hal_clean - .text.ds_acquire_enable - 0x420f636e 0xce esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text.ds_disable_release - 0x420f643c 0x8e esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .text.esp_ds_start_sign - 0x420f64ca 0x112 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - 0x420f64ca esp_ds_start_sign - .text.esp_ds_finish_sign - 0x420f65dc 0x70 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - 0x420f65dc esp_ds_finish_sign - .text.adc2_init_code_calibration - 0x420f664c 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .text.adc2_cal_include - 0x420f6680 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - 0x420f6680 adc2_cal_include - .text.create_addrinfo - 0x420f6682 0x1a2 esp-idf/lwip/liblwip.a(netdb.c.obj) - .text.lwip_freeaddrinfo - 0x420f6824 0x1e esp-idf/lwip/liblwip.a(netdb.c.obj) - 0x420f6824 lwip_freeaddrinfo - .text.lwip_getaddrinfo - 0x420f6842 0x2bc esp-idf/lwip/liblwip.a(netdb.c.obj) - 0x420f6842 lwip_getaddrinfo - .text.get_ip_info - 0x420f6afe 0x18 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.node_insert_to_list - 0x420f6b16 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.add_msg_type - 0x420f6b4c 0x16 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.add_end 0x420f6b62 0xa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.kill_oldest_dhcps_pool - 0x420f6b6c 0x82 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.parse_options - 0x420f6bee 0xb6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.create_msg - 0x420f6ca4 0x64 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.add_offer_options - 0x420f6d08 0x24a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_response_ip_set - 0x420f6f52 0xda esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_poll_set - 0x420f702c 0x13e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_new - 0x420f716a 0x4a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f716a dhcps_new - .text.dhcps_delete - 0x420f71b4 0x22 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f71b4 dhcps_delete - .text.dhcps_set_option_info - 0x420f71d6 0xb4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f71d6 dhcps_set_option_info - .text.node_remove_from_list - 0x420f728a 0x2e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f728a node_remove_from_list - .text.dhcps_tmr - 0x420f72b8 0x9a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.parse_msg - 0x420f7352 0x228 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_pbuf_alloc - 0x420f757a 0x22 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f757a dhcps_pbuf_alloc - .text.send_offer - 0x420f759c 0xc2 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.send_ack - 0x420f765e 0xde esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.send_nak - 0x420f773c 0x110 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.handle_dhcp - 0x420f784c 0x110 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.dhcps_set_new_lease_cb - 0x420f795c 0xe esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f795c dhcps_set_new_lease_cb - .text.dhcps_start - 0x420f796a 0x100 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f796a dhcps_start - .text.dhcps_stop - 0x420f7a6a 0x82 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x420f7a6a dhcps_stop - .text.esp_netif_action_start - 0x420f7aec 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x420f7aec esp_netif_action_start - .text.esp_netif_action_stop - 0x420f7afa 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x420f7afa esp_netif_action_stop - .text.esp_netif_action_connected - 0x420f7b08 0x15e esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x420f7b08 esp_netif_action_connected - .text.esp_netif_action_disconnected - 0x420f7c66 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x420f7c66 esp_netif_action_disconnected - .text.esp_netif_action_got_ip - 0x420f7c74 0x90 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x420f7c74 esp_netif_action_got_ip - .text.low_level_init - 0x420f7d04 0x26 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .text.low_level_output - 0x420f7d2a 0xa0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .text.wlanif_input - 0x420f7dca 0x5a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - 0x420f7dca wlanif_input - .text.wlanif_init - 0x420f7e24 0x7c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - 0x420f7e24 wlanif_init - .text.wlanif_init_sta - 0x420f7ea0 0x1e esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - 0x420f7ea0 wlanif_init_sta - .text.wlanif_init_ap - 0x420f7ebe 0x1e esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - 0x420f7ebe wlanif_init_ap - .text.esp_pbuf_free - 0x420f7edc 0x1e esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .text.esp_pbuf_allocate - 0x420f7efa 0x6a esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - 0x420f7efa esp_pbuf_allocate - .text.wpa_ap_get_peer_spp_msg - 0x420f7f64 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f7f64 wpa_ap_get_peer_spp_msg - .text.wpa_attach - 0x420f7f7e 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f7f7e wpa_attach - .text.wpa_config_done - 0x420f7faa 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f7faa wpa_config_done - .text.wpa_ap_get_wpa_ie - 0x420f7fb6 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f7fb6 wpa_ap_get_wpa_ie - .text.wpa_ap_rx_eapol - 0x420f7fe6 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f7fe6 wpa_ap_rx_eapol - .text.wpa_deattach - 0x420f8006 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f8006 wpa_deattach - .text.wpa_parse_wpa_ie_wrapper - 0x420f8040 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f8040 wpa_parse_wpa_ie_wrapper - .text.hostap_sta_join - 0x420f808e 0x13c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text.wpa_sta_disconnected_cb - 0x420f81ca 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text.wpa_sta_connected_cb - 0x420f824e 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .text.wpa_install_key - 0x420f825a 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f825a wpa_install_key - .text.wpa_get_key - 0x420f826c 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f826c wpa_get_key - .text.wpa_deauthenticate - 0x420f827a 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f827a wpa_deauthenticate - .text.wpa_config_profile - 0x420f8288 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f8288 wpa_config_profile - .text.wpa_config_bss - 0x420f82d6 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f82d6 wpa_config_bss - .text.wpa_sta_connect - 0x420f832e 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f832e wpa_sta_connect - .text.wpa_config_assoc_ie - 0x420f836a 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f836a wpa_config_assoc_ie - .text.wpa_neg_complete - 0x420f8394 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f8394 wpa_neg_complete - .text.esp_supplicant_init - 0x420f83a2 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f83a2 esp_supplicant_init - .text.esp_supplicant_deinit - 0x420f84d8 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x420f84d8 esp_supplicant_deinit - .text.ieee80211_handle_rx_frm - 0x420f84f6 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .text.esp_supplicant_unset_all_appie - 0x420f8520 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f8520 esp_supplicant_unset_all_appie - .text.esp_supplicant_common_deinit - 0x420f8544 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f8544 esp_supplicant_common_deinit - .text.esp_supplicant_common_init - 0x420f8574 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f8574 esp_supplicant_common_init - .text.supplicant_sta_conn_handler - 0x420f85b8 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f85b8 supplicant_sta_conn_handler - .text.supplicant_sta_disconn_handler - 0x420f85ba 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f85ba supplicant_sta_disconn_handler - .text.esp_set_scan_ie - 0x420f85bc 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f85bc esp_set_scan_ie - .text.esp_set_assoc_ie - 0x420f85be 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - 0x420f85be esp_set_assoc_ie - .text.wps_get_wps_sm_cb - 0x420f8620 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - 0x420f8620 wps_get_wps_sm_cb - .text.wpa3_sae_is_group_enabled - 0x420f862a 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_check_sae_rejected_groups - 0x420f8654 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_parse_sae_commit - 0x420f86a6 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_parse_sae_confirm - 0x420f87b8 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_build_sae_commit - 0x420f8816 0x34c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_build_sae_confirm - 0x420f8b62 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_build_sae_msg - 0x420f8bdc 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.esp_wpa3_free_sae_data - 0x420f8c46 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8c46 esp_wpa3_free_sae_data - .text.wpa3_parse_sae_msg - 0x420f8c9e 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.esp_wifi_register_wpa3_cb - 0x420f8cd2 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8cd2 esp_wifi_register_wpa3_cb - .text.wpa3_hostap_post_evt - 0x420f8ce8 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8ce8 wpa3_hostap_post_evt - .text.wpa3_hostap_handle_auth - 0x420f8dc0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_hostap_auth_init - 0x420f8ea8 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8ea8 wpa3_hostap_auth_init - .text.wpa3_hostap_auth_deinit - 0x420f8f6c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8f6c wpa3_hostap_auth_deinit - .text.esp_send_sae_auth_reply - 0x420f8f86 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f8f86 esp_send_sae_auth_reply - .text.wpa3_process_rx_commit - 0x420f9050 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.wpa3_process_rx_confirm - 0x420f9154 0x10a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.esp_wpa3_hostap_task - 0x420f925e 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .text.esp_wifi_register_wpa3_ap_cb - 0x420f9332 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x420f9332 esp_wifi_register_wpa3_ap_cb - .text.owe_build_dhie - 0x420f933e 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - 0x420f933e owe_build_dhie - .text.owe_deinit - 0x420f9358 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - 0x420f9358 owe_deinit - .text.esp_wifi_register_owe_cb - 0x420f9394 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - 0x420f9394 esp_wifi_register_owe_cb - .text.hostapd_get_hapd_data - 0x420f93aa 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f93aa hostapd_get_hapd_data - .text.hostap_init - 0x420f93b4 0x2c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f93b4 hostap_init - .text.hostapd_cleanup - 0x420f9676 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f9676 hostapd_cleanup - .text.hostap_deinit - 0x420f9706 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f9706 hostap_deinit - .text.esp_wifi_build_rsnxe - 0x420f9764 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f9764 esp_wifi_build_rsnxe - .text.esp_send_assoc_resp - 0x420f97bc 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f97bc esp_send_assoc_resp - .text.wpa_status_to_reason_code - 0x420f986a 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f986a wpa_status_to_reason_code - .text.hostap_new_assoc_sta - 0x420f98ce 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f98ce hostap_new_assoc_sta - .text.wpa_ap_remove - 0x420f99ea 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x420f99ea wpa_ap_remove - .text.ecp_opp 0x420f9a4a 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_alloc_key - 0x420f9a96 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .text.crypto_ec_init - 0x420f9ab8 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9ab8 crypto_ec_init - .text.crypto_ec_deinit - 0x420f9b04 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b04 crypto_ec_deinit - .text.crypto_ec_point_init - 0x420f9b24 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b24 crypto_ec_point_init - .text.crypto_ec_prime_len - 0x420f9b4e 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b4e crypto_ec_prime_len - .text.crypto_ec_order_len - 0x420f9b5e 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b5e crypto_ec_order_len - .text.crypto_ec_prime_len_bits - 0x420f9b70 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b70 crypto_ec_prime_len_bits - .text.crypto_ec_get_prime - 0x420f9b80 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b80 crypto_ec_get_prime - .text.crypto_ec_get_order - 0x420f9b84 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b84 crypto_ec_get_order - .text.crypto_ec_get_b - 0x420f9b8a 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b8a crypto_ec_get_b - .text.crypto_ec_point_deinit - 0x420f9b8e 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9b8e crypto_ec_point_deinit - .text.crypto_ec_point_to_bin - 0x420f9bac 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9bac crypto_ec_point_to_bin - .text.crypto_ec_point_from_bin - 0x420f9c0a 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9c0a crypto_ec_point_from_bin - .text.crypto_ec_point_add - 0x420f9c80 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9c80 crypto_ec_point_add - .text.crypto_ec_point_mul - 0x420f9cdc 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9cdc crypto_ec_point_mul - .text.crypto_ec_point_invert - 0x420f9d7c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9d7c crypto_ec_point_invert - .text.crypto_ec_point_compute_y_sqr - 0x420f9d92 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9d92 crypto_ec_point_compute_y_sqr - .text.crypto_ec_point_solve_y_coord - 0x420f9e8c 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9e8c crypto_ec_point_solve_y_coord - .text.crypto_ec_point_is_at_infinity - 0x420f9f5a 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9f5a crypto_ec_point_is_at_infinity - .text.crypto_ec_point_is_on_curve - 0x420f9f6a 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420f9f6a crypto_ec_point_is_on_curve - .text.crypto_ec_point_cmp - 0x420fa012 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa012 crypto_ec_point_cmp - .text.crypto_ec_key_set_pub - 0x420fa024 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa024 crypto_ec_key_set_pub - .text.crypto_ec_get_mbedtls_to_nist_group_id - 0x420fa0e8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa0e8 crypto_ec_get_mbedtls_to_nist_group_id - .text.crypto_ec_key_group - 0x420fa130 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa130 crypto_ec_key_group - .text.crypto_mbedtls_get_grp_id - 0x420fa15c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa15c crypto_mbedtls_get_grp_id - .text.crypto_ecdh_deinit - 0x420fa17e 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa17e crypto_ecdh_deinit - .text.crypto_ecdh_init - 0x420fa19e 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa19e crypto_ecdh_init - .text.crypto_ecdh_get_pubkey - 0x420fa26c 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa26c crypto_ecdh_get_pubkey - .text.crypto_ec_key_parse_pub - 0x420fa2cc 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa2cc crypto_ec_key_parse_pub - .text.crypto_ec_key_deinit - 0x420fa318 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa318 crypto_ec_key_deinit - .text.crypto_ecdh_set_peerkey - 0x420fa336 0x25e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa336 crypto_ecdh_set_peerkey - .text.crypto_ec_key_verify_signature - 0x420fa594 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - 0x420fa594 crypto_ec_key_verify_signature - .text.timeout_exists - 0x420fa63c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_run_timer - 0x420fa664 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_remove_timeout - 0x420fa684 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_init - 0x420fa6ea 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - 0x420fa6ea eloop_init - .text.eloop_register_timeout - 0x420fa77c 0x1b2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - 0x420fa77c eloop_register_timeout - .text.eloop_cancel_timeout - 0x420fa92e 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - 0x420fa92e eloop_cancel_timeout - .text.eloop_run - 0x420fa99a 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - 0x420fa99a eloop_run - .text.eloop_run_wrapper - 0x420faaea 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .text.eloop_destroy - 0x420faafa 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - 0x420faafa eloop_destroy - .text.hostapd_derive_psk - 0x420fabac 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .text.hostapd_setup_sae_pt - 0x420fabec 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x420fabec hostapd_setup_sae_pt - .text.hostapd_setup_wpa_psk - 0x420fac5a 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x420fac5a hostapd_setup_wpa_psk - .text.hostapd_get_psk - 0x420faca0 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x420faca0 hostapd_get_psk - .text.hostapd_config_clear_wpa_psk - 0x420facf2 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x420facf2 hostapd_config_clear_wpa_psk - .text.hostapd_config_free_bss - 0x420fad1c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x420fad1c hostapd_config_free_bss - .text.wpa_auth_get_sm - 0x420fad44 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_add_sm - 0x420fad72 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_del_sm - 0x420fadbe 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_use_aes_cmac - 0x420fadf6 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_pmksa_free_cb - 0x420fae0a 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_request_new_ptk - 0x420fae0c 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_receive_error_report - 0x420fae1a 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_DISCONNECTED_Enter - 0x420fae2c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter - 0x420fae4c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.ieee80211w_kde_len - 0x420fae6c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_GROUP_IDLE_Enter - 0x420fae7c 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter - 0x420faea6 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_GROUP_KEYERROR_Enter - 0x420faee0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_free_sta_sm - 0x420faf16 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_sm_ptk_update - 0x420faf68 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_init_gmk_and_counter - 0x420faf92 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_AUTHENTICATION_Enter - 0x420fb03c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_gmk_to_gtk - 0x420fb080 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_gtk_update - 0x420fb11c 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_gtk_init - 0x420fb1e2 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_setkeys - 0x420fb22e 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_set_key - 0x420fb26e 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_config_group_keys - 0x420fb2fe 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_setkeysdone - 0x420fb37e 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_sm_step - 0x420fb3a0 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_init - 0x420fb3ea 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_group_ensure_init - 0x420fb45c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_AUTHENTICATION2_Enter - 0x420fb498 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_rekey_gtk - 0x420fb4e6 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_replay_counter_valid - 0x420fb530 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_replay_counter_mark_invalid - 0x420fb57c 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_derive_ptk - 0x420fb5ce 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_verify_key_mic - 0x420fb608 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_sta_disconnect - 0x420fb6b4 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_DISCONNECT_Enter - 0x420fb6c6 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_PTKINITDONE_Enter - 0x420fb704 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.ieee80211w_kde_add - 0x420fb7c2 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.resend_eapol_handle - 0x420fb83a 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fb83a resend_eapol_handle - .text.wpa_init - 0x420fb85a 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fb85a wpa_init - .text.wpa_auth_sta_init - 0x420fb93e 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fb93e wpa_auth_sta_init - .text.wpa_auth_sta_deinit - 0x420fb9ac 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fb9ac wpa_auth_sta_deinit - .text.wpa_auth_pmksa_add_sae - 0x420fb9f2 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fb9f2 wpa_auth_pmksa_add_sae - .text.wpa_auth_add_sae_pmkid - 0x420fba28 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fba28 wpa_auth_add_sae_pmkid - .text.__wpa_send_eapol - 0x420fba52 0x4a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fba52 __wpa_send_eapol - .text.wpa_send_eapol - 0x420fbef6 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_PTKSTART_Enter - 0x420fbf5e 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter - 0x420fc07a 0x1d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter - 0x420fc24a 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_GROUP_Step - 0x420fc36e 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_remove_ptk - 0x420fc414 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fc414 wpa_remove_ptk - .text.sm_WPA_PTK_INITIALIZE_Enter - 0x420fc45e 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_deinit - 0x420fc4c6 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fc4c6 wpa_deinit - .text.wpa_auth_uses_sae - 0x420fc50a 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fc50a wpa_auth_uses_sae - .text.wpa_auth_get_psk - 0x420fc524 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter - 0x420fc582 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_INITPSK_Enter - 0x420fc758 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.sm_WPA_PTK_Step - 0x420fc7ce 0x1f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_sm_step - 0x420fc9c2 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_rekey_ptk - 0x420fca5e 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .text.wpa_auth_sta_associated - 0x420fca7a 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fca7a wpa_auth_sta_associated - .text.wpa_receive - 0x420fcaee 0x454 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fcaee wpa_receive - .text.hostap_eapol_resend_process - 0x420fcf42 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x420fcf42 hostap_eapol_resend_process - .text.wpa_parse_generic - 0x420fcf6a 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .text.wpa_write_wpa_ie - 0x420fd0c8 0x106 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .text.wpa_write_rsn_ie - 0x420fd1ce 0x23e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd1ce wpa_write_rsn_ie - .text.wpa_write_rsnxe - 0x420fd40c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd40c wpa_write_rsnxe - .text.wpa_auth_gen_wpa_ie - 0x420fd44c 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd44c wpa_auth_gen_wpa_ie - .text.wpa_add_kde - 0x420fd4e8 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd4e8 wpa_add_kde - .text.wpa_validate_wpa_ie - 0x420fd562 0x354 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd562 wpa_validate_wpa_ie - .text.wpa_parse_kde_ies - 0x420fd8b6 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd8b6 wpa_parse_kde_ies - .text.wpa_auth_uses_mfp - 0x420fd97c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x420fd97c wpa_auth_uses_mfp - .text._pmksa_cache_free_entry - 0x420fd98c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_set_expiration - 0x420fd9c2 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_link_entry - 0x420fda14 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_free_entry - 0x420fda7c 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fda7c pmksa_cache_free_entry - .text.pmksa_cache_expire - 0x420fdafe 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .text.pmksa_cache_auth_create_entry - 0x420fdb3c 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fdb3c pmksa_cache_auth_create_entry - .text.pmksa_cache_auth_deinit - 0x420fdc60 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fdc60 pmksa_cache_auth_deinit - .text.pmksa_cache_auth_get - 0x420fdcc0 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fdcc0 pmksa_cache_auth_get - .text.pmksa_cache_auth_add_entry - 0x420fdd38 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fdd38 pmksa_cache_auth_add_entry - .text.pmksa_cache_auth_add - 0x420fdd88 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fdd88 pmksa_cache_auth_add - .text.pmksa_cache_auth_init - 0x420fddcc 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - 0x420fddcc pmksa_cache_auth_init - .text.ap_sta_list_del - 0x420fddfa 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_sta_hash_del - 0x420fde18 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .text.ap_get_sta - 0x420fde8c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - 0x420fde8c ap_get_sta - .text.ap_sta_hash_add - 0x420fdec8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - 0x420fdec8 ap_sta_hash_add - .text.ap_free_sta - 0x420fdedc 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - 0x420fdedc ap_free_sta - .text.ap_sta_add - 0x420fdf4e 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - 0x420fdf4e ap_sta_add - .text.sae_set_state - 0x420fdfee 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.sae_get_password - 0x420fdff4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.use_sae_anti_clogging - 0x420fe000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.sae_check_big_sync - 0x420fe052 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.sae_status_success - 0x420fe08c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.sae_is_group_enabled - 0x420fe0d2 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.check_sae_rejected_groups - 0x420fe0fc 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.auth_build_sae_commit - 0x420fe162 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.auth_sae_send_commit - 0x420fe27c 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.auth_build_sae_confirm - 0x420fe306 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.auth_sae_send_confirm - 0x420fe33e 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.sae_accept_sta - 0x420fe378 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - 0x420fe378 sae_accept_sta - .text.sae_sm_step - 0x420fe3c2 0x1f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .text.handle_auth_sae - 0x420fe5b6 0x34e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - 0x420fe5b6 handle_auth_sae - .text.auth_sae_queue - 0x420fe904 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - 0x420fe904 auth_sae_queue - .text.wpa_res_to_status_code - 0x420fea36 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - 0x420fea36 wpa_res_to_status_code - .text.wpabuf_put_le16 - 0x420feadc 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .text.comeback_token_hash - 0x420feafe 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - 0x420feafe comeback_token_hash - .text.check_comeback_token - 0x420feb2c 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - 0x420feb2c check_comeback_token - .text.auth_build_token_req - 0x420febd4 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - 0x420febd4 auth_build_token_req - .text.const_time_memcmp - 0x420fed38 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sswu_curve_param - 0x420fed6c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_is_password_id_elem - 0x420fed7e 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_is_rejected_groups_elem - 0x420fedc2 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_is_token_container_elem - 0x420fee0a 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_is_akm_suite_selector_elem - 0x420fee4e 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_commit_token - 0x420fee96 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_token_container - 0x420feeda 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_akm_suite_selector - 0x420fef10 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.hkdf_extract - 0x420fef8e 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_pwd_seed - 0x420fefb6 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_cn_confirm - 0x420ff00c 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_cn_confirm_ffc - 0x420ff0d8 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.hkdf_expand - 0x420ff17a 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_commit_element_ffc - 0x420ff1d0 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_k_ffc - 0x420ff22e 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.debug_print_bignum - 0x420ff2c4 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sswu 0x420ff300 0x800 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_cn_confirm_ecc - 0x420ffb00 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_max_min_addr - 0x420ffb9c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_pwd_seed_key - 0x420ffbdc 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_password_identifier - 0x420ffcc8 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_test_pwd_seed_ffc - 0x420ffdc2 0x146 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_pwe_ffc - 0x420fff08 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_test_pwd_seed_ecc - 0x42100068 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_pwe_ecc - 0x4210013c 0x37c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_commit_element_ecc - 0x421004b8 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_commit - 0x42100518 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.wpabuf_put_le16 - 0x421005c8 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.wpabuf_put_data - 0x421005ea 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.wpabuf_put_str - 0x42100614 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_rejected_groups - 0x4210063e 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_k_ecc - 0x421006ea 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_kdf_hash - 0x42100788 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_commit_scalar - 0x421007a8 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_commit_element_ffc - 0x42100840 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_commit_element_ecc - 0x42100934 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_parse_commit_element - 0x421009f8 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_clear_temp_data - 0x42100a12 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42100a12 sae_clear_temp_data - .text.sae_clear_data - 0x42100ab4 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42100ab4 sae_clear_data - .text.sae_set_group - 0x42100aea 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42100aea sae_set_group - .text.sae_ecc_prime_len_2_hash_len - 0x42100bb4 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42100bb4 sae_ecc_prime_len_2_hash_len - .text.sae_derive_pt_ecc - 0x42100bd6 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_ffc_prime_len_2_hash_len - 0x42100d92 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42100d92 sae_ffc_prime_len_2_hash_len - .text.sae_derive_pt_ffc - 0x42100db4 0x228 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_keys - 0x42100fdc 0x29e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_pwe_from_pt_ecc - 0x4210127a 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x4210127a sae_derive_pwe_from_pt_ecc - .text.sae_derive_pwe_from_pt_ffc - 0x421013ea 0x176 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x421013ea sae_derive_pwe_from_pt_ffc - .text.sae_deinit_pt - 0x42101560 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101560 sae_deinit_pt - .text.sae_derive_pt_group - 0x4210159c 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .text.sae_derive_pt - 0x42101648 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101648 sae_derive_pt - .text.sae_prepare_commit - 0x421016c6 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x421016c6 sae_prepare_commit - .text.sae_prepare_commit_pt - 0x4210173e 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x4210173e sae_prepare_commit_pt - .text.sae_process_commit - 0x42101888 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101888 sae_process_commit - .text.sae_write_commit - 0x421018ec 0x218 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x421018ec sae_write_commit - .text.sae_group_allowed - 0x42101b04 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101b04 sae_group_allowed - .text.sae_parse_commit - 0x42101b82 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101b82 sae_parse_commit - .text.sae_write_confirm - 0x42101cea 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101cea sae_write_confirm - .text.sae_check_confirm - 0x42101db0 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x42101db0 sae_check_confirm - .text.dragonfly_get_rand_1_to_p_1 - 0x42101e64 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .text.dragonfly_get_rand_2_to_r_1 - 0x42101ee6 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .text.dragonfly_min_pwe_loop_iter - 0x42101f24 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - 0x42101f24 dragonfly_min_pwe_loop_iter - .text.dragonfly_get_random_qr_qnr - 0x42101f84 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - 0x42101f84 dragonfly_get_random_qr_qnr - .text.dragonfly_is_quadratic_residue_blind - 0x42102032 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - 0x42102032 dragonfly_is_quadratic_residue_blind - .text.dragonfly_generate_scalar - 0x42102152 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - 0x42102152 dragonfly_generate_scalar - .text.dragonfly_sqrt - 0x421021c6 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - 0x421021c6 dragonfly_sqrt - .text.wpa_kck_len - 0x42102292 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_kek_len - 0x421022be 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.rsn_selector_to_bitfield - 0x42102304 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.rsn_key_mgmt_to_bitfield - 0x421023aa 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_selector_to_bitfield - 0x42102444 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_key_mgmt_to_bitfield - 0x421024b8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .text.wpa_mic_len - 0x42102508 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102508 wpa_mic_len - .text.wpa_cipher_valid_mgmt_group - 0x42102526 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102526 wpa_cipher_valid_mgmt_group - .text.wpa_parse_wpa_ie_rsnxe - 0x4210254a 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x4210254a wpa_parse_wpa_ie_rsnxe - .text.wpa_parse_wpa_ie_rsn - 0x421025a2 0x1e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x421025a2 wpa_parse_wpa_ie_rsn - .text.wpa_parse_wpa_ie_wpa - 0x42102788 0x1a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102788 wpa_parse_wpa_ie_wpa - .text.wpa_use_akm_defined - 0x4210292a 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x4210292a wpa_use_akm_defined - .text.wpa_use_aes_key_wrap - 0x4210296a 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x4210296a wpa_use_aes_key_wrap - .text.wpa_eapol_key_mic - 0x421029c8 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x421029c8 wpa_eapol_key_mic - .text.wpa_akm_to_suite - 0x42102acc 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102acc wpa_akm_to_suite - .text.wpa_compare_rsn_ie - 0x42102b7a 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102b7a wpa_compare_rsn_ie - .text.rsn_pmkid - 0x42102baa 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102baa rsn_pmkid - .text.wpa_cipher_key_len - 0x42102c06 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102c06 wpa_cipher_key_len - .text.wpa_pmk_to_ptk - 0x42102c6a 0x242 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102c6a wpa_pmk_to_ptk - .text.wpa_cipher_to_alg - 0x42102eac 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102eac wpa_cipher_to_alg - .text.wpa_cipher_valid_pairwise - 0x42102ee0 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102ee0 wpa_cipher_valid_pairwise - .text.wpa_cipher_to_suite - 0x42102f0c 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102f0c wpa_cipher_to_suite - .text.rsn_cipher_put_suites - 0x42102fe4 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42102fe4 rsn_cipher_put_suites - .text.wpa_cipher_put_suites - 0x42103048 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x42103048 wpa_cipher_put_suites - .text.hmac_sha256_kdf - 0x421030ac 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - 0x421030ac hmac_sha256_kdf - .text.dh_groups_get - 0x421031c4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - 0x421031c4 dh_groups_get - .text.sha256_prf_bits - 0x421031f2 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - 0x421031f2 sha256_prf_bits - .text.sha256_prf - 0x421032fe 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - 0x421032fe sha256_prf - .text.sha1_prf - 0x4210330e 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - 0x4210330e sha1_prf - .text.wpa_key_mgmt_supports_caching - 0x421033ca 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_verify_eapol_key_mic - 0x42103406 0x17a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.is_wpa2_enterprise_connection - 0x42103580 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_derive_ptk - 0x421035b2 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_check_group_cipher - 0x421035e8 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_decrypt_key_data - 0x4210363c 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_set_seq - 0x4210372c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_install_igtk - 0x4210379a 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.ieee80211w_set_keys - 0x42103800 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_get_key - 0x4210384e 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_gtk_in_use - 0x4210385c 0x134 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_pmksa_free_cb - 0x42103990 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpabuf_put_le16 - 0x42103a10 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpabuf_put_data - 0x42103a32 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.cipher_type_map_supp_to_public - 0x42103a5c 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42103a5c cipher_type_map_supp_to_public - .text.cipher_type_map_public_to_supp - 0x42103aea 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42103aea cipher_type_map_public_to_supp - .text.wpa_sm_get_auth_addr - 0x42103b68 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42103b68 wpa_sm_get_auth_addr - .text.wpa_eapol_key_send - 0x42103b6e 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42103b6e wpa_eapol_key_send - .text.wpa_sm_key_request - 0x42103c1a 0x1aa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_rekey_ptk - 0x42103dc4 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_send_4_of_4 - 0x42103dd6 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_send_2_of_2 - 0x42103f24 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_send_2_of_4 - 0x4210406e 0x1a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4210406e wpa_supplicant_send_2_of_4 - .text.wpa_supplicant_gtk_tx_bit_workaround - 0x42104210 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104210 wpa_supplicant_gtk_tx_bit_workaround - .text.wpa_supplicant_process_1_of_2_rsn - 0x42104224 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_process_1_of_2_wpa - 0x421042c4 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_pairwise_gtk - 0x42104402 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104402 wpa_supplicant_pairwise_gtk - .text.wpa_report_ie_mismatch - 0x42104492 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104492 wpa_report_ie_mismatch - .text.wpa_supplicant_validate_ie - 0x421044a2 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_set_state - 0x421045ae 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421045ae wpa_sm_set_state - .text.wpa_supplicant_key_neg_complete - 0x421045ee 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421045ee wpa_supplicant_key_neg_complete - .text.wpa_sm_set_pmk_from_pmksa - 0x4210462c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4210462c wpa_sm_set_pmk_from_pmksa - .text.wpa_supplicant_get_pmk - 0x4210465e 0x19c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_process_1_of_4 - 0x421047fa 0x17e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421047fa wpa_supplicant_process_1_of_4 - .text.wpa_sm_init - 0x42104978 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104978 wpa_sm_init - .text.wpa_sm_notify_assoc - 0x421049e8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421049e8 wpa_sm_notify_assoc - .text.wpa_set_profile - 0x42104aa8 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104aa8 wpa_set_profile - .text.wpa_set_pmk - 0x42104bb0 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104bb0 wpa_set_pmk - .text.wpa_set_passphrase - 0x42104c5c 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104c5c wpa_set_passphrase - .text.set_assoc_ie - 0x42104d40 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104d40 set_assoc_ie - .text.wpa_sm_set_key - 0x42104d9c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42104d9c wpa_sm_set_key - .text.wpa_supplicant_install_ptk - 0x42104e5c 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_process_3_of_4 - 0x42104f10 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_install_gtk - 0x4210505e 0x166 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_process_1_of_2 - 0x421051c4 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_sm_rx_eapol - 0x421052aa 0x30a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421052aa wpa_sm_rx_eapol - .text.wpa_supplicant_activate_ptk - 0x421055b4 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_send_4_of_4_txcallback - 0x4210560e 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .text.wpa_supplicant_clr_countermeasures - 0x4210569a 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4210569a wpa_supplicant_clr_countermeasures - .text.wpa_supplicant_stop_countermeasures - 0x421056a8 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421056a8 wpa_supplicant_stop_countermeasures - .text.wpa_michael_mic_failure - 0x421056ea 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421056ea wpa_michael_mic_failure - .text.eapol_txcb - 0x421057a4 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421057a4 eapol_txcb - .text.wpa_sta_in_4way_handshake - 0x42105870 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105870 wpa_sta_in_4way_handshake - .text.wpa_sta_cur_pmksa_matches_akm - 0x4210589e 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4210589e wpa_sta_cur_pmksa_matches_akm - .text.wpa_sta_clear_curr_pmksa - 0x421058d2 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421058d2 wpa_sta_clear_curr_pmksa - .text.get_wpa_sm - 0x42105906 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105906 get_wpa_sm - .text.wpa_sm_set_ap_rsnxe - 0x42105910 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105910 wpa_sm_set_ap_rsnxe - .text.wpa_sm_set_assoc_rsnxe - 0x421059ca 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x421059ca wpa_sm_set_assoc_rsnxe - .text.wpa_set_bss - 0x42105a22 0x318 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105a22 wpa_set_bss - .text.wpa_sm_drop_sa - 0x42105d3a 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105d3a wpa_sm_drop_sa - .text.wpa_sm_deinit - 0x42105da2 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105da2 wpa_sm_deinit - .text.wpa_sm_notify_disassoc - 0x42105dec 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105dec wpa_sm_notify_disassoc - .text.owe_build_assoc_req - 0x42105e30 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105e30 owe_build_assoc_req - .text.owe_process_assoc_resp - 0x42105f02 0x256 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x42105f02 owe_process_assoc_resp - .text.wpa_parse_generic - 0x42106158 0x19e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .text.wpa_gen_wpa_ie_rsn - 0x421062f6 0x30a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .text.wpa_gen_wpa_ie_wpa - 0x42106600 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .text.wpa_parse_wpa_ie - 0x4210672c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x4210672c wpa_parse_wpa_ie - .text.wpa_gen_wpa_ie - 0x4210676c 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x4210676c wpa_gen_wpa_ie - .text.wpa_gen_rsnxe - 0x421067b6 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x421067b6 wpa_gen_rsnxe - .text.wpa_supplicant_parse_ies - 0x4210681e 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x4210681e wpa_supplicant_parse_ies - .text.wpabuf_alloc - 0x421068e4 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x421068e4 wpabuf_alloc - .text.wpabuf_free - 0x4210690c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x4210690c wpabuf_free - .text.wpabuf_clear_free - 0x4210693a 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x4210693a wpabuf_clear_free - .text.wpabuf_put - 0x42106960 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x42106960 wpabuf_put - .text.wpabuf_put_data - 0x4210696e 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .text.wpabuf_alloc_copy - 0x42106998 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x42106998 wpabuf_alloc_copy - .text.wpabuf_zeropad - 0x421069c6 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x421069c6 wpabuf_zeropad - .text.d_permute - 0x42106a24 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.d_invert - 0x42106a44 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_pk_buf_shift_left_1 - 0x42106a60 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_group_2_hash_len - 0x42106a90 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.d_check_char - 0x42106ab8 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.wpabuf_put_data - 0x42106b74 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_pk_valid_password - 0x42106b9e 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106b9e sae_pk_valid_password - .text.sae_pk_base32_decode - 0x42106cd8 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106cd8 sae_pk_base32_decode - .text.sae_pk_get_be19 - 0x42106e40 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106e40 sae_pk_get_be19 - .text.sae_pk_buf_shift_left_19 - 0x42106e58 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106e58 sae_pk_buf_shift_left_19 - .text.sae_pk_set_password - 0x42106e92 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106e92 sae_pk_set_password - .text.sae_hash - 0x42106fd2 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42106fd2 sae_hash - .text.sae_pk_valid_fingerprint - 0x42106ff6 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_pk_hash_sig_data - 0x421070f6 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .text.sae_check_confirm_pk - 0x42107256 0x1ec esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - 0x42107256 sae_check_confirm_pk - .text.eap_client_get_eap_state - 0x42107442 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - 0x42107442 eap_client_get_eap_state - .text.disable_wpa_wpa2 - 0x42107456 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .text.wpa_alloc_eapol - 0x42107464 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107464 wpa_alloc_eapol - .text.wpa_free_eapol - 0x42107504 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107504 wpa_free_eapol - .text.wpa_ether_send - 0x4210751a 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x4210751a wpa_ether_send - .text.hostapd_send_eapol - 0x421075ba 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x421075ba hostapd_send_eapol - .text.wpa_supplicant_transition_disable - 0x42107690 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107690 wpa_supplicant_transition_disable - .text.wpa_sm_alloc_eapol - 0x42107714 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107714 wpa_sm_alloc_eapol - .text.wpa_sm_free_eapol - 0x42107722 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107722 wpa_sm_free_eapol - .text.wpa_sm_deauthenticate - 0x42107730 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107730 wpa_sm_deauthenticate - .text.wpa_sm_mlme_setprotection - 0x42107756 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x42107756 wpa_sm_mlme_setprotection - .text.wpa_sm_disassociate - 0x4210775a 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x4210775a wpa_sm_disassociate - .text.crypto_rng_wrapper - 0x4210775c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .text.crypto_bignum_init - 0x4210776e 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x4210776e crypto_bignum_init - .text.crypto_bignum_init_set - 0x42107792 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107792 crypto_bignum_init_set - .text.crypto_bignum_init_uint - 0x421077d6 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421077d6 crypto_bignum_init_uint - .text.crypto_bignum_deinit - 0x42107808 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107808 crypto_bignum_deinit - .text.crypto_bignum_to_bin - 0x42107826 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107826 crypto_bignum_to_bin - .text.crypto_bignum_add - 0x42107892 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107892 crypto_bignum_add - .text.crypto_bignum_mod - 0x421078ae 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421078ae crypto_bignum_mod - .text.crypto_bignum_exptmod - 0x421078ca 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421078ca crypto_bignum_exptmod - .text.crypto_bignum_inverse - 0x421078ea 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421078ea crypto_bignum_inverse - .text.crypto_bignum_sub - 0x42107906 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107906 crypto_bignum_sub - .text.crypto_bignum_div - 0x42107922 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107922 crypto_bignum_div - .text.crypto_bignum_mulmod - 0x42107940 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107940 crypto_bignum_mulmod - .text.crypto_bignum_sqrmod - 0x42107976 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107976 crypto_bignum_sqrmod - .text.crypto_bignum_rshift - 0x421079c6 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421079c6 crypto_bignum_rshift - .text.crypto_bignum_cmp - 0x421079f8 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x421079f8 crypto_bignum_cmp - .text.crypto_bignum_is_zero - 0x42107a06 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107a06 crypto_bignum_is_zero - .text.crypto_bignum_is_one - 0x42107a1a 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107a1a crypto_bignum_is_one - .text.crypto_bignum_is_odd - 0x42107a2e 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107a2e crypto_bignum_is_odd - .text.crypto_bignum_rand - 0x42107a44 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107a44 crypto_bignum_rand - .text.crypto_bignum_legendre - 0x42107a66 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107a66 crypto_bignum_legendre - .text.crypto_bignum_addmod - 0x42107af8 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - 0x42107af8 crypto_bignum_addmod - .text.rc4_skip - 0x42107b52 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - 0x42107b52 rc4_skip - .text.aes_wrap - 0x42107c4c 0x1e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - 0x42107c4c aes_wrap - .text.aes_unwrap - 0x42107e2e 0x1ac esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - 0x42107e2e aes_unwrap - .text.dbl 0x42107fda 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.xor 0x42108024 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.xorend 0x42108044 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.pad_block - 0x42108070 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.aes_s2v 0x421080b8 0x14c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .text.aes_siv_decrypt - 0x42108204 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - 0x42108204 aes_siv_decrypt - .text.ieee802_11_parse_extension - 0x42108324 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_parse_vendor_specific - 0x421083ba 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .text.ieee802_11_parse_elems - 0x42108440 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - 0x42108440 ieee802_11_parse_elems - .text._pmksa_cache_free_entry - 0x421084d8 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_free_entry - 0x421084ea 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_set_expiration - 0x4210850e 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_expire - 0x4210855c 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_flush - 0x4210859e 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x4210859e pmksa_cache_flush - .text.pmksa_cache_add_entry - 0x42108622 0x12e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108622 pmksa_cache_add_entry - .text.pmksa_cache_add - 0x42108750 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108750 pmksa_cache_add - .text.pmksa_cache_clone_entry - 0x42108878 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .text.pmksa_cache_deinit - 0x421088b6 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x421088b6 pmksa_cache_deinit - .text.pmksa_cache_get - 0x42108902 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108902 pmksa_cache_get - .text.pmksa_cache_get_opportunistic - 0x42108962 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108962 pmksa_cache_get_opportunistic - .text.pmksa_cache_get_current - 0x4210898a 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x4210898a pmksa_cache_get_current - .text.pmksa_cache_clear_current - 0x42108992 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108992 pmksa_cache_clear_current - .text.pmksa_cache_set_current - 0x4210899a 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x4210899a pmksa_cache_set_current - .text.pmksa_cache_init - 0x42108a1e 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x42108a1e pmksa_cache_init - .text.lib_printf - 0x42108a58 0x8c esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .text.coexist_printf - 0x42108ae4 0x2a esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - 0x42108ae4 coexist_printf - .text.lib_printf - 0x42108b0e 0x8c esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .text.pp_printf - 0x42108b9a 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - 0x42108b9a pp_printf - .text.net80211_printf - 0x42108bc4 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - 0x42108bc4 net80211_printf - .text.esp_crypto_sha1_mbedtls - 0x42108bee 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .text.esp_crypto_bas64_encode_mbedtls - 0x42108c32 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .text.esp_crypto_sha1 - 0x42108c40 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - 0x42108c40 esp_crypto_sha1 - .text.esp_crypto_base64_encode - 0x42108c4e 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - 0x42108c4e esp_crypto_base64_encode - .text.misc_nvs_load - 0x42108c5c 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x42108c5c misc_nvs_load - .text.misc_nvs_deinit - 0x42108d00 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x42108d00 misc_nvs_deinit - .text.misc_nvs_init - 0x42108d5c 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x42108d5c misc_nvs_init - .text.misc_nvs_restore - 0x42108d90 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - 0x42108d90 misc_nvs_restore - .text.mesh_sta_auth_expire_time - 0x42108da0 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - 0x42108da0 mesh_sta_auth_expire_time - .text.ds_ll_configure_iv - 0x42108de0 0x24 esp-idf/hal/libhal.a(ds_hal.c.obj) - .text.ds_ll_check_signature - 0x42108e04 0x24 esp-idf/hal/libhal.a(ds_hal.c.obj) - .text.ds_ll_write_private_key_params - 0x42108e28 0x72 esp-idf/hal/libhal.a(ds_hal.c.obj) - .text.ds_hal_start - 0x42108e9a 0xc esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108e9a ds_hal_start - .text.ds_hal_finish - 0x42108ea6 0x16 esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108ea6 ds_hal_finish - .text.ds_hal_configure_iv - 0x42108ebc 0xe esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108ebc ds_hal_configure_iv - .text.ds_hal_write_message - 0x42108eca 0x22 esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108eca ds_hal_write_message - .text.ds_hal_write_private_key_params - 0x42108eec 0xe esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108eec ds_hal_write_private_key_params - .text.ds_hal_start_sign - 0x42108efa 0xc esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108efa ds_hal_start_sign - .text.ds_hal_busy - 0x42108f06 0xe esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108f06 ds_hal_busy - .text.ds_hal_read_result - 0x42108f14 0x42 esp-idf/hal/libhal.a(ds_hal.c.obj) - 0x42108f14 ds_hal_read_result - .text.ethip6_output - 0x42108f56 0xb0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - 0x42108f56 ethip6_output - .text._ZdaPv 0x42109006 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - 0x42109006 operator delete[](void*) - .text._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv - 0x42109008 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109008 __gnu_cxx::__concurrence_lock_error::what() const - .text._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv - 0x42109012 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109012 __gnu_cxx::__concurrence_unlock_error::what() const - .text._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev - 0x4210901c 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x4210901c __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() - 0x4210901c __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() - .text._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev - 0x42109028 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109028 __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() - .text._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev - 0x42109040 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109040 __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() - 0x42109040 __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() - .text._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev - 0x4210904c 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x4210904c __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() - .text._ZN9__gnu_cxx7__mutex4lockEv - 0x42109064 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109064 __gnu_cxx::__mutex::lock() - .text._ZN9__gnu_cxx7__mutex6unlockEv - 0x42109098 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x42109098 __gnu_cxx::__mutex::unlock() - .text._ZSt15get_new_handlerv - 0x421090cc 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x421090cc std::get_new_handler() - .text.startup._GLOBAL__sub_I__ZSt7nothrow - 0x421090fc 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .text._ZnajRKSt9nothrow_t - 0x4210910e 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - 0x4210910e operator new[](unsigned int, std::nothrow_t const&) - .text._ZN10__cxxabiv120__si_class_type_infoD2Ev - 0x42109122 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x42109122 __cxxabiv1::__si_class_type_info::~__si_class_type_info() - 0x42109122 __cxxabiv1::__si_class_type_info::~__si_class_type_info() - .text._ZN10__cxxabiv120__si_class_type_infoD0Ev - 0x4210912e 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x4210912e __cxxabiv1::__si_class_type_info::~__si_class_type_info() - .text._ZNKSt9type_infoeqERKS_.isra.0 - 0x42109146 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE - 0x42109184 0xb4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x42109184 __cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const - .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ - 0x42109238 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x42109238 __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const - .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE - 0x4210927c 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x4210927c __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const - .text._ZNSt9type_infoD2Ev - 0x421092be 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - 0x421092be std::type_info::~type_info() - 0x421092be std::type_info::~type_info() - .text._ZNKSt9type_info14__is_pointer_pEv - 0x421092c0 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - 0x421092c0 std::type_info::__is_function_p() const - 0x421092c0 std::type_info::__is_pointer_p() const - .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv - 0x421092c4 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x421092c4 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const - .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ - 0x421092fa 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x421092fa __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const - .text._ZN10__cxxabiv117__class_type_infoD2Ev - 0x42109304 0xe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x42109304 __cxxabiv1::__class_type_info::~__class_type_info() - 0x42109304 __cxxabiv1::__class_type_info::~__class_type_info() - .text._ZN10__cxxabiv117__class_type_infoD0Ev - 0x42109312 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x42109312 __cxxabiv1::__class_type_info::~__class_type_info() - .text._ZNKSt9type_infoeqERKS_.isra.0 - 0x4210932a 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE - 0x42109368 0x2a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x42109368 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const - .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE - 0x42109392 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x42109392 __cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const - .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj - 0x421093e6 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x421093e6 __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const - .text._ZdlPv 0x4210942a 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - 0x4210942a operator delete(void*) - .text._ZdlPvj 0x42109432 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - 0x42109432 operator delete(void*, unsigned int) - .text.__cxa_begin_catch - 0x42109436 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - 0x42109436 __cxa_begin_catch - .text.__cxa_end_catch - 0x421094a6 0x66 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - 0x421094a6 __cxa_end_catch - .text._ZNSt9exceptionD2Ev - 0x4210950c 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - 0x4210950c std::exception::~exception() - 0x4210950c std::exception::~exception() - .text._ZL15eh_globals_dtorPv - 0x4210950e 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .text.__cxa_get_globals_fast - 0x4210953e 0x2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - 0x4210953e __cxa_get_globals_fast - .text.__cxa_get_globals - 0x4210956c 0x64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - 0x4210956c __cxa_get_globals - .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE - 0x421095d0 0x2e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .text._ZN10__cxxabiv111__terminateEPFvvE - 0x421095fe 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - 0x421095fe __cxxabiv1::__terminate(void (*)()) - .text._ZSt13get_terminatev - 0x42109618 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - 0x42109618 std::get_terminate() - .text.unlikely._ZSt9terminatev - 0x42109644 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - 0x42109644 std::terminate() - .text.startup._GLOBAL__sub_I__ZN10__cxxabiv111__terminateEPFvvE - 0x42109650 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .text._Znaj 0x42109662 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - 0x42109662 operator new[](unsigned int) - .text._Znwj 0x42109664 0x4a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - 0x42109664 operator new(unsigned int) - .text._ZNKSt9bad_alloc4whatEv - 0x421096ae 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - 0x421096ae std::bad_alloc::what() const - .text._ZNSt9bad_allocD2Ev - 0x421096b8 0xe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - 0x421096b8 std::bad_alloc::~bad_alloc() - 0x421096b8 std::bad_alloc::~bad_alloc() - .text._ZNSt9bad_allocD0Ev - 0x421096c6 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - 0x421096c6 std::bad_alloc::~bad_alloc() - .text._Z12abort_returnIiET_v - 0x421096e0 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.__wrap__Unwind_DeleteException - 0x421096ec 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x421096ec __wrap__Unwind_DeleteException - .text.__wrap___gxx_personality_v0 - 0x421096f8 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x421096f8 __wrap___gxx_personality_v0 - .text.__wrap___cxa_allocate_exception - 0x42109700 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x42109700 __wrap___cxa_allocate_exception - .text.__wrap___cxa_throw - 0x4210970c 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x4210970c __wrap___cxa_throw - .text.rom2_wait_hw_freq_busy - 0x42109718 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109718 rom2_wait_hw_freq_busy - .text.rom1_txpwr_cal_track - 0x4210973a 0x158 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x4210973a rom1_txpwr_cal_track - .text.rom2_ulp_ext_code_set - 0x42109892 0x76 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109892 rom2_ulp_ext_code_set - .text.rom2_ulp_code_track - 0x42109908 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109908 rom2_ulp_code_track - .text.ram2_rfpll_cap_track - 0x42109998 0xa6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109998 ram2_rfpll_cap_track - .text.ram1_bt_track_pll_cap - 0x42109a3e 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109a3e ram1_bt_track_pll_cap - .text.bt_track_pll_cap - 0x42109aac 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109aac bt_track_pll_cap - .text.txpwr_offset - 0x42109ab0 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109ab0 txpwr_offset - .text.rfcal_track - 0x42109b46 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109b46 rfcal_track - .text.phy_param_track_tot - 0x42109be4 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - 0x42109be4 phy_param_track_tot - .text.phy_change_channel - 0x42109c84 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109c84 phy_change_channel - .text.phy_bbpll_en_usb - 0x42109c96 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109c96 phy_bbpll_en_usb - .text.phy_get_rf_cal_version - 0x42109ca0 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109ca0 phy_get_rf_cal_version - .text.noise_check_loop - 0x42109ca6 0x2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109ca6 noise_check_loop - .text.phy_init_param_set - 0x42109ca8 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109ca8 phy_init_param_set - .text.ant_tx_cfg - 0x42109cb4 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109cb4 ant_tx_cfg - .text.ant_rx_cfg - 0x42109cce 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - 0x42109cce ant_rx_cfg - .text.phy_get_romfunc_addr - 0x42109cf6 0x20e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x42109cf6 phy_get_romfunc_addr - .text.rf_init 0x42109f04 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x42109f04 rf_init - .text.register_chipv7_phy_init_param - 0x42109fea 0x132 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x42109fea register_chipv7_phy_init_param - .text.phy_set_mac_data - 0x4210a11c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a11c phy_set_mac_data - .text.phy_rfcal_data_sub - 0x4210a138 0x6e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a138 phy_rfcal_data_sub - .text.rf_cal_data_recovery - 0x4210a1a6 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a1a6 rf_cal_data_recovery - .text.phy_rfcal_data_check_value - 0x4210a1e6 0x358 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a1e6 phy_rfcal_data_check_value - .text.rf_cal_data_backup - 0x4210a53e 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a53e rf_cal_data_backup - .text.phy_rfcal_data_check - 0x4210a550 0x8e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a550 phy_rfcal_data_check - .text.rf_cal_level_check - 0x4210a5de 0xac /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a5de rf_cal_level_check - .text.bb_init 0x4210a68a 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a68a bb_init - .text.register_chipv7_phy - 0x4210a786 0x19c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a786 register_chipv7_phy - .text.get_txcap_data - 0x4210a922 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - 0x4210a922 get_txcap_data - .text.wr_rf_freq_mem - 0x4210a96c 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210a96c wr_rf_freq_mem - .text.freq_i2c_write_set - 0x4210a9c2 0x530 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210a9c2 freq_i2c_write_set - .text.rom2_pll_cap_mem_update - 0x4210aef2 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210aef2 rom2_pll_cap_mem_update - .text.get_rf_freq_init - 0x4210af62 0x192 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210af62 get_rf_freq_init - .text.freq_get_i2c_data - 0x4210b0f4 0x236 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210b0f4 freq_get_i2c_data - .text.freq_i2c_data_write - 0x4210b32a 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210b32a freq_i2c_data_write - .text.set_chan_freq_hw_init - 0x4210b368 0xa2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210b368 set_chan_freq_hw_init - .text.set_chan_freq_sw_start - 0x4210b40a 0xba /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - 0x4210b40a set_chan_freq_sw_start - .text.ram_pbus_force_mode - 0x4210b4c4 0x96 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - 0x4210b4c4 ram_pbus_force_mode - .text.txcal_debuge_mode - 0x4210b55a 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - 0x4210b55a txcal_debuge_mode - .text.txcal_work_mode - 0x4210b5de 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - 0x4210b5de txcal_work_mode - .text.save_pbus_reg - 0x4210b614 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - 0x4210b614 save_pbus_reg - .text.set_pbus_mem - 0x4210b652 0x24a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - 0x4210b652 set_pbus_mem - .text.phy_set_most_tpw - 0x4210b89c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210b89c phy_set_most_tpw - .text.phy_11p_set - 0x4210b8b2 0x1d6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210b8b2 phy_11p_set - .text.ant_dft_cfg - 0x4210ba88 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210ba88 ant_dft_cfg - .text.ant_wifitx_cfg - 0x4210baaa 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210baaa ant_wifitx_cfg - .text.ant_wifirx_cfg - 0x4210bad8 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bad8 ant_wifirx_cfg - .text.ant_bttx_cfg - 0x4210bb40 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bb40 ant_bttx_cfg - .text.ant_btrx_cfg - 0x4210bb6a 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bb6a ant_btrx_cfg - .text.phy_enable_low_rate - 0x4210bbd2 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bbd2 phy_enable_low_rate - .text.phy_disable_low_rate - 0x4210bbfe 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bbfe phy_disable_low_rate - .text.set_rx_sense - 0x4210bc2a 0x22a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210bc2a set_rx_sense - .text.phy_init_flag - 0x4210be54 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - 0x4210be54 phy_init_flag - .text.restart_cal - 0x4210be6a 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210be6a restart_cal - .text.write_rfpll_sdm - 0x4210beda 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210beda write_rfpll_sdm - .text.wait_rfpll_cal_end - 0x4210bf5a 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210bf5a wait_rfpll_cal_end - .text.rfpll_set_freq - 0x4210bfc2 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210bfc2 rfpll_set_freq - .text.correct_rfpll_offset - 0x4210c02e 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c02e correct_rfpll_offset - .text.rom2_write_pll_cap - 0x4210c0aa 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c0aa rom2_write_pll_cap - .text.rom2_read_pll_cap - 0x4210c0f0 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c0f0 rom2_read_pll_cap - .text.ram2_rfpll_cap_correct - 0x4210c138 0x1c2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c138 ram2_rfpll_cap_correct - .text.rfpll_cap_init_cal - 0x4210c2fa 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c2fa rfpll_cap_init_cal - .text.set_rfpll_freq - 0x4210c3ce 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c3ce set_rfpll_freq - .text.set_rf_freq_offset - 0x4210c432 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c432 set_rf_freq_offset - .text.set_channel_rfpll_freq - 0x4210c442 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c442 set_channel_rfpll_freq - .text.chip_v7_set_chan_misc - 0x4210c494 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c494 chip_v7_set_chan_misc - .text.chip_v7_set_chan - 0x4210c4fe 0xe4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c4fe chip_v7_set_chan - .text.chip_v7_set_chan_offset - 0x4210c5e2 0x88 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c5e2 chip_v7_set_chan_offset - .text.chip_v7_set_chan_ana - 0x4210c66a 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c66a chip_v7_set_chan_ana - .text.set_chanfreq - 0x4210c694 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - 0x4210c694 set_chanfreq - .text.rom2_tsens_read_init1 - 0x4210c6b4 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - 0x4210c6b4 rom2_tsens_read_init1 - .text.rom1_tsens_temp_read - 0x4210c716 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - 0x4210c716 rom1_tsens_temp_read - .text.rom2_temp_to_power1 - 0x4210c730 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - 0x4210c730 rom2_temp_to_power1 - .text.get_temp_init - 0x4210c756 0x5c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - 0x4210c756 get_temp_init - .text.chan14_mic_cfg - 0x4210c7b2 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - 0x4210c7b2 chan14_mic_cfg - .text.get_rc_dout - 0x4210c7f4 0x134 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - 0x4210c7f4 get_rc_dout - .text.rc_cal 0x4210c928 0x1ac /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - 0x4210c928 rc_cal - .text.get_sar_sig_ref - 0x4210cad4 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cad4 get_sar_sig_ref - .text.pwdet_tone_start - 0x4210cb12 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cb12 pwdet_tone_start - .text.get_tone_sar_dout - 0x4210cb70 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cb70 get_tone_sar_dout - .text.get_fm_sar_dout - 0x4210cbbe 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cbbe get_fm_sar_dout - .text.txtone_linear_pwr - 0x4210cbe0 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cbe0 txtone_linear_pwr - .text.get_power_db - 0x4210cc3a 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cc3a get_power_db - .text.rom1_read_sar2_code - 0x4210cc8c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - 0x4210cc8c rom1_read_sar2_code - .text.gen_rx_gain_table - 0x4210ccb8 0x14e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - 0x4210ccb8 gen_rx_gain_table - .text.wr_rx_gain_mem - 0x4210ce06 0x28a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - 0x4210ce06 wr_rx_gain_mem - .text.set_rx_gain_param - 0x4210d090 0x186 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - 0x4210d090 set_rx_gain_param - .text.set_rx_gain_table - 0x4210d216 0x2b4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - 0x4210d216 set_rx_gain_table - .text.get_phy_version_str - 0x4210d4ca 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - 0x4210d4ca get_phy_version_str - .text.get_iq_value - 0x4210d50e 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - 0x4210d50e get_iq_value - .text.get_bias_ref_code - 0x4210d552 0x86 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - 0x4210d552 get_bias_ref_code - .text.phy_get_vdd33 - 0x4210d5d8 0xaa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - 0x4210d5d8 phy_get_vdd33 - .text.bt_chan_pwr_interp - 0x4210d682 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d682 bt_chan_pwr_interp - .text.rom1_get_rate_fcc_index - 0x4210d6d2 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d6d2 rom1_get_rate_fcc_index - .text.rom1_get_chan_target_power - 0x4210d750 0xae /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d750 rom1_get_chan_target_power - .text.rom2_get_tx_gain_value1 - 0x4210d7fe 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d7fe rom2_get_tx_gain_value1 - .text.rom1_bt_get_tx_gain_new - 0x4210d846 0x12e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d846 rom1_bt_get_tx_gain_new - .text.rom1_wifi_get_tx_gain - 0x4210d974 0x116 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210d974 rom1_wifi_get_tx_gain - .text.ram1_wifi_set_tx_gain - 0x4210da8a 0xfe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210da8a ram1_wifi_set_tx_gain - .text.rom1_bt_set_tx_gain - 0x4210db88 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210db88 rom1_bt_set_tx_gain - .text.bt_tx_gain_init - 0x4210dc26 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210dc26 bt_tx_gain_init - .text.txcal_gain_check - 0x4210dc4c 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - 0x4210dc4c txcal_gain_check - .text.txiq_set_reg - 0x4210dd52 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210dd52 txiq_set_reg - .text.rxiq_set_reg - 0x4210dda0 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210dda0 rxiq_set_reg - .text.start_tx_tone_step - 0x4210de10 0xfa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210de10 start_tx_tone_step - .text.stop_tx_tone - 0x4210df0a 0x7a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210df0a stop_tx_tone - .text.read_hw_noisefloor - 0x4210df84 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210df84 read_hw_noisefloor - .text.rom1_set_noise_floor - 0x4210df9e 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210df9e rom1_set_noise_floor - .text.phy_freq_correct - 0x4210dfba 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210dfba phy_freq_correct - .text.force_txrx_off - 0x4210e0c0 0x72 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - 0x4210e0c0 force_txrx_off - .text.rxiq_get_mis - 0x4210e132 0x148 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e132 rxiq_get_mis - .text.rxiq_cover_mg_mp - 0x4210e27a 0x116 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e27a rxiq_cover_mg_mp - .text.rfcal_rxiq - 0x4210e390 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e390 rfcal_rxiq - .text.get_rfcal_rxiq_data - 0x4210e3f8 0x132 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e3f8 get_rfcal_rxiq_data - .text.pbus_rx_dco_cal - 0x4210e52a 0x390 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e52a pbus_rx_dco_cal - .text.rxdc_est_min_new - 0x4210e8ba 0x84 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e8ba rxdc_est_min_new - .text.pbus_rx_dco_cal_1step_new - 0x4210e93e 0x41c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210e93e pbus_rx_dco_cal_1step_new - .text.set_rx_gain_cal_iq - 0x4210ed5a 0x2fe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210ed5a set_rx_gain_cal_iq - .text.rx_chan_dc_sort - 0x4210f058 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210f058 rx_chan_dc_sort - .text.set_rx_gain_cal_dc - 0x4210f15c 0x334 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - 0x4210f15c set_rx_gain_cal_dc - .text.phy_i2c_init2 - 0x4210f490 0x352 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - 0x4210f490 phy_i2c_init2 - .text.phy_get_i2c_data - 0x4210f7e2 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - 0x4210f7e2 phy_get_i2c_data - .text.bias_reg_set - 0x4210f830 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - 0x4210f830 bias_reg_set - .text.i2c_bbpll_set - 0x4210f8c8 0xfc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - 0x4210f8c8 i2c_bbpll_set - .text.txdc_cal_v70 - 0x4210f9c4 0x1ee /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210f9c4 txdc_cal_v70 - .text.bt_txdc_cal - 0x4210fbb2 0xe6 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210fbb2 bt_txdc_cal - .text.txdc_cal_init - 0x4210fc98 0x106 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210fc98 txdc_cal_init - .text.txiq_get_mis_pwr - 0x4210fd9e 0xa4 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210fd9e txiq_get_mis_pwr - .text.txiq_cover - 0x4210fe42 0x172 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210fe42 txiq_cover - .text.get_power_atten - 0x4210ffb4 0x126 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4210ffb4 get_power_atten - .text.rfcal_txiq - 0x421100da 0x162 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x421100da rfcal_txiq - .text.bt_txiq_cal - 0x4211023c 0xf2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4211023c bt_txiq_cal - .text.txiq_cal_init - 0x4211032e 0x98 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4211032e txiq_cal_init - .text.pwdet_ref_code - 0x421103c6 0x74 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x421103c6 pwdet_ref_code - .text.pwdet_code_cal - 0x4211043a 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4211043a pwdet_code_cal - .text.rfcal_txcap - 0x4211047a 0x154 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x4211047a rfcal_txcap - .text.tx_cap_init - 0x421105ce 0x122 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x421105ce tx_cap_init - .text.rfcal_pwrctrl - 0x421106f0 0x1e0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x421106f0 rfcal_pwrctrl - .text.tx_pwctrl_init_cal - 0x421108d0 0x18c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x421108d0 tx_pwctrl_init_cal - .text.tx_pwctrl_init - 0x42110a5c 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x42110a5c tx_pwctrl_init - .text.bt_tx_pwctrl_init - 0x42110aec 0x1f0 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x42110aec bt_tx_pwctrl_init - .text.bt_txpwr_freq - 0x42110cdc 0x9c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - 0x42110cdc bt_txpwr_freq - .text.bt_bb_filter_sel - 0x42110d78 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42110d78 bt_bb_filter_sel - .text.bt_bb_v2_recorrect - 0x42110d86 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42110d86 bt_bb_v2_recorrect - .text.bt_bb_corr_set - 0x42110e24 0x90 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42110e24 bt_bb_corr_set - .text.bt_bb_dpo_set - 0x42110eb4 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42110eb4 bt_bb_dpo_set - .text.bt_bb_restart_set - 0x42110f1a 0x11c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42110f1a bt_bb_restart_set - .text.bt_bb_target_set - 0x42111036 0x16c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42111036 bt_bb_target_set - .text.bt_bb_detect_set - 0x421111a2 0x7c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x421111a2 bt_bb_detect_set - .text.bt_bb_gain_set - 0x4211121e 0x150 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x4211121e bt_bb_gain_set - .text.bt_bb_v2_rx_rssi_thresh - 0x4211136e 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x4211136e bt_bb_v2_rx_rssi_thresh - .text.bt_bb_v2_rx_set - 0x421113d6 0xbc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x421113d6 bt_bb_v2_rx_set - .text.bt_bb_v2_tx_set - 0x42111492 0x5e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42111492 bt_bb_v2_tx_set - .text.bt_bb_v2_version - 0x421114f0 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x421114f0 bt_bb_v2_version - .text.bt_bb_tx_cca_set - 0x42111512 0x14e /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42111512 bt_bb_tx_cca_set - .text.bt_bb_v2_init_cmplx - 0x42111660 0x70 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x42111660 bt_bb_v2_init_cmplx - .text.coex_pti_v2 - 0x421116d0 0xcc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - 0x421116d0 coex_pti_v2 - .text.lib_printf - 0x4211179c 0x8c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text.phy_printf - 0x42111828 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - 0x42111828 phy_printf - .text 0x42111852 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - 0x42111852 exit - .text 0x42111876 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - 0x42111876 _findenv - 0x42111894 getenv - .text 0x421118ae 0xac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - 0x421118ae _findenv_r - 0x4211194c _getenv_r - .text 0x4211195a 0x1146 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - 0x421119b8 _strtod_l - 0x421127ec _strtod_r - 0x421127f4 strtod_l - 0x4211281c strtod - 0x42112840 strtof_l - 0x42112966 strtof - .text 0x42112aa0 0x182 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - 0x42112bd4 _strtol_r - 0x42112bd6 strtol_l - .text 0x42112c22 0x152 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - 0x42112d26 _strtoul_r - 0x42112d28 strtoul_l - .text 0x42112d74 0x1e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - 0x42112f0e _strtoull_r - 0x42112f10 strtoull_l - 0x42112f36 strtoull - .text 0x42112f5c 0x80c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - 0x42113562 getopt - 0x42113608 getopt_long - 0x421136aa getopt_long_only - 0x4211374c __getopt_r - 0x42113758 __getopt_long_r - 0x42113760 __getopt_long_only_r - .text 0x42113768 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - 0x42113768 setenv - 0x4211378e unsetenv - .text 0x421137a4 0x1e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - 0x421137a4 _setenv_r - 0x4211391c _unsetenv_r - .text 0x4211398c 0x2978 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - 0x42113dac _vfprintf_r - 0x42116236 vfprintf - .text 0x42116304 0x1ac8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - 0x42116724 __sprint_r - 0x42116748 _vfiprintf_r - 0x42117d00 vfiprintf - .text 0x42117dcc 0xec /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - 0x42117dcc _fclose_r - 0x42117ea2 fclose - .text 0x42117eb8 0x1e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - 0x42117eb8 __sflush_r - 0x42118006 _fflush_r - 0x4211806c fflush - .text 0x421180a0 0x300 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - 0x4211823c __sfp_lock_acquire - 0x4211824c __sfp_lock_release - 0x4211825c __sfp - 0x42118336 __sinit - 0x42118364 __fp_lock_all - 0x42118382 __fp_unlock_all - .text 0x421183a0 0x100 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - 0x421183a0 _fopen_r - 0x42118482 fopen - .text 0x421184a0 0x84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - 0x421184a0 _fputc_r - 0x42118506 fputc - .text 0x42118524 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - 0x42118524 _fputs_r - 0x421185a2 fputs - .text 0x421185c0 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - 0x421185c0 _fseek_r - 0x421185c4 fseek - .text 0x421185ec 0x30e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - 0x421185ec __sfvwrite_r - .text 0x421188fa 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - 0x421188fa _fwalk_sglue - .text 0x42118962 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - 0x42118962 _printf_r - 0x42118984 printf - .text 0x421189b6 0xb0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - 0x421189b6 _putc_r - 0x42118a48 putc - .text 0x42118a66 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - 0x42118a66 _putchar_r - 0x42118a6c putchar - .text 0x42118a86 0xac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - 0x42118a86 _puts_r - 0x42118b1c puts - .text 0x42118b32 0x136 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - 0x42118b5a __srefill_r - .text 0x42118c68 0xf6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - 0x42118c68 _snprintf_r - 0x42118cdc snprintf - .text 0x42118d5e 0x90 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - 0x42118d5e _sprintf_r - 0x42118d9c sprintf - .text 0x42118dee 0xc4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - 0x42118dee sscanf - 0x42118e50 _sscanf_r - .text 0x42118eb2 0xdc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - 0x42118eb2 __sread - 0x42118ee8 __seofread - 0x42118eec __swrite - 0x42118f46 __sseek - 0x42118f82 __sclose - .text 0x42118f8e 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - 0x42118f8e vprintf - 0x42118fac _vprintf_r - .text 0x42118fb6 0x92 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - 0x42118fb6 _vsnprintf_r - 0x4211901a vsnprintf - .text 0x42119048 0xba /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - 0x42119048 __swbuf_r - .text 0x42119102 0xc8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - 0x42119102 __swsetup_r - .text 0x421191ca 0x98 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - 0x421191ca _asprintf_r - 0x4211920c asprintf - .text 0x42119262 0x326 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - 0x42119262 _fseeko_r - 0x42119562 fseeko - .text 0x42119588 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - 0x42119588 _vasprintf_r - 0x421195bc vasprintf - .text 0x421195e2 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - 0x421195e2 fls - .text 0x42119602 0x390 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - 0x42119602 _strerror_r - 0x4211995e strerror - 0x42119978 strerror_l - .text 0x42119992 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - 0x42119992 _user_strerror - .text 0x42119996 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - 0x42119996 difftime - .text 0x421199b4 0x1a2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - 0x421199b4 gmtime_r - .text 0x42119b56 0x21c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - 0x42119b56 localtime_r - .text 0x42119d72 0x520 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - 0x42119f20 mktime - .text 0x4211a292 0xbdc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - 0x4211ae66 strftime - 0x4211ae6a strftime_l - .text 0x4211ae6e 0x46 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - 0x4211ae6e time - .text 0x4211aeb4 0x172 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - 0x4211aeb4 __tzcalc_limits - .text 0x4211b026 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - 0x4211b026 __tz_lock - 0x4211b036 __tz_unlock - .text 0x4211b046 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - 0x4211b046 _tzset_unlocked - 0x4211b058 tzset - .text 0x4211b072 0x57e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - 0x4211b072 _tzset_unlocked_r - 0x4211b5da _tzset_r - .text 0x4211b5f0 0x82 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - 0x4211b5f0 _setlocale_r - 0x4211b64a __locale_mb_cur_max - 0x4211b654 setlocale - .text 0x4211b672 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - 0x4211b672 __localeconv_l - 0x4211b678 _localeconv_r - 0x4211b682 localeconv - .text 0x4211b68c 0xfc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - 0x4211b68c _reclaim_reent - .text 0x4211b788 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - 0x4211b788 __errno - .text 0x4211b79a 0x1c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - 0x4211b79a close - .text 0x4211b7b6 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - 0x4211b7b6 fstat - .text 0x4211b7da 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - 0x4211b7da gettimeofday - .text 0x4211b7fe 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - 0x4211b7fe open - .text 0x4211b83c 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - 0x4211b83c read - .text 0x4211b868 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - 0x4211b868 write - .text 0x4211b894 0xe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - 0x4211b894 nan - .text 0x4211b8a2 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - 0x4211b8a2 nanf - .text 0x4211b8ac 0x90 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - 0x4211b8ac frexp - .text 0x4211b93c 0xde /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - 0x4211b93c __call_exitprocs - .text 0x4211ba1a 0xf8e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - 0x4211bb4e _dtoa_r - .text 0x4211c9a8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - 0x4211c9a8 __env_lock - 0x4211c9b8 __env_unlock - .text 0x4211c9c8 0x596 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - 0x4211ca72 __hexdig_fun - 0x4211cab4 __gethex - .text 0x4211cf5e 0x1ce /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - 0x4211cf88 __match - 0x4211cfb8 __hexnan - .text 0x4211d12c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - 0x4211d12c _mbtowc_r - 0x4211d136 __ascii_mbtowc - .text 0x4211d170 0xbfc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - 0x4211d170 _Balloc - 0x4211d222 _Bfree - 0x4211d28a __multadd - 0x4211d34c __s2b - 0x4211d40c __hi0bits - 0x4211d452 __lo0bits - 0x4211d4bc __i2b - 0x4211d4f6 __multiply - 0x4211d676 __pow5mult - 0x4211d756 __lshift - 0x4211d85a __mcmp - 0x4211d890 __mdiff - 0x4211da02 __ulp - 0x4211da46 __b2d - 0x4211db0c __d2b - 0x4211dbec __ratio - 0x4211dc70 _mprec_log10 - 0x4211dcda __copybits - 0x4211dd26 __any_on - .text 0x4211dd6c 0x2a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - 0x4211dd6c _wctomb_r - 0x4211dd76 __ascii_wctomb - .text 0x4211dd96 0xc4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - 0x4211dd96 siscanf - 0x4211ddf8 _siscanf_r - .text 0x4211de5a 0xf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - 0x4211de5a _sniprintf_r - 0x4211decc sniprintf - .text 0x4211df4c 0x1ab6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - 0x4211e35a __ssprint_r - 0x4211e498 _svfiprintf_r - .text 0x4211fa02 0x1c46 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - 0x4211fa42 _sungetc_r - 0x4211fada __ssrefill_r - 0x4211fb26 _sfread_r - 0x4211fbc2 __ssvfiscanf_r - .text 0x42121648 0x281c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - 0x42121a68 _svfprintf_r - .text 0x42123e64 0x209a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - 0x42123ea4 __ssvfscanf_r - .text 0x42125efe 0x7a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - 0x42125efe __sflags - .text 0x42125f78 0x124 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - 0x42125f78 __swhatbuf_r - 0x42125ffc __smakebuf_r - .text 0x4212609c 0xa4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - 0x4212609c __sccl - .text 0x42126140 0x1ec /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - 0x42126140 __submore - 0x421261d8 _ungetc_r - 0x4212630e ungetc - .text 0x4212632c 0xa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - 0x4212632c __gettzinfo - .text 0x42126336 0x1f8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - 0x421264e0 _strtoll_r - 0x421264e2 strtoll_l - 0x42126508 strtoll - .text 0x4212652e 0x6c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - 0x4212652e _mbrtowc_r - 0x4212656c mbrtowc - .text 0x4212659a 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - 0x4212659a iswspace - .text 0x4212659e 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - 0x4212659e iswspace_l - .text 0x421265bc 0x16e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - 0x421265bc __extenddftf2 - .text 0x4212672a 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - 0x4212672a __trunctfdf2 - *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) - *(.wifiextrairam .wifiextrairam.*) - .wifiextrairam.5 - 0x4212699e 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x4212699e ieee80211_alloc_tx_buf - .wifiextrairam.4 - 0x42126a1e 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x42126a1e ieee80211_post_hmac_tx - .wifiextrairam.6 - 0x42126a6c 0x19e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x42126a6c ieee80211_output_do - .wifiextrairam.9 - 0x42126c0a 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - 0x42126c0a esp_wifi_internal_tx - .wifiextrairam.44 - 0x42126c3c 0x1e0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - 0x42126c3c sta_rx_eapol - .wifiextrairam.47 - 0x42126e1c 0x246 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42126e1c pm_tx_data_process - .wifiextrairam.55 - 0x42127062 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42127062 pm_on_data_tx - .wifiextrairam.18 - 0x42127066 0x68 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x42127066 pp_coex_tx_release - .wifiextrairam.20 - 0x421270ce 0x198 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x421270ce ppProcTxDone - .wifiextrairam.63 - 0x42127266 0x12a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x42127266 ppMapWaitTxq - .wifiextrairam.38 - 0x42127390 0x80 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x42127390 ppAssembleAMPDU - .wifiextrairam.71 - 0x42127410 0x6a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x42127410 ppDirectRecycleAmpdu - .wifiextrairam.73 - 0x4212747a 0xa8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - 0x4212747a ppRegressAmpdu - .wifiextrairam.5 - 0x42127522 0x1f8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - 0x42127522 esf_buf_alloc_dynamic - .wifiextrairam.5 - 0x4212771a 0x1fc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x4212771a lmacSetTxFrame - .wifiextrairam.23 - 0x42127916 0xd6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x42127916 lmacDiscardFrameExchangeSequence - .wifiextrairam.18 - 0x421279ec 0x104 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x421279ec lmacProcessTxSuccess - .wifiextrairam.38 - 0x42127af0 0x152 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - 0x42127af0 lmacProcessTxComplete - .wifiextrairam.13 - 0x42127c42 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x42127c42 rcGetRate - .wifiextrairam.19 - 0x42127ce2 0xb6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - 0x42127ce2 trc_onPPTxDone - .wifiextrairam.3 - 0x42127d98 0x9e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - 0x42127d98 hal_set_tx_pti - .wifiextrairam.3 - 0x42127e36 0x66 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x42127e36 mac_tx_set_pti - .wifiextrairam.7 - 0x42127e9c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x42127e9c hal_mac_txq_disable - .wifiextrairam.18 - 0x42127eb8 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - 0x42127eb8 hal_get_tsf_time - *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) - *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) - *(.wifislpiram .wifislpiram.*) - .wifislpiram.5 - 0x42127ee2 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42127ee2 pm_get_connectionless_status - .wifislpiram.22 - 0x42127f0e 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42127f0e pm_enable_dream_timer - .wifislpiram.24 - 0x42127f50 0x170 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42127f50 pm_update_by_connectionless_status - .wifislpiram.36 - 0x421280c0 0x7e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x421280c0 pm_handle_tbtt_interval - .wifislpiram.38 - 0x4212813e 0x152 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x4212813e pm_update_next_tbtt - .wifislpiram.43 - 0x42128290 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x42128290 pm_connectionless_wake_interval_timeout_process - .wifislpiram.44 - 0x421282d4 0x6c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - 0x421282d4 pm_connectionless_wake_window_timeout_process - .wifislpiram.4 - 0x42128340 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x42128340 hal_get_sta_tsf - .wifislpiram.7 - 0x42128368 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x42128368 hal_set_sta_light_sleep_wake_ahead_time - .wifislpiram.8 - 0x4212837c 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x4212837c hal_get_time_to_sta_next_tbtt - .wifislpiram.14 - 0x421283ba 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x421283ba tsf_hal_get_counter_value - .wifislpiram.16 - 0x421283f6 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x421283f6 tsf_hal_get_time - .wifislpiram.30 - 0x42128414 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - 0x42128414 tsf_hal_get_tbtt_interval - .wifislpiram.3 - 0x42128462 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .wifislpiram.4 - 0x42128478 0xb2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - 0x42128478 pp_timer_do_process - *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) - *libcoexist.a:(.coexsleepiram .coexsleepiram.*) - *libesp_driver_gptimer.a:gptimer.*(.text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_register_to_group .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) - *libesp_event.a:default_event_loop.*(.text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) - .text.esp_event_handler_register - 0x4212852a 0x28 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x4212852a esp_event_handler_register - .text.esp_event_handler_instance_register - 0x42128552 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x42128552 esp_event_handler_instance_register - .text.esp_event_handler_unregister - 0x4212857c 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x4212857c esp_event_handler_unregister - .text.esp_event_handler_instance_unregister - 0x421285a2 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x421285a2 esp_event_handler_instance_unregister - .text.esp_event_post - 0x421285c8 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x421285c8 esp_event_post - .text.esp_event_loop_create_default - 0x421285f2 0x42 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x421285f2 esp_event_loop_create_default - *libesp_event.a:esp_event.*(.text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.find_and_unregister_handler .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler .text.loop_remove_handler) - .text.handler_execute - 0x42128634 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.handler_instances_remove - 0x42128666 0x92 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.base_node_remove_handler - 0x421286f8 0x94 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_node_remove_handler - 0x4212878c 0xaa esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_remove_handler - 0x42128836 0x72 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.handler_instances_remove_all - 0x421288a8 0x50 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.base_node_remove_all_handler - 0x421288f8 0x54 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_node_remove_all_handler - 0x4212894c 0x50 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.handler_instances_add - 0x4212899c 0xf2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.base_node_add_handler - 0x42128a8e 0x102 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_node_add_handler - 0x42128b90 0x130 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_loop_create - 0x42128cc0 0x1d2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42128cc0 esp_event_loop_create - .text.esp_event_loop_run - 0x42128e92 0x1fc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42128e92 esp_event_loop_run - .text.esp_event_loop_run_task - 0x4212908e 0x4e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_loop_delete - 0x421290dc 0xea esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x421290dc esp_event_loop_delete - .text.esp_event_handler_register_with_internal - 0x421291c6 0x1aa esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x421291c6 esp_event_handler_register_with_internal - .text.esp_event_handler_register_with - 0x42129370 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42129370 esp_event_handler_register_with - .text.esp_event_handler_instance_register_with - 0x42129382 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42129382 esp_event_handler_instance_register_with - .text.esp_event_post_to - 0x42129392 0x162 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42129392 esp_event_post_to - .text.find_and_unregister_handler - 0x421294f4 0x110 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_unregister_with_internal - 0x42129604 0xf8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42129604 esp_event_handler_unregister_with_internal - .text.esp_event_handler_unregister_with - 0x421296fc 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x421296fc esp_event_handler_unregister_with - .text.esp_event_handler_instance_unregister_with - 0x42129712 0x18 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x42129712 esp_event_handler_instance_unregister_with - *libesp_hw_support.a:cpu.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) - .text.esp_cpu_set_breakpoint - 0x4212972a 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x4212972a esp_cpu_set_breakpoint - *libesp_hw_support.a:gdma.*(.text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) - .text.gdma_acquire_pair_handle - 0x4212977c 0xca esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_acquire_group_handle - 0x42129846 0xee esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_group_handle - 0x42129934 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_pair_handle - 0x421299fa 0x92 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_rx_channel - 0x42129a8c 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_tx_channel - 0x42129b1a 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.do_allocate_gdma_channel - 0x42129ba8 0x434 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_new_ahb_channel - 0x42129fdc 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x42129fdc gdma_new_ahb_channel - 0x42129fdc gdma_new_channel - .text.gdma_del_channel - 0x4212a00e 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4212a00e gdma_del_channel - .text.gdma_get_group_channel_id - 0x4212a070 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4212a070 gdma_get_group_channel_id - .text.gdma_connect - 0x4212a0cc 0x1d0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4212a0cc gdma_connect - .text.gdma_disconnect - 0x4212a29c 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4212a29c gdma_disconnect - .text.gdma_config_transfer - 0x4212a3b4 0x144 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4212a3b4 gdma_config_transfer - *libesp_hw_support.a:periph_ctrl.*(.text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) - .text.periph_ll_get_clk_en_mask - 0x4212a4f8 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_rst_en_mask - 0x4212a668 0x15e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_clk_en_reg - 0x4212a7c6 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_rst_en_reg - 0x4212a820 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_enable_clk_clear_rst - 0x4212a87c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_disable_clk_set_rst - 0x4212a8cc 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_reset - 0x4212a91c 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_rcc_acquire_enter - 0x4212a952 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4212a952 periph_rcc_acquire_enter - .text.periph_rcc_acquire_exit - 0x4212a97a 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4212a97a periph_rcc_acquire_exit - .text.periph_module_enable - 0x4212a99c 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4212a99c periph_module_enable - .text.periph_module_disable - 0x4212aa3c 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4212aa3c periph_module_disable - *libesp_hw_support.a:sar_periph_ctrl.*(.text .text.s_sar_adc_power_acquire .text.s_sar_adc_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) - .text.s_sar_adc_power_acquire - 0x4212aad0 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.s_sar_adc_power_release - 0x4212ab42 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_init - 0x4212abf4 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - 0x4212abf4 sar_periph_ctrl_init - .text.sar_periph_ctrl_pwdet_power_acquire - 0x4212ac0e 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - 0x4212ac0e sar_periph_ctrl_pwdet_power_acquire - .text.sar_periph_ctrl_pwdet_power_release - 0x4212ac7a 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - 0x4212ac7a sar_periph_ctrl_pwdet_power_release - .text.sar_periph_ctrl_adc_oneshot_power_acquire - 0x4212ad1c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - 0x4212ad1c sar_periph_ctrl_adc_oneshot_power_acquire - .text.sar_periph_ctrl_adc_oneshot_power_release - 0x4212ad2a 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - 0x4212ad2a sar_periph_ctrl_adc_oneshot_power_release - *libesp_system.a:esp_system_chip.*(.text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) - .text.esp_get_free_heap_size - 0x4212ad38 0x14 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - 0x4212ad38 esp_get_free_heap_size - .text.esp_get_free_internal_heap_size - 0x4212ad4c 0x18 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - 0x4212ad4c esp_get_free_internal_heap_size - *libesp_wifi.a:esp_adapter.*(.text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.disable_intr_wrapper .text.enable_intr_wrapper .text.esp_event_post_wrapper .text.esp_log_write_wrapper .text.esp_log_writev_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.esp_read_mac_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.nvs_open_wrapper .text.queue_create_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) - .text.clear_intr_wrapper - 0x4212ad64 0x2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.task_get_max_priority_wrapper - 0x4212ad66 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_flexible_period_set_wrapper - 0x4212ad6a 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_flexible_period_get_wrapper - 0x4212ad6e 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.queue_create_wrapper - 0x4212ad72 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.mutex_delete_wrapper - 0x4212ad86 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_thread_semphr_free - 0x4212ad98 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_register_start_cb_wrapper - 0x4212adac 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_register_cb_wrapper - 0x4212adba 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_process_restart_wrapper - 0x4212adc8 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_curr_phase_get_wrapper - 0x4212add6 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_curr_period_get_wrapper - 0x4212ade4 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_interval_get_wrapper - 0x4212adf2 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_status_bit_set_wrapper - 0x4212ae00 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_schm_status_bit_clear_wrapper - 0x4212ae0e 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_wifi_channel_set_wrapper - 0x4212ae1c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_wifi_request_wrapper - 0x4212ae2a 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_disable_wrapper - 0x4212ae38 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_enable_wrapper - 0x4212ae46 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_deinit_wrapper - 0x4212ae54 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.coex_init_wrapper - 0x4212ae62 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_log_writev_wrapper - 0x4212ae70 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_log_write_wrapper - 0x4212ae7e 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.get_time_wrapper - 0x4212ae9a 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.nvs_open_wrapper - 0x4212aea8 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_clock_disable_wrapper - 0x4212aeb6 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_clock_enable_wrapper - 0x4212aec8 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_reset_mac_wrapper - 0x4212aeda 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_read_mac_wrapper - 0x4212aeee 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_phy_enable_wrapper - 0x4212aefc 0x1a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_phy_disable_wrapper - 0x4212af16 0x1a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.esp_event_post_wrapper - 0x4212af30 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.task_create_wrapper - 0x4212af4c 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.task_create_pinned_to_core_wrapper - 0x4212af64 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.event_group_wait_bits_wrapper - 0x4212af80 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.queue_recv_wrapper - 0x4212afa4 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.queue_send_to_front_wrapper - 0x4212afc8 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.queue_send_to_back_wrapper - 0x4212afdc 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.queue_send_wrapper - 0x4212aff0 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.recursive_mutex_create_wrapper - 0x4212b018 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.mutex_create_wrapper - 0x4212b02c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_thread_semphr_get_wrapper - 0x4212b040 0x7a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.disable_intr_wrapper - 0x4212b0ba 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.enable_intr_wrapper - 0x4212b0cc 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.set_isr_wrapper - 0x4212b0de 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.set_intr_wrapper - 0x4212b0ec 0x36 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_create_queue - 0x4212b122 0x40 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x4212b122 wifi_create_queue - .text.wifi_create_queue_wrapper - 0x4212b162 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .text.wifi_delete_queue - 0x4212b170 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x4212b170 wifi_delete_queue - .text.wifi_delete_queue_wrapper - 0x4212b196 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *libesp_wifi.a:wifi_netif.*(.text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) - .text.wifi_ap_receive - 0x4212b1a4 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text.wifi_driver_start - 0x4212b1ca 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text.wifi_free - 0x4212b1fc 0x12 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text.wifi_transmit - 0x4212b20e 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .text.esp_wifi_create_if_driver - 0x4212b222 0x5c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x4212b222 esp_wifi_create_if_driver - .text.esp_wifi_get_if_mac - 0x4212b27e 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x4212b27e esp_wifi_get_if_mac - .text.esp_wifi_is_if_ready_when_started - 0x4212b29e 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x4212b29e esp_wifi_is_if_ready_when_started - .text.esp_wifi_register_if_rxcb - 0x4212b2b4 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x4212b2b4 esp_wifi_register_if_rxcb - *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) - .text.main_task - 0x4212b3cc 0xdc esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .text.esp_startup_start_app - 0x4212b4a8 0x76 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - 0x4212b4a8 esp_startup_start_app - *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) - *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) - .text.prvTaskDeleteWithCaps - 0x4212b51e 0x100 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.prvTaskDeleteWithCapsTask - 0x4212b61e 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.xTaskCreatePinnedToCoreWithCaps - 0x4212b636 0x9e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b636 xTaskCreatePinnedToCoreWithCaps - .text.vTaskDeleteWithCaps - 0x4212b6d4 0x102 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b6d4 vTaskDeleteWithCaps - .text.xQueueCreateWithCaps - 0x4212b7d6 0x7a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b7d6 xQueueCreateWithCaps - .text.vQueueDeleteWithCaps - 0x4212b850 0x64 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b850 vQueueDeleteWithCaps - .text.xSemaphoreCreateGenericWithCaps - 0x4212b8b4 0x9e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b8b4 xSemaphoreCreateGenericWithCaps - .text.vSemaphoreDeleteWithCaps - 0x4212b952 0x5a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4212b952 vSemaphoreDeleteWithCaps - *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) - *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) - *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) - *libhal.a:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy .text.gdma_ll_rx_enable_interrupt .text.gdma_ll_tx_enable_interrupt) - .text.gdma_ll_rx_enable_interrupt - 0x4212b9ac 0x26 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .text.gdma_ll_tx_enable_interrupt - 0x4212b9d2 0x2e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .text.gdma_ahb_hal_set_priority - 0x4212ba00 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212ba00 gdma_ahb_hal_set_priority - .text.gdma_ahb_hal_connect_peri - 0x4212ba3e 0x9a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212ba3e gdma_ahb_hal_connect_peri - .text.gdma_ahb_hal_disconnect_peri - 0x4212bad8 0x44 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bad8 gdma_ahb_hal_disconnect_peri - .text.gdma_ahb_hal_enable_burst - 0x4212bb1c 0x78 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bb1c gdma_ahb_hal_enable_burst - .text.gdma_ahb_hal_set_strategy - 0x4212bb94 0x84 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bb94 gdma_ahb_hal_set_strategy - .text.gdma_ahb_hal_enable_intr - 0x4212bc18 0x24 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bc18 gdma_ahb_hal_enable_intr - .text.gdma_ahb_hal_get_intr_status_reg - 0x4212bc3c 0x1a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bc3c gdma_ahb_hal_get_intr_status_reg - .text.gdma_ahb_hal_init - 0x4212bc56 0xa6 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4212bc56 gdma_ahb_hal_init - *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) - .text.gdma_hal_deinit - 0x4212bcfc 0x6 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bcfc gdma_hal_deinit - .text.gdma_hal_set_priority - 0x4212bd02 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd02 gdma_hal_set_priority - .text.gdma_hal_connect_peri - 0x4212bd10 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd10 gdma_hal_connect_peri - .text.gdma_hal_disconnect_peri - 0x4212bd1e 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd1e gdma_hal_disconnect_peri - .text.gdma_hal_enable_burst - 0x4212bd2c 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd2c gdma_hal_enable_burst - .text.gdma_hal_set_burst_size - 0x4212bd3a 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd3a gdma_hal_set_burst_size - .text.gdma_hal_enable_intr - 0x4212bd4a 0xe esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd4a gdma_hal_enable_intr - .text.gdma_hal_enable_access_encrypt_mem - 0x4212bd58 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4212bd58 gdma_hal_enable_access_encrypt_mem - *libhal.a:gpio_hal.*(.text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core) - .text.gpio_hal_intr_enable_on_core - 0x4212bd68 0x70 esp-idf/hal/libhal.a(gpio_hal.c.obj) - 0x4212bd68 gpio_hal_intr_enable_on_core - .text.gpio_hal_intr_disable - 0x4212bdd8 0x3a esp-idf/hal/libhal.a(gpio_hal.c.obj) - 0x4212bdd8 gpio_hal_intr_disable - *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) - *libheap.a:multi_heap.*(.text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes .text.multi_heap_walk) - .text.multi_heap_get_info_tlsf - 0x4212be12 0x22 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_register_impl - 0x4212be34 0x6c esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4212be34 multi_heap_register - 0x4212be34 multi_heap_register_impl - .text.multi_heap_free_size_impl - 0x4212bea0 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4212bea0 multi_heap_free_size_impl - 0x4212bea0 multi_heap_free_size - .text.multi_heap_minimum_free_size_impl - 0x4212beaa 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4212beaa multi_heap_minimum_free_size_impl - 0x4212beaa multi_heap_minimum_free_size - .text.multi_heap_get_info_impl - 0x4212beb4 0x94 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4212beb4 multi_heap_get_info_impl - 0x4212beb4 multi_heap_get_info - *libheap.a:tlsf.*(.text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_malloc_addr .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) - .text.control_construct - 0x4212bf48 0x1c2 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.default_walker - 0x4212c10a 0x34 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_walk_pool - 0x4212c13e 0x86 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c13e tlsf_walk_pool - .text.tlsf_fit_size - 0x4212c1c4 0x78 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c1c4 tlsf_fit_size - .text.tlsf_pool_overhead - 0x4212c23c 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c23c tlsf_pool_overhead - .text.tlsf_add_pool - 0x4212c240 0x230 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c240 tlsf_add_pool - .text.tlsf_create - 0x4212c470 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c470 tlsf_create - .text.tlsf_create_with_pool - 0x4212c498 0x42 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x4212c498 tlsf_create_with_pool - *liblog.a:log_timestamp.*(.text) - *liblog.a:log_write.*(.text .text.esp_log_set_vprintf .text.esp_log_writev) - .text.esp_log_writev - 0x4212c4da 0x36 esp-idf/log/liblog.a(log_write.c.obj) - 0x4212c4da esp_log_writev - *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) - .text.intr_handler_get - 0x4212c510 0x14 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x4212c510 intr_handler_get - *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) - .text.intr_handler_set - 0x4212c524 0x22 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x4212c524 intr_handler_set - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) - 0x4212c556 . = (. + 0x10) - *fill* 0x4212c546 0x10 - 0x4212c556 _text_end = ABSOLUTE (.) - 0x4212c556 _instruction_reserved_end = ABSOLUTE (.) - 0x4212c556 _etext = . - 0x00000000 _flash_cache_start = ABSOLUTE (0x0) - -.flash_rodata_dummy - 0x3c000020 0x130000 - 0x3c000020 _flash_rodata_dummy_start = . - 0x3c12c556 . = (ALIGN (ALIGNOF (.flash.text)) + SIZEOF (.flash.text)) - *fill* 0x3c000020 0x12c536 - 0x3c130020 . = (ALIGN (0x10000) + 0x20) - *fill* 0x3c12c556 0x3aca - -.flash.appdesc 0x3c130020 0x100 - 0x3c130020 _rodata_reserved_start = ABSOLUTE (.) - 0x3c130020 _rodata_start = ABSOLUTE (.) - *(.rodata_desc .rodata_desc.*) - .rodata_desc 0x3c130020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x3c130020 esp_app_desc - *(.rodata_custom_desc .rodata_custom_desc.*) - 0x3c130120 . = ALIGN (ALIGNOF (.flash.rodata)) - 0x00000001 ASSERT ((ADDR (.flash.rodata) == (ADDR (.flash.appdesc) + SIZEOF (.flash.appdesc))), The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.) - -.flash.rodata 0x3c130120 0x470dc - 0x3c130120 _flash_rodata_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_lock.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) - .rodata.__esp_system_init_fn_init_show_app_info.str1.4 - 0x3c130120 0x2c401 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0xee (size before relaxing) - .rodata.__esp_system_init_fn_init_efuse_show_app_info.str1.4 - 0x3c15c521 0xa2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .rodata.__esp_system_init_fn_init_efuse.str1.4 - 0x3c15c521 0x31 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - *fill* 0x3c15c521 0x3 - .rodata.__FUNCTION__.0 - 0x3c15c524 0x20 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .rodata.set_cnt_in_reg.str1.4 - 0x3c15c544 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.write_reg.str1.4 - 0x3c15c544 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_process.str1.4 - 0x3c15c544 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.1 - 0x3c15c544 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x3c15c55f 0x1 - .rodata.__func__.4 - 0x3c15c560 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x3c15c57a 0x2 - .srodata.USER_DATA_MAC_CUSTOM - 0x3c15c57c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN3 - 0x3c15c580 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN2 - 0x3c15c584 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN1 - 0x3c15c588 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN0 - 0x3c15c58c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MAJOR - 0x3c15c590 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OPTIONAL_UNIQUE_ID - 0x3c15c594 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.MAC 0x3c15c598 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_VERSION - 0x3c15c5b0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.esp_efuse_utility_check_errors.str1.4 - 0x3c15c5b4 0x79 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_read_addr_blocks - 0x3c15c5b4 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x3c15c5b4 range_read_addr_blocks - .rodata.__esp_system_init_fn_init_show_cpu_freq.str1.4 - 0x3c15c60c 0x51 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .rodata.__esp_system_init_fn_init_flash.str1.4 - 0x3c15c60c 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .rodata.__func__.0 - 0x3c15c60c 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .rodata.str1.4 - 0x3c15c62c 0xf6 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .srodata 0x3c15c62c 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .rodata.select_rtc_slow_clk.str1.4 - 0x3c15c631 0x51 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .rodata.esp_clk_init.str1.4 - 0x3c15c631 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) - *fill* 0x3c15c631 0x3 - .rodata.__func__.0 - 0x3c15c634 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) - *fill* 0x3c15c641 0x3 - .srodata 0x3c15c644 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .rodata.str1.4 - 0x3c15c648 0x60 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .rodata.__func__.0 - 0x3c15c648 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .rodata.str1.4 - 0x3c15c662 0x13a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - *fill* 0x3c15c662 0x2 - .rodata.cache_ilg_bits - 0x3c15c664 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x3c15c664 cache_ilg_bits - .rodata.core0_acs_bits - 0x3c15c67c 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x3c15c67c core0_acs_bits - .rodata.esp_panic_handler.str1.4 - 0x3c15c6ac 0x87 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .rodata.do_system_init_fn.str1.4 - 0x3c15c6ac 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .srodata.g_startup_fn - 0x3c15c6ac 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x3c15c6ac g_startup_fn - .rodata.frame_to_panic_info.str1.4 - 0x3c15c6b0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .rodata.print_state_for_core.str1.4 - 0x3c15c6b0 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .rodata.esp_mprot_mem_type_to_str.str1.4 - 0x3c15c6b0 0x48 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_print_register_array.str1.4 - 0x3c15c6b0 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_print_basic_backtrace.str1.4 - 0x3c15c6b0 0x1f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.print_memprot_err_details.str1.4 - 0x3c15c6b0 0x8f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.print_assist_debug_details.str1.4 - 0x3c15c6b0 0x8d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.print_cache_err_details.str1.4 - 0x3c15c6b0 0x45 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_print_registers.str1.4 - 0x3c15c6b0 0x18 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_soc_fill_info.str1.4 - 0x3c15c6b0 0x6c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_arch_fill_info.str1.4 - 0x3c15c6b0 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.str1.4 - 0x3c15c6b0 0x30d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.reason.0 - 0x3c15c6b0 0x40 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata 0x3c15c6f0 0x94 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .srodata.esp_unknown_msg - 0x3c15c784 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .rodata.str1.4 - 0x3c15c78a 0x1826 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - *fill* 0x3c15c78a 0x2 - .rodata.esp_err_msg_table - 0x3c15c78c 0x6d8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .rodata.log_level_set.str1.4 - 0x3c15ce64 0x2 esp-idf/log/liblog.a(tag_log_level.c.obj) - .rodata.esp_log_cache_set_level.str1.4 - 0x3c15ce64 0x95 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .rodata.__func__.0 - 0x3c15ce64 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .rodata.__func__.1 - 0x3c15ce7c 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .rodata.__func__.1 - 0x3c15ce94 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.5 - 0x3c15ceac 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x3c15cebd 0x3 - .rodata.__func__.6 - 0x3c15cec0 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x3c15ced2 0x2 - .rodata.__func__.9 - 0x3c15ced4 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.10 - 0x3c15ceec 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x3c15cf06 0x2 - .rodata.__func__.11 - 0x3c15cf08 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x3c15cf21 0x3 - .rodata.__func__.12 - 0x3c15cf24 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.register_heap.str1.4 - 0x3c15cf35 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .rodata.heap_caps_init.str1.4 - 0x3c15cf35 0x11c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x3c15cf35 0x3 - .rodata.__func__.1 - 0x3c15cf38 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .rodata.__func__.2 - 0x3c15cf4c 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x3c15cf5b 0x1 - .rodata.__func__.3 - 0x3c15cf5c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .rodata.assert_valid_block.str1.4 - 0x3c15cf6a 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.multi_heap_register_impl.str1.4 - 0x3c15cf6a 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.multi_heap_get_first_block.str1.4 - 0x3c15cf6a 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x3c15cf6a 0x2 - .rodata.__func__.4 - 0x3c15cf6c 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.0 - 0x3c15cf84 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.control_construct.str1.4 - 0x3c15cf9d 0xca esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.default_walker.str1.4 - 0x3c15cf9d 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_check.str1.4 - 0x3c15cf9d 0x4a esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_add_pool.str1.4 - 0x3c15cf9d 0x176 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_remove_pool.str1.4 - 0x3c15cf9d 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_create.str1.4 - 0x3c15cf9d 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_malloc.str1.4 - 0x3c15cf9d 0x1e7 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_memalign_offs.str1.4 - 0x3c15cf9d 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_free.str1.4 - 0x3c15cf9d 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_realloc.str1.4 - 0x3c15cf9d 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15cf9d 0x3 - .rodata.__func__.0 - 0x3c15cfa0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.1 - 0x3c15cfb0 0xd esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15cfbd 0x3 - .rodata.__func__.2 - 0x3c15cfc0 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15cfd1 0x3 - .rodata.__func__.3 - 0x3c15cfd4 0xd esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15cfe1 0x3 - .rodata.__func__.5 - 0x3c15cfe4 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15cff5 0x3 - .rodata.__func__.6 - 0x3c15cff8 0xa esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d002 0x2 - .rodata.__func__.7 - 0x3c15d004 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d017 0x1 - .rodata.__func__.8 - 0x3c15d018 0xc esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.9 - 0x3c15d024 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.10 - 0x3c15d034 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d047 0x1 - .rodata.__func__.11 - 0x3c15d048 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d05e 0x2 - .rodata.__func__.12 - 0x3c15d060 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d072 0x2 - .rodata.__func__.13 - 0x3c15d074 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d086 0x2 - .rodata.__func__.14 - 0x3c15d088 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d09a 0x2 - .rodata.__func__.16 - 0x3c15d09c 0xa esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d0a6 0x2 - .rodata.__func__.17 - 0x3c15d0a8 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d0ba 0x2 - .rodata.__func__.19 - 0x3c15d0bc 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x3c15d0c5 0x3 - .rodata.__func__.20 - 0x3c15d0c8 0xb esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.s_prepare_reserved_regions.str1.4 - 0x3c15d0d3 0xfa esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - *fill* 0x3c15d0d3 0x1 - .rodata.__func__.0 - 0x3c15d0d4 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - *fill* 0x3c15d0ef 0x1 - .srodata.soc_memory_region_count - 0x3c15d0f0 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x3c15d0f0 soc_memory_region_count - .rodata.soc_memory_regions - 0x3c15d0f4 0x64 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x3c15d0f4 soc_memory_regions - .rodata.str1.4 - 0x3c15d158 0x1b esp-idf/heap/libheap.a(memory_layout.c.obj) - .rodata.soc_memory_types - 0x3c15d158 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x3c15d158 soc_memory_types - .rodata.str1.4 - 0x3c15d188 0x179 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .rodata.__func__.0 - 0x3c15d188 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - *fill* 0x3c15d19f 0x1 - .rodata.__func__.1 - 0x3c15d1a0 0x18 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .rodata.__func__.2 - 0x3c15d1b8 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .rodata.find_desc_for_source.str1.4 - 0x3c15d1c7 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.is_vect_desc_usable.str1.4 - 0x3c15d1c7 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.esp_intr_alloc_intrstatus.str1.4 - 0x3c15d1c7 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.intr_free_for_current_cpu.str1.4 - 0x3c15d1c7 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d1c7 0x1 - .rodata.__func__.2 - 0x3c15d1c8 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d1d9 0x3 - .rodata.__func__.3 - 0x3c15d1dc 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d1f6 0x2 - .rodata.__func__.5 - 0x3c15d1f8 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d212 0x2 - .rodata.__func__.6 - 0x3c15d214 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d22a 0x2 - .rodata.__func__.7 - 0x3c15d22c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x3c15d245 0x3 - .rodata.__func__.9 - 0x3c15d248 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.__func__.10 - 0x3c15d25c 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.periph_module_enable.str1.4 - 0x3c15d271 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x3c15d271 0x3 - .rodata.__func__.0 - 0x3c15d274 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .rodata.__func__.1 - 0x3c15d288 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x3c15d29e 0x2 - .rodata.__func__.2 - 0x3c15d2a0 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .rodata.gpio_ll_deepsleep_wakeup_is_enabled.str1.4 - 0x3c15d2b5 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .rodata.esp_sleep_config_gpio_isolate.str1.4 - 0x3c15d2b5 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .rodata.esp_sleep_enable_gpio_switch.str1.4 - 0x3c15d2b5 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - *fill* 0x3c15d2b5 0x3 - .rodata.__func__.0 - 0x3c15d2b8 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - *fill* 0x3c15d2d9 0x3 - .rodata.__func__.1 - 0x3c15d2dc 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .rodata.regi2c_saradc_disable.str1.4 - 0x3c15d300 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .rodata.str1.4 - 0x3c15d300 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .rodata.set_ocode_by_efuse.str1.4 - 0x3c15d300 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata.get_dig_dbias_by_efuse.str1.4 - 0x3c15d300 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata.calibrate_ocode.str1.4 - 0x3c15d300 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata.__func__.0 - 0x3c15d300 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x3c15d317 0x1 - .rodata.__func__.1 - 0x3c15d318 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x3c15d32f 0x1 - .rodata.__func__.2 - 0x3c15d330 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x3c15d343 0x1 - .rodata 0x3c15d344 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata.rtc_clk_cal_ratio.str1.4 - 0x3c15d34e 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .rodata.rtc_time_us_to_slowclk.str1.4 - 0x3c15d34e 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - *fill* 0x3c15d34e 0x2 - .rodata.__func__.0 - 0x3c15d350 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - *fill* 0x3c15d367 0x1 - .rodata.__func__.1 - 0x3c15d368 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .rodata.s_sar_adc_power_release.str1.4 - 0x3c15d374 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .rodata.sar_periph_ctrl_pwdet_power_release.str1.4 - 0x3c15d374 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .rodata.__func__.0 - 0x3c15d374 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .rodata.__func__.1 - 0x3c15d38c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .rodata.esp_mprot_oper_type_to_str.str1.4 - 0x3c15d3b0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .rodata.esp_mprot_pms_world_to_str.str1.4 - 0x3c15d3b0 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .rodata.s_sleep_hook_register.str1.4 - 0x3c15d3b0 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.str1.4 - 0x3c15d3b0 0x187 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_sleep_sub_mode_config.str1.4 - 0x3c15d3b0 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.__func__.4 - 0x3c15d3b0 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.clk_tree_rtc_slow_calibration.str1.4 - 0x3c15d3ca 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 - 0x3c15d3ca 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - *fill* 0x3c15d3ca 0x2 - .rodata.__func__.0 - 0x3c15d3cc 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - *fill* 0x3c15d3ed 0x3 - .rodata.__func__.1 - 0x3c15d3f0 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .rodata.main_task.str1.4 - 0x3c15d40e 0xba esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .rodata.esp_startup_start_app.str1.4 - 0x3c15d40e 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - *fill* 0x3c15d40e 0x2 - .rodata.__func__.0 - 0x3c15d410 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) - *fill* 0x3c15d41a 0x2 - .rodata.__func__.1 - 0x3c15d41c 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .rodata.prvNotifyQueueSetContainer.str1.4 - 0x3c15d432 0xb2 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGenericReset.str1.4 - 0x3c15d432 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGenericCreateStatic.str1.4 - 0x3c15d432 0x37 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGenericGetStaticBuffers.str1.4 - 0x3c15d432 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGetMutexHolder.str1.4 - 0x3c15d432 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 - 0x3c15d432 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGenericSend.str1.4 - 0x3c15d432 0xfb esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.prvInitialiseMutex.str1.4 - 0x3c15d432 0x3b esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGiveMutexRecursive.str1.4 - 0x3c15d432 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGiveFromISR.str1.4 - 0x3c15d432 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueReceive.str1.4 - 0x3c15d432 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueReceiveFromISR.str1.4 - 0x3c15d432 0x76 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.uxQueueMessagesWaiting.str1.4 - 0x3c15d432 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d432 0x2 - .rodata.__func__.1 - 0x3c15d434 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d44e 0x2 - .rodata.__func__.2 - 0x3c15d450 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d45d 0x3 - .rodata.__func__.3 - 0x3c15d460 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d47e 0x2 - .rodata.__func__.4 - 0x3c15d480 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d497 0x1 - .rodata.__func__.5 - 0x3c15d498 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d4af 0x1 - .rodata.__func__.7 - 0x3c15d4b0 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d4c5 0x3 - .rodata.__func__.9 - 0x3c15d4c8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.10 - 0x3c15d4dc 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d4ea 0x2 - .rodata.__func__.11 - 0x3c15d4ec 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d4fe 0x2 - .rodata.__func__.12 - 0x3c15d500 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d519 0x3 - .rodata.__func__.13 - 0x3c15d51c 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d537 0x1 - .rodata.__func__.14 - 0x3c15d538 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d54a 0x2 - .rodata.__func__.15 - 0x3c15d54c 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d56a 0x2 - .rodata.__func__.16 - 0x3c15d56c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.17 - 0x3c15d590 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d5a9 0x3 - .rodata.__func__.18 - 0x3c15d5ac 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d5c5 0x3 - .rodata.__func__.20 - 0x3c15d5c8 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d5dd 0x3 - .rodata.__func__.21 - 0x3c15d5e0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.22 - 0x3c15d5f4 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d612 0x2 - .rodata.__func__.23 - 0x3c15d614 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x3c15d62e 0x2 - .rodata.__func__.24 - 0x3c15d630 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.25 - 0x3c15d644 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.prvTaskIsTaskSuspended.str1.4 - 0x3c15d657 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.prvDeleteTCB.str1.4 - 0x3c15d657 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.prvInitialiseNewTask.str1.4 - 0x3c15d657 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskDelete.str1.4 - 0x3c15d657 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.eTaskGetState.str1.4 - 0x3c15d657 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGetStaticBuffers.str1.4 - 0x3c15d657 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskIncrementTick.str1.4 - 0x3c15d657 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskResumeAll.str1.4 - 0x3c15d657 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskSwitchContext.str1.4 - 0x3c15d657 0x45 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskSuspend.str1.4 - 0x3c15d657 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskPlaceOnEventList.str1.4 - 0x3c15d657 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskPlaceOnUnorderedEventList.str1.4 - 0x3c15d657 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskRemoveFromEventList.str1.4 - 0x3c15d657 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskRemoveFromUnorderedEventList.str1.4 - 0x3c15d657 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskSetTimeOutState.str1.4 - 0x3c15d657 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskCheckForTimeOut.str1.4 - 0x3c15d657 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskPriorityDisinherit.str1.4 - 0x3c15d657 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 - 0x3c15d657 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.ulTaskGenericNotifyTake.str1.4 - 0x3c15d657 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGenericNotify.str1.4 - 0x3c15d657 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskCreatePinnedToCore.str1.4 - 0x3c15d657 0x101 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskCreateStaticPinnedToCore.str1.4 - 0x3c15d657 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.prvCreateIdleTasks.str1.4 - 0x3c15d657 0x5 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.vTaskStartScheduler.str1.4 - 0x3c15d657 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGetIdleTaskHandleForCore.str1.4 - 0x3c15d657 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d657 0x1 - .rodata.__func__.2 - 0x3c15d658 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d679 0x3 - .rodata.__func__.3 - 0x3c15d67c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d69a 0x2 - .rodata.__func__.4 - 0x3c15d69c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d6ba 0x2 - .rodata.__func__.5 - 0x3c15d6bc 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d6d1 0x3 - .rodata.__func__.6 - 0x3c15d6d4 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.8 - 0x3c15d6ec 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d70a 0x2 - .rodata.__func__.12 - 0x3c15d70c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.13 - 0x3c15d724 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.14 - 0x3c15d748 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.16 - 0x3c15d760 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d775 0x3 - .rodata.__func__.18 - 0x3c15d778 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d79a 0x2 - .rodata.__func__.19 - 0x3c15d79c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d7b5 0x3 - .rodata.__func__.20 - 0x3c15d7b8 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.21 - 0x3c15d7d8 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d7f7 0x1 - .rodata.__func__.22 - 0x3c15d7f8 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d80e 0x2 - .rodata.__func__.23 - 0x3c15d810 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d823 0x1 - .rodata.__func__.24 - 0x3c15d824 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d837 0x1 - .rodata.__func__.27 - 0x3c15d838 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d84e 0x2 - .rodata.__func__.29 - 0x3c15d850 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d85e 0x2 - .rodata.__func__.30 - 0x3c15d860 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d86f 0x1 - .rodata.__func__.31 - 0x3c15d870 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.35 - 0x3c15d884 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d891 0x3 - .rodata.__func__.37 - 0x3c15d894 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d8a2 0x2 - .rodata.__func__.38 - 0x3c15d8a4 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d8af 0x1 - .rodata.__func__.40 - 0x3c15d8b0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x3c15d8bd 0x3 - .rodata.__func__.41 - 0x3c15d8c0 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .srodata.uxTopUsedPriority - 0x3c15d8cc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x3c15d8cc uxTopUsedPriority - .rodata.vPortTaskWrapper.str1.4 - 0x3c15d8d0 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vPortTLSPointersDelCb.str1.4 - 0x3c15d8d0 0x73 esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.pxPortInitialiseStack.str1.4 - 0x3c15d8d0 0x64 esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vPortAssertIfInISR.str1.4 - 0x3c15d8d0 0x19 esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vPortExitCritical.str1.4 - 0x3c15d8d0 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vApplicationStackOverflowHook.str1.4 - 0x3c15d8d0 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.__func__.0 - 0x3c15d8d0 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) - *fill* 0x3c15d8e2 0x2 - .rodata.__func__.1 - 0x3c15d8e4 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) - *fill* 0x3c15d8f7 0x1 - .rodata.__func__.2 - 0x3c15d8f8 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vApplicationGetIdleTaskMemory.str1.4 - 0x3c15d90e 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x3c15d90e 0x2 - .rodata.__func__.0 - 0x3c15d910 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x3c15d92f 0x1 - .rodata.__func__.1 - 0x3c15d930 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) - .rodata.vSystimerSetup.str1.4 - 0x3c15d94e 0xa8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - *fill* 0x3c15d94e 0x2 - .rodata.__func__.0 - 0x3c15d950 0xf esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .rodata.str1.4 - 0x3c15d95f 0x91 esp-idf/newlib/libnewlib.a(locks.c.obj) - .rodata.esp_newlib_locks_init.str1.4 - 0x3c15d95f 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x3c15d95f 0x1 - .rodata.__func__.4 - 0x3c15d960 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x3c15d976 0x2 - .rodata.__func__.3 - 0x3c15d978 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x3c15d98b 0x1 - .rodata.__func__.2 - 0x3c15d98c 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x3c15d9a1 0x3 - .rodata.__func__.1 - 0x3c15d9a4 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x3c15d9b9 0x3 - .rodata.__func__.0 - 0x3c15d9bc 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) - .rodata.esp_newlib_init_global_stdio.str1.4 - 0x3c15d9c8 0x6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .rodata.__esp_system_init_fn_init_newlib_stdio.str1.4 - 0x3c15d9c8 0xd esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .rodata.pthread_exit.str1.4 - 0x3c15d9c8 0x57 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_mutex_unlock.str1.4 - 0x3c15d9c8 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.0 - 0x3c15d9c8 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 - 0x3c15d9dd 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - *fill* 0x3c15d9dd 0x3 - .rodata.__func__.0 - 0x3c15d9e0 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .rodata.esp_timer_impl_init_system_time.str1.4 - 0x3c15da0e 0x46 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .rodata.str1.4 - 0x3c15da0e 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .rodata.esp_timer_impl_init.str1.4 - 0x3c15da0e 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - *fill* 0x3c15da0e 0x2 - .rodata.__func__.0 - 0x3c15da10 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .rodata.uart_access.str1.4 - 0x3c15da2c 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_fcntl.str1.4 - 0x3c15da2c 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_return_char.str1.4 - 0x3c15da2c 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_read.str1.4 - 0x3c15da2c 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_vfs_dev_register.str1.4 - 0x3c15da2c 0x87 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.__func__.7 - 0x3c15da2c 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da42 0x2 - .rodata.__func__.6 - 0x3c15da44 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da4f 0x1 - .rodata.__func__.5 - 0x3c15da50 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da61 0x3 - .rodata.__func__.4 - 0x3c15da64 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da6e 0x2 - .rodata.__func__.3 - 0x3c15da70 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da7b 0x1 - .rodata.__func__.2 - 0x3c15da7c 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da87 0x1 - .rodata.__func__.1 - 0x3c15da88 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da93 0x1 - .rodata.__func__.0 - 0x3c15da94 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *fill* 0x3c15da9f 0x1 - .rodata.s_vfs_uart - 0x3c15daa0 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_termios - 0x3c15dad8 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_select - 0x3c15daf4 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_dir - 0x3c15db0c 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .srodata.s_uart_mount_points - 0x3c15db4c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .srodata.s_ctx - 0x3c15db54 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_reenable_intr_mask.str1.4 - 0x3c15db5c 0x2c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_pattern_enqueue.str1.4 - 0x3c15db5c 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_word_length.str1.4 - 0x3c15db5c 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_stop_bits.str1.4 - 0x3c15db5c 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_set_baudrate.str1.4 - 0x3c15db5c 0x25 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_pattern_pop_pos.str1.4 - 0x3c15db5c 0x27 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_enable_tx_intr.str1.4 - 0x3c15db5c 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_param_config.str1.4 - 0x3c15db5c 0x5b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_wait_tx_done.str1.4 - 0x3c15db5c 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_tx_chars.str1.4 - 0x3c15db5c 0x21 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_write_bytes_with_break.str1.4 - 0x3c15db5c 0x71 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_flush_input.str1.4 - 0x3c15db5c 0x23 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_driver_delete.str1.4 - 0x3c15db5c 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.uart_driver_install.str1.4 - 0x3c15db5c 0x1c8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.39 - 0x3c15db5c 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15db6f 0x1 - .rodata.__FUNCTION__.37 - 0x3c15db70 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.36 - 0x3c15db84 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15db95 0x3 - .rodata.__FUNCTION__.34 - 0x3c15db98 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dbb3 0x1 - .rodata.__FUNCTION__.33 - 0x3c15dbb4 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.32 - 0x3c15dbcc 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.30 - 0x3c15dbdc 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dbed 0x3 - .rodata.__func__.28 - 0x3c15dbf0 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc02 0x2 - .rodata.__FUNCTION__.27 - 0x3c15dc04 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc16 0x2 - .rodata.__FUNCTION__.26 - 0x3c15dc18 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc29 0x3 - .rodata.__FUNCTION__.19 - 0x3c15dc2c 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.17 - 0x3c15dc40 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc59 0x3 - .rodata.__FUNCTION__.14 - 0x3c15dc5c 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc73 0x1 - .rodata.__FUNCTION__.7 - 0x3c15dc74 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc86 0x2 - .rodata.__FUNCTION__.6 - 0x3c15dc88 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dc9a 0x2 - .rodata.__FUNCTION__.5 - 0x3c15dc9c 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.4 - 0x3c15dcac 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.__FUNCTION__.3 - 0x3c15dcbc 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dccf 0x1 - .rodata.__FUNCTION__.2 - 0x3c15dcd0 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dce3 0x1 - .rodata.__FUNCTION__.1 - 0x3c15dce4 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x3c15dcf9 0x3 - .rodata.__FUNCTION__.0 - 0x3c15dcfc 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .rodata.usb_serial_jtag_return_char.str1.4 - 0x3c15dd11 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.__esp_system_init_fn_init_vfs_usj_sec.str1.4 - 0x3c15dd11 0xf esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - *fill* 0x3c15dd11 0x3 - .rodata.__func__.0 - 0x3c15dd14 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag - 0x3c15dd30 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag_termios - 0x3c15dd68 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag_select - 0x3c15dd84 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.console_open.str1.4 - 0x3c15dd9c 0x1b esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.esp_vfs_dev_console_register.str1.4 - 0x3c15dd9c 0xd esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console - 0x3c15dd9c 0x38 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_termios - 0x3c15ddd4 0x1c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_select - 0x3c15ddf0 0x18 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_dir - 0x3c15de08 0x40 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.esp_minify_vfs.str1.4 - 0x3c15de48 0x27 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.translate_path.str1.4 - 0x3c15de48 0x43 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.esp_vfs_register_fd_range.str1.4 - 0x3c15de48 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.__func__.1 - 0x3c15de48 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) - *fill* 0x3c15de57 0x1 - .rodata.__func__.0 - 0x3c15de58 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.vfs_null_open.str1.4 - 0x3c15de67 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.esp_vfs_null_register.str1.4 - 0x3c15de67 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) - *fill* 0x3c15de67 0x1 - .rodata.s_vfs_null - 0x3c15de68 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.s_vfs_null_dir - 0x3c15dea0 0x40 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.led_light_cmd_handler.str1.4 - 0x3c15dee0 0x131 esp-idf/main/libmain.a(app_main.c.obj) - .rodata.bulk_write_cb.str1.4 - 0x3c15dee0 0x111 esp-idf/main/libmain.a(app_main.c.obj) - .rodata.app_main.str1.4 - 0x3c15dee0 0xbe esp-idf/main/libmain.a(app_main.c.obj) - .rodata.__func__.0 - 0x3c15dee0 0x9 esp-idf/main/libmain.a(app_main.c.obj) - .rodata.app_light_set_led.str1.4 - 0x3c15dee9 0x10 esp-idf/main/libmain.a(app_driver.c.obj) - .rodata.esp_rmaker_get_cmd_info.str1.4 - 0x3c15dee9 0x76 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_prepare_response.str1.4 - 0x3c15dee9 0x40 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_get_user_role_string.str1.4 - 0x3c15dee9 0x29 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_register.str1.4 - 0x3c15dee9 0xb4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_response_handler.str1.4 - 0x3c15dee9 0x106 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.esp_rmaker_cmd_resp_test_send.str1.4 - 0x3c15dee9 0x67 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .rodata.json_tok_to_bool.str1.4 - 0x3c15dee9 0x16 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .rodata.esp_rmaker_register_node.str1.4 - 0x3c15dee9 0xb1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_event_handler.str1.4 - 0x3c15dee9 0xd esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_populate_node_id.str1.4 - 0x3c15dee9 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_mqtt_conn_params_init.str1.4 - 0x3c15dee9 0x2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_init.str1.4 - 0x3c15dee9 0x20f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_node_init.str1.4 - 0x3c15dee9 0x23 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_task.str1.4 - 0x3c15dee9 0x290 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .rodata.esp_rmaker_start.str1.4 - 0x3c15dee9 0x120 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - *fill* 0x3c15dee9 0x3 - .rodata.__func__.0 - 0x3c15deec 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - *fill* 0x3c15defd 0x3 - .srodata.RMAKER_EVENT - 0x3c15df00 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - 0x3c15df00 RMAKER_EVENT - .rodata.esp_rmaker_node_create.str1.4 - 0x3c15df04 0x16a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_add_attribute.str1.4 - 0x3c15df04 0x123 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_add_device.str1.4 - 0x3c15df04 0x78 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_get_device_by_name.str1.4 - 0x3c15df04 0x37 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_node_get_first_device.str1.4 - 0x3c15df04 0x29 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .rodata.esp_rmaker_default_bulk_write_cb.str1.4 - 0x3c15df04 0x85 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_delete.str1.4 - 0x3c15df04 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.__esp_rmaker_device_create.str1.4 - 0x3c15df04 0xde esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_add_param.str1.4 - 0x3c15df04 0x74 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_add_attribute.str1.4 - 0x3c15df04 0x10a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_add_cb.str1.4 - 0x3c15df04 0x2a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_get_name.str1.4 - 0x3c15df04 0x2b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_device_get_param_by_type.str1.4 - 0x3c15df04 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .rodata.esp_rmaker_param_get_buf.str1.4 - 0x3c15df04 0x4f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_allocate_and_populate_params.str1.4 - 0x3c15df04 0x81 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_report_param_internal.str1.4 - 0x3c15df04 0xc9 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_device_set_params.str1.4 - 0x3c15df04 0xa0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.__esp_rmaker_param_report_time_series_records.str1.4 - 0x3c15df04 0x6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.__esp_rmaker_param_report_time_series.str1.4 - 0x3c15df04 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_report_time_series.str1.4 - 0x3c15df04 0x126 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_register_for_set_params.str1.4 - 0x3c15df04 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_get_node_params.str1.4 - 0x3c15df04 0x72 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_handle_set_params.str1.4 - 0x3c15df04 0x23 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_get_stored_value.str1.4 - 0x3c15df04 0x4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_create.str1.4 - 0x3c15df04 0x1ee esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_add_bounds.str1.4 - 0x3c15df04 0xc1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_add_array_max_count.str1.4 - 0x3c15df04 0x33 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_add_ui_type.str1.4 - 0x3c15df04 0x35 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_update.str1.4 - 0x3c15df04 0x40 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_simple_ts_data_report_internal.str1.4 - 0x3c15df04 0xe9 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_param_report_simple_time_series.str1.4 - 0x3c15df04 0x42 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_report_node_state.str1.4 - 0x3c15df04 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_params_mqtt_init.str1.4 - 0x3c15df04 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.str1.4 - 0x3c15df04 0x46 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.cb_srcs - 0x3c15df04 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .rodata.esp_rmaker_report_attribute.str1.4 - 0x3c15df1c 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_info.str1.4 - 0x3c15df1c 0x71 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_node_attributes.str1.4 - 0x3c15df1c 0xb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_data_type.str1.4 - 0x3c15df1c 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_param_config.str1.4 - 0x3c15df1c 0x6c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_devices_or_services.str1.4 - 0x3c15df1c 0x1b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.__esp_rmaker_get_node_config.str1.4 - 0x3c15df1c 0x8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_get_node_config.str1.4 - 0x3c15df1c 0xf8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_report_node_config.str1.4 - 0x3c15df1c 0x5f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .rodata.esp_rmaker_get_mqtt_host.str1.4 - 0x3c15df1c 0x3b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .rodata.esp_rmaker_get_client_cert.str1.4 - 0x3c15df1c 0xc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .rodata.esp_rmaker_get_client_key.str1.4 - 0x3c15df1c 0xb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .rodata.esp_rmaker_time_add_service.str1.4 - 0x3c15df1c 0x6e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .rodata.esp_rmaker_time_service_cb.str1.4 - 0x3c15df1c 0x53 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .rodata.esp_rmaker_user_mapping_detect_reset.str1.4 - 0x3c15df1c 0x1c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_user_mapping_endpoint_create.str1.4 - 0x3c15df1c 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_user_mapping_event_handler.str1.4 - 0x3c15df1c 0xff esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_start_user_node_mapping.str1.4 - 0x3c15df1c 0x144 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_reset_user_node_mapping.str1.4 - 0x3c15df1c 0x7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_user_mapping_handler.str1.4 - 0x3c15df1c 0x137 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_user_mapping_cb.str1.4 - 0x3c15df1c 0x87 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_user_node_mapping_init.str1.4 - 0x3c15df1c 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .rodata.esp_rmaker_schedule_timestamp_common_cb.str1.4 - 0x3c15df1c 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_add_to_list.str1.4 - 0x3c15df1c 0x7e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_remove_from_list.str1.4 - 0x3c15df1c 0x7a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_prepare_config.str1.4 - 0x3c15df1c 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_find_or_create.str1.4 - 0x3c15df1c 0xe7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_action.str1.4 - 0x3c15df1c 0x2f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_trigger.str1.4 - 0x3c15df1c 0x2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_info_and_flags.str1.4 - 0x3c15df1c 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_validity.str1.4 - 0x3c15df1c 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_timesync_timer_init.str1.4 - 0x3c15df1c 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.__esp_rmaker_schedule_get_params.str1.4 - 0x3c15df1c 0x57 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_get_params.str1.4 - 0x3c15df1c 0xbc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_report_params.str1.4 - 0x3c15df1c 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_trigger_work_cb.str1.4 - 0x3c15df1c 0x49 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_operation_enable.str1.4 - 0x3c15df1c 0xc8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_perform_operation.str1.4 - 0x3c15df1c 0x73 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_timesync_timer_work_cb.str1.4 - 0x3c15df1c 0x3f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_get_operation_from_str.str1.4 - 0x3c15df1c 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_operation.str1.4 - 0x3c15df1c 0x7a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_parse_json.str1.4 - 0x3c15df1c 0x79 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.write_cb.str1.4 - 0x3c15df1c 0x74 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_schedule_enable.str1.4 - 0x3c15df1c 0x9b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .rodata.esp_rmaker_scenes_add_to_list.str1.4 - 0x3c15df1c 0x8b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_remove_from_list.str1.4 - 0x3c15df1c 0x73 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_find_or_create.str1.4 - 0x3c15df1c 0xdc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_parse_info_and_flags.str1.4 - 0x3c15df1c 0xe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_parse_action.str1.4 - 0x3c15df1c 0x2f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_perform_operation.str1.4 - 0x3c15df1c 0x9f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.__esp_rmaker_scenes_get_params.str1.4 - 0x3c15df1c 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_get_params.str1.4 - 0x3c15df1c 0xb6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_report_params.str1.4 - 0x3c15df1c 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_get_operation_from_str.str1.4 - 0x3c15df1c 0x2b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_parse_operation.str1.4 - 0x3c15df1c 0x73 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_parse_json.str1.4 - 0x3c15df1c 0x75 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.write_cb.str1.4 - 0x3c15df1c 0x74 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_scenes_enable.str1.4 - 0x3c15df1c 0x92 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .rodata.esp_rmaker_publish_response.str1.4 - 0x3c15df1c 0x96 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .rodata.esp_rmaker_cmd_resp_check_pending.str1.4 - 0x3c15df1c 0x71 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .rodata.esp_rmaker_test_cmd_resp.str1.4 - 0x3c15df1c 0x4f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .rodata.esp_rmaker_cmd_response_enable.str1.4 - 0x3c15df1c 0xac esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .rodata.esp_rmaker_get_secure_boot_digest.str1.4 - 0x3c15df1c 0x53 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .rodata.generate_claim_init_request.str1.4 - 0x3c15df1c 0x78 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_perform_common.str1.4 - 0x3c15df1c 0x128 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.read_hmac_key.str1.4 - 0x3c15df1c 0x5f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.handle_self_claim_init_response.str1.4 - 0x3c15df1c 0xb6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_perform_init.str1.4 - 0x3c15df1c 0x6c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.handle_claim_verify_response.str1.4 - 0x3c15df1c 0xec esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_perform_verify.str1.4 - 0x3c15df1c 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_generate_key.str1.4 - 0x3c15df1c 0x117 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_generate_csr.str1.4 - 0x3c15df1c 0xc0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_init.str1.4 - 0x3c15df1c 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_self_claim_perform.str1.4 - 0x3c15df1c 0xdd esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.__esp_rmaker_claim_init.str1.4 - 0x3c15df1c 0x11d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_claim_task.str1.4 - 0x3c15df1c 0x6f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.esp_rmaker_self_claim_init.str1.4 - 0x3c15df1c 0x3d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .rodata.set_property_values.str1.4 - 0x3c15df1c 0x31 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.get_property_values.str1.4 - 0x3c15df1c 0x53 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.__esp_rmaker_local_ctrl_get_nvs.str1.4 - 0x3c15df1c 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_get_pop.str1.4 - 0x3c15df1c 0x79 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.__esp_rmaker_start_local_ctrl_service.str1.4 - 0x3c15df1c 0x1da esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_prov_event_handler.str1.4 - 0x3c15df1c 0x17 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_service_enable.str1.4 - 0x3c15df1c 0xd3 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_start_local_ctrl_service.str1.4 - 0x3c15df1c 0x37 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_local_ctrl_enable.str1.4 - 0x3c15df1c 0x61 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.__func__.0 - 0x3c15df1c 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.str1.4 - 0x3c15df42 0xf esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - *fill* 0x3c15df42 0x2 - .rodata 0x3c15df44 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .rodata.esp_rmaker_mqtt_init.str1.4 - 0x3c15df74 0x75 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_connect.str1.4 - 0x3c15df74 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_disconnect.str1.4 - 0x3c15df74 0x37 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_subscribe.str1.4 - 0x3c15df74 0x36 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_unsubscribe.str1.4 - 0x3c15df74 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_publish.str1.4 - 0x3c15df74 0x70 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_create_mqtt_topic.str1.4 - 0x3c15df74 0x19 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .rodata.esp_rmaker_mqtt_is_budget_available.str1.4 - 0x3c15df74 0x9b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .rodata.esp_rmaker_mqtt_increase_budget.str1.4 - 0x3c15df74 0x71 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .rodata.esp_rmaker_mqtt_decrease_budget.str1.4 - 0x3c15df74 0x71 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .rodata.esp_rmaker_mqtt_budgeting_init.str1.4 - 0x3c15df74 0xa7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .rodata.esp_rmaker_erase_rollback_flag.str1.4 - 0x3c15df74 0x1b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_ota_check_for_mqtt.str1.4 - 0x3c15df74 0x88 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_status_to_string.str1.4 - 0x3c15df74 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_report_status.str1.4 - 0x3c15df74 0x31 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.validate_image_header.str1.4 - 0x3c15df74 0x146 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_perform_with_validation.str1.4 - 0x3c15df74 0x1ad esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_handle_time.str1.4 - 0x3c15df74 0x292 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_default_cb.str1.4 - 0x3c15df74 0x170 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_mark_valid.str1.4 - 0x3c15df74 0x8b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_mark_invalid.str1.4 - 0x3c15df74 0x37 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.event_handler.str1.4 - 0x3c15df74 0x82 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_manage_rollback.str1.4 - 0x3c15df74 0xa5 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_ota_rollback.str1.4 - 0x3c15df74 0x5a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_enable.str1.4 - 0x3c15df74 0xc2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.ota_default_config - 0x3c15df74 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .rodata.esp_rmaker_ota_service_cb.str1.4 - 0x3c15df84 0xcd esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .rodata.esp_rmaker_ota_report_status_using_params.str1.4 - 0x3c15df84 0x2d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .rodata.esp_rmaker_ota_enable_using_params.str1.4 - 0x3c15df84 0x51 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .rodata.__esp_rmaker_ota_fetch.str1.4 - 0x3c15df84 0x22b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_ota_subscribe.str1.4 - 0x3c15df84 0x5f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_ota_report_status_using_topics.str1.4 - 0x3c15df84 0x100 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.ota_url_handler.str1.4 - 0x3c15df84 0x397 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_ota_enable_using_topics.str1.4 - 0x3c15df84 0x25 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.ota_fetch_schedule_retry.str1.4 - 0x3c15df84 0xb6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_ota_fetch.str1.4 - 0x3c15df84 0x2a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.ota_fetch_timeout_timer_cb.str1.4 - 0x3c15df84 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_ota_work_fn.str1.4 - 0x3c15df84 0x47 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .rodata.esp_rmaker_name_param_create.str1.4 - 0x3c15df84 0xf esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_power_param_create.str1.4 - 0x3c15df84 0x1e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_brightness_param_create.str1.4 - 0x3c15df84 0x26 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_hue_param_create.str1.4 - 0x3c15df84 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_saturation_param_create.str1.4 - 0x3c15df84 0x15 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_ota_status_param_create.str1.4 - 0x3c15df84 0x19 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_ota_info_param_create.str1.4 - 0x3c15df84 0x13 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_ota_url_param_create.str1.4 - 0x3c15df84 0x12 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_timezone_param_create.str1.4 - 0x3c15df84 0xd esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_timezone_posix_param_create.str1.4 - 0x3c15df84 0x13 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_schedules_param_create.str1.4 - 0x3c15df84 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_scenes_param_create.str1.4 - 0x3c15df84 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_local_control_pop_param_create.str1.4 - 0x3c15df84 0x1c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_local_control_type_param_create.str1.4 - 0x3c15df84 0x1d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .rodata.esp_rmaker_switch_device_create.str1.4 - 0x3c15df84 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .rodata.esp_rmaker_lightbulb_device_create.str1.4 - 0x3c15df84 0x15 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .rodata.esp_rmaker_ota_service_create.str1.4 - 0x3c15df84 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.esp_rmaker_time_service_create.str1.4 - 0x3c15df84 0x21 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.esp_rmaker_create_schedule_service.str1.4 - 0x3c15df84 0x22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.esp_rmaker_create_scenes_service.str1.4 - 0x3c15df84 0x39 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.esp_rmaker_create_local_control_service.str1.4 - 0x3c15df84 0x25 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .rodata.register_user_node_mapping.str1.4 - 0x3c15df84 0x9d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.register_get_node_id.str1.4 - 0x3c15df84 0x2b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.register_wifi_prov.str1.4 - 0x3c15df84 0x4d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.register_cmd_resp_command.str1.4 - 0x3c15df84 0x59 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.register_sign_data_command.str1.4 - 0x3c15df84 0x3e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.user_node_mapping_handler.str1.4 - 0x3c15df84 0x34 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.get_node_id_handler.str1.4 - 0x3c15df84 0x11 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.wifi_prov_handler.str1.4 - 0x3c15df84 0x7c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.cmd_resp_cli_handler.str1.4 - 0x3c15df84 0x2d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.sign_data_command.str1.4 - 0x3c15df84 0x63 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .rodata.embedded - 0x3c15df84 0x4a9 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - 0x3c15df84 rmaker_mqtt_server_crt - 0x3c15df84 _binary_rmaker_mqtt_server_crt_start - 0x3c15e429 rmaker_mqtt_server_crt_length - 0x3c15e429 _binary_rmaker_mqtt_server_crt_end - .rodata.embedded - 0x3c15e42d 0xcdb esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - 0x3c15e42d _binary_rmaker_ota_server_crt_start - 0x3c15e42d rmaker_ota_server_crt - 0x3c15f104 _binary_rmaker_ota_server_crt_end - 0x3c15f104 rmaker_ota_server_crt_length - .rodata.rainmaker__cmd_set_user_mapping__get_packed_size.str1.4 - 0x3c15f108 0xb2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_payload__get_packed_size.str1.4 - 0x3c15f108 0x4a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.0 - 0x3c15f108 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.__func__.2 - 0x3c15f138 0x27 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - *fill* 0x3c15f15f 0x1 - .rodata.__func__.3 - 0x3c15f160 0x32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - *fill* 0x3c15f192 0x2 - .rodata.init_value.8 - 0x3c15f194 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.init_value.13 - 0x3c15f1a8 0x14 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.str1.4 - 0x3c15f1bc 0x35e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_msg_type__descriptor - 0x3c15f1bc 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x3c15f1bc rainmaker__rmaker_config_msg_type__descriptor - .rodata.rainmaker__rmaker_config_msg_type__enum_values_by_name - 0x3c15f1f8 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_msg_type__value_ranges - 0x3c15f208 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_msg_type__enum_values_by_number - 0x3c15f218 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_status__descriptor - 0x3c15f230 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x3c15f230 rainmaker__rmaker_config_status__descriptor - .rodata.rainmaker__rmaker_config_status__enum_values_by_name - 0x3c15f26c 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_status__value_ranges - 0x3c15f284 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_status__enum_values_by_number - 0x3c15f294 0x24 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_payload__descriptor - 0x3c15f2b8 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x3c15f2b8 rainmaker__rmaker_config_payload__descriptor - .rodata.rainmaker__rmaker_config_payload__number_ranges - 0x3c15f2f4 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_payload__field_indices_by_name - 0x3c15f30c 0xc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__rmaker_config_payload__field_descriptors - 0x3c15f318 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__resp_set_user_mapping__descriptor - 0x3c15f3a8 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x3c15f3a8 rainmaker__resp_set_user_mapping__descriptor - .rodata.rainmaker__resp_set_user_mapping__number_ranges - 0x3c15f3e4 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .srodata.rainmaker__resp_set_user_mapping__field_indices_by_name - 0x3c15f3f4 0x8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__resp_set_user_mapping__field_descriptors - 0x3c15f3fc 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__cmd_set_user_mapping__descriptor - 0x3c15f45c 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - 0x3c15f45c rainmaker__cmd_set_user_mapping__descriptor - .rodata.rainmaker__cmd_set_user_mapping__number_ranges - 0x3c15f498 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .srodata.rainmaker__cmd_set_user_mapping__field_indices_by_name - 0x3c15f4a8 0x8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.rainmaker__cmd_set_user_mapping__field_descriptors - 0x3c15f4b0 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .rodata.esp_rmaker_node_auth_sign_msg.str1.4 - 0x3c15f510 0x1bc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .rodata.app_insights_enable.str1.4 - 0x3c15f510 0x51 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .rodata.app_network_prov_stop.str1.4 - 0x3c15f510 0x72 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.network_event_handler.str1.4 - 0x3c15f510 0x12b esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.read_random_bytes_from_nvs.str1.4 - 0x3c15f510 0x1f esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.get_device_pop.str1.4 - 0x3c15f510 0x107 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.get_device_service_name.str1.4 - 0x3c15f510 0x18 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.app_network_print_qr.str1.4 - 0x3c15f510 0x17e esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.app_network_set_custom_mfg_data.str1.4 - 0x3c15f510 0x40 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.app_network_init.str1.4 - 0x3c15f510 0x23b esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.app_network_start_timer.str1.4 - 0x3c15f510 0x94 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.app_network_start.str1.4 - 0x3c15f510 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .rodata.__func__.1 - 0x3c15f510 0x11 esp-idf/app_network/libapp_network.a(app_network.c.obj) - *fill* 0x3c15f521 0x3 - .srodata.APP_NETWORK_EVENT - 0x3c15f524 0x4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - 0x3c15f524 APP_NETWORK_EVENT - .rodata.event_handler.str1.4 - 0x3c15f528 0x1d5 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .rodata.wifi_init_sta.str1.4 - 0x3c15f528 0x89 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .rodata.wifi_init.str1.4 - 0x3c15f528 0xbc esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .rodata.wifi_start.str1.4 - 0x3c15f528 0x14d esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .rodata.__func__.0 - 0x3c15f528 0xe esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - *fill* 0x3c15f536 0x2 - .rodata.__func__.1 - 0x3c15f538 0xb esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - *fill* 0x3c15f543 0x1 - .rodata.__func__.3 - 0x3c15f544 0xa esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .rodata.iot_button_delete.str1.4 - 0x3c15f54e 0x70 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .rodata.iot_button_create.str1.4 - 0x3c15f54e 0x18 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .rodata.iot_button_set_serial_cb.str1.4 - 0x3c15f54e 0xf esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .rodata.iot_button_add_on_press_cb.str1.4 - 0x3c15f54e 0xe esp-idf/gpio_button/libgpio_button.a(button.c.obj) - *fill* 0x3c15f54e 0x2 - .rodata.__FUNCTION__.0 - 0x3c15f550 0x1d esp-idf/gpio_button/libgpio_button.a(button.c.obj) - *fill* 0x3c15f56d 0x3 - .rodata.__FUNCTION__.1 - 0x3c15f570 0x1b esp-idf/gpio_button/libgpio_button.a(button.c.obj) - *fill* 0x3c15f58b 0x1 - .rodata.__FUNCTION__.2 - 0x3c15f58c 0x16 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - *fill* 0x3c15f5a2 0x2 - .rodata.__FUNCTION__.3 - 0x3c15f5a4 0x12 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .rodata.factory_reset_indicate.str1.4 - 0x3c15f5b6 0x42 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .rodata.wifi_reset_indicate.str1.4 - 0x3c15f5b6 0x51 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .rodata.app_reset_button_register.str1.4 - 0x3c15f5b6 0x52 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .rodata.ws2812_led_init.str1.4 - 0x3c15f5b6 0x7f esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - *fill* 0x3c15f5b6 0x2 - .srodata.cst4 0x3c15f5b8 0x1c esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - 0x8 (size before relaxing) - .rodata 0x3c15f5d4 0x2c esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .rodata.ws2812_set_pixel.str1.4 - 0x3c15f600 0x45 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .rodata.ws2812_refresh.str1.4 - 0x3c15f600 0x31 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .rodata.led_strip_new_rmt_ws2812.str1.4 - 0x3c15f600 0x9e esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .rodata.__FUNCTION__.0 - 0x3c15f600 0x11 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - *fill* 0x3c15f611 0x3 - .rodata.__FUNCTION__.1 - 0x3c15f614 0xf esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - *fill* 0x3c15f623 0x1 - .rodata.__FUNCTION__.2 - 0x3c15f624 0x19 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .srodata.cst4 0x3c15f63d 0xc esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .rodata.esp_local_ctrl_start.str1.4 - 0x3c15f63d 0x2d0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_add_property.str1.4 - 0x3c15f63d 0x10c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_get_prop_values.str1.4 - 0x3c15f63d 0x28 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_set_prop_values.str1.4 - 0x3c15f63d 0x6f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .rodata.esp_local_ctrl_command_dispatcher.str1.4 - 0x3c15f63d 0x71 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .rodata.esp_local_ctrl_command_cleanup.str1.4 - 0x3c15f63d 0x3a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .rodata.cmd_set_prop_vals_handler.str1.4 - 0x3c15f63d 0x62 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .rodata.cmd_get_prop_vals_handler.str1.4 - 0x3c15f63d 0x3a esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .rodata.esp_local_ctrl_data_handler.str1.4 - 0x3c15f63d 0xa2 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - *fill* 0x3c15f63d 0x3 - .rodata.cmd_table - 0x3c15f640 0x18 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .rodata.cmd_get_property_count__get_packed_size.str1.4 - 0x3c15f658 0x7e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_message__get_packed_size.str1.4 - 0x3c15f658 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.__func__.0 - 0x3c15f658 0x22 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - *fill* 0x3c15f67a 0x2 - .rodata.__func__.2 - 0x3c15f67c 0x19 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - *fill* 0x3c15f695 0x3 - .rodata.__func__.3 - 0x3c15f698 0x24 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.init_value.28 - 0x3c15f6bc 0x24 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.str1.4 - 0x3c15f6e0 0x360 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_msg_type__descriptor - 0x3c15f6e0 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15f6e0 local_ctrl_msg_type__descriptor - .rodata.local_ctrl_msg_type__enum_values_by_name - 0x3c15f71c 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_msg_type__value_ranges - 0x3c15f74c 0x18 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_msg_type__enum_values_by_number - 0x3c15f764 0x48 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_message__descriptor - 0x3c15f7ac 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15f7ac local_ctrl_message__descriptor - .rodata.local_ctrl_message__number_ranges - 0x3c15f7e8 0x18 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_message__field_indices_by_name - 0x3c15f800 0x1c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.local_ctrl_message__field_descriptors - 0x3c15f81c 0x150 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_set_property_values__descriptor - 0x3c15f96c 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15f96c resp_set_property_values__descriptor - .rodata.resp_set_property_values__number_ranges - 0x3c15f9a8 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.resp_set_property_values__field_indices_by_name - 0x3c15f9b8 0x4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_set_property_values__field_descriptors - 0x3c15f9bc 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_set_property_values__descriptor - 0x3c15f9ec 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15f9ec cmd_set_property_values__descriptor - .rodata.cmd_set_property_values__number_ranges - 0x3c15fa28 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.cmd_set_property_values__field_indices_by_name - 0x3c15fa38 0x4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_set_property_values__field_descriptors - 0x3c15fa3c 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_value__descriptor - 0x3c15fa6c 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fa6c property_value__descriptor - .rodata.property_value__number_ranges - 0x3c15faa8 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.property_value__field_indices_by_name - 0x3c15fab8 0x8 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_value__field_descriptors - 0x3c15fac0 0x60 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_values__descriptor - 0x3c15fb20 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fb20 resp_get_property_values__descriptor - .rodata.resp_get_property_values__number_ranges - 0x3c15fb5c 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.resp_get_property_values__field_indices_by_name - 0x3c15fb6c 0x8 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_values__field_descriptors - 0x3c15fb74 0x60 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_get_property_values__descriptor - 0x3c15fbd4 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fbd4 cmd_get_property_values__descriptor - .rodata.cmd_get_property_values__number_ranges - 0x3c15fc10 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.cmd_get_property_values__field_indices_by_name - 0x3c15fc20 0x4 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_get_property_values__field_descriptors - 0x3c15fc24 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_info__descriptor - 0x3c15fc54 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fc54 property_info__descriptor - .rodata.property_info__number_ranges - 0x3c15fc90 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_info__field_indices_by_name - 0x3c15fca0 0x14 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.property_info__field_descriptors - 0x3c15fcb4 0xf0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_count__descriptor - 0x3c15fda4 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fda4 resp_get_property_count__descriptor - .rodata.resp_get_property_count__number_ranges - 0x3c15fde0 0x10 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .srodata.resp_get_property_count__field_indices_by_name - 0x3c15fdf0 0x8 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.resp_get_property_count__field_descriptors - 0x3c15fdf8 0x60 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .rodata.cmd_get_property_count__descriptor - 0x3c15fe58 0x3c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - 0x3c15fe58 cmd_get_property_count__descriptor - .rodata.copy_httpd_config.str1.4 - 0x3c15fe94 0x8e esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .rodata.stop_httpd_transport.str1.4 - 0x3c15fe94 0x18 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .rodata.start_httpd_transport.str1.4 - 0x3c15fe94 0x140 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .rodata.tp.0 0x3c15fe94 0x14 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .rodata.free_secure_context.str1.4 - 0x3c15fea8 0x8e esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.create_secure_context.str1.4 - 0x3c15fea8 0x1ac esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.http_dispatch_event_to_event_loop.str1.4 - 0x3c15fea8 0x56 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.httpd_ssl_open.str1.4 - 0x3c15fea8 0x8a esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.httpd_ssl_pending.str1.4 - 0x3c15fea8 0x24 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.httpd_ssl_start.str1.4 - 0x3c15fea8 0x69 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.__func__.0 - 0x3c15fea8 0x14 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.__func__.1 - 0x3c15febc 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.__func__.2 - 0x3c15fecc 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x3c15fedb 0x1 - .rodata.__func__.3 - 0x3c15fedc 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x3c15feeb 0x1 - .rodata.__func__.4 - 0x3c15feec 0x12 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x3c15fefe 0x2 - .rodata.__func__.5 - 0x3c15ff00 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x3c15ff0f 0x1 - .rodata.__func__.6 - 0x3c15ff10 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .rodata.json_gen_handle_comma.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_handle_name.str1.4 - 0x3c15ff20 0x7 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_set_bool.str1.4 - 0x3c15ff20 0xe esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_set_null.str1.4 - 0x3c15ff20 0x5 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_set_int.str1.4 - 0x3c15ff20 0x3 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_set_float.str1.4 - 0x3c15ff20 0x5 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_start_object.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_end_object.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_start_array.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.json_gen_end_array.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .rodata.esp_netif_from_preset_if.str1.4 - 0x3c15ff20 0x24 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_add_browse_result.str1.4 - 0x3c15ff20 0x4d esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_append_host_question.str1.4 - 0x3c15ff20 0x6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_service_subtype_add_for_host.str1.4 - 0x3c15ff20 0x5b esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_name_is_discovery.str1.4 - 0x3c15ff20 0x19 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_read_fqdn.str1.4 - 0x3c15ff20 0x1d esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_mangle_name.str1.4 - 0x3c15ff20 0xc esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_start_timer.str1.4 - 0x3c15ff20 0xb esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_task_create_with_caps.str1.4 - 0x3c15ff20 0x84 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_service_task_start.str1.4 - 0x3c15ff20 0xb3 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_append_answer.str1.4 - 0x3c15ff20 0x4d esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_service_add_for_host.str1.4 - 0x3c15ff20 0xc6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_service_port_set_for_host.str1.4 - 0x3c15ff20 0x5b esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata._mdns_service_task.str1.4 - 0x3c15ff20 0x2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.1 - 0x3c15ff20 0x1d esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3c15ff3d 0x3 - .rodata.__FUNCTION__.2 - 0x3c15ff40 0x28 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.9 - 0x3c15ff68 0x3b esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3c15ffa3 0x1 - .rodata.__FUNCTION__.12 - 0x3c15ffa4 0x1a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3c15ffbe 0x2 - .rodata.__func__.13 - 0x3c15ffc0 0x13 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3c15ffd3 0x1 - .rodata.__FUNCTION__.15 - 0x3c15ffd4 0x1c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.__FUNCTION__.16 - 0x3c15fff0 0x19 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - *fill* 0x3c160009 0x3 - .rodata.__func__.18 - 0x3c16000c 0x14 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata 0x3c160020 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .rodata.mdns_mem_task_malloc.str1.4 - 0x3c160038 0x4b esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .rodata._udp_join_group.str1.4 - 0x3c160038 0x45 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .rodata._udp_recv.str1.4 - 0x3c160038 0x55 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .rodata.__func__.0 - 0x3c160038 0x10 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .rodata 0x3c160048 0x18 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .rodata.eth_on_state_changed.str1.4 - 0x3c160060 0x208 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .srodata.ETH_EVENT - 0x3c160060 0x4 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - 0x3c160060 ETH_EVENT - .rodata.esp_schedule_get_next_month.str1.4 - 0x3c160064 0x65 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_get_next_schedule_time_diff.str1.4 - 0x3c160064 0x8c esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_start_timer.str1.4 - 0x3c160064 0x62 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_create_timer.str1.4 - 0x3c160064 0x9 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_common_timer_cb.str1.4 - 0x3c160064 0xbf esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_edit.str1.4 - 0x3c160064 0x3e esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_delete.str1.4 - 0x3c160064 0x22 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_create.str1.4 - 0x3c160064 0xa7 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_init.str1.4 - 0x3c160064 0xd3 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .rodata.esp_schedule_nvs_get_count.str1.4 - 0x3c160064 0xb6 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_get.str1.4 - 0x3c160064 0x7a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_add.str1.4 - 0x3c160064 0xc2 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_remove.str1.4 - 0x3c160064 0x5a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_get_all.str1.4 - 0x3c160064 0xd3 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.esp_schedule_nvs_init.str1.4 - 0x3c160064 0x56 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .rodata.execute_event_cb.str1.4 - 0x3c160064 0x107 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.wifi_connect_timer_cb.str1.4 - 0x3c160064 0x25 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.update_wifi_scan_results.str1.4 - 0x3c160064 0xb6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.prov_stop_and_notify.str1.4 - 0x3c160064 0xb2 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_event_handler_internal.str1.4 - 0x3c160064 0xe2 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.cleanup_delay_timer_cb.str1.4 - 0x3c160064 0x3f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_get_info_json.str1.4 - 0x3c160064 0x6e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_start_service.str1.4 - 0x3c160064 0x2e6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_endpoint_create.str1.4 - 0x3c160064 0x32 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_endpoint_register.str1.4 - 0x3c160064 0x35 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_is_wifi_provisioned.str1.4 - 0x3c160064 0x6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_configure_wifi_sta.str1.4 - 0x3c160064 0x135 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_init.str1.4 - 0x3c160064 0x20e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_deinit.str1.4 - 0x3c160064 0x6a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_start_provisioning.str1.4 - 0x3c160064 0x226 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_reset_wifi_sm_state_on_failure.str1.4 - 0x3c160064 0x75 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.network_prov_mgr_reset_wifi_sm_state_for_reprovision.str1.4 - 0x3c160064 0xbd esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.0 - 0x3c160064 0x35 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c160099 0x3 - .rodata.__func__.1 - 0x3c16009c 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.2 - 0x3c1600cc 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1600ef 0x1 - .rodata.__func__.3 - 0x3c1600f0 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c16010b 0x1 - .rodata.__func__.5 - 0x3c16010c 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.6 - 0x3c160130 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.7 - 0x3c160158 0x1e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c160176 0x2 - .rodata.__func__.8 - 0x3c160178 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.10 - 0x3c160190 0x16 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1601a6 0x2 - .rodata.__func__.11 - 0x3c1601a8 0x11 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1601b9 0x3 - .rodata.__func__.12 - 0x3c1601bc 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.13 - 0x3c1601e0 0x2c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.14 - 0x3c16020c 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.15 - 0x3c16022c 0x22 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c16024e 0x2 - .rodata.__func__.16 - 0x3c160250 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.17 - 0x3c160278 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .rodata.__func__.18 - 0x3c16029c 0x21 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1602bd 0x3 - .rodata.__func__.19 - 0x3c1602c0 0x16 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1602d6 0x2 - .rodata.__func__.22 - 0x3c1602d8 0x23 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c1602fb 0x1 - .rodata.__func__.23 - 0x3c1602fc 0x21 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - *fill* 0x3c16031d 0x3 - .srodata.NETWORK_PROV_EVENT - 0x3c160320 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - 0x3c160320 NETWORK_PROV_EVENT - .rodata.wifi_apply_config_handler.str1.4 - 0x3c160324 0x6b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .rodata.wifi_set_config_handler.str1.4 - 0x3c160324 0x2d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .rodata.wifi_get_status_handler.str1.4 - 0x3c160324 0x4d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .rodata.set_config_endpoint.str1.4 - 0x3c160324 0xda esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.set_config_service.str1.4 - 0x3c160324 0x90 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.delete_config.str1.4 - 0x3c160324 0x2e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.new_config.str1.4 - 0x3c160324 0x4d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.prov_start.str1.4 - 0x3c160324 0x97 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.network_prov_scheme_ble_set_mfg_data.str1.4 - 0x3c160324 0x32 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.network_prov_scheme_ble_event_cb_free_btdm.str1.4 - 0x3c160324 0xa6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .rodata.network_prov_scheme_ble - 0x3c160324 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - 0x3c160324 network_prov_scheme_ble - .rodata.network_prov_config_command_dispatcher.str1.4 - 0x3c160340 0x6d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .rodata.cmd_apply_config_handler.str1.4 - 0x3c160340 0x55 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .rodata.network_prov_config_command_cleanup.str1.4 - 0x3c160340 0x3a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .rodata.network_prov_config_data_handler.str1.4 - 0x3c160340 0xaa esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .rodata.cmd_table - 0x3c160340 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .rodata.network_prov_scan_cmd_dispatcher.str1.4 - 0x3c160370 0x6d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata.cmd_scan_result_handler.str1.4 - 0x3c160370 0x153 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata.network_prov_scan_cmd_cleanup.str1.4 - 0x3c160370 0x3a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata.network_prov_scan_handler.str1.4 - 0x3c160370 0xa6 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata.cmd_table - 0x3c160370 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata 0x3c1603a0 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .rodata.network_ctrl_cmd_dispatcher.str1.4 - 0x3c1603d0 0x85 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .rodata.cmd_ctrl_reprov_handler.str1.4 - 0x3c1603d0 0x55 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .rodata.network_ctrl_cmd_cleanup.str1.4 - 0x3c1603d0 0x3a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .rodata.network_ctrl_handler.str1.4 - 0x3c1603d0 0xc1 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .rodata.cmd_table - 0x3c1603d0 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .rodata.cmd_get_wifi_status__get_packed_size.str1.4 - 0x3c1603f0 0x94 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_payload__get_packed_size.str1.4 - 0x3c1603f0 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.__func__.0 - 0x3c1603f0 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - *fill* 0x3c160416 0x2 - .rodata.__func__.2 - 0x3c160418 0x1d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - *fill* 0x3c160435 0x3 - .rodata.__func__.3 - 0x3c160438 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.str1.4 - 0x3c160460 0x661 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_msg_type__descriptor - 0x3c160460 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160460 network_config_msg_type__descriptor - .rodata.network_config_msg_type__enum_values_by_name - 0x3c16049c 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_msg_type__value_ranges - 0x3c1604fc 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_msg_type__enum_values_by_number - 0x3c16050c 0x90 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_payload__descriptor - 0x3c16059c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c16059c network_config_payload__descriptor - .rodata.network_config_payload__number_ranges - 0x3c1605d8 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_payload__field_indices_by_name - 0x3c1605f0 0x34 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.network_config_payload__field_descriptors - 0x3c160624 0x270 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_thread_config__descriptor - 0x3c160894 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160894 resp_apply_thread_config__descriptor - .rodata.resp_apply_thread_config__number_ranges - 0x3c1608d0 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .srodata.resp_apply_thread_config__field_indices_by_name - 0x3c1608e0 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_thread_config__field_descriptors - 0x3c1608e4 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_wifi_config__descriptor - 0x3c160914 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160914 resp_apply_wifi_config__descriptor - .rodata.resp_apply_wifi_config__number_ranges - 0x3c160950 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .srodata.resp_apply_wifi_config__field_indices_by_name - 0x3c160960 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_apply_wifi_config__field_descriptors - 0x3c160964 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_apply_thread_config__descriptor - 0x3c160994 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160994 cmd_apply_thread_config__descriptor - .rodata.cmd_apply_wifi_config__descriptor - 0x3c1609d0 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c1609d0 cmd_apply_wifi_config__descriptor - .rodata.resp_set_thread_config__descriptor - 0x3c160a0c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160a0c resp_set_thread_config__descriptor - .rodata.resp_set_thread_config__number_ranges - 0x3c160a48 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .srodata.resp_set_thread_config__field_indices_by_name - 0x3c160a58 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_set_thread_config__field_descriptors - 0x3c160a5c 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_set_wifi_config__descriptor - 0x3c160a8c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160a8c resp_set_wifi_config__descriptor - .rodata.resp_set_wifi_config__number_ranges - 0x3c160ac8 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .srodata.resp_set_wifi_config__field_indices_by_name - 0x3c160ad8 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_set_wifi_config__field_descriptors - 0x3c160adc 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_thread_config__descriptor - 0x3c160b0c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160b0c cmd_set_thread_config__descriptor - .rodata.cmd_set_thread_config__number_ranges - 0x3c160b48 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .srodata.cmd_set_thread_config__field_indices_by_name - 0x3c160b58 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_thread_config__field_descriptors - 0x3c160b5c 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_wifi_config__descriptor - 0x3c160b8c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160b8c cmd_set_wifi_config__descriptor - .rodata.cmd_set_wifi_config__number_ranges - 0x3c160bc8 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_wifi_config__field_indices_by_name - 0x3c160bd8 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_set_wifi_config__field_descriptors - 0x3c160be8 0xc0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_thread_status__descriptor - 0x3c160ca8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160ca8 resp_get_thread_status__descriptor - .rodata.resp_get_thread_status__number_ranges - 0x3c160ce4 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_thread_status__field_indices_by_name - 0x3c160cfc 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_thread_status__field_descriptors - 0x3c160d0c 0xc0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_get_thread_status__descriptor - 0x3c160dcc 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160dcc cmd_get_thread_status__descriptor - .rodata.resp_get_wifi_status__descriptor - 0x3c160e08 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160e08 resp_get_wifi_status__descriptor - .rodata.resp_get_wifi_status__number_ranges - 0x3c160e44 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_wifi_status__field_indices_by_name - 0x3c160e5c 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.resp_get_wifi_status__field_descriptors - 0x3c160e6c 0xc0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .rodata.cmd_get_wifi_status__descriptor - 0x3c160f2c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - 0x3c160f2c cmd_get_wifi_status__descriptor - .rodata.cmd_scan_wifi_start__get_packed_size.str1.4 - 0x3c160f68 0x92 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_payload__get_packed_size.str1.4 - 0x3c160f68 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.0 - 0x3c160f68 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.__func__.2 - 0x3c160f8c 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - *fill* 0x3c160fa7 0x1 - .rodata.__func__.3 - 0x3c160fa8 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - *fill* 0x3c160fce 0x2 - .rodata.init_value.16 - 0x3c160fd0 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.str1.4 - 0x3c161000 0x6aa esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_msg_type__descriptor - 0x3c161000 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161000 network_scan_msg_type__descriptor - .rodata.network_scan_msg_type__enum_values_by_name - 0x3c16103c 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_msg_type__value_ranges - 0x3c16109c 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_msg_type__enum_values_by_number - 0x3c1610ac 0x90 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_payload__descriptor - 0x3c16113c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c16113c network_scan_payload__descriptor - .rodata.network_scan_payload__number_ranges - 0x3c161178 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_payload__field_indices_by_name - 0x3c161190 0x38 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.network_scan_payload__field_descriptors - 0x3c1611c8 0x2a0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_result__descriptor - 0x3c161468 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161468 resp_scan_thread_result__descriptor - .rodata.resp_scan_thread_result__number_ranges - 0x3c1614a4 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.resp_scan_thread_result__field_indices_by_name - 0x3c1614b4 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_result__field_descriptors - 0x3c1614b8 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_result__descriptor - 0x3c1614e8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c1614e8 resp_scan_wifi_result__descriptor - .rodata.resp_scan_wifi_result__number_ranges - 0x3c161524 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.resp_scan_wifi_result__field_indices_by_name - 0x3c161534 0x4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_result__field_descriptors - 0x3c161538 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.thread_scan_result__descriptor - 0x3c161568 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161568 thread_scan_result__descriptor - .rodata.thread_scan_result__number_ranges - 0x3c1615a4 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.thread_scan_result__field_indices_by_name - 0x3c1615b4 0x1c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.thread_scan_result__field_descriptors - 0x3c1615d0 0x150 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.wi_fi_scan_result__descriptor - 0x3c161720 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161720 wi_fi_scan_result__descriptor - .rodata.wi_fi_scan_result__number_ranges - 0x3c16175c 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.wi_fi_scan_result__field_indices_by_name - 0x3c16176c 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.wi_fi_scan_result__field_descriptors - 0x3c161780 0xf0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_result__descriptor - 0x3c161870 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161870 cmd_scan_thread_result__descriptor - .rodata.cmd_scan_thread_result__number_ranges - 0x3c1618ac 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.cmd_scan_thread_result__field_indices_by_name - 0x3c1618bc 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_result__field_descriptors - 0x3c1618c4 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_result__descriptor - 0x3c161924 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161924 cmd_scan_wifi_result__descriptor - .rodata.cmd_scan_wifi_result__number_ranges - 0x3c161960 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.cmd_scan_wifi_result__field_indices_by_name - 0x3c161970 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_result__field_descriptors - 0x3c161978 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_status__descriptor - 0x3c1619d8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c1619d8 resp_scan_thread_status__descriptor - .rodata.resp_scan_thread_status__number_ranges - 0x3c161a14 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.resp_scan_thread_status__field_indices_by_name - 0x3c161a24 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_thread_status__field_descriptors - 0x3c161a2c 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_status__descriptor - 0x3c161a8c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161a8c resp_scan_wifi_status__descriptor - .rodata.resp_scan_wifi_status__number_ranges - 0x3c161ac8 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.resp_scan_wifi_status__field_indices_by_name - 0x3c161ad8 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.resp_scan_wifi_status__field_descriptors - 0x3c161ae0 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_status__descriptor - 0x3c161b40 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161b40 cmd_scan_thread_status__descriptor - .rodata.cmd_scan_wifi_status__descriptor - 0x3c161b7c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161b7c cmd_scan_wifi_status__descriptor - .rodata.resp_scan_thread_start__descriptor - 0x3c161bb8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161bb8 resp_scan_thread_start__descriptor - .rodata.resp_scan_wifi_start__descriptor - 0x3c161bf4 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161bf4 resp_scan_wifi_start__descriptor - .rodata.cmd_scan_thread_start__descriptor - 0x3c161c30 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161c30 cmd_scan_thread_start__descriptor - .rodata.cmd_scan_thread_start__number_ranges - 0x3c161c6c 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .srodata.cmd_scan_thread_start__field_indices_by_name - 0x3c161c7c 0x8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_thread_start__field_descriptors - 0x3c161c84 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_start__descriptor - 0x3c161ce4 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - 0x3c161ce4 cmd_scan_wifi_start__descriptor - .rodata.cmd_scan_wifi_start__number_ranges - 0x3c161d20 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_start__field_indices_by_name - 0x3c161d30 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_scan_wifi_start__field_descriptors - 0x3c161d40 0xc0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .rodata.cmd_ctrl_wifi_reset__get_packed_size.str1.4 - 0x3c161e00 0x92 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_payload__get_packed_size.str1.4 - 0x3c161e00 0x3e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.0 - 0x3c161e00 0x24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.__func__.2 - 0x3c161e24 0x1b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - *fill* 0x3c161e3f 0x1 - .rodata.__func__.3 - 0x3c161e40 0x26 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.str1.4 - 0x3c161e66 0x411 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - *fill* 0x3c161e66 0x2 - .rodata.network_ctrl_msg_type__descriptor - 0x3c161e68 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c161e68 network_ctrl_msg_type__descriptor - .rodata.network_ctrl_msg_type__enum_values_by_name - 0x3c161ea4 0x48 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_msg_type__value_ranges - 0x3c161eec 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_msg_type__enum_values_by_number - 0x3c161efc 0x6c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_payload__descriptor - 0x3c161f68 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c161f68 network_ctrl_payload__descriptor - .rodata.network_ctrl_payload__number_ranges - 0x3c161fa4 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_payload__field_indices_by_name - 0x3c161fbc 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.network_ctrl_payload__field_descriptors - 0x3c161fe4 0x1e0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .rodata.resp_ctrl_thread_reprov__descriptor - 0x3c1621c4 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c1621c4 resp_ctrl_thread_reprov__descriptor - .rodata.cmd_ctrl_thread_reprov__descriptor - 0x3c162200 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c162200 cmd_ctrl_thread_reprov__descriptor - .rodata.resp_ctrl_thread_reset__descriptor - 0x3c16223c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c16223c resp_ctrl_thread_reset__descriptor - .rodata.cmd_ctrl_thread_reset__descriptor - 0x3c162278 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c162278 cmd_ctrl_thread_reset__descriptor - .rodata.resp_ctrl_wifi_reprov__descriptor - 0x3c1622b4 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c1622b4 resp_ctrl_wifi_reprov__descriptor - .rodata.cmd_ctrl_wifi_reprov__descriptor - 0x3c1622f0 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c1622f0 cmd_ctrl_wifi_reprov__descriptor - .rodata.resp_ctrl_wifi_reset__descriptor - 0x3c16232c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c16232c resp_ctrl_wifi_reset__descriptor - .rodata.cmd_ctrl_wifi_reset__descriptor - 0x3c162368 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - 0x3c162368 cmd_ctrl_wifi_reset__descriptor - .rodata.init_value.4 - 0x3c1623a4 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.init_value.9 - 0x3c1623c4 0x28 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.str1.4 - 0x3c1623ec 0x49e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_failed_reason__descriptor - 0x3c1623ec 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c1623ec thread_attach_failed_reason__descriptor - .rodata.thread_attach_failed_reason__enum_values_by_name - 0x3c162428 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_failed_reason__value_ranges - 0x3c162438 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_failed_reason__enum_values_by_number - 0x3c162448 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_network_state__descriptor - 0x3c162460 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c162460 thread_network_state__descriptor - .rodata.thread_network_state__enum_values_by_name - 0x3c16249c 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_network_state__value_ranges - 0x3c1624bc 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_network_state__enum_values_by_number - 0x3c1624cc 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_auth_mode__descriptor - 0x3c1624fc 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c1624fc wifi_auth_mode__descriptor - .rodata.wifi_auth_mode__enum_values_by_name - 0x3c162538 0x40 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_auth_mode__value_ranges - 0x3c162578 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_auth_mode__enum_values_by_number - 0x3c162588 0x60 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connect_failed_reason__descriptor - 0x3c1625e8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c1625e8 wifi_connect_failed_reason__descriptor - .rodata.wifi_connect_failed_reason__enum_values_by_name - 0x3c162624 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connect_failed_reason__value_ranges - 0x3c162634 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connect_failed_reason__enum_values_by_number - 0x3c162644 0x18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_station_state__descriptor - 0x3c16265c 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c16265c wifi_station_state__descriptor - .rodata.wifi_station_state__enum_values_by_name - 0x3c162698 0x20 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_station_state__value_ranges - 0x3c1626b8 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_station_state__enum_values_by_number - 0x3c1626c8 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_state__descriptor - 0x3c1626f8 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c1626f8 thread_attach_state__descriptor - .rodata.thread_attach_state__number_ranges - 0x3c162734 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_state__field_indices_by_name - 0x3c162744 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.thread_attach_state__field_descriptors - 0x3c162754 0xc0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connected_state__descriptor - 0x3c162814 0x3c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - 0x3c162814 wifi_connected_state__descriptor - .rodata.wifi_connected_state__number_ranges - 0x3c162850 0x10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connected_state__field_indices_by_name - 0x3c162860 0x14 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.wifi_connected_state__field_descriptors - 0x3c162874 0xf0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .rodata.protocomm_add_endpoint_internal.str1.4 - 0x3c162964 0x94 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_version_handler.str1.4 - 0x3c162964 0x3c esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_new.str1.4 - 0x3c162964 0x28 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_req_handle.str1.4 - 0x3c162964 0xf3 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_set_security.str1.4 - 0x3c162964 0xfc esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.protocomm_set_version.str1.4 - 0x3c162964 0x5b esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .rodata.str1.4 - 0x3c162964 0x13b esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .rodata.status__descriptor - 0x3c162964 0x3c esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - 0x3c162964 status__descriptor - .rodata.status__enum_values_by_name - 0x3c1629a0 0x40 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .rodata.status__value_ranges - 0x3c1629e0 0x10 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .rodata.status__enum_values_by_number - 0x3c1629f0 0x60 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .rodata.protocomm_httpd_session_close.str1.4 - 0x3c162a50 0x51 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.protocomm_httpd_remove_endpoint.str1.4 - 0x3c162a50 0x5c esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.protocomm_httpd_add_endpoint.str1.4 - 0x3c162a50 0x2d esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.common_post_handler.str1.4 - 0x3c162a50 0x192 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.protocomm_httpd_start.str1.4 - 0x3c162a50 0xe9 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.protocomm_httpd_stop.str1.4 - 0x3c162a50 0x28 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata 0x3c162a50 0x58 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .rodata.sec0_session_setup.str1.4 - 0x3c162aa8 0x33 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .rodata.sec0_req_handler.str1.4 - 0x3c162aa8 0xaa esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .rodata.protocomm_security0 - 0x3c162aa8 0x24 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - 0x3c162aa8 protocomm_security0 - .rodata.sec1_decrypt.str1.4 - 0x3c162acc 0xe2 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.sec1_close_session.str1.4 - 0x3c162acc 0x2e esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.sec1_new_session.str1.4 - 0x3c162acc 0x2d esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.handle_session_command0.str1.4 - 0x3c162acc 0x3af esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.handle_session_command1.str1.4 - 0x3c162acc 0x1cf esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.sec1_session_setup.str1.4 - 0x3c162acc 0x4b esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.sec1_req_handler.str1.4 - 0x3c162acc 0x10a esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.sec1_init.str1.4 - 0x3c162acc 0x2a esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .rodata.protocomm_security1 - 0x3c162acc 0x24 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - 0x3c162acc protocomm_security1 - .rodata.sec2_decrypt.str1.4 - 0x3c162af0 0x101 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_encrypt.str1.4 - 0x3c162af0 0x7a esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_init.str1.4 - 0x3c162af0 0x2a esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.handle_session_command1.str1.4 - 0x3c162af0 0x24b esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_close_session.str1.4 - 0x3c162af0 0x2e esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_new_session.str1.4 - 0x3c162af0 0x2d esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.handle_session_command0.str1.4 - 0x3c162af0 0x23f esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_session_setup.str1.4 - 0x3c162af0 0x4b esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.sec2_req_handler.str1.4 - 0x3c162af0 0x10a esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.__FUNCTION__.0 - 0x3c162af0 0x18 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .rodata.protocomm_security2 - 0x3c162b08 0x24 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - 0x3c162b08 protocomm_security2 - .srodata.PROTOCOMM_SECURITY_SESSION_EVENT - 0x3c162b2c 0x4 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - 0x3c162b2c PROTOCOMM_SECURITY_SESSION_EVENT - .rodata.__esp_srp_srv_pubkey.str1.4 - 0x3c162b30 0x6 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .rodata.esp_srp_get_session_key.str1.4 - 0x3c162b30 0x6 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .srodata.g_3072 - 0x3c162b30 0x1 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - *fill* 0x3c162b31 0x3 - .rodata.N_3072 - 0x3c162b34 0x180 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .rodata.esp_mpi_new_from_hex.str1.4 - 0x3c162cb4 0x2f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .rodata.esp_mpi_new_from_bin.str1.4 - 0x3c162cb4 0x2f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .rodata.esp_mpi_a_mul_b_mod_c.str1.4 - 0x3c162cb4 0x4f esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .rodata.esp_mpi_a_add_b_mod_c.str1.4 - 0x3c162cb4 0x50 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .rodata.gatt_svr_register_cb.str1.4 - 0x3c162cb4 0x41 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_gatts_get_attr_value.str1.4 - 0x3c162cb4 0x41 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_on_reset.str1.4 - 0x3c162cb4 0x28 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.nimble_host_task.str1.4 - 0x3c162cb4 0x23 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.ble_gatt_add_primary_svcs.str1.4 - 0x3c162cb4 0x3f esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.ble_gatt_add_characteristics.str1.4 - 0x3c162cb4 0x3d esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.ble_gatt_add_char_dsc.str1.4 - 0x3c162cb4 0x49 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.populate_gatt_db.str1.4 - 0x3c162cb4 0x105 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.transport_simple_ble_disconnect.str1.4 - 0x3c162cb4 0xc6 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.transport_simple_ble_connect.str1.4 - 0x3c162cb4 0x5c esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_gatts_set_attr_value.str1.4 - 0x3c162cb4 0x45 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.gatt_svr_chr_access.str1.4 - 0x3c162cb4 0x1b2 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.gatt_svr_dsc_access.str1.4 - 0x3c162cb4 0x37 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_advertise.str1.4 - 0x3c162cb4 0xa3 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_on_sync.str1.4 - 0x3c162cb4 0x7f esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_gap_event.str1.4 - 0x3c162cb4 0xfb esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.simple_ble_start.str1.4 - 0x3c162cb4 0x7b esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.protocomm_ble_start.str1.4 - 0x3c162cb4 0x270 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.__func__.0 - 0x3c162cb4 0x15 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .rodata.str1.4 - 0x3c162cc9 0xbd esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - *fill* 0x3c162cc9 0x3 - .rodata.sec0_msg_type__descriptor - 0x3c162ccc 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x3c162ccc sec0_msg_type__descriptor - .rodata.sec0_msg_type__enum_values_by_name - 0x3c162d08 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_msg_type__value_ranges - 0x3c162d18 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_msg_type__enum_values_by_number - 0x3c162d28 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_payload__descriptor - 0x3c162d40 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x3c162d40 sec0_payload__descriptor - .rodata.sec0_payload__number_ranges - 0x3c162d7c 0x18 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_payload__field_indices_by_name - 0x3c162d94 0xc esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.sec0_payload__field_descriptors - 0x3c162da0 0x90 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.s0_session_resp__descriptor - 0x3c162e30 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x3c162e30 s0_session_resp__descriptor - .rodata.s0_session_resp__number_ranges - 0x3c162e6c 0x10 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .srodata.s0_session_resp__field_indices_by_name - 0x3c162e7c 0x4 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.s0_session_resp__field_descriptors - 0x3c162e80 0x30 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .rodata.s0_session_cmd__descriptor - 0x3c162eb0 0x3c esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - 0x3c162eb0 s0_session_cmd__descriptor - .rodata.str1.4 - 0x3c162eec 0x19f esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_msg_type__descriptor - 0x3c162eec 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c162eec sec1_msg_type__descriptor - .rodata.sec1_msg_type__enum_values_by_name - 0x3c162f28 0x20 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_msg_type__value_ranges - 0x3c162f48 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_msg_type__enum_values_by_number - 0x3c162f58 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_payload__descriptor - 0x3c162f88 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c162f88 sec1_payload__descriptor - .rodata.sec1_payload__number_ranges - 0x3c162fc4 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_payload__field_indices_by_name - 0x3c162fdc 0x14 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.sec1_payload__field_descriptors - 0x3c162ff0 0xf0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp0__descriptor - 0x3c1630e0 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c1630e0 session_resp0__descriptor - .rodata.session_resp0__number_ranges - 0x3c16311c 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp0__field_indices_by_name - 0x3c16312c 0xc esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp0__field_descriptors - 0x3c163138 0x90 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd0__descriptor - 0x3c1631c8 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c1631c8 session_cmd0__descriptor - .rodata.session_cmd0__number_ranges - 0x3c163204 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .srodata.session_cmd0__field_indices_by_name - 0x3c163214 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd0__field_descriptors - 0x3c163218 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp1__descriptor - 0x3c163248 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c163248 session_resp1__descriptor - .rodata.session_resp1__number_ranges - 0x3c163284 0x18 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .srodata.session_resp1__field_indices_by_name - 0x3c16329c 0x8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_resp1__field_descriptors - 0x3c1632a4 0x60 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd1__descriptor - 0x3c163304 0x3c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - 0x3c163304 session_cmd1__descriptor - .rodata.session_cmd1__number_ranges - 0x3c163340 0x10 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .srodata.session_cmd1__field_indices_by_name - 0x3c163350 0x4 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.session_cmd1__field_descriptors - 0x3c163354 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .rodata.str1.4 - 0x3c163384 0x1c2 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_msg_type__descriptor - 0x3c163384 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c163384 sec2_msg_type__descriptor - .rodata.sec2_msg_type__enum_values_by_name - 0x3c1633c0 0x20 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_msg_type__value_ranges - 0x3c1633e0 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_msg_type__enum_values_by_number - 0x3c1633f0 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_payload__descriptor - 0x3c163420 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c163420 sec2_payload__descriptor - .rodata.sec2_payload__number_ranges - 0x3c16345c 0x18 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_payload__field_indices_by_name - 0x3c163474 0x14 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.sec2_payload__field_descriptors - 0x3c163488 0xf0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp1__descriptor - 0x3c163578 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c163578 s2_session_resp1__descriptor - .rodata.s2_session_resp1__number_ranges - 0x3c1635b4 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp1__field_indices_by_name - 0x3c1635c4 0xc esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp1__field_descriptors - 0x3c1635d0 0x90 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd1__descriptor - 0x3c163660 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c163660 s2_session_cmd1__descriptor - .rodata.s2_session_cmd1__number_ranges - 0x3c16369c 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .srodata.s2_session_cmd1__field_indices_by_name - 0x3c1636ac 0x4 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd1__field_descriptors - 0x3c1636b0 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp0__descriptor - 0x3c1636e0 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c1636e0 s2_session_resp0__descriptor - .rodata.s2_session_resp0__number_ranges - 0x3c16371c 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp0__field_indices_by_name - 0x3c16372c 0xc esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_resp0__field_descriptors - 0x3c163738 0x90 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd0__descriptor - 0x3c1637c8 0x3c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - 0x3c1637c8 s2_session_cmd0__descriptor - .rodata.s2_session_cmd0__number_ranges - 0x3c163804 0x10 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .srodata.s2_session_cmd0__field_indices_by_name - 0x3c163814 0x8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.s2_session_cmd0__field_descriptors - 0x3c16381c 0x60 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .rodata.session_data__get_packed_size.str1.4 - 0x3c16387c 0x6a esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.__func__.0 - 0x3c16387c 0x1c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.__func__.2 - 0x3c163898 0x13 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - *fill* 0x3c1638ab 0x1 - .rodata.__func__.3 - 0x3c1638ac 0x1e esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.str1.4 - 0x3c1638ca 0xc5 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - *fill* 0x3c1638ca 0x2 - .rodata.sec_scheme_version__descriptor - 0x3c1638cc 0x3c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x3c1638cc sec_scheme_version__descriptor - .rodata.sec_scheme_version__enum_values_by_name - 0x3c163908 0x18 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.sec_scheme_version__value_ranges - 0x3c163920 0x10 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.sec_scheme_version__enum_values_by_number - 0x3c163930 0x24 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.session_data__descriptor - 0x3c163954 0x3c esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - 0x3c163954 session_data__descriptor - .rodata.session_data__number_ranges - 0x3c163990 0x18 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.session_data__field_indices_by_name - 0x3c1639a8 0x10 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.session_data__field_descriptors - 0x3c1639b8 0xc0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .rodata.malloc_internal_wrapper.str1.4 - 0x3c163a78 0x27 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.btdm_sleep_enter_phase2_wrapper.str1.4 - 0x3c163a78 0x30 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.btdm_sleep_enter_phase1_wrapper.str1.4 - 0x3c163a78 0x70 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.str1.4 - 0x3c163a78 0x52 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.queue_create_wrapper.str1.4 - 0x3c163a78 0x16 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.semphr_create_wrapper.str1.4 - 0x3c163a78 0x17 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.btdm_low_power_mode_init.str1.4 - 0x3c163a78 0x1da esp-idf/bt/libbt.a(bt.c.obj) - .rodata.esp_bt_controller_rom_mem_release.str1.4 - 0x3c163a78 0x4f esp-idf/bt/libbt.a(bt.c.obj) - .rodata.esp_bt_controller_mem_release.str1.4 - 0x3c163a78 0x27 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.esp_bt_mem_release.str1.4 - 0x3c163a78 0x10 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.esp_bt_controller_init.str1.4 - 0x3c163a78 0x1a8 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.esp_bt_controller_enable.str1.4 - 0x3c163a78 0x3c esp-idf/bt/libbt.a(bt.c.obj) - .rodata.__func__.0 - 0x3c163a78 0x17 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3c163a8f 0x1 - .rodata.__func__.1 - 0x3c163a90 0x19 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3c163aa9 0x3 - .rodata.__func__.2 - 0x3c163aac 0x16 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3c163ac2 0x2 - .rodata.__func__.3 - 0x3c163ac4 0x15 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3c163ad9 0x3 - .rodata.__func__.4 - 0x3c163adc 0x20 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.__func__.5 - 0x3c163afc 0x20 esp-idf/bt/libbt.a(bt.c.obj) - .rodata.__func__.6 - 0x3c163b1c 0x17 esp-idf/bt/libbt.a(bt.c.obj) - *fill* 0x3c163b33 0x1 - .rodata.osi_funcs_ro - 0x3c163b34 0xf0 esp-idf/bt/libbt.a(bt.c.obj) - .srodata.pub_addr_types.0 - 0x3c163c24 0x2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - *fill* 0x3c163c26 0x2 - .srodata.priv_addr_types.1 - 0x3c163c28 0x2 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - *fill* 0x3c163c2a 0x2 - .srodata.ble_hs_misc_null_addr - 0x3c163c2c 0x6 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .rodata.ble_hs_sync.str1.4 - 0x3c163c32 0x43 esp-idf/bt/libbt.a(ble_hs.c.obj) - .rodata.ble_hs_timer_exp.str1.4 - 0x3c163c32 0x44 esp-idf/bt/libbt.a(ble_hs.c.obj) - .rodata.ble_hs_event_start_stage2.str1.4 - 0x3c163c32 0x8 esp-idf/bt/libbt.a(ble_hs.c.obj) - .rodata.ble_hs_init.str1.4 - 0x3c163c32 0x13 esp-idf/bt/libbt.a(ble_hs.c.obj) - *fill* 0x3c163c32 0x2 - .rodata.__func__.0 - 0x3c163c34 0x1a esp-idf/bt/libbt.a(ble_hs.c.obj) - *fill* 0x3c163c4e 0x2 - .rodata.__func__.1 - 0x3c163c50 0xc esp-idf/bt/libbt.a(ble_hs.c.obj) - .rodata.__func__.2 - 0x3c163c5c 0x11 esp-idf/bt/libbt.a(ble_hs.c.obj) - *fill* 0x3c163c6d 0x3 - .rodata.__func__.3 - 0x3c163c70 0xd esp-idf/bt/libbt.a(ble_hs.c.obj) - .rodata.ble_hs_hci_evt_disconn_complete.str1.4 - 0x3c163c7d 0xff esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - *fill* 0x3c163c7d 0x3 - .rodata.ble_hs_hci_evt_le_dispatch - 0x3c163c80 0x64 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .rodata.ble_hs_hci_evt_dispatch - 0x3c163ce4 0x60 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .rodata.ble_att_rx_dispatch - 0x3c163d44 0xf8 esp-idf/bt/libbt.a(ble_att.c.obj) - .rodata.ble_gattc_read_mult_cb_var.str1.4 - 0x3c163e3c 0x69 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_proc_init.str1.4 - 0x3c163e3c 0x32 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_read.str1.4 - 0x3c163e3c 0x24 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_notify.str1.4 - 0x3c163e3c 0x9 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_log_indicate.str1.4 - 0x3c163e3c 0xb esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_rx_mtu.str1.4 - 0x3c163e3c 0x19 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_init.str1.4 - 0x3c163e3c 0x14 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.__func__.0 - 0x3c163e3c 0x11 esp-idf/bt/libbt.a(ble_gattc.c.obj) - *fill* 0x3c163e4d 0x3 - .rodata.__func__.1 - 0x3c163e50 0x1b esp-idf/bt/libbt.a(ble_gattc.c.obj) - *fill* 0x3c163e6b 0x1 - .rodata.ble_gattc_rx_exec_entries - 0x3c163e6c 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_rx_prep_entries - 0x3c163e7c 0x10 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_rx_read_rsp_entries - 0x3c163e8c 0x18 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_rx_read_type_complete_entries - 0x3c163ea4 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_rx_read_type_elem_entries - 0x3c163ec4 0x20 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_tmo_dispatch - 0x3c163ee4 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_resume_dispatch - 0x3c163f24 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_gattc_err_dispatch - 0x3c163f64 0x40 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .rodata.ble_att_tx_with_conn.str1.4 - 0x3c163fa4 0x4d esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .rodata.__func__.0 - 0x3c163fa4 0x15 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .rodata.ble_hs_startup_read_sup_f_tx.str1.4 - 0x3c163fb9 0x34 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .rodata.ble_hs_startup_go.str1.4 - 0x3c163fb9 0x35 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .rodata.ble_l2cap_sig_init.str1.4 - 0x3c163fb9 0x18 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - *fill* 0x3c163fb9 0x3 - .rodata.ble_l2cap_sig_dispatch - 0x3c163fbc 0x6c esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .rodata.ble_gap_log_wl.str1.4 - 0x3c164028 0x88 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_log_adv.str1.4 - 0x3c164028 0xb3 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_log_conn.str1.4 - 0x3c164028 0xbd esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_log_update.str1.4 - 0x3c164028 0x8f esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_wl_set.str1.4 - 0x3c164028 0x47 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_adv_start.str1.4 - 0x3c164028 0x32 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_rx_conn_complete.str1.4 - 0x3c164028 0x95 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_adv_stop_no_lock.str1.4 - 0x3c164028 0x39 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_connect.str1.4 - 0x3c164028 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_conn_cancel_no_lock.str1.4 - 0x3c164028 0x39 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_terminate_with_conn.str1.4 - 0x3c164028 0x5a esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_update_params.str1.4 - 0x3c164028 0x27 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_unpair.str1.4 - 0x3c164028 0xb3 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_gap_init.str1.4 - 0x3c164028 0x3f esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.__func__.1 - 0x3c164028 0x19 esp-idf/bt/libbt.a(ble_gap.c.obj) - *fill* 0x3c164041 0x3 - .rodata.ble_gap_conn_params_dflt - 0x3c164044 0x10 esp-idf/bt/libbt.a(ble_gap.c.obj) - .rodata.ble_hs_pvcy_set_default_irk.str1.4 - 0x3c164054 0x32 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .rodata.ble_l2cap_append_rx.str1.4 - 0x3c164054 0x47 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .rodata.ble_l2cap_reconfig.str1.4 - 0x3c164054 0x40 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .rodata.ble_l2cap_rx.str1.4 - 0x3c164054 0x38 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .rodata.ble_l2cap_init.str1.4 - 0x3c164054 0x14 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .rodata.__func__.0 - 0x3c164054 0x14 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .rodata.ble_hs_misc_restore_one_irk.str1.4 - 0x3c164068 0x37 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .rodata.ble_gatts_start.str1.4 - 0x3c164068 0x17 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .rodata.esp_core_err_to_name.str1.4 - 0x3c164068 0x65 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.esp_hci_err_to_name.str1.4 - 0x3c164068 0x58 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.ble_hs_hci_cmd_tx.str1.4 - 0x3c164068 0x7a esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.ble_hs_hci_init.str1.4 - 0x3c164068 0x10 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.str1.4 - 0x3c164068 0x1606 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.err_code_list - 0x3c164068 0x218 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.core_err_code_list - 0x3c164280 0xf8 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .rodata.ble_hs_hci_util_read_adv_tx_pwr.str1.4 - 0x3c164378 0x34 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .rodata.esp_nimble_init.str1.4 - 0x3c164378 0x2b esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata.esp_nimble_deinit.str1.4 - 0x3c164378 0x20 esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata.nimble_port_init.str1.4 - 0x3c164378 0xc6 esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata.nimble_port_deinit.str1.4 - 0x3c164378 0x28 esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata.nimble_port_stop.str1.4 - 0x3c164378 0x2f esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata 0x3c164378 0x48 esp-idf/bt/libbt.a(nimble_port.c.obj) - .rodata.esp_nimble_enable.str1.4 - 0x3c1643c0 0xc esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .rodata._os_mbuf_copypkthdr.str1.4 - 0x3c1643c0 0x5c esp-idf/bt/libbt.a(os_mbuf.c.obj) - .rodata.os_msys_get.str1.4 - 0x3c1643c0 0x42 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .rodata.__func__.0 - 0x3c1643c0 0x14 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .rodata.os_msys_init_once.str1.4 - 0x3c1643d4 0x51 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .rodata.os_msys_init.str1.4 - 0x3c1643d4 0xf esp-idf/bt/libbt.a(os_msys_init.c.obj) - .rodata.__func__.0 - 0x3c1643d4 0x12 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .rodata.npl_freertos_event_reset.str1.4 - 0x3c1643e6 0x86 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_callout_mem_reset.str1.4 - 0x3c1643e6 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_event_deinit.str1.4 - 0x3c1643e6 0xa esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_eventq_init.str1.4 - 0x3c1643e6 0x12 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_mutex_deinit.str1.4 - 0x3c1643e6 0xe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_sem_deinit.str1.4 - 0x3c1643e6 0x11 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_eventq_get.str1.4 - 0x3c1643e6 0x33 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_eventq_put.str1.4 - 0x3c1643e6 0xe esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_sem_pend.str1.4 - 0x3c1643e6 0xd esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_callout_init.str1.4 - 0x3c1643e6 0xd esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_callout_deinit.str1.4 - 0x3c1643e6 0x27 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_funcs_init.str1.4 - 0x3c1643e6 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_freertos_mempool_init.str1.4 - 0x3c1643e6 0x80 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1643e6 0x2 - .rodata.__func__.0 - 0x3c1643e8 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164402 0x2 - .rodata.__func__.1 - 0x3c164404 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.2 - 0x3c16441c 0x1c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.3 - 0x3c164438 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164451 0x3 - .rodata.__func__.4 - 0x3c164454 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c16446e 0x2 - .rodata.__func__.5 - 0x3c164470 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164489 0x3 - .rodata.__func__.6 - 0x3c16448c 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1644a2 0x2 - .rodata.__func__.7 - 0x3c1644a4 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.8 - 0x3c1644bc 0x16 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1644d2 0x2 - .rodata.__func__.9 - 0x3c1644d4 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1644ef 0x1 - .rodata.__func__.10 - 0x3c1644f0 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.11 - 0x3c164508 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164522 0x2 - .rodata.__func__.12 - 0x3c164524 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.13 - 0x3c16453c 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164557 0x1 - .rodata.__func__.14 - 0x3c164558 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.15 - 0x3c164570 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.__func__.16 - 0x3c164588 0x1f esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1645a7 0x1 - .rodata.__func__.17 - 0x3c1645a8 0x1b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1645c3 0x1 - .rodata.__func__.18 - 0x3c1645c4 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1645dd 0x3 - .rodata.__func__.19 - 0x3c1645e0 0x19 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c1645f9 0x3 - .rodata.__func__.20 - 0x3c1645fc 0x1a esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - *fill* 0x3c164616 0x2 - .rodata.__func__.21 - 0x3c164618 0x18 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .rodata.npl_funcs_ro - 0x3c164630 0xb0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - 0x3c164630 npl_funcs_ro - .rodata.ble_hci_rx_acl.str1.4 - 0x3c1646e0 0x3a esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .rodata.ble_hci_trans_hs_cmd_tx.str1.4 - 0x3c1646e0 0x49 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .rodata.host_rcv_pkt.str1.4 - 0x3c1646e0 0xe8 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .rodata.__func__.0 - 0x3c1646e0 0xf esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - *fill* 0x3c1646ef 0x1 - .rodata.__func__.1 - 0x3c1646f0 0xd esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - *fill* 0x3c1646fd 0x3 - .rodata.__func__.2 - 0x3c164700 0x18 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .srodata.dummy_vhci_host_cb - 0x3c164718 0x8 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .srodata.vhci_host_cb - 0x3c164720 0x8 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .rodata.str1.4 - 0x3c164728 0x71 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .rodata.__func__.0 - 0x3c164728 0x12 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .rodata.ble_transport_free.str1.4 - 0x3c16473a 0x4c esp-idf/bt/libbt.a(transport.c.obj) - .rodata.ble_transport_init.str1.4 - 0x3c16473a 0x5b esp-idf/bt/libbt.a(transport.c.obj) - *fill* 0x3c16473a 0x2 - .rodata.__func__.0 - 0x3c16473c 0x15 esp-idf/bt/libbt.a(transport.c.obj) - *fill* 0x3c164751 0x3 - .rodata.__func__.1 - 0x3c164754 0x13 esp-idf/bt/libbt.a(transport.c.obj) - *fill* 0x3c164767 0x1 - .rodata.__func__.3 - 0x3c164768 0x13 esp-idf/bt/libbt.a(transport.c.obj) - .rodata.ble_hs_conn_addrs.str1.4 - 0x3c16477b 0x4d esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .rodata.ble_hs_conn_init.str1.4 - 0x3c16477b 0x11 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - *fill* 0x3c16477b 0x1 - .rodata.__func__.0 - 0x3c16477c 0x12 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - *fill* 0x3c16478e 0x2 - .srodata.ble_hs_conn_null_addr - 0x3c164790 0x6 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .rodata.ble_sm_pair_fail_tx.str1.4 - 0x3c164796 0x3a esp-idf/bt/libbt.a(ble_sm.c.obj) - .rodata.ble_sm_init.str1.4 - 0x3c164796 0x11 esp-idf/bt/libbt.a(ble_sm.c.obj) - *fill* 0x3c164796 0x2 - .rodata.ble_sm_state_dispatch - 0x3c164798 0x2c esp-idf/bt/libbt.a(ble_sm.c.obj) - .rodata.ble_sm_dispatch - 0x3c1647c4 0x3c esp-idf/bt/libbt.a(ble_sm.c.obj) - .rodata.ble_att_svr_rx_notify_multi.str1.4 - 0x3c164800 0x60 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .rodata.ble_att_svr_start.str1.4 - 0x3c164800 0x17 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .rodata.ble_att_svr_init.str1.4 - 0x3c164800 0x1c esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .rodata.ble_sm_alg_f5.str1.4 - 0x3c164800 0x1c esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata.ble_sm_alg_f6.str1.4 - 0x3c164800 0x20 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata.ble_sm_alg_g2.str1.4 - 0x3c164800 0xe esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata.salt.0 - 0x3c164800 0x10 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata.ble_sm_alg_dbg_priv_key - 0x3c164810 0x20 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata 0x3c164830 0x35 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .rodata.ble_hs_stop_terminate_conn.str1.4 - 0x3c164865 0x49 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .rodata.ble_hs_stop_begin.str1.4 - 0x3c164865 0x49 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .rodata.ble_hs_stop_terminate_timeout_cb.str1.4 - 0x3c164865 0x4a esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - *fill* 0x3c164865 0x3 - .rodata.__func__.0 - 0x3c164868 0x12 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - *fill* 0x3c16487a 0x2 - .rodata.ble_sm_lgcy_resp_ioa - 0x3c16487c 0x19 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - *fill* 0x3c164895 0x3 - .rodata.ble_sm_lgcy_init_ioa - 0x3c164898 0x19 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - *fill* 0x3c1648b1 0x3 - .rodata.ble_sm_sc_resp_ioa - 0x3c1648b4 0x19 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - *fill* 0x3c1648cd 0x3 - .rodata.ble_sm_sc_init_ioa - 0x3c1648d0 0x19 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - *fill* 0x3c1648e9 0x3 - .rodata 0x3c1648ec 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.CSWTCH.370 - 0x3c16491c 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.btdm_controller_get_compile_version.str1.4 - 0x3c16492c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.btdm_controller_init.str1.4 - 0x3c16492c 0x159 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.btdm_rom_ref_init.str1.4 - 0x3c16492c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.rw_em_show.str1.4 - 0x3c16492c 0x3d9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.rw_pre_main.str1.4 - 0x3c16492c 0x19 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.str1.4 - 0x3c16492c 0x2e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .rodata.rw_rf_le_enter_test_mode.str1.4 - 0x3c16492c 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .rodata.rw_rf_le_exit_test_mode.str1.4 - 0x3c16492c 0x58 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .rodata.coex_schm_process_in_active.str1.4 - 0x3c16492c 0x19 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .rodata.r_emi_em_base_deinit.str1.4 - 0x3c16492c 0x6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.r_emi_em_base_init.str1.4 - 0x3c16492c 0x1d2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .rodata.btdm_hli_funcs_register.str1.4 - 0x3c16492c 0x5e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .rodata.str1.4 - 0x3c16492c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .rodata.r_ip_funcs_ro - 0x3c16492c 0x9e4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - 0x3c16492c r_ip_funcs_ro - .rodata.ll_channel_map_ind_handler_hack.str1.4 - 0x3c165310 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .rodata.r_llc_rem_ch_map_proc_continue.str1.4 - 0x3c165310 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .rodata.r_llc_loc_con_upd_proc_continue - 0x3c165310 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .rodata.r_llc_rem_con_upd_proc_continue - 0x3c16532c 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .rodata.ll_connection_update_ind_handler_hack.str1.4 - 0x3c165340 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .rodata.lld_con_estab_ind_handler_hack.str1.4 - 0x3c165340 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .rodata.r_lld_llcp_rx_ind_handler.str1.4 - 0x3c165340 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .rodata.r_llc_loc_phy_upd_proc_continue - 0x3c165340 0x14 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .rodata.f_ll_phy_update_ind_handler.str1.4 - 0x3c165354 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .rodata.r_llc_rem_phy_upd_proc_continue.str1.4 - 0x3c165354 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .rodata.str1.4 - 0x3c165354 0x30 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .rodata.str1.4 - 0x3c165354 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .rodata.r_lld_init_start_hook.str1.4 - 0x3c165354 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .rodata.r_lld_core_init.str1.4 - 0x3c165354 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .rodata.str1.4 - 0x3c165354 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .rodata.r_lld_scan_start_hook.str1.4 - 0x3c165354 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .rodata.r_lld_test_evt_start_cbk.str1.4 - 0x3c165354 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .rodata.hci_le_set_adv_param_cmd_handler.str1.4 - 0x3c165354 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .rodata.hci_host_nb_cmp_pkts_cmd_handler.str1.4 - 0x3c165354 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .rodata.llm_hci_command_handler_tab_ro - 0x3c165354 0x260 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .rodata.llm_local_le_states - 0x3c1655b4 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .rodata.lld_init_end_ind_pre_handler.str1.4 - 0x3c1655bc 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .rodata.r_llm_update_duplicate_scan_exceptional_list - 0x3c1655bc 0x38 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .rodata.le_default_evt_mask - 0x3c1655f4 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .rodata.llm_local_le_feats_42 - 0x3c1655fc 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - 0x3c1655fc llm_local_le_feats_42 - .rodata.f_hci_le_set_ext_scan_en_cmd_handler.str1.4 - 0x3c165604 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .rodata.r_modules_funcs_ro - 0x3c165604 0x3d0 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - 0x3c165604 r_modules_funcs_ro - .rodata.nvds_magic_number - 0x3c1659d4 0x4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .rodata.r_nvds_init.str1.4 - 0x3c1659d8 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .rodata.r_nvds_walk_tag.str1.4 - 0x3c1659d8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .rodata.btdm_osi_funcs_register.str1.4 - 0x3c1659d8 0x54 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - .rodata.r_plf_funcs_ro - 0x3c1659d8 0x118 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - 0x3c1659d8 r_plf_funcs_ro - .rodata.__func__.18371 - 0x3c165af0 0xd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .rodata.r_rw_rf_init.str1.4 - 0x3c165afd 0x1a /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .rodata.bt_controller_txpwr_level_2_index.str1.4 - 0x3c165afd 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - *fill* 0x3c165afd 0x3 - .rodata.cs_bt_pwr_tbl_lvl2idx_fpga - 0x3c165b00 0x10 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .rodata.cs_rf_pwr_tbl_chip - 0x3c165b10 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .rodata.cs_rf_pwr_tbl_fpga - 0x3c165b1c 0xc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .rodata.str1.4 - 0x3c165b28 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .rodata.r_rwip_driver_init.str1.4 - 0x3c165b28 0xe /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .rodata.str1.4 - 0x3c165b28 0x23 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .rodata.str1.4 - 0x3c165b28 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .rodata 0x3c165b28 0x18 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .rodata.str1.4 - 0x3c165b40 0xb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .rodata.r_btdm_task_post_impl.str1.4 - 0x3c165b40 0x13 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .rodata.str1.4 - 0x3c165b40 0x7 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .rodata.r_vhci_check_packet_allow.str1.4 - 0x3c165b40 0x41 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .rodata.r_vhci_init.str1.4 - 0x3c165b40 0xf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .rodata.str1.4 - 0x3c165b40 0x1cd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .rodata.hci_def_evt_msk - 0x3c165b40 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .rodata.hci_le_def_evt_msk - 0x3c165b48 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .rodata.r_ke_task_schedule.str1.4 - 0x3c165b50 0xa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .rodata.bt_rf_coex_hook_st_param_set - 0x3c165b50 0x1c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .rodata.CSWTCH.21 - 0x3c165b6c 0x8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .rodata.bt_rf_coex_hook_st_param_set.str1.4 - 0x3c165b74 0x60 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .rodata.coex_hook_st_group_tab - 0x3c165b74 0x9 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - *fill* 0x3c165b7d 0x3 - .rodata.coex_hook_st_group_to_coex_schm_st_tab - 0x3c165b80 0x5 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .rodata.sizeof_elt_in_repeated_array.str1.4 - 0x3c165b85 0x43 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.protobuf_c_message_get_packed_size.str1.4 - 0x3c165b85 0x47 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.repeated_field_pack.str1.4 - 0x3c165b85 0x2a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.protobuf_c_message_unpack.str1.4 - 0x3c165b85 0x4f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165b85 0x3 - .rodata.__func__.2 - 0x3c165b88 0x21 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165ba9 0x3 - .rodata.__func__.3 - 0x3c165bac 0x1d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165bc9 0x3 - .rodata.__func__.4 - 0x3c165bcc 0xd esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165bd9 0x3 - .rodata.__func__.5 - 0x3c165bdc 0x1a esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165bf6 0x2 - .rodata.__func__.11 - 0x3c165bf8 0x1d esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165c15 0x3 - .rodata.__func__.12 - 0x3c165c18 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.13 - 0x3c165c2c 0x14 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.14 - 0x3c165c40 0x18 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .rodata.__func__.15 - 0x3c165c58 0x1f esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165c77 0x1 - .rodata.__func__.16 - 0x3c165c78 0x23 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - *fill* 0x3c165c9b 0x1 - .srodata.protobuf_c_empty_string - 0x3c165c9c 0x1 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - 0x3c165c9c protobuf_c_empty_string - .rodata.print_string_ptr.str1.4 - 0x3c165c9d 0x6 esp-idf/json/libjson.a(cJSON.c.obj) - .rodata.print_number.str1.4 - 0x3c165c9d 0x17 esp-idf/json/libjson.a(cJSON.c.obj) - .rodata.print_value.str1.4 - 0x3c165c9d 0x15 esp-idf/json/libjson.a(cJSON.c.obj) - *fill* 0x3c165c9d 0x3 - .srodata.cst8 0x3c165ca0 0x148 esp-idf/json/libjson.a(cJSON.c.obj) - 0x28 (size before relaxing) - .rodata.esp_qrcode_print_console.str1.4 - 0x3c165de8 0x3 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .rodata.esp_qrcode_generate.str1.4 - 0x3c165de8 0x60 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .rodata.str1.4 - 0x3c165de8 0x7b esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .rodata.lt 0x3c165de8 0x40 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .rodata.calcSegmentBitLength.str1.4 - 0x3c165e28 0x48 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.numCharCountBits.str1.4 - 0x3c165e28 0x45 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.getTotalBits.str1.4 - 0x3c165e28 0xaf esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.appendBitsToBuffer.str1.4 - 0x3c165e28 0x44 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.getNumRawDataModules.str1.4 - 0x3c165e28 0x61 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.getNumDataCodewords.str1.4 - 0x3c165e28 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.getModule.str1.4 - 0x3c165e28 0x4e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.finderPenaltyCountPatterns.str1.4 - 0x3c165e28 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.reedSolomonComputeDivisor.str1.4 - 0x3c165e28 0x3b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.addEccAndInterleave.str1.4 - 0x3c165e28 0x66 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_getSize.str1.4 - 0x3c165e28 0x69 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.drawCodewords.str1.4 - 0x3c165e28 0x11 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.drawWhiteFunctionModules.str1.4 - 0x3c165e28 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.applyMask.str1.4 - 0x3c165e28 0x21 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.drawFormatBits.str1.4 - 0x3c165e28 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_encodeSegmentsAdvanced.str1.4 - 0x3c165e28 0xf0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_isAlphanumeric.str1.4 - 0x3c165e28 0x3e esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_calcSegmentBufferSize.str1.4 - 0x3c165e28 0x1f esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_makeNumeric.str1.4 - 0x3c165e28 0x53 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.qrcodegen_makeAlphanumeric.str1.4 - 0x3c165e28 0xd esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.1 - 0x3c165e28 0x1b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165e43 0x1 - .rodata.__func__.2 - 0x3c165e44 0x16 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165e5a 0x2 - .rodata.__func__.4 - 0x3c165e5c 0x20 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.5 - 0x3c165e7c 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.6 - 0x3c165e90 0x19 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165ea9 0x3 - .rodata.__func__.7 - 0x3c165eac 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.8 - 0x3c165ec0 0x12 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165ed2 0x2 - .rodata.table.9 - 0x3c165ed4 0x10 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.10 - 0x3c165ee4 0xf esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165ef3 0x1 - .rodata.__func__.11 - 0x3c165ef4 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165efe 0x2 - .rodata.__func__.12 - 0x3c165f00 0x1b esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f1b 0x1 - .rodata.__func__.13 - 0x3c165f1c 0x19 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f35 0x3 - .rodata.__func__.14 - 0x3c165f38 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f42 0x2 - .rodata.__func__.15 - 0x3c165f44 0xa esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f4e 0x2 - .rodata.__func__.16 - 0x3c165f50 0xe esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f5e 0x2 - .rodata.__func__.17 - 0x3c165f60 0x15 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165f75 0x3 - .rodata.__func__.18 - 0x3c165f78 0x1c esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.19 - 0x3c165f94 0x1a esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165fae 0x2 - .rodata.__func__.20 - 0x3c165fb0 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.21 - 0x3c165fc4 0x13 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c165fd7 0x1 - .rodata.__func__.22 - 0x3c165fd8 0x14 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.temp.23 - 0x3c165fec 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.temp.24 - 0x3c165ff8 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.temp.25 - 0x3c166004 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.temp.26 - 0x3c166010 0xc esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.__func__.27 - 0x3c16601c 0x11 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c16602d 0x3 - .rodata.__func__.28 - 0x3c166030 0xd esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c16603d 0x3 - .rodata.__func__.29 - 0x3c166040 0x21 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c166061 0x3 - .rodata.__func__.30 - 0x3c166064 0x15 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - *fill* 0x3c166079 0x3 - .rodata.NUM_ERROR_CORRECTION_BLOCKS - 0x3c16607c 0xa4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.ECC_CODEWORDS_PER_BLOCK - 0x3c166120 0xa4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .rodata.esp_rmaker_work_queue_task.str1.4 - 0x3c1661c4 0x6e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .rodata.esp_rmaker_work_queue_add_task.str1.4 - 0x3c1661c4 0x48 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .rodata.esp_rmaker_work_queue_init.str1.4 - 0x3c1661c4 0x85 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .rodata.esp_rmaker_work_queue_start.str1.4 - 0x3c1661c4 0xbb esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .rodata.esp_rmaker_work_queue_deinit.str1.4 - 0x3c1661c4 0xce esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .rodata.esp_rmaker_factory_init.str1.4 - 0x3c1661c4 0x77 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .rodata.esp_rmaker_factory_get.str1.4 - 0x3c1661c4 0xd esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .rodata.esp_rmaker_factory_set.str1.4 - 0x3c1661c4 0x66 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .rodata.__esp_rmaker_time_get_nvs.str1.4 - 0x3c1661c4 0x10 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_get_local_time_str.str1.4 - 0x3c1661c4 0x81 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_time_get_timezone_posix.str1.4 - 0x3c1661c4 0x9 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_time_get_timezone.str1.4 - 0x3c1661c4 0x3 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_timezone_enable.str1.4 - 0x3c1661c4 0x40 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_time_sync_init.str1.4 - 0x3c1661c4 0x72 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_print_current_time.str1.4 - 0x3c1661c4 0x4e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.esp_rmaker_time_sync_cb.str1.4 - 0x3c1661c4 0x20 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .rodata.str1.4 - 0x3c1661c4 0x2473 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .rodata.esp_rmaker_tz_db_tzs - 0x3c1661c4 0xd48 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .rodata.esp_rmaker_start_reset_timer.str1.4 - 0x3c166f0c 0x10 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .rodata.esp_rmaker_reboot.str1.4 - 0x3c166f0c 0x25 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .srodata.RMAKER_COMMON_EVENT - 0x3c166f0c 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - 0x3c166f0c RMAKER_COMMON_EVENT - .rodata.scli_task.str1.4 - 0x3c166f10 0xb1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .rodata.scli_init.str1.4 - 0x3c166f10 0x34 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .rodata.esp_rmaker_common_console_init.str1.4 - 0x3c166f10 0x29 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .rodata.unsubscribe_helper.str1.4 - 0x3c166f10 0x42 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_subscribe.str1.4 - 0x3c166f10 0x126 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_publish.str1.4 - 0x3c166f10 0x21 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_disconnect.str1.4 - 0x3c166f10 0x4c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_connect.str1.4 - 0x3c166f10 0x5a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_init.str1.4 - 0x3c166f10 0x111 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.esp_mqtt_glue_manage_long_data.str1.4 - 0x3c166f10 0xc1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.mqtt_event_handler.str1.4 - 0x3c166f10 0xb2 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.str1.4 - 0x3c166f10 0xf esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .rodata.platform_get_product_name.str1.4 - 0x3c166f10 0x6 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.platform_get_product_UID.str1.4 - 0x3c166f10 0x69 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.platform_get_product_version.str1.4 - 0x3c166f10 0x4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.platform_get_silicon_sku_code.str1.4 - 0x3c166f10 0x5 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.validate_platform_inputs.str1.4 - 0x3c166f10 0x54 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.create_APN_PPI_string.str1.4 - 0x3c166f10 0x66 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.esp_get_aws_ppi.str1.4 - 0x3c166f10 0x27 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.str1.4 - 0x3c166f10 0x35 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .rodata.register_generic_debug_commands.str1.4 - 0x3c166f10 0x199 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.register_reset_to_factory.str1.4 - 0x3c166f10 0x38 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.register_time_commands.str1.4 - 0x3c166f10 0x65 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.heap_trace_cli_handler.str1.4 - 0x3c166f10 0x64 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.cpu_dump_cli_handler.str1.4 - 0x3c166f10 0x6d esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.task_dump_cli_handler.str1.4 - 0x3c166f10 0x62 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.sock_dump_cli_handler.str1.4 - 0x3c166f10 0x6b esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.mem_dump_cli_handler.str1.4 - 0x3c166f10 0x74 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.up_time_cli_handler.str1.4 - 0x3c166f10 0x2d esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.reset_to_factory_handler.str1.4 - 0x3c166f10 0x26 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.tz_set_cli_handler.str1.4 - 0x3c166f10 0x1a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.local_time_cli_handler.str1.4 - 0x3c166f10 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.esp_rmaker_common_register_commands.str1.4 - 0x3c166f10 0x32 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .rodata.print_arg_command.str1.4 - 0x3c166f10 0xd esp-idf/console/libconsole.a(commands.c.obj) - .rodata.print_arg_help.str1.4 - 0x3c166f10 0x18 esp-idf/console/libconsole.a(commands.c.obj) - .rodata.help_command.str1.4 - 0x3c166f10 0x9b esp-idf/console/libconsole.a(commands.c.obj) - .rodata.esp_console_cmd_register.str1.4 - 0x3c166f10 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .rodata.esp_console_register_help_command.str1.4 - 0x3c166f10 0xea esp-idf/console/libconsole.a(commands.c.obj) - .srodata.print_verbose_level_arr - 0x3c166f10 0x8 esp-idf/console/libconsole.a(commands.c.obj) - .rodata.arg_end_errorfn.str1.4 - 0x3c166f18 0xaa esp-idf/console/libconsole.a(arg_end.c.obj) - .rodata.arg_int_errorfn.str1.4 - 0x3c166f18 0x87 esp-idf/console/libconsole.a(arg_int.c.obj) - .rodata.arg_int_scanfn.str1.4 - 0x3c166f18 0xb esp-idf/console/libconsole.a(arg_int.c.obj) - .rodata.arg_intn.str1.4 - 0x3c166f18 0x6 esp-idf/console/libconsole.a(arg_int.c.obj) - .rodata.arg_str_resetfn.str1.4 - 0x3c166f18 0x1 esp-idf/console/libconsole.a(arg_str.c.obj) - .rodata.arg_str_errorfn.str1.4 - 0x3c166f18 0x2b esp-idf/console/libconsole.a(arg_str.c.obj) - .rodata.arg_strn.str1.4 - 0x3c166f18 0x9 esp-idf/console/libconsole.a(arg_str.c.obj) - .rodata.panic.str1.4 - 0x3c166f18 0xc esp-idf/console/libconsole.a(arg_utils.c.obj) - .rodata.argtable3_xmalloc.str1.4 - 0x3c166f18 0x10 esp-idf/console/libconsole.a(arg_utils.c.obj) - .rodata.arg_cat_optionv.str1.4 - 0x3c166f18 0x1a esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_gnuswitch_ds.str1.4 - 0x3c166f18 0x1b esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_formatted_ds.str1.4 - 0x3c166f18 0x2 esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_option_ds.str1.4 - 0x3c166f18 0x2 esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_syntax_ds.str1.4 - 0x3c166f18 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.arg_print_glossary_ds.str1.4 - 0x3c166f18 0xf esp-idf/console/libconsole.a(argtable3.c.obj) - .rodata.create_string.str1.4 - 0x3c166f18 0x38 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_check_cfg_conflict.str1.4 - 0x3c166f18 0x162 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.run_event_loop.str1.4 - 0x3c166f18 0x2c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_dispatch_event.str1.4 - 0x3c166f18 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_create_transport.str1.4 - 0x3c166f18 0x59 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_set_cert_key_data.str1.4 - 0x3c166f18 0x5 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_set_ssl_transport_properties.str1.4 - 0x3c166f18 0xda esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_handle_transport_read_error.str1.4 - 0x3c166f18 0x5a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_write.str1.4 - 0x3c166f18 0x6c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.mqtt_message_receive.str1.4 - 0x3c166f18 0x7e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_connect.str1.4 - 0x3c166f18 0x19f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.send_disconnect_msg.str1.4 - 0x3c166f18 0x62 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.deliver_suback.str1.4 - 0x3c166f18 0x2b esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.deliver_publish.str1.4 - 0x3c166f18 0x64 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.mqtt_process_receive.str1.4 - 0x3c166f18 0x1a8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.mqtt_resend_queued.str1.4 - 0x3c166f18 0x23 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_ping.str1.4 - 0x3c166f18 0x4c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.process_keepalive.str1.4 - 0x3c166f18 0x53 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_task.str1.4 - 0x3c166f18 0x192 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.make_publish.str1.4 - 0x3c166f18 0x2f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_set_uri.str1.4 - 0x3c166f18 0x3e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_set_config.str1.4 - 0x3c166f18 0xb7 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_start.str1.4 - 0x3c166f18 0x50 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_stop.str1.4 - 0x3c166f18 0x6f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_subscribe_multiple.str1.4 - 0x3c166f18 0xa3 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_unsubscribe.str1.4 - 0x3c166f18 0x5f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.esp_mqtt_client_publish.str1.4 - 0x3c166f18 0x41 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.__func__.0 - 0x3c166f18 0x10 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.__func__.1 - 0x3c166f28 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166f3d 0x3 - .rodata.__func__.2 - 0x3c166f40 0x25 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166f65 0x3 - .rodata.__func__.3 - 0x3c166f68 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166f7d 0x3 - .rodata.__func__.4 - 0x3c166f80 0x11 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166f91 0x3 - .rodata.__FUNCTION__.5 - 0x3c166f94 0x26 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166fba 0x2 - .rodata.__FUNCTION__.6 - 0x3c166fbc 0x21 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c166fdd 0x3 - .rodata.__FUNCTION__.7 - 0x3c166fe0 0x18 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.__FUNCTION__.8 - 0x3c166ff8 0x13 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c16700b 0x1 - .rodata.__FUNCTION__.9 - 0x3c16700c 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c167021 0x3 - .rodata.__FUNCTION__.10 - 0x3c167024 0xe esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - *fill* 0x3c167032 0x2 - .rodata.__FUNCTION__.11 - 0x3c167034 0x14 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .rodata.mqtt_msg_connect.str1.4 - 0x3c167048 0x11 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .rodata.outbox_init.str1.4 - 0x3c167048 0x34 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .rodata.__FUNCTION__.0 - 0x3c167048 0xf esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - *fill* 0x3c167057 0x1 - .rodata.__FUNCTION__.1 - 0x3c167058 0xc esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .rodata.platform_create_id_string.str1.4 - 0x3c167064 0x4b esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .rodata.__FUNCTION__.0 - 0x3c167064 0x1a esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .rodata.intr_get_item.str1.4 - 0x3c16707e 0x70 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata._global_interrupt_handler.str1.4 - 0x3c16707e 0x83 esp-idf/riscv/libriscv.a(interrupt.c.obj) - *fill* 0x3c16707e 0x2 - .rodata.__func__.0 - 0x3c167080 0x1a esp-idf/riscv/libriscv.a(interrupt.c.obj) - *fill* 0x3c16709a 0x2 - .rodata.__func__.1 - 0x3c16709c 0x18 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata.gpio_input_disable.str1.4 - 0x3c1670b4 0x34 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_sleep_output_enable.str1.4 - 0x3c1670b4 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_set_intr_type.str1.4 - 0x3c1670b4 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_set_pull_mode.str1.4 - 0x3c1670b4 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_config.str1.4 - 0x3c1670b4 0x89 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_isr_handler_add.str1.4 - 0x3c1670b4 0x49 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_isr_register.str1.4 - 0x3c1670b4 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_install_isr_service.str1.4 - 0x3c1670b4 0x23 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.0 - 0x3c1670b4 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1670c2 0x2 - .rodata.__FUNCTION__.4 - 0x3c1670c4 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1670d7 0x1 - .rodata.__FUNCTION__.5 - 0x3c1670d8 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1670ea 0x2 - .rodata.__FUNCTION__.6 - 0x3c1670ec 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167102 0x2 - .rodata.__FUNCTION__.7 - 0x3c167104 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.8 - 0x3c16711c 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167131 0x3 - .rodata.__FUNCTION__.9 - 0x3c167134 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16714b 0x1 - .rodata.__FUNCTION__.10 - 0x3c16714c 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167165 0x3 - .rodata.__FUNCTION__.11 - 0x3c167168 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167182 0x2 - .rodata.__FUNCTION__.12 - 0x3c167184 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16719d 0x3 - .rodata.__FUNCTION__.13 - 0x3c1671a0 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1671b9 0x3 - .rodata.__FUNCTION__.14 - 0x3c1671bc 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.15 - 0x3c1671d4 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1671ed 0x3 - .rodata.__FUNCTION__.22 - 0x3c1671f0 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167202 0x2 - .rodata.__FUNCTION__.24 - 0x3c167204 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167219 0x3 - .rodata.__FUNCTION__.25 - 0x3c16721c 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167235 0x3 - .rodata.__FUNCTION__.27 - 0x3c167238 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16724b 0x1 - .rodata.__FUNCTION__.28 - 0x3c16724c 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16725f 0x1 - .rodata.__FUNCTION__.31 - 0x3c167260 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16726f 0x1 - .rodata.__FUNCTION__.32 - 0x3c167270 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.33 - 0x3c167280 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c167293 0x1 - .rodata.__FUNCTION__.34 - 0x3c167294 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.35 - 0x3c1672a8 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1672ba 0x2 - .rodata.__FUNCTION__.36 - 0x3c1672bc 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1672ce 0x2 - .rodata.__FUNCTION__.37 - 0x3c1672d0 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1672e1 0x3 - .rodata.__FUNCTION__.38 - 0x3c1672e4 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c1672f7 0x1 - .rodata.__FUNCTION__.39 - 0x3c1672f8 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16730a 0x2 - .rodata.__FUNCTION__.40 - 0x3c16730c 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - *fill* 0x3c16731d 0x3 - .rodata.__FUNCTION__.41 - 0x3c167320 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.__FUNCTION__.42 - 0x3c167330 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.esp_crt_check_bundle.str1.4 - 0x3c16733f 0x5a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .rodata.esp_crt_check_signature.str1.4 - 0x3c16733f 0xce esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .rodata.esp_crt_verify_callback.str1.4 - 0x3c16733f 0xf2 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .rodata.esp_crt_bundle_attach.str1.4 - 0x3c16733f 0x25 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - *fill* 0x3c16733f 0x1 - .rodata.s_dummy_crt - 0x3c167340 0x198 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .rodata.embedded - 0x3c1674d8 0x4407 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - 0x3c1674d8 x509_crt_bundle - 0x3c1674d8 _binary_x509_crt_bundle_start - 0x3c16b8db _binary_x509_crt_bundle_end - 0x3c16b8db x509_crt_bundle_length - .rodata.find_default_boot_partition.str1.4 - 0x3c16b8df 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.read_otadata.str1.4 - 0x3c16b8df 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_get_running_partition.str1.4 - 0x3c16b8df 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_write.str1.4 - 0x3c16b8df 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_get_app_partition_count.str1.4 - 0x3c16b8df 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_get_next_update_partition.str1.4 - 0x3c16b8df 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_current_ota_is_workable.str1.4 - 0x3c16b8df 0xb9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_begin.str1.4 - 0x3c16b8df 0x4e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x3c16b8df 0x1 - .rodata.__func__.0 - 0x3c16b8e0 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x3c16b902 0x2 - .rodata.__func__.1 - 0x3c16b904 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x3c16b922 0x2 - .rodata.__func__.3 - 0x3c16b924 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.load_partitions.str1.4 - 0x3c16b944 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.ensure_partitions_loaded.str1.4 - 0x3c16b944 0x2b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_unload_all.str1.4 - 0x3c16b944 0x4b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_next.str1.4 - 0x3c16b944 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_get.str1.4 - 0x3c16b944 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_verify.str1.4 - 0x3c16b944 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.__func__.1 - 0x3c16b944 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - *fill* 0x3c16b959 0x3 - .rodata.__func__.2 - 0x3c16b95c 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - *fill* 0x3c16b96e 0x2 - .rodata.__func__.3 - 0x3c16b970 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .rodata.esp_partition_write.str1.4 - 0x3c16b983 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - *fill* 0x3c16b983 0x1 - .rodata.__func__.0 - 0x3c16b984 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - *fill* 0x3c16b997 0x1 - .rodata.__func__.1 - 0x3c16b998 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - *fill* 0x3c16b9b2 0x2 - .rodata.__func__.2 - 0x3c16b9b4 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .rodata.__func__.3 - 0x3c16b9cc 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - *fill* 0x3c16b9e3 0x1 - .rodata.__func__.4 - 0x3c16b9e4 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .rodata.__func__.5 - 0x3c16b9f8 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .rodata.bootloader_common_check_efuse_blk_validity.str1.4 - 0x3c16ba0b 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_common_check_chip_validity.str1.4 - 0x3c16ba0b 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_mmap.str1.4 - 0x3c16ba0b 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.str1.4 - 0x3c16ba0b 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x3c16ba0b 0x1 - .rodata.__func__.1 - 0x3c16ba0c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.verify_segment_header.str1.4 - 0x3c16ba34 0x81 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_appended_hash_and_sig.str1.4 - 0x3c16ba34 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_checksum.str1.4 - 0x3c16ba34 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.verify_image_header.str1.4 - 0x3c16ba34 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segment_data.str1.4 - 0x3c16ba34 0x32 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segment.str1.4 - 0x3c16ba34 0xba esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segments.str1.4 - 0x3c16ba34 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.verify_simple_hash.str1.4 - 0x3c16ba34 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.image_load.str1.4 - 0x3c16ba34 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.bootloader_sha256_data.str1.4 - 0x3c16ba34 0x59 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .rodata.__func__.0 - 0x3c16ba34 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - *fill* 0x3c16ba4d 0x3 - .rodata.__func__.1 - 0x3c16ba50 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .rodata.s_get_bus_mask.str1.4 - 0x3c16ba67 0x37 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.s_reserve_irom_region.str1.4 - 0x3c16ba67 0xbe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.s_reserve_drom_region.str1.4 - 0x3c16ba67 0x8b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.str1.4 - 0x3c16ba67 0x5d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map_init.str1.4 - 0x3c16ba67 0x5f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 - 0x3c16ba67 0x46 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 - 0x3c16ba67 0x21 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map.str1.4 - 0x3c16ba67 0x142 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_unmap.str1.4 - 0x3c16ba67 0x8c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_vaddr_to_paddr.str1.4 - 0x3c16ba67 0x64 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16ba67 0x1 - .rodata.__FUNCTION__.1 - 0x3c16ba68 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16ba7f 0x1 - .rodata.__FUNCTION__.2 - 0x3c16ba80 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16ba8e 0x2 - .rodata.__func__.3 - 0x3c16ba90 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16baa7 0x1 - .rodata.__func__.4 - 0x3c16baa8 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__FUNCTION__.5 - 0x3c16bab4 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__FUNCTION__.7 - 0x3c16bac0 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__func__.8 - 0x3c16baf0 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16bb06 0x2 - .rodata.__func__.9 - 0x3c16bb08 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.__func__.10 - 0x3c16bb1c 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16bb32 0x2 - .rodata.__func__.11 - 0x3c16bb34 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - *fill* 0x3c16bb45 0x3 - .rodata.g_mmu_mem_regions - 0x3c16bb48 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - 0x3c16bb48 g_mmu_mem_regions - .rodata.s_merge_contiguous_pages.str1.4 - 0x3c16bb60 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.spi_flash_munmap.str1.4 - 0x3c16bb60 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.__func__.1 - 0x3c16bb60 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.esp_mspi_get_io.str1.4 - 0x3c16bb71 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - *fill* 0x3c16bb71 0x3 - .rodata.__func__.0 - 0x3c16bb74 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .srodata.s_mspi_io_num_default - 0x3c16bb84 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .rodata.str1.4 - 0x3c16bb8a 0x168 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.esp_flash_read_unique_chip_id.str1.4 - 0x3c16bb8a 0x7b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3c16bb8a 0x2 - .rodata.__func__.0 - 0x3c16bb8c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.__func__.1 - 0x3c16bb9c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x3c16bbb3 0x1 - .rodata.io_mode_str - 0x3c16bbb4 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.esp_flash_init_default_chip.str1.4 - 0x3c16bc68 0x124 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.__FUNCTION__.0 - 0x3c16bc68 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.TAG 0x3c16bc84 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.str1.4 - 0x3c16bc8e 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *fill* 0x3c16bc8e 0x2 - .rodata.__func__.0 - 0x3c16bc90 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .rodata.str1.4 - 0x3c16bca9 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .rodata.esp_crosscore_int_init.str1.4 - 0x3c16bca9 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - *fill* 0x3c16bca9 0x3 - .rodata.__func__.0 - 0x3c16bcac 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - *fill* 0x3c16bcc3 0x1 - .rodata.__func__.1 - 0x3c16bcc4 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .rodata.add_entry.str1.4 - 0x3c16bcdb 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.delete_entry.str1.4 - 0x3c16bcdb 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.task_wdt_timeout_abort.str1.4 - 0x3c16bcdb 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.task_wdt_timeout_handling.str1.4 - 0x3c16bcdb 0x33 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_add.str1.4 - 0x3c16bcdb 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.subscribe_idle.str1.4 - 0x3c16bcdb 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_init.str1.4 - 0x3c16bcdb 0x81 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_print_triggered_tasks.str1.4 - 0x3c16bcdb 0xad esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.task_wdt_isr.str1.4 - 0x3c16bcdb 0x27 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bcdb 0x1 - .rodata.__FUNCTION__.5 - 0x3c16bcdc 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bcef 0x1 - .rodata.__FUNCTION__.7 - 0x3c16bcf0 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bcfa 0x2 - .rodata.__FUNCTION__.8 - 0x3c16bcfc 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bd0d 0x3 - .rodata.__func__.12 - 0x3c16bd10 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bd1f 0x1 - .rodata.__func__.13 - 0x3c16bd20 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bd2d 0x3 - .rodata.__FUNCTION__.14 - 0x3c16bd30 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x3c16bd42 0x2 - .rodata.__func__.15 - 0x3c16bd44 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.str1.4 - 0x3c16bd5b 0x3f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .rodata.get_flash_clock_divider.str1.4 - 0x3c16bd5b 0x7c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 - 0x3c16bd5b 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .rodata.clk_hal_xtal_get_freq_mhz.str1.4 - 0x3c16bd5b 0x43 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - *fill* 0x3c16bd5b 0x1 - .rodata.__func__.0 - 0x3c16bd5c 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .rodata.__func__.1 - 0x3c16bd78 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .rodata.gpio_hal_intr_enable_on_core.str1.4 - 0x3c16bd96 0x66 esp-idf/hal/libhal.a(gpio_hal.c.obj) - *fill* 0x3c16bd96 0x2 - .rodata.__func__.0 - 0x3c16bd98 0x1c esp-idf/hal/libhal.a(gpio_hal.c.obj) - .rodata.print_buffer.str1.4 - 0x3c16bdb4 0x50 esp-idf/log/liblog.a(log_buffers.c.obj) - .rodata.esp_log_util_cvt_hex.str1.4 - 0x3c16bdb4 0x11 esp-idf/log/liblog.a(util.c.obj) - .rodata.str1.4 - 0x3c16bdb4 0x2e4 esp-idf/soc/libsoc.a(interrupts.c.obj) - .rodata.esp_isr_names - 0x3c16bdb4 0xf8 esp-idf/soc/libsoc.a(interrupts.c.obj) - 0x3c16bdb4 esp_isr_names - .rodata.GPIO_HOLD_MASK - 0x3c16beac 0x58 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - 0x3c16beac GPIO_HOLD_MASK - .rodata.GPIO_PIN_MUX_REG - 0x3c16bf04 0x58 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - 0x3c16bf04 GPIO_PIN_MUX_REG - .rodata.uart_periph_signal - 0x3c16bf5c 0x28 esp-idf/soc/libsoc.a(uart_periph.c.obj) - 0x3c16bf5c uart_periph_signal - .rodata.periph_rtc_dig_clk8m_disable.str1.4 - 0x3c16bf84 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .rodata.__func__.0 - 0x3c16bf84 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .rodata.esp_fill_random.str1.4 - 0x3c16bfa1 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - *fill* 0x3c16bfa1 0x3 - .rodata.__func__.0 - 0x3c16bfa4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .rodata.get_idx.str1.4 - 0x3c16bfb4 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.generate_mac.str1.4 - 0x3c16bfb4 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.get_efuse_factory_mac.str1.4 - 0x3c16bfb4 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.get_efuse_mac_custom.str1.4 - 0x3c16bfb4 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.get_mac_addr_from_mac_table.str1.4 - 0x3c16bfb4 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.esp_iface_mac_addr_set.str1.4 - 0x3c16bfb4 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.esp_read_mac.str1.4 - 0x3c16bfb4 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.__func__.0 - 0x3c16bfb4 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - *fill* 0x3c16bfca 0x2 - .rodata.__func__.1 - 0x3c16bfcc 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .rodata.temperature_sensor_power_release.str1.4 - 0x3c16bfe1 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - *fill* 0x3c16bfe1 0x3 - .rodata.__func__.0 - 0x3c16bfe4 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .srodata.cst8 0x3c16c005 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .rodata.esp_clk_tree_src_get_freq_hz.str1.4 - 0x3c16c005 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - *fill* 0x3c16c005 0x3 - .rodata.__FUNCTION__.0 - 0x3c16c008 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - *fill* 0x3c16c025 0x3 - .srodata.g_spi_lock_main_flash_dev - 0x3c16c028 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - 0x3c16c028 g_spi_lock_main_flash_dev - .rodata.adc_lock_release.str1.4 - 0x3c16c02c 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.adc_apb_periph_free.str1.4 - 0x3c16c02c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.__func__.0 - 0x3c16c02c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.prvProcessReceivedCommands.str1.4 - 0x3c16c040 0x5b esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.prvInitialiseNewTimer.str1.4 - 0x3c16c040 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerCreateTimerTask.str1.4 - 0x3c16c040 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xTimerGenericCommand.str1.4 - 0x3c16c040 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.__func__.2 - 0x3c16c040 0x12 esp-idf/freertos/libfreertos.a(timers.c.obj) - *fill* 0x3c16c052 0x2 - .rodata.__func__.11 - 0x3c16c054 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) - *fill* 0x3c16c069 0x3 - .rodata.__func__.13 - 0x3c16c06c 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) - *fill* 0x3c16c082 0x2 - .rodata.__func__.16 - 0x3c16c084 0x1b esp-idf/freertos/libfreertos.a(timers.c.obj) - *fill* 0x3c16c09f 0x1 - .rodata.__func__.18 - 0x3c16c0a0 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) - .rodata.xEventGroupCreateStatic.str1.4 - 0x3c16c0b6 0xab esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.xEventGroupWaitBits.str1.4 - 0x3c16c0b6 0x9f esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.xEventGroupClearBits.str1.4 - 0x3c16c0b6 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.xEventGroupSetBits.str1.4 - 0x3c16c0b6 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.vEventGroupDelete.str1.4 - 0x3c16c0b6 0x72 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x3c16c0b6 0x2 - .rodata.__func__.1 - 0x3c16c0b8 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x3c16c0ca 0x2 - .rodata.__func__.2 - 0x3c16c0cc 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x3c16c0df 0x1 - .rodata.__func__.3 - 0x3c16c0e0 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x3c16c0f5 0x3 - .rodata.__func__.4 - 0x3c16c0f8 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.__func__.6 - 0x3c16c10c 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .rodata.prvTaskDeleteWithCaps.str1.4 - 0x3c16c120 0xc0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .rodata.vTaskDeleteWithCaps.str1.4 - 0x3c16c120 0xd6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .rodata.__func__.1 - 0x3c16c120 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - *fill* 0x3c16c139 0x3 - .rodata.__func__.2 - 0x3c16c13c 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - *fill* 0x3c16c151 0x3 - .rodata.__func__.3 - 0x3c16c154 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - *fill* 0x3c16c16a 0x2 - .rodata.__func__.4 - 0x3c16c16c 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .rodata.str1.4 - 0x3c16c180 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.init_timer_task.str1.4 - 0x3c16c180 0x6c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.esp_timer_init.str1.4 - 0x3c16c180 0x1d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.__func__.0 - 0x3c16c180 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.ets_timer_setfn.str1.4 - 0x3c16c18d 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .rodata.str1.4 - 0x3c16c18d 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x3c16c18d 0x3 - .rodata.__func__.2 - 0x3c16c190 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x3c16c19e 0x2 - .rodata.__func__.1 - 0x3c16c1a0 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x3c16c1b1 0x3 - .rodata.__func__.0 - 0x3c16c1b4 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .rodata.prvReturnItemByteBuf.str1.4 - 0x3c16c1c4 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvGetItemByteBuf.str1.4 - 0x3c16c1c4 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvCheckItemFitsByteBuffer.str1.4 - 0x3c16c1c4 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvReturnItemDefault.str1.4 - 0x3c16c1c4 0x165 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvGetItemDefault.str1.4 - 0x3c16c1c4 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvAcquireItemNoSplit.str1.4 - 0x3c16c1c4 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvSendItemDoneNoSplit.str1.4 - 0x3c16c1c4 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvInitializeNewRingbuffer.str1.4 - 0x3c16c1c4 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.prvReceiveGeneric.str1.4 - 0x3c16c1c4 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferCreate.str1.4 - 0x3c16c1c4 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferCreateStatic.str1.4 - 0x3c16c1c4 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferSendAcquire.str1.4 - 0x3c16c1c4 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferSendComplete.str1.4 - 0x3c16c1c4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferSend.str1.4 - 0x3c16c1c4 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferReceive.str1.4 - 0x3c16c1c4 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferReceiveUpTo.str1.4 - 0x3c16c1c4 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferGetStaticBuffer.str1.4 - 0x3c16c1c4 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.vRingbufferDeleteWithCaps.str1.4 - 0x3c16c1c4 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.0 - 0x3c16c1c4 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c1de 0x2 - .rodata.__func__.1 - 0x3c16c1e0 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c1fb 0x1 - .rodata.__func__.4 - 0x3c16c1fc 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c20f 0x1 - .rodata.__func__.7 - 0x3c16c210 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c22a 0x2 - .rodata.__func__.8 - 0x3c16c22c 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c246 0x2 - .rodata.__func__.9 - 0x3c16c248 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c25a 0x2 - .rodata.__func__.10 - 0x3c16c25c 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c279 0x3 - .rodata.__func__.11 - 0x3c16c27c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c292 0x2 - .rodata.__func__.13 - 0x3c16c294 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c2ab 0x1 - .rodata.__func__.16 - 0x3c16c2ac 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c2c5 0x3 - .rodata.__func__.17 - 0x3c16c2c8 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c2e2 0x2 - .rodata.__func__.18 - 0x3c16c2e4 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c2f6 0x2 - .rodata.__func__.19 - 0x3c16c2f8 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c30b 0x1 - .rodata.__func__.20 - 0x3c16c30c 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c323 0x1 - .rodata.__func__.21 - 0x3c16c324 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.24 - 0x3c16c334 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.25 - 0x3c16c34c 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.26 - 0x3c16c360 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.27 - 0x3c16c378 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c38f 0x1 - .rodata.__func__.28 - 0x3c16c390 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c3a6 0x2 - .rodata.__func__.29 - 0x3c16c3a8 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c3ba 0x2 - .rodata.__func__.30 - 0x3c16c3bc 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c3d1 0x3 - .rodata.__func__.31 - 0x3c16c3d4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c3ea 0x2 - .rodata.__func__.32 - 0x3c16c3ec 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c407 0x1 - .rodata.__func__.33 - 0x3c16c408 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c41b 0x1 - .rodata.__func__.34 - 0x3c16c41c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c42e 0x2 - .rodata.__func__.35 - 0x3c16c430 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x3c16c445 0x3 - .rodata.__func__.36 - 0x3c16c448 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.str1.4 - 0x3c16c45a 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - *fill* 0x3c16c45a 0x2 - .rodata 0x3c16c45c 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .rodata.loop_node_remove_handler.str1.4 - 0x3c16c470 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.handler_instances_add.str1.4 - 0x3c16c470 0x3d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.base_node_add_handler.str1.4 - 0x3c16c470 0x2a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.loop_node_add_handler.str1.4 - 0x3c16c470 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_loop_create.str1.4 - 0x3c16c470 0xfd esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_loop_run.str1.4 - 0x3c16c470 0x52 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_loop_run_task.str1.4 - 0x3c16c470 0x28 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_handler_register_with_internal.str1.4 - 0x3c16c470 0x84 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_handler_unregister_with_internal.str1.4 - 0x3c16c470 0x56 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.__func__.1 - 0x3c16c470 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x3c16c482 0x2 - .rodata.__func__.2 - 0x3c16c484 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x3c16c4af 0x1 - .rodata.__func__.3 - 0x3c16c4b0 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x3c16c4d9 0x3 - .rodata.__func__.4 - 0x3c16c4dc 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x3c16c4f2 0x2 - .rodata.__func__.5 - 0x3c16c4f4 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.nvs_flash_init.str1.4 - 0x3c16c507 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - *fill* 0x3c16c507 0x1 - .rodata._ZTVN3nvs9NVSHandleE - 0x3c16c508 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x3c16c508 vtable for nvs::NVSHandle - .rodata._ZTVN3nvs15NVSHandleSimpleE - 0x3c16c548 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x3c16c548 vtable for nvs::NVSHandleSimple - .rodata._ZTVN3nvs9PartitionE - 0x3c16c588 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x3c16c588 vtable for nvs::Partition - .rodata._ZTVN3nvs12NVSPartitionE - 0x3c16c5bc 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x3c16c5bc vtable for nvs::NVSPartition - .rodata._ZTVN3nvs19NVSPartitionManagerE - 0x3c16c5f0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x3c16c5f0 vtable for nvs::NVSPartitionManager - .rodata.rmt_ll_rx_set_channel_clock_div.str1.4 - 0x3c16c600 0x65 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_ll_tx_set_carrier_high_low_ticks.str1.4 - 0x3c16c600 0x70 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_ll_set_group_clock_src.str1.4 - 0x3c16c600 0x40 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_internal_config.str1.4 - 0x3c16c600 0x172 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_get_clk_div.str1.4 - 0x3c16c600 0x25 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_rx_thr_intr_en.str1.4 - 0x3c16c600 0x28 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_set_gpio.str1.4 - 0x3c16c600 0x48 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_config.str1.4 - 0x3c16c600 0x66 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_isr_register.str1.4 - 0x3c16c600 0x4f esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_driver_install.str1.4 - 0x3c16c600 0x45 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_write_items.str1.4 - 0x3c16c600 0x24 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_wait_tx_done.str1.4 - 0x3c16c600 0x25 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_translator_init.str1.4 - 0x3c16c600 0x5b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_write_sample.str1.4 - 0x3c16c600 0x2d esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.rmt_get_counter_clock.str1.4 - 0x3c16c600 0x36 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.check_rmt_legacy_driver_conflict.str1.4 - 0x3c16c600 0xbb esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.4 - 0x3c16c600 0x16 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c616 0x2 - .rodata.__FUNCTION__.6 - 0x3c16c618 0x11 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c629 0x3 - .rodata.__FUNCTION__.9 - 0x3c16c62c 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.11 - 0x3c16c640 0x11 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c651 0x3 - .rodata.__FUNCTION__.13 - 0x3c16c654 0x13 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c667 0x1 - .rodata.__FUNCTION__.15 - 0x3c16c668 0x11 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c679 0x3 - .rodata.__func__.17 - 0x3c16c67c 0x25 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c6a1 0x3 - .rodata.__func__.18 - 0x3c16c6a4 0x19 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c6bd 0x3 - .rodata.__FUNCTION__.19 - 0x3c16c6c0 0x14 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__FUNCTION__.20 - 0x3c16c6d4 0xb esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c6df 0x1 - .rodata.__FUNCTION__.21 - 0x3c16c6e0 0xd esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c6ed 0x3 - .rodata.__FUNCTION__.22 - 0x3c16c6f0 0x17 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c707 0x1 - .rodata.__func__.30 - 0x3c16c708 0x1b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c723 0x1 - .rodata.__FUNCTION__.43 - 0x3c16c724 0xd esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c731 0x3 - .rodata.__func__.46 - 0x3c16c734 0x25 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - *fill* 0x3c16c759 0x3 - .rodata.__func__.53 - 0x3c16c75c 0x20 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.__func__.54 - 0x3c16c77c 0x20 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .rodata.load_cal_data_from_nvs_handle.str1.4 - 0x3c16c79c 0x126 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.store_cal_data_to_nvs_handle.str1.4 - 0x3c16c79c 0xdf esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.esp_phy_load_cal_data_from_nvs.str1.4 - 0x3c16c79c 0x60 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.esp_phy_load_cal_and_init.str1.4 - 0x3c16c79c 0x1ad esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .rodata.__func__.5 - 0x3c16c79c 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3c16c7b6 0x2 - .rodata.__func__.3 - 0x3c16c7b8 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3c16c7d5 0x3 - .rodata.__func__.1 - 0x3c16c7d8 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3c16c7f6 0x2 - .rodata.__func__.0 - 0x3c16c7f8 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - *fill* 0x3c16c817 0x1 - .rodata.phy_init_data - 0x3c16c818 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - 0x3c16c818 phy_init_data - .rodata.phy_track_pll_init.str1.4 - 0x3c16c898 0xce esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.phy_track_pll_deinit.str1.4 - 0x3c16c898 0x4a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.__func__.0 - 0x3c16c898 0x15 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - *fill* 0x3c16c8ad 0x3 - .rodata.__func__.1 - 0x3c16c8b0 0x13 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.free_socket_locked.str1.4 - 0x3c16c8c3 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.sock_inc_used_locked.str1.4 - 0x3c16c8c3 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_sockopt_to_ipopt.str1.4 - 0x3c16c8c3 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.alloc_socket.str1.4 - 0x3c16c8c3 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_unlink_select_cb.str1.4 - 0x3c16c8c3 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_sock_make_addr.str1.4 - 0x3c16c8c3 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_selscan.str1.4 - 0x3c16c8c3 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_select_dec_sockets_used.str1.4 - 0x3c16c8c3 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_pollscan.str1.4 - 0x3c16c8c3 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_recv_tcp.str1.4 - 0x3c16c8c3 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_recvfrom_udp_raw.str1.4 - 0x3c16c8c3 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.event_callback.str1.4 - 0x3c16c8c3 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_getsockopt_callback.str1.4 - 0x3c16c8c3 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_setsockopt_impl.str1.4 - 0x3c16c8c3 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_accept.str1.4 - 0x3c16c8c3 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_close.str1.4 - 0x3c16c8c3 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_recvfrom.str1.4 - 0x3c16c8c3 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c8c3 0x1 - .rodata.__func__.0 - 0x3c16c8c4 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c8d9 0x3 - .rodata.__func__.1 - 0x3c16c8dc 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c8f5 0x3 - .rodata.__func__.2 - 0x3c16c8f8 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c90e 0x2 - .rodata.__func__.3 - 0x3c16c910 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c929 0x3 - .rodata.__func__.6 - 0x3c16c92c 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c949 0x3 - .rodata.__func__.7 - 0x3c16c94c 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c959 0x3 - .rodata.__func__.8 - 0x3c16c95c 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c972 0x2 - .rodata.__func__.9 - 0x3c16c974 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c989 0x3 - .rodata.__func__.10 - 0x3c16c98c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.__func__.11 - 0x3c16c998 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c9a7 0x1 - .rodata.__func__.12 - 0x3c16c9a8 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c9be 0x2 - .rodata.__func__.13 - 0x3c16c9c0 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.__func__.14 - 0x3c16c9d4 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c9e2 0x2 - .rodata.__func__.15 - 0x3c16c9e4 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16c9ef 0x1 - .rodata.__func__.16 - 0x3c16c9f0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.__func__.17 - 0x3c16c9fc 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16ca0f 0x1 - .rodata.__func__.18 - 0x3c16ca10 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16ca1d 0x3 - .rodata.__func__.19 - 0x3c16ca20 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x3c16ca2e 0x2 - .rodata.__func__.20 - 0x3c16ca30 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.tcpip_thread_handle_msg.str1.4 - 0x3c16ca3c 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.tcpip_inpkt.str1.4 - 0x3c16ca3c 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.tcpip_send_msg_wait_sem.str1.4 - 0x3c16ca3c 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.tcpip_init.str1.4 - 0x3c16ca3c 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.0 - 0x3c16ca3c 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.1 - 0x3c16ca54 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x3c16ca61 0x3 - .rodata.__func__.2 - 0x3c16ca64 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x3c16ca6f 0x1 - .rodata.__func__.6 - 0x3c16ca70 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x3c16ca7f 0x1 - .rodata.__func__.7 - 0x3c16ca80 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.__func__.8 - 0x3c16ca98 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x3c16caab 0x1 - .rodata.__func__.9 - 0x3c16caac 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x3c16cabb 0x1 - .rodata.__func__.10 - 0x3c16cabc 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) - .rodata.sntp_send_request.str1.4 - 0x3c16cac8 0x43 esp-idf/lwip/liblwip.a(sntp.c.obj) - .rodata.sntp_init.str1.4 - 0x3c16cac8 0x2b esp-idf/lwip/liblwip.a(sntp.c.obj) - .rodata.sntp_setoperatingmode.str1.4 - 0x3c16cac8 0x54 esp-idf/lwip/liblwip.a(sntp.c.obj) - .rodata.__func__.0 - 0x3c16cac8 0x16 esp-idf/lwip/liblwip.a(sntp.c.obj) - *fill* 0x3c16cade 0x2 - .rodata.__func__.1 - 0x3c16cae0 0x12 esp-idf/lwip/liblwip.a(sntp.c.obj) - *fill* 0x3c16caf2 0x2 - .rodata.__func__.2 - 0x3c16caf4 0xa esp-idf/lwip/liblwip.a(sntp.c.obj) - .rodata.dns_call_found.str1.4 - 0x3c16cafe 0x3d esp-idf/lwip/liblwip.a(dns.c.obj) - .rodata.dns_send.str1.4 - 0x3c16cafe 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) - .rodata.dns_check_entry.str1.4 - 0x3c16cafe 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) - .rodata.dns_gethostbyname_addrtype.str1.4 - 0x3c16cafe 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x3c16cafe 0x2 - .rodata.__func__.0 - 0x3c16cb00 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x3c16cb09 0x3 - .rodata.__func__.1 - 0x3c16cb0c 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) - .rodata.__func__.2 - 0x3c16cb1c 0xf esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x3c16cb2b 0x1 - .rodata.dns_mquery_v6group - 0x3c16cb2c 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x3c16cb2c dns_mquery_v6group - .rodata.dns_mquery_v4group - 0x3c16cb44 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x3c16cb44 dns_mquery_v4group - .rodata.ip_addr_any_type - 0x3c16cb5c 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x3c16cb5c ip_addr_any_type - .rodata.mem_malloc.str1.4 - 0x3c16cb74 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) - .rodata.mem_free.str1.4 - 0x3c16cb74 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) - .rodata.__func__.0 - 0x3c16cb74 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) - *fill* 0x3c16cb7d 0x3 - .rodata.__func__.1 - 0x3c16cb80 0xb esp-idf/lwip/liblwip.a(mem.c.obj) - .rodata.do_memp_malloc_pool.str1.4 - 0x3c16cb8b 0x4e esp-idf/lwip/liblwip.a(memp.c.obj) - .rodata.do_memp_free_pool.str1.4 - 0x3c16cb8b 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x3c16cb8b 0x1 - .rodata.__func__.0 - 0x3c16cb8c 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x3c16cb9e 0x2 - .rodata.__func__.2 - 0x3c16cba0 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) - .rodata.memp_pools - 0x3c16cbb4 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cbb4 memp_pools - .srodata.memp_PBUF_POOL - 0x3c16cbfc 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cbfc memp_PBUF_POOL - *fill* 0x3c16cbfe 0x2 - .srodata.memp_PBUF - 0x3c16cc00 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc00 memp_PBUF - *fill* 0x3c16cc02 0x2 - .srodata.memp_MLD6_GROUP - 0x3c16cc04 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc04 memp_MLD6_GROUP - *fill* 0x3c16cc06 0x2 - .srodata.memp_ND6_QUEUE - 0x3c16cc08 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc08 memp_ND6_QUEUE - *fill* 0x3c16cc0a 0x2 - .srodata.memp_NETDB - 0x3c16cc0c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc0c memp_NETDB - *fill* 0x3c16cc0e 0x2 - .srodata.memp_SYS_TIMEOUT - 0x3c16cc10 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc10 memp_SYS_TIMEOUT - *fill* 0x3c16cc12 0x2 - .srodata.memp_IGMP_GROUP - 0x3c16cc14 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc14 memp_IGMP_GROUP - *fill* 0x3c16cc16 0x2 - .srodata.memp_ARP_QUEUE - 0x3c16cc18 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc18 memp_ARP_QUEUE - *fill* 0x3c16cc1a 0x2 - .srodata.memp_TCPIP_MSG_INPKT - 0x3c16cc1c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc1c memp_TCPIP_MSG_INPKT - *fill* 0x3c16cc1e 0x2 - .srodata.memp_TCPIP_MSG_API - 0x3c16cc20 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc20 memp_TCPIP_MSG_API - *fill* 0x3c16cc22 0x2 - .srodata.memp_NETCONN - 0x3c16cc24 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc24 memp_NETCONN - *fill* 0x3c16cc26 0x2 - .srodata.memp_NETBUF - 0x3c16cc28 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc28 memp_NETBUF - *fill* 0x3c16cc2a 0x2 - .srodata.memp_FRAG_PBUF - 0x3c16cc2c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc2c memp_FRAG_PBUF - *fill* 0x3c16cc2e 0x2 - .srodata.memp_TCP_SEG - 0x3c16cc30 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc30 memp_TCP_SEG - *fill* 0x3c16cc32 0x2 - .srodata.memp_TCP_PCB_LISTEN - 0x3c16cc34 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc34 memp_TCP_PCB_LISTEN - *fill* 0x3c16cc36 0x2 - .srodata.memp_TCP_PCB - 0x3c16cc38 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc38 memp_TCP_PCB - *fill* 0x3c16cc3a 0x2 - .srodata.memp_UDP_PCB - 0x3c16cc3c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc3c memp_UDP_PCB - *fill* 0x3c16cc3e 0x2 - .srodata.memp_RAW_PCB - 0x3c16cc40 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x3c16cc40 memp_RAW_PCB - .rodata.netif_loopif_init.str1.4 - 0x3c16cc42 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_do_set_netmask.str1.4 - 0x3c16cc42 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_issue_reports.str1.4 - 0x3c16cc42 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_poll.str1.4 - 0x3c16cc42 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_loop_output.str1.4 - 0x3c16cc42 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_get_ip6_addr_match.str1.4 - 0x3c16cc42 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_add_ext_callback.str1.4 - 0x3c16cc42 0x2f esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_remove_ext_callback.str1.4 - 0x3c16cc42 0xd esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_invoke_ext_callback.str1.4 - 0x3c16cc42 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_add.str1.4 - 0x3c16cc42 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_ip6_addr_set_parts.str1.4 - 0x3c16cc42 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.netif_ip6_addr_set.str1.4 - 0x3c16cc42 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cc42 0x2 - .rodata.__func__.0 - 0x3c16cc44 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cc5e 0x2 - .rodata.__func__.1 - 0x3c16cc60 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cc7a 0x2 - .rodata.__func__.2 - 0x3c16cc7c 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cc93 0x1 - .rodata.__func__.5 - 0x3c16cc94 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16ccad 0x3 - .rodata.__func__.6 - 0x3c16ccb0 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16ccc9 0x3 - .rodata.__func__.7 - 0x3c16cccc 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cce5 0x3 - .rodata.__func__.8 - 0x3c16cce8 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16ccfb 0x1 - .rodata.__func__.9 - 0x3c16ccfc 0xb esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cd07 0x1 - .rodata.__func__.10 - 0x3c16cd08 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cd1a 0x2 - .rodata.__func__.11 - 0x3c16cd1c 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.12 - 0x3c16cd2c 0x15 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cd41 0x3 - .rodata.__func__.13 - 0x3c16cd44 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.14 - 0x3c16cd58 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__.15 - 0x3c16cd6c 0xa esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x3c16cd76 0x2 - .rodata.__func__.17 - 0x3c16cd78 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.pbuf_add_header_impl.str1.4 - 0x3c16cd8a 0x36 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_alloc_reference.str1.4 - 0x3c16cd8a 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_free.str1.4 - 0x3c16cd8a 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_alloc.str1.4 - 0x3c16cd8a 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_realloc.str1.4 - 0x3c16cd8a 0x65 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_ref.str1.4 - 0x3c16cd8a 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_cat.str1.4 - 0x3c16cd8a 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_copy_partial_pbuf.str1.4 - 0x3c16cd8a 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_take.str1.4 - 0x3c16cd8a 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_take_at.str1.4 - 0x3c16cd8a 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.pbuf_clone.str1.4 - 0x3c16cd8a 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cd8a 0x2 - .rodata.__func__.0 - 0x3c16cd8c 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cd97 0x1 - .rodata.__func__.1 - 0x3c16cd98 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cda5 0x3 - .rodata.__func__.2 - 0x3c16cda8 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cdb2 0x2 - .rodata.__func__.3 - 0x3c16cdb4 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cdcb 0x1 - .rodata.__func__.5 - 0x3c16cdcc 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cdd5 0x3 - .rodata.__func__.6 - 0x3c16cdd8 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cde1 0x3 - .rodata.__func__.7 - 0x3c16cde4 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16cdee 0x2 - .rodata.__func__.8 - 0x3c16cdf0 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16ce03 0x1 - .rodata.__func__.9 - 0x3c16ce04 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16ce19 0x3 - .rodata.__func__.10 - 0x3c16ce1c 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16ce29 0x3 - .rodata.__func__.11 - 0x3c16ce2c 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x3c16ce41 0x3 - .rodata.__func__.12 - 0x3c16ce44 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) - .rodata.raw_input.str1.4 - 0x3c16ce4f 0x75 esp-idf/lwip/liblwip.a(raw.c.obj) - .rodata.raw_sendto_if_src.str1.4 - 0x3c16ce4f 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x3c16ce4f 0x1 - .rodata.__func__.0 - 0x3c16ce50 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x3c16ce62 0x2 - .rodata.__func__.1 - 0x3c16ce64 0xa esp-idf/lwip/liblwip.a(raw.c.obj) - .rodata.tcp_remove_listener.str1.4 - 0x3c16ce6e 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_listen_closed.str1.4 - 0x3c16ce6e 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_free_listen.str1.4 - 0x3c16ce6e 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_free.str1.4 - 0x3c16ce6e 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_backlog_delayed.str1.4 - 0x3c16ce6e 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_listen_with_backlog_and_err.str1.4 - 0x3c16ce6e 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_update_rcv_ann_wnd.str1.4 - 0x3c16ce6e 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_recved.str1.4 - 0x3c16ce6e 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_seg_copy.str1.4 - 0x3c16ce6e 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_recv.str1.4 - 0x3c16ce6e 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_sent.str1.4 - 0x3c16ce6e 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_err.str1.4 - 0x3c16ce6e 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_poll.str1.4 - 0x3c16ce6e 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_next_iss.str1.4 - 0x3c16ce6e 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_eff_send_mss_netif.str1.4 - 0x3c16ce6e 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_pcb_remove.str1.4 - 0x3c16ce6e 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_abandon.str1.4 - 0x3c16ce6e 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_accept_null.str1.4 - 0x3c16ce6e 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 - 0x3c16ce6e 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_close_shutdown.str1.4 - 0x3c16ce6e 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_slowtmr.str1.4 - 0x3c16ce6e 0x1c6 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16ce6e 0x2 - .rodata.__func__.0 - 0x3c16ce70 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16ce92 0x2 - .rodata.__func__.1 - 0x3c16ce94 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16ceab 0x1 - .rodata.__func__.2 - 0x3c16ceac 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16ceb9 0x3 - .rodata.__func__.3 - 0x3c16cebc 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cecb 0x1 - .rodata.__func__.4 - 0x3c16cecc 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16ced5 0x3 - .srodata.__func__.5 - 0x3c16ced8 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.6 - 0x3c16cee0 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cee9 0x3 - .rodata.__func__.7 - 0x3c16ceec 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cef5 0x3 - .rodata.__func__.8 - 0x3c16cef8 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cf05 0x3 - .rodata.__func__.9 - 0x3c16cf08 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.10 - 0x3c16cf14 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cf1f 0x1 - .rodata.__func__.11 - 0x3c16cf20 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cf37 0x1 - .rodata.__func__.12 - 0x3c16cf38 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.13 - 0x3c16cf48 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.14 - 0x3c16cf68 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.15 - 0x3c16cf74 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cf8b 0x1 - .rodata.__func__.16 - 0x3c16cf8c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.17 - 0x3c16cf9c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.18 - 0x3c16cfb0 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cfc2 0x2 - .rodata.__func__.19 - 0x3c16cfc4 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cfd7 0x1 - .rodata.__func__.20 - 0x3c16cfd8 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16cfed 0x3 - .rodata.__func__.21 - 0x3c16cff0 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__.22 - 0x3c16d004 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16d00d 0x3 - .rodata.tcp_pcb_lists - 0x3c16d010 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x3c16d010 tcp_pcb_lists - .srodata.tcp_persist_backoff - 0x3c16d020 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x3c16d027 0x1 - .rodata.tcp_backoff - 0x3c16d028 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.tcp_parseopt.str1.4 - 0x3c16d035 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_input_delayed_close.str1.4 - 0x3c16d035 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_timewait_input.str1.4 - 0x3c16d035 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_listen_input.str1.4 - 0x3c16d035 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_oos_insert_segment.str1.4 - 0x3c16d035 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_free_acked_segments.str1.4 - 0x3c16d035 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_receive.str1.4 - 0x3c16d035 0x130 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_process.str1.4 - 0x3c16d035 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_input.str1.4 - 0x3c16d035 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3c16d035 0x3 - .rodata.__func__.0 - 0x3c16d038 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.__func__.1 - 0x3c16d050 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3c16d067 0x1 - .rodata.__func__.2 - 0x3c16d068 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.__func__.3 - 0x3c16d080 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.__func__.4 - 0x3c16d08c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.__func__.5 - 0x3c16d098 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3c16d0a5 0x3 - .rodata.__func__.6 - 0x3c16d0a8 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3c16d0b9 0x3 - .rodata.__func__.7 - 0x3c16d0bc 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x3c16d0cf 0x1 - .rodata.__func__.8 - 0x3c16d0d0 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .rodata.tcp_write_checks.str1.4 - 0x3c16d0da 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_segment_busy.str1.4 - 0x3c16d0da 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_fill_options.str1.4 - 0x3c16d0da 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_pbuf_prealloc.str1.4 - 0x3c16d0da 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_create_segment.str1.4 - 0x3c16d0da 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_alloc_header_common.str1.4 - 0x3c16d0da 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_alloc_header.str1.4 - 0x3c16d0da 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rst_common.str1.4 - 0x3c16d0da 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_segment.str1.4 - 0x3c16d0da 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_control_segment_netif.str1.4 - 0x3c16d0da 0x31 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output_control_segment.str1.4 - 0x3c16d0da 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_write.str1.4 - 0x3c16d0da 0xfa esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_split_unsent_seg.str1.4 - 0x3c16d0da 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_enqueue_flags.str1.4 - 0x3c16d0da 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_send_fin.str1.4 - 0x3c16d0da 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rexmit_rto_prepare.str1.4 - 0x3c16d0da 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rexmit.str1.4 - 0x3c16d0da 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rexmit_fast.str1.4 - 0x3c16d0da 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_send_empty_ack.str1.4 - 0x3c16d0da 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_output.str1.4 - 0x3c16d0da 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rexmit_rto_commit.str1.4 - 0x3c16d0da 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_rexmit_rto.str1.4 - 0x3c16d0da 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_keepalive.str1.4 - 0x3c16d0da 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.tcp_zero_window_probe.str1.4 - 0x3c16d0da 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d0da 0x2 - .rodata.__func__.0 - 0x3c16d0dc 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d0f2 0x2 - .rodata.__func__.1 - 0x3c16d0f4 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d102 0x2 - .rodata.__func__.2 - 0x3c16d104 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__.3 - 0x3c16d11c 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d12f 0x1 - .rodata.__func__.4 - 0x3c16d130 0x21 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d151 0x3 - .rodata.__func__.5 - 0x3c16d154 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d16f 0x1 - .rodata.__func__.6 - 0x3c16d170 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__.7 - 0x3c16d188 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d1a7 0x1 - .rodata.__func__.8 - 0x3c16d1a8 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d1b7 0x1 - .rodata.__func__.9 - 0x3c16d1b8 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__.10 - 0x3c16d1c8 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d1d3 0x1 - .rodata.__func__.11 - 0x3c16d1d4 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d1e3 0x1 - .rodata.__func__.12 - 0x3c16d1e4 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d1fa 0x2 - .rodata.__func__.13 - 0x3c16d1fc 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d213 0x1 - .rodata.__func__.14 - 0x3c16d214 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__.15 - 0x3c16d22c 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d23f 0x1 - .rodata.__func__.16 - 0x3c16d240 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d24b 0x1 - .rodata.__func__.17 - 0x3c16d24c 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d25e 0x2 - .rodata.__func__.18 - 0x3c16d260 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d26d 0x3 - .rodata.__func__.19 - 0x3c16d270 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d285 0x3 - .rodata.__func__.20 - 0x3c16d288 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d29b 0x1 - .rodata.__func__.21 - 0x3c16d29c 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d2ae 0x2 - .rodata.__func__.22 - 0x3c16d2b0 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x3c16d2c1 0x3 - .rodata.__func__.23 - 0x3c16d2c4 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.sys_timeout_abs.str1.4 - 0x3c16d2ce 0x6e esp-idf/lwip/liblwip.a(timeouts.c.obj) - .rodata.sys_timeout.str1.4 - 0x3c16d2ce 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .rodata.sys_timeouts_sleeptime.str1.4 - 0x3c16d2ce 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x3c16d2ce 0x2 - .rodata.__func__.0 - 0x3c16d2d0 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x3c16d2e7 0x1 - .rodata.__func__.1 - 0x3c16d2e8 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) - .rodata.__func__.2 - 0x3c16d2f4 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .rodata.lwip_cyclic_timers - 0x3c16d304 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x3c16d304 lwip_cyclic_timers - .rodata.udp_input_local_match.str1.4 - 0x3c16d324 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) - .rodata.udp_input.str1.4 - 0x3c16d324 0x4e esp-idf/lwip/liblwip.a(udp.c.obj) - .rodata.udp_sendto_if_src.str1.4 - 0x3c16d324 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) - .rodata.__func__.0 - 0x3c16d324 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x3c16d336 0x2 - .rodata.__func__.1 - 0x3c16d338 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x3c16d34e 0x2 - .rodata.__func__.2 - 0x3c16d350 0xa esp-idf/lwip/liblwip.a(udp.c.obj) - .rodata.dhcp_option_short.str1.4 - 0x3c16d35a 0x6b esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_option.str1.4 - 0x3c16d35a 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_option_byte.str1.4 - 0x3c16d35a 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_option_long.str1.4 - 0x3c16d35a 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_create_msg.str1.4 - 0x3c16d35a 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_option_hostname.str1.4 - 0x3c16d35a 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_conflict_callback.str1.4 - 0x3c16d35a 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_dec_pcb_refcount.str1.4 - 0x3c16d35a 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_inc_pcb_refcount.str1.4 - 0x3c16d35a 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_parse_reply.str1.4 - 0x3c16d35a 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_recv.str1.4 - 0x3c16d35a 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_set_struct.str1.4 - 0x3c16d35a 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.dhcp_network_changed_link_up.str1.4 - 0x3c16d35a 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d35a 0x2 - .rodata.__func__.0 - 0x3c16d35c 0x1d esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d379 0x3 - .rodata.__func__.1 - 0x3c16d37c 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d38d 0x3 - .rodata.__func__.2 - 0x3c16d390 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d39a 0x2 - .rodata.__func__.3 - 0x3c16d39c 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d3b2 0x2 - .rodata.__func__.4 - 0x3c16d3b4 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d3ca 0x2 - .rodata.__func__.5 - 0x3c16d3cc 0x17 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d3e3 0x1 - .rodata.__func__.6 - 0x3c16d3e4 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d3f1 0x3 - .rodata.__func__.8 - 0x3c16d3f4 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d405 0x3 - .rodata.__func__.9 - 0x3c16d408 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d41d 0x3 - .rodata.__func__.10 - 0x3c16d420 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d431 0x3 - .rodata.__func__.11 - 0x3c16d434 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.__func__.12 - 0x3c16d440 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x3c16d452 0x2 - .rodata.__func__.14 - 0x3c16d454 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .srodata.dhcp_discover_request_options - 0x3c16d464 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .rodata.free_etharp_q.str1.4 - 0x3c16d468 0x4d esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_find_entry.str1.4 - 0x3c16d468 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_update_arp_entry.str1.4 - 0x3c16d468 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_raw.str1.4 - 0x3c16d468 0x85 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_get_entry.str1.4 - 0x3c16d468 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_output_to_arp_index.str1.4 - 0x3c16d468 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.etharp_query.str1.4 - 0x3c16d468 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.__func__.0 - 0x3c16d468 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x3c16d475 0x3 - .rodata.__func__.1 - 0x3c16d478 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x3c16d493 0x1 - .rodata.__func__.2 - 0x3c16d494 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x3c16d4a2 0x2 - .rodata.__func__.3 - 0x3c16d4a4 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x3c16d4af 0x1 - .rodata.__func__.6 - 0x3c16d4b0 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x3c16d4c2 0x2 - .rodata.__func__.7 - 0x3c16d4c4 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.__func__.8 - 0x3c16d4dc 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) - .rodata.icmp_send_response.str1.4 - 0x3c16d4ea 0x5b esp-idf/lwip/liblwip.a(icmp.c.obj) - .rodata.icmp_input.str1.4 - 0x3c16d4ea 0x65 esp-idf/lwip/liblwip.a(icmp.c.obj) - *fill* 0x3c16d4ea 0x2 - .rodata.__func__.0 - 0x3c16d4ec 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) - *fill* 0x3c16d4ff 0x1 - .rodata.__func__.1 - 0x3c16d500 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) - .rodata.igmp_send.str1.4 - 0x3c16d50b 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) - .rodata.igmp_lookup_group.str1.4 - 0x3c16d50b 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x3c16d50b 0x1 - .rodata.__func__.0 - 0x3c16d50c 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x3c16d516 0x2 - .rodata.__func__.1 - 0x3c16d518 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) - .rodata.ip4_output_if_opt_src.str1.4 - 0x3c16d52a 0x69 esp-idf/lwip/liblwip.a(ip4.c.obj) - *fill* 0x3c16d52a 0x2 - .rodata.__func__.1 - 0x3c16d52c 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) - .rodata.ip4addr_aton.str1.4 - 0x3c16d542 0x3f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - *fill* 0x3c16d542 0x2 - .rodata.__func__.1 - 0x3c16d544 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - *fill* 0x3c16d551 0x3 - .rodata.ip_addr_broadcast - 0x3c16d554 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x3c16d554 ip_addr_broadcast - .rodata.ip_addr_any - 0x3c16d56c 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x3c16d56c ip_addr_any - .rodata.ip4_frag.str1.4 - 0x3c16d584 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .rodata.__func__.0 - 0x3c16d584 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 - 0x3c16d58d 0x6c esp-idf/lwip/liblwip.a(icmp6.c.obj) - .rodata.icmp6_send_response.str1.4 - 0x3c16d58d 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x3c16d58d 0x3 - .rodata.__func__.1 - 0x3c16d590 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x3c16d5b9 0x3 - .rodata.__func__.2 - 0x3c16d5bc 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .rodata.ip6_output_if_src.str1.4 - 0x3c16d5d0 0x6a esp-idf/lwip/liblwip.a(ip6.c.obj) - .rodata.__func__.1 - 0x3c16d5d0 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) - .rodata.ip6addr_ntoa_r.str1.4 - 0x3c16d5e2 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - *fill* 0x3c16d5e2 0x2 - .rodata.ip6_addr_any - 0x3c16d5e4 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - 0x3c16d5e4 ip6_addr_any - .rodata.ip6_frag.str1.4 - 0x3c16d5fc 0x6c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .rodata.__func__.0 - 0x3c16d5fc 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .rodata.nd6_process_autoconfig_prefix.str1.4 - 0x3c16d605 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.nd6_free_q.str1.4 - 0x3c16d605 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.nd6_send_na.str1.4 - 0x3c16d605 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.nd6_get_next_hop_entry.str1.4 - 0x3c16d605 0x22 esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.nd6_find_route.str1.4 - 0x3c16d605 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3c16d605 0x3 - .rodata.__func__.0 - 0x3c16d608 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3c16d61f 0x1 - .rodata.__func__.2 - 0x3c16d620 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3c16d62f 0x1 - .srodata.__func__.3 - 0x3c16d630 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.__func__.4 - 0x3c16d638 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3c16d643 0x1 - .rodata.__func__.5 - 0x3c16d644 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x3c16d662 0x2 - .rodata.__func__.6 - 0x3c16d664 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.__func__.7 - 0x3c16d670 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.ethernet_output.str1.4 - 0x3c16d67c 0x63 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .rodata.__func__.0 - 0x3c16d67c 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .srodata.ethzero - 0x3c16d68c 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x3c16d68c ethzero - *fill* 0x3c16d692 0x2 - .srodata.ethbroadcast - 0x3c16d694 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x3c16d694 ethbroadcast - .rodata.lwip_getsockopt_impl_ext.str1.4 - 0x3c16d69a 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .rodata.sys_mutex_lock.str1.4 - 0x3c16d69a 0x4a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_mutex_unlock.str1.4 - 0x3c16d69a 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_sem_new.str1.4 - 0x3c16d69a 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_sem_signal.str1.4 - 0x3c16d69a 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_arch_sem_wait.str1.4 - 0x3c16d69a 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_mbox_post.str1.4 - 0x3c16d69a 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_arch_mbox_fetch.str1.4 - 0x3c16d69a 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_mbox_free.str1.4 - 0x3c16d69a 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_init.str1.4 - 0x3c16d69a 0x45 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_thread_sem_init.str1.4 - 0x3c16d69a 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.sys_thread_tcpip.str1.4 - 0x3c16d69a 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d69a 0x2 - .rodata.__func__.0 - 0x3c16d69c 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d6ad 0x3 - .rodata.__func__.2 - 0x3c16d6b0 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d6be 0x2 - .rodata.__func__.3 - 0x3c16d6c0 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d6d7 0x1 - .rodata.__func__.4 - 0x3c16d6d8 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.__func__.6 - 0x3c16d6ec 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d6fa 0x2 - .rodata.__func__.7 - 0x3c16d6fc 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d70e 0x2 - .rodata.__func__.8 - 0x3c16d710 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d71f 0x1 - .rodata.__func__.9 - 0x3c16d720 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.__func__.10 - 0x3c16d72c 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x3c16d73d 0x3 - .rodata.__func__.11 - 0x3c16d740 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .rodata.esp_vfs_lwip_sockets_register.str1.4 - 0x3c16d74f 0x71 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - *fill* 0x3c16d74f 0x1 - .rodata.__func__.0 - 0x3c16d750 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .rodata.netconn_new_with_proto_and_callback.str1.4 - 0x3c16d76e 0x89 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.netconn_write_vectors_partly.str1.4 - 0x3c16d76e 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.netconn_recv_data.str1.4 - 0x3c16d76e 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x3c16d76e 0x2 - .rodata.__func__.1 - 0x3c16d770 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x3c16d78d 0x3 - .rodata.__func__.3 - 0x3c16d790 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x3c16d7a2 0x2 - .rodata.__func__.4 - 0x3c16d7a4 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .rodata.lwip_netconn_err_to_msg.str1.4 - 0x3c16d7c8 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.recv_udp.str1.4 - 0x3c16d7c8 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.pcb_new.str1.4 - 0x3c16d7c8 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_connected.str1.4 - 0x3c16d7c8 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.err_tcp.str1.4 - 0x3c16d7c8 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_writemore.str1.4 - 0x3c16d7c8 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_close_internal.str1.4 - 0x3c16d7c8 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.recv_tcp.str1.4 - 0x3c16d7c8 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_is_err_msg.str1.4 - 0x3c16d7c8 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.netconn_alloc.str1.4 - 0x3c16d7c8 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.netconn_free.str1.4 - 0x3c16d7c8 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.netconn_drain.str1.4 - 0x3c16d7c8 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.accept_function.str1.4 - 0x3c16d7c8 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_delconn.str1.4 - 0x3c16d7c8 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_listen.str1.4 - 0x3c16d7c8 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_write.str1.4 - 0x3c16d7c8 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_getaddr.str1.4 - 0x3c16d7c8 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.lwip_netconn_do_close.str1.4 - 0x3c16d7c8 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.0 - 0x3c16d7c8 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d7de 0x2 - .rodata.__func__.1 - 0x3c16d7e0 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.2 - 0x3c16d7f8 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d80e 0x2 - .rodata.__func__.3 - 0x3c16d810 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.4 - 0x3c16d820 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d837 0x1 - .rodata.__func__.5 - 0x3c16d838 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d852 0x2 - .rodata.__func__.6 - 0x3c16d854 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.7 - 0x3c16d86c 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d87a 0x2 - .rodata.__func__.8 - 0x3c16d87c 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d889 0x3 - .rodata.__func__.9 - 0x3c16d88c 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d89a 0x2 - .rodata.__func__.10 - 0x3c16d89c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d8a5 0x3 - .rodata.__func__.11 - 0x3c16d8a8 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d8b1 0x3 - .rodata.__func__.12 - 0x3c16d8b4 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d8d3 0x1 - .rodata.__func__.13 - 0x3c16d8d4 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d8ee 0x2 - .rodata.__func__.14 - 0x3c16d8f0 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d8f9 0x3 - .rodata.__func__.15 - 0x3c16d8fc 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .srodata.__func__.16 - 0x3c16d914 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.17 - 0x3c16d91c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x3c16d925 0x3 - .srodata.__func__.18 - 0x3c16d928 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__.19 - 0x3c16d930 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .srodata.netconn_closed - 0x3c16d948 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .srodata.netconn_reset - 0x3c16d949 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .srodata.netconn_aborted - 0x3c16d94a 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .srodata.netconn_deleted - 0x3c16d94b 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.err_to_errno_table - 0x3c16d94c 0x44 esp-idf/lwip/liblwip.a(err.c.obj) - .rodata.netbuf_alloc.str1.4 - 0x3c16d990 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) - .rodata.__func__.0 - 0x3c16d990 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) - .rodata.esp_netif_remove_from_list_unsafe.str1.4 - 0x3c16d99d 0x47 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x3c16d99d 0x3 - .rodata.__func__.0 - 0x3c16d9a0 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .rodata.str1.4 - 0x3c16d9c2 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x3c16d9c2 0x2 - .srodata.IP_EVENT - 0x3c16d9c4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x3c16d9c4 IP_EVENT - .rodata.esp_netif_config_sanity_check.str1.4 - 0x3c16d9c8 0x10c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_dhcps_cb.str1.4 - 0x3c16d9c8 0x8d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_init_configuration.str1.4 - 0x3c16d9c8 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_dhcps_start_api.str1.4 - 0x3c16d9c8 0x2b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_dhcpc_start_api.str1.4 - 0x3c16d9c8 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_ip_lost_timer.str1.4 - 0x3c16d9c8 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_internal_nd6_cb.str1.4 - 0x3c16d9c8 0x3a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_new_api.str1.4 - 0x3c16d9c8 0x18f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_start_api.str1.4 - 0x3c16d9c8 0xc2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_init.str1.4 - 0x3c16d9c8 0x9a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_attach.str1.4 - 0x3c16d9c8 0x3f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.esp_netif_internal_dhcpc_cb.str1.4 - 0x3c16d9c8 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.__func__.3 - 0x3c16d9c8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .rodata.__func__.4 - 0x3c16d9dc 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x3c16d9ee 0x2 - .rodata.g_wifi_default_wpa_crypto_funcs - 0x3c16d9f0 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - 0x3c16d9f0 g_wifi_default_wpa_crypto_funcs - .rodata.pbkdf2_sha1.str1.4 - 0x3c16da1c 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .rodata.__func__.1 - 0x3c16da1c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .rodata.esp_wifi_config_info.str1.4 - 0x3c16da28 0x139 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .rodata.wifi_deinit_internal.str1.4 - 0x3c16da28 0x7e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .rodata.s_set_default_wifi_log_level.str1.4 - 0x3c16da28 0x23 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .rodata.esp_wifi_init.str1.4 - 0x3c16da28 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .rodata.str1.4 - 0x3c16da28 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .srodata.WIFI_EVENT - 0x3c16da28 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x3c16da28 WIFI_EVENT - .rodata.wifi_default_action_sta_got_ip.str1.4 - 0x3c16da2c 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.wifi_start.str1.4 - 0x3c16da2c 0x9c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.create_and_attach.str1.4 - 0x3c16da2c 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.esp_netif_create_default_wifi_ap.str1.4 - 0x3c16da2c 0xac esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.esp_netif_create_default_wifi_sta.str1.4 - 0x3c16da2c 0x51 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.__func__.2 - 0x3c16da2c 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x3c16da4e 0x2 - .rodata.__func__.3 - 0x3c16da50 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .rodata.esp_wifi_create_if_driver.str1.4 - 0x3c16da71 0x45 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .rodata.esp_wifi_register_if_rxcb.str1.4 - 0x3c16da71 0xc9 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .rodata.http_parse_host.str1.4 - 0x3c16da71 0x4b esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_parser_execute.str1.4 - 0x3c16da71 0x1ee esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_parser_parse_url.str1.4 - 0x3c16da71 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.http_parser_pause.str1.4 - 0x3c16da71 0x31 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - *fill* 0x3c16da71 0x3 - .rodata.__func__.0 - 0x3c16da74 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - *fill* 0x3c16da86 0x2 - .rodata.__func__.1 - 0x3c16da88 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.__func__.2 - 0x3c16da98 0x16 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - *fill* 0x3c16daae 0x2 - .rodata.__func__.5 - 0x3c16dab0 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.str1.4 - 0x3c16dac4 0x7a3 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.normal_url_char - 0x3c16dac4 0x20 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.unhex 0x3c16dae4 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.tokens - 0x3c16dbe4 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.method_strings - 0x3c16dce4 0x84 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .rodata.esp_tls_hostname_to_fd.str1.4 - 0x3c16dd68 0xd4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_tls_set_socket_options.str1.4 - 0x3c16dd68 0x145 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_tls_set_socket_non_blocking.str1.4 - 0x3c16dd68 0x6a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.tcp_connect.str1.4 - 0x3c16dd68 0xe3 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_tls_low_level_conn.str1.4 - 0x3c16dd68 0x7b esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_tls_conn_new_sync.str1.4 - 0x3c16dd68 0x6c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_tls_get_conn_sockfd.str1.4 - 0x3c16dd68 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .rodata.esp_mbedtls_read.str1.4 - 0x3c16dd68 0x32 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_write.str1.4 - 0x3c16dd68 0x23 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.set_global_ca_store.str1.4 - 0x3c16dd68 0x53 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.set_ca_cert.str1.4 - 0x3c16dd68 0x9a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_init_pk_ctx_for_ds.str1.4 - 0x3c16dd68 0x7d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.set_pki_context.str1.4 - 0x3c16dd68 0xf0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.set_server_config.str1.4 - 0x3c16dd68 0x15f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_verify_certificate.str1.4 - 0x3c16dd68 0x53 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_handshake.str1.4 - 0x3c16dd68 0x34 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_get_bytes_avail.str1.4 - 0x3c16dd68 0x3b esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.set_client_config.str1.4 - 0x3c16dd68 0x289 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_create_mbedtls_handle.str1.4 - 0x3c16dd68 0x17c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_mbedtls_server_session_create.str1.4 - 0x3c16dd68 0x3e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.__func__.0 - 0x3c16dd68 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x3c16dd7a 0x2 - .rodata.__func__.1 - 0x3c16dd7c 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.__func__.2 - 0x3c16dd8c 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.__func__.3 - 0x3c16dd98 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.__func__.4 - 0x3c16ddac 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x3c16ddbe 0x2 - .rodata.__func__.5 - 0x3c16ddc0 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .rodata.esp_transport_list_init.str1.4 - 0x3c16ddda 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - *fill* 0x3c16ddda 0x2 - .rodata.__FUNCTION__.0 - 0x3c16dddc 0x13 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - *fill* 0x3c16ddef 0x1 - .rodata.__FUNCTION__.1 - 0x3c16ddf0 0x17 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - *fill* 0x3c16de07 0x1 - .rodata.__FUNCTION__.2 - 0x3c16de08 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .rodata.esp_tls_connect_async.str1.4 - 0x3c16de20 0x4a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.base_poll_write.str1.4 - 0x3c16de20 0x3d esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.base_poll_read.str1.4 - 0x3c16de20 0x3c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.ssl_write.str1.4 - 0x3c16de20 0xa5 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.ssl_read.str1.4 - 0x3c16de20 0x2f esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.ssl_connect.str1.4 - 0x3c16de20 0x65 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.esp_transport_base_init.str1.4 - 0x3c16de20 0x2c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.tcp_write.str1.4 - 0x3c16de20 0x27 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.tcp_read.str1.4 - 0x3c16de20 0x26 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.tcp_connect.str1.4 - 0x3c16de20 0x31 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.__FUNCTION__.0 - 0x3c16de20 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .rodata.esp_transport_init_foundation_transport.str1.4 - 0x3c16de38 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .rodata.__FUNCTION__.0 - 0x3c16de38 0x28 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .rodata._ws_write.str1.4 - 0x3c16de60 0x58 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_read_exact_size.str1.4 - 0x3c16de60 0x3a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.ws_read_header.str1.4 - 0x3c16de60 0x1d esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.get_http_header.str1.4 - 0x3c16de60 0x3 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.ws_connect.str1.4 - 0x3c16de60 0x485 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_set_path.str1.4 - 0x3c16de60 0x49 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_init.str1.4 - 0x3c16de60 0x56 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_poll_connection_closed.str1.4 - 0x3c16de60 0xb3 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.esp_transport_ws_handle_control_frames.str1.4 - 0x3c16de60 0x1be esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.ws_handle_control_frame_internal.str1.4 - 0x3c16de60 0xed esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.ws_read.str1.4 - 0x3c16de60 0x28 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.__FUNCTION__.1 - 0x3c16de60 0x16 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .rodata.http_dispatch_event_to_event_loop.str1.4 - 0x3c16de76 0x62 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.http_on_body.str1.4 - 0x3c16de76 0xa8 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.http_on_header_value.str1.4 - 0x3c16de76 0x39 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.init_common_tcp_transport.str1.4 - 0x3c16de76 0x26 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata._set_config.str1.4 - 0x3c16de76 0x11 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata._get_host_header.str1.4 - 0x3c16de76 0xb esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_prepare.str1.4 - 0x3c16de76 0xe esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.http_client_prepare_first_line.str1.4 - 0x3c16de76 0x4e esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_read.str1.4 - 0x3c16de76 0xe1 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_fetch_headers.str1.4 - 0x3c16de76 0x39 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_send_post_data.str1.4 - 0x3c16de76 0x1b esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_connect.str1.4 - 0x3c16de76 0x112 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_set_url.str1.4 - 0x3c16de76 0x51 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_init.str1.4 - 0x3c16de76 0x22a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_request_send.str1.4 - 0x3c16de76 0x21 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_add_auth.str1.4 - 0x3c16de76 0xe4 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_check_response.str1.4 - 0x3c16de76 0x39 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.esp_http_client_perform.str1.4 - 0x3c16de76 0x50 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - *fill* 0x3c16de76 0x2 - .rodata.__FUNCTION__.0 - 0x3c16de78 0x18 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.__FUNCTION__.1 - 0x3c16de90 0xc esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.__FUNCTION__.2 - 0x3c16de9c 0x1a esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - *fill* 0x3c16deb6 0x2 - .rodata.__func__.3 - 0x3c16deb8 0xd esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - *fill* 0x3c16dec5 0x3 - .rodata.__FUNCTION__.4 - 0x3c16dec8 0x15 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.str1.4 - 0x3c16dedd 0x97 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - *fill* 0x3c16dedd 0x3 - .rodata.HTTP_METHOD_MAPPING - 0x3c16dee0 0x48 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .rodata.http_auth_digest.str1.4 - 0x3c16df28 0x1b4 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .rodata.http_auth_basic.str1.4 - 0x3c16df28 0x7 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .rodata.__FUNCTION__.0 - 0x3c16df28 0x10 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .rodata.http_header_new_item.str1.4 - 0x3c16df38 0x32 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .rodata.http_header_generate_string.str1.4 - 0x3c16df38 0x4b esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .rodata.__FUNCTION__.0 - 0x3c16df38 0x17 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - *fill* 0x3c16df4f 0x1 - .rodata.__FUNCTION__.2 - 0x3c16df50 0x15 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - *fill* 0x3c16df65 0x3 - .rodata.__FUNCTION__.3 - 0x3c16df68 0x11 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .rodata.http_utils_join_string.str1.4 - 0x3c16df79 0x36 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .rodata.http_utils_assign_string.str1.4 - 0x3c16df79 0x8 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - *fill* 0x3c16df79 0x3 - .rodata.__func__.2 - 0x3c16df7c 0x19 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - *fill* 0x3c16df95 0x3 - .rodata.__func__.3 - 0x3c16df98 0x19 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .rodata.httpd_process_ctrl_msg.str1.4 - 0x3c16dfb1 0x4c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_create.str1.4 - 0x3c16dfb1 0x157 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_server_init.str1.4 - 0x3c16dfb1 0x113 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.esp_http_server_dispatch_event.str1.4 - 0x3c16dfb1 0x4e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_accept_conn.str1.4 - 0x3c16dfb1 0x1a1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_server.str1.4 - 0x3c16dfb1 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_queue_work.str1.4 - 0x3c16dfb1 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_start.str1.4 - 0x3c16dfb1 0xba esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.httpd_stop.str1.4 - 0x3c16dfb1 0x33 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16dfb1 0x3 - .rodata.__func__.0 - 0x3c16dfb4 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16dfc6 0x2 - .rodata.__func__.1 - 0x3c16dfc8 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16dfd5 0x3 - .rodata.__func__.2 - 0x3c16dfd8 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16dfea 0x2 - .rodata.__func__.3 - 0x3c16dfec 0x17 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16e003 0x1 - .rodata.__func__.4 - 0x3c16e004 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x3c16e011 0x3 - .rodata.__func__.5 - 0x3c16e014 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .rodata.cb_header_value.str1.4 - 0x3c16e025 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.cb_url.str1.4 - 0x3c16e025 0x3e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.verify_url.str1.4 - 0x3c16e025 0xb2 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.pause_parsing.str1.4 - 0x3c16e025 0x61 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.cb_headers_complete.str1.4 - 0x3c16e025 0x73 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.parse_block.str1.4 - 0x3c16e025 0xb1 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.httpd_req_new.str1.4 - 0x3c16e025 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x3c16e025 0x3 - .rodata.__func__.0 - 0x3c16e028 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .srodata.__func__.1 - 0x3c16e034 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x3c16e03b 0x1 - .rodata.__func__.2 - 0x3c16e03c 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.__func__.3 - 0x3c16e04c 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.__func__.4 - 0x3c16e05c 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.__func__.5 - 0x3c16e070 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x3c16e07b 0x1 - .rodata.__func__.6 - 0x3c16e07c 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x3c16e08a 0x2 - .rodata.__func__.7 - 0x3c16e08c 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x3c16e097 0x1 - .rodata.__func__.8 - 0x3c16e098 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .rodata.httpd_sess_delete.str1.4 - 0x3c16e0a3 0x3b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .rodata.enum_function.str1.4 - 0x3c16e0a3 0x2b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .rodata.httpd_sess_new.str1.4 - 0x3c16e0a3 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x3c16e0a3 0x1 - .rodata.__func__.0 - 0x3c16e0a4 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x3c16e0b6 0x2 - .rodata.__func__.1 - 0x3c16e0b8 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x3c16e0c7 0x1 - .rodata.__func__.2 - 0x3c16e0c8 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .rodata.httpd_sock_err.str1.4 - 0x3c16e0d6 0x2e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_resp_send.str1.4 - 0x3c16e0d6 0x3b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_resp_send_err.str1.4 - 0x3c16e0d6 0x373 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_default_send.str1.4 - 0x3c16e0d6 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_default_recv.str1.4 - 0x3c16e0d6 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x3c16e0d6 0x2 - .rodata.__func__.0 - 0x3c16e0d8 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x3c16e0e7 0x1 - .rodata.__func__.2 - 0x3c16e0e8 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .rodata.httpd_register_uri_handler.str1.4 - 0x3c16e0fc 0x83 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.httpd_unregister_uri_handler.str1.4 - 0x3c16e0fc 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.httpd_uri.str1.4 - 0x3c16e0fc 0x8a esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.__func__.0 - 0x3c16e0fc 0xa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x3c16e106 0x2 - .rodata.__func__.2 - 0x3c16e108 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x3c16e125 0x3 - .rodata.__func__.3 - 0x3c16e128 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .rodata.cs_create_ctrl_sock.str1.4 - 0x3c16e143 0xa esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .rodata._http_handle_response_code.str1.4 - 0x3c16e143 0xc7 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata._http_connect.str1.4 - 0x3c16e143 0x4a esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota_dispatch_event.str1.4 - 0x3c16e143 0x44 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_ota_verify_chip_id.str1.4 - 0x3c16e143 0x35 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.read_header.str1.4 - 0x3c16e143 0x5c esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata._ota_write.str1.4 - 0x3c16e143 0x33 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota_begin.str1.4 - 0x3c16e143 0x297 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota_get_img_desc.str1.4 - 0x3c16e143 0xa0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota_perform.str1.4 - 0x3c16e143 0x13e esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.esp_https_ota_finish.str1.4 - 0x3c16e143 0x39 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.str1.4 - 0x3c16e143 0xf0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - *fill* 0x3c16e143 0x1 - .rodata.ota_event_name_table - 0x3c16e144 0x24 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .rodata.str1.4 - 0x3c16e168 0x889 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .rodata.ciphersuite_definitions - 0x3c16e168 0x3b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .rodata.ciphersuite_preference - 0x3c16e518 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .rodata.ssl_compute_master.str1.4 - 0x3c16e800 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.ssl_calc_finished_tls_generic.str1.4 - 0x3c16e800 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.ssl_tls12_populate_transform.str1.4 - 0x3c16e800 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.mbedtls_ssl_check_cert_usage.str1.4 - 0x3c16e800 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.tls_id_match_table - 0x3c16e800 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .srodata.ssl_preset_suiteb_groups - 0x3c16e89c 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x3c16e8a2 0x2 - .srodata.ssl_preset_suiteb_sig_algs - 0x3c16e8a4 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x3c16e8aa 0x2 - .rodata.ssl_preset_default_sig_algs - 0x3c16e8ac 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.ssl_preset_suiteb_ciphersuites - 0x3c16e8c0 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.ssl_preset_default_groups - 0x3c16e8cc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata 0x3c16e8dc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata.esp_mbedtls_alloc_tx_buf.str1.4 - 0x3c16e8e8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .rodata.esp_mbedtls_add_tx_buffer.str1.4 - 0x3c16e8e8 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .rodata.esp_mbedtls_add_rx_buffer.str1.4 - 0x3c16e8e8 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .rodata.small_prime_gaps - 0x3c16e8e8 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x3c16e98f 0x1 - .rodata.mbedtls_cipher_definitions - 0x3c16e990 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x3c16e990 mbedtls_cipher_definitions - .rodata.str1.4 - 0x3c16eb10 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_ccm_star_no_tag_info - 0x3c16eb10 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_ccm_star_no_tag_info - 0x3c16eb18 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_ccm_star_no_tag_info - 0x3c16eb20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_ccm_info - 0x3c16eb28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_ccm_info - 0x3c16eb30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_ccm_info - 0x3c16eb38 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.ccm_aria_info - 0x3c16eb40 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_gcm_info - 0x3c16eb6c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_gcm_info - 0x3c16eb74 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_gcm_info - 0x3c16eb7c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.gcm_aria_info - 0x3c16eb84 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_ctr_info - 0x3c16ebb0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_ctr_info - 0x3c16ebb8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_ctr_info - 0x3c16ebc0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_cfb128_info - 0x3c16ebc8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_cfb128_info - 0x3c16ebd0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_cfb128_info - 0x3c16ebd8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_cbc_info - 0x3c16ebe0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_cbc_info - 0x3c16ebe8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_cbc_info - 0x3c16ebf0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_256_ecb_info - 0x3c16ebf8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_192_ecb_info - 0x3c16ec00 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aria_128_ecb_info - 0x3c16ec08 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.aria_info - 0x3c16ec10 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_ccm_star_no_tag_info - 0x3c16ec3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_ccm_star_no_tag_info - 0x3c16ec44 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_ccm_star_no_tag_info - 0x3c16ec4c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_ccm_info - 0x3c16ec54 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_ccm_info - 0x3c16ec5c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_ccm_info - 0x3c16ec64 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.ccm_aes_info - 0x3c16ec6c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_gcm_info - 0x3c16ec98 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_gcm_info - 0x3c16eca0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_gcm_info - 0x3c16eca8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.gcm_aes_info - 0x3c16ecb0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_xts_info - 0x3c16ecdc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_xts_info - 0x3c16ece4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.xts_aes_info - 0x3c16ecec 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_ctr_info - 0x3c16ed18 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_ctr_info - 0x3c16ed20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_ctr_info - 0x3c16ed28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_ofb_info - 0x3c16ed30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_ofb_info - 0x3c16ed38 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_ofb_info - 0x3c16ed40 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_cfb128_info - 0x3c16ed48 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_cfb128_info - 0x3c16ed50 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_cfb128_info - 0x3c16ed58 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_cbc_info - 0x3c16ed60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_cbc_info - 0x3c16ed68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_cbc_info - 0x3c16ed70 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_256_ecb_info - 0x3c16ed78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_192_ecb_info - 0x3c16ed80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .srodata.aes_128_ecb_info - 0x3c16ed88 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.aes_info - 0x3c16ed90 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .rodata.str1.4 - 0x3c16edbc 0x367 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .srodata.ecp_x25519_bad_point_2 - 0x3c16edbc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .srodata.ecp_x25519_bad_point_1 - 0x3c16edc4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata.x25519_bad_point_2 - 0x3c16edcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata.x25519_bad_point_1 - 0x3c16edec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .rodata.ecp_supported_curves - 0x3c16ee0c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .srodata.Rp.0 0x3c16eea8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.Rp.1 0x3c16eeb0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.Rp.2 0x3c16eeb8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.curve25519_part_of_n - 0x3c16eec0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_n - 0x3c16eed0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_gy - 0x3c16ef10 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_gx - 0x3c16ef50 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_b - 0x3c16ef90 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_a - 0x3c16efd0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP512r1_p - 0x3c16f010 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_n - 0x3c16f050 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_gy - 0x3c16f080 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_gx - 0x3c16f0b0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_b - 0x3c16f0e0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_a - 0x3c16f110 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP384r1_p - 0x3c16f140 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_n - 0x3c16f170 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_gy - 0x3c16f190 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_gx - 0x3c16f1b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_b - 0x3c16f1d0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_a - 0x3c16f1f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.brainpoolP256r1_p - 0x3c16f210 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256k1_n - 0x3c16f230 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256k1_gy - 0x3c16f250 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256k1_gx - 0x3c16f270 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp256k1_b - 0x3c16f290 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp256k1_a - 0x3c16f294 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256k1_p - 0x3c16f298 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224k1_n - 0x3c16f2b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224k1_gy - 0x3c16f2d8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224k1_gx - 0x3c16f2f4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp224k1_b - 0x3c16f310 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp224k1_a - 0x3c16f314 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224k1_p - 0x3c16f318 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192k1_n - 0x3c16f334 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192k1_gy - 0x3c16f34c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192k1_gx - 0x3c16f364 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp192k1_b - 0x3c16f37c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.secp192k1_a - 0x3c16f380 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192k1_p - 0x3c16f384 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp521r1_n - 0x3c16f39c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp521r1_gy - 0x3c16f3e0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp521r1_gx - 0x3c16f424 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp521r1_b - 0x3c16f468 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp521r1_p - 0x3c16f4ac 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp384r1_n - 0x3c16f4f0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp384r1_gy - 0x3c16f520 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp384r1_gx - 0x3c16f550 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp384r1_b - 0x3c16f580 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp384r1_p - 0x3c16f5b0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256r1_n - 0x3c16f5e0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256r1_gy - 0x3c16f600 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256r1_gx - 0x3c16f620 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256r1_b - 0x3c16f640 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp256r1_p - 0x3c16f660 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224r1_n - 0x3c16f680 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224r1_gy - 0x3c16f69c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224r1_gx - 0x3c16f6b8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224r1_b - 0x3c16f6d4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp224r1_p - 0x3c16f6f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192r1_n - 0x3c16f710 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192r1_gy - 0x3c16f728 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192r1_gx - 0x3c16f740 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192r1_b - 0x3c16f758 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .rodata.secp192r1_p - 0x3c16f770 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.mpi_one - 0x3c16f788 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .srodata.mbedtls_sha512_info - 0x3c16f78c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .srodata.mbedtls_sha384_info - 0x3c16f794 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .srodata.mbedtls_sha256_info - 0x3c16f79c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .srodata.mbedtls_sha224_info - 0x3c16f7a4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .srodata.mbedtls_sha1_info - 0x3c16f7ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .srodata.mbedtls_md5_info - 0x3c16f7b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .rodata.rsa_debug.str1.4 - 0x3c16f7bc 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .rodata.eckey_debug.str1.4 - 0x3c16f7bc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .rodata.str1.4 - 0x3c16f7bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .rodata.mbedtls_rsa_alt_info - 0x3c16f7bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x3c16f7bc mbedtls_rsa_alt_info - .rodata.mbedtls_ecdsa_info - 0x3c16f7ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x3c16f7ec mbedtls_ecdsa_info - .rodata.mbedtls_eckeydh_info - 0x3c16f81c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x3c16f81c mbedtls_eckeydh_info - .rodata.mbedtls_eckey_info - 0x3c16f84c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x3c16f84c mbedtls_eckey_info - .rodata.mbedtls_rsa_info - 0x3c16f87c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x3c16f87c mbedtls_rsa_info - .rodata.pk_group_from_specified.str1.4 - 0x3c16f8ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .rodata.mbedtls_pk_parse_key_pkcs8_encrypted_der.str1.4 - 0x3c16f8ac 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .rodata.mbedtls_pk_parse_key.str1.4 - 0x3c16f8ac 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .rodata.mbedtls_pk_parse_public_key.str1.4 - 0x3c16f8ac 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .rodata.mbedtls_pk_write_key_pem.str1.4 - 0x3c16f8ac 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .srodata.memset_func - 0x3c16f8ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .rodata.mbedtls_rsa_deduce_primes.str1.4 - 0x3c16f8b0 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .rodata.K 0x3c16f8b0 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .srodata.cst8 0x3c16fb30 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .rodata.esp_aes_validate_input.str1.4 - 0x3c16fb30 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .rodata.esp_aes_crypt_cbc.str1.4 - 0x3c16fb30 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .rodata.esp_aes_crypt_cfb128.str1.4 - 0x3c16fb30 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .rodata.esp_aes_crypt_ctr.str1.4 - 0x3c16fb30 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .rodata.esp_sha.str1.4 - 0x3c16fb30 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .srodata.__func__.0 - 0x3c16fb30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .rodata.esp_ds_conn_lock.str1.4 - 0x3c16fb38 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .rodata.esp_ds_init_data_ctx.str1.4 - 0x3c16fb38 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .rodata.esp_ds_rsa_sign.str1.4 - 0x3c16fb38 0x133 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .rodata.esp_mpi_isr_initialise.str1.4 - 0x3c16fb38 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .rodata.esp_mpi_wait_intr.str1.4 - 0x3c16fb38 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .rodata.mpi_mult_mpi_failover_mod_mult.str1.4 - 0x3c16fb38 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .rodata.__func__.0 - 0x3c16fb38 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - *fill* 0x3c16fb57 0x1 - .rodata.sha1_padding - 0x3c16fb58 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .rodata.sha256_padding - 0x3c16fb98 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .rodata.esp_aes_gcm_starts.str1.4 - 0x3c16fbd8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .rodata.esp_aes_gcm_update_ad.str1.4 - 0x3c16fbd8 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .rodata.esp_aes_gcm_update.str1.4 - 0x3c16fbd8 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .rodata.last4 0x3c16fbd8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .rodata.aria_is2 - 0x3c16fc18 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_is1 - 0x3c16fd18 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_sb2 - 0x3c16fe18 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.aria_sb1 - 0x3c16ff18 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata 0x3c170018 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .rodata.last4 0x3c170048 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .rodata.str1.4 - 0x3c170068 0xd79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_pkcs12_pbe_alg - 0x3c170068 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_md_hmac - 0x3c1700b0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_md_alg - 0x3c170128 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_cipher_alg - 0x3c1701b4 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_ecp_grp_algid - 0x3c17022c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_ecp_grp - 0x3c170254 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_pk_alg - 0x3c170344 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_sig_alg - 0x3c170394 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.oid_x509_ext - 0x3c1704e4 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata 0x3c170598 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata.mbedtls_pem_read_buffer.str1.4 - 0x3c1705cd 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .rodata.mbedtls_pkcs5_pbes2_ext.str1.4 - 0x3c1705cd 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .rodata.esp_aes_dma_wait_complete.str1.4 - 0x3c1705cd 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .rodata.esp_aes_intr_alloc.str1.4 - 0x3c1705cd 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .rodata.esp_aes_process_dma.str1.4 - 0x3c1705cd 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - *fill* 0x3c1705cd 0x3 - .rodata.__func__.0 - 0x3c1705d0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .rodata.__func__.1 - 0x3c1705e4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .rodata.esp_sha_block_mode.str1.4 - 0x3c1705f7 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .rodata.esp_sha_dma_process.str1.4 - 0x3c1705f7 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .rodata.esp_sha_dma.str1.4 - 0x3c1705f7 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x3c1705f7 0x1 - .rodata.__func__.0 - 0x3c1705f8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .rodata.crypto_shared_gdma_init.str1.4 - 0x3c17060b 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .rodata.x509_crt_verify_name.str1.4 - 0x3c17060b 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.mbedtls_x509_crt_parse.str1.4 - 0x3c17060b 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x3c17060b 0x1 - .rodata.mbedtls_x509_crt_profile_suiteb - 0x3c17060c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x3c17060c mbedtls_x509_crt_profile_suiteb - .rodata.mbedtls_x509_crt_profile_default - 0x3c17061c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x3c17061c mbedtls_x509_crt_profile_default - .rodata 0x3c17062c 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata.x509write_csr_der_internal.str1.4 - 0x3c170639 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .rodata.mbedtls_x509write_csr_pem.str1.4 - 0x3c170639 0x49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .rodata.x509_get_other_name.str1.4 - 0x3c170639 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 - 0x3c170639 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .rodata.parse_attribute_value_string.str1.4 - 0x3c170639 0xb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .rodata.str1.4 - 0x3c170639 0x183 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - *fill* 0x3c170639 0x3 - .rodata.x509_attrs - 0x3c17063c 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .rodata.coex_pre_init.str1.4 - 0x3c17080c 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.esp_coex_adapter_register.str1.4 - 0x3c17080c 0xbe /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.str1.4 - 0x3c17080c 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .rodata.CSWTCH.21 - 0x3c17080c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .rodata.coex_rom_osi_funcs_init.str1.4 - 0x3c170834 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .rodata.ieee80211_send_setup.str1.4 - 0x3c170834 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata.info.14349 - 0x3c170834 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17083d 0x3 - .rodata.param.14355 - 0x3c170840 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c170849 0x3 - .rodata.s_ac_param.14354 - 0x3c17084c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata.hostap_input.str1.4 - 0x3c170868 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata.ieee80211_hostap_attach.str1.4 - 0x3c170868 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata.wifi_softap_start.str1.4 - 0x3c170868 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata.ieee80211_crypto_encap.str1.4 - 0x3c170868 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .rodata.ieee80211_11b_table - 0x3c170868 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.ieee80211_11g_table - 0x3c17093c 0xd4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.ieee80211_phy_mode_show.str1.4 - 0x3c170a10 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.ieee80211_setup_ratetable.str1.4 - 0x3c170a10 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.phymode2str.str1.4 - 0x3c170a10 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .rodata.chm_set_home_channel.str1.4 - 0x3c170a10 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .rodata.ieee80211_is_40mhz_valid_bw - 0x3c170a10 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .rodata.wifi_log.str1.4 - 0x3c170a2c 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .rodata.CSWTCH.242 - 0x3c170a2c 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c170a3d 0x3 - .rodata.CSWTCH.243 - 0x3c170a40 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.CSWTCH.244 - 0x3c170a4c 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.cnx_auth_done.str1.4 - 0x3c170a90 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.cnx_connect_to_bss.str1.4 - 0x3c170a90 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.cnx_node_join.str1.4 - 0x3c170a90 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.cnx_sta_scan_cmd.str1.4 - 0x3c170a90 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata.str1.4 - 0x3c170a90 0xb4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata 0x3c170a90 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata.CSWTCH.45 - 0x3c170aa8 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata.ieee80211_parse_rsn.str1.4 - 0x3c170b08 0xa0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata.ieee80211_setup_phy_mode.str1.4 - 0x3c170b08 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata.ieee80211_add_ie_vendor_esp_head.str1.4 - 0x3c170b08 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .rodata.wifi_nvs_set - 0x3c170b08 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.wifi_nvs_compare_cfg_diff - 0x3c170b28 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.wifi_nvs_load - 0x3c170b48 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.ieee80211_nvs_set_default_ssid.str1.4 - 0x3c170b68 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.wifi_nvs_cfg_init.str1.4 - 0x3c170b68 0x39e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.wifi_nvs_init.str1.4 - 0x3c170b68 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata.wifi_set_rx_policy - 0x3c170b68 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .rodata.CSWTCH.91 - 0x3c170b94 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .rodata.ieee80211_set_gtk.str1.4 - 0x3c170b9a 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c170b9a 0x2 - .rodata.CSWTCH.334 - 0x3c170b9c 0x4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata.CSWTCH.336 - 0x3c170ba0 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c170bab 0x1 - .rodata.__FUNCTION__.15231 - 0x3c170bac 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata.str1.4 - 0x3c170bc2 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata.wifi_lmac_init.str1.4 - 0x3c170bc2 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c170bc2 0x2 - .rodata.__FUNCTION__.11947 - 0x3c170bc4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.__FUNCTION__.11953 - 0x3c170bdc 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170bf6 0x2 - .rodata.__FUNCTION__.11959 - 0x3c170bf8 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170c15 0x3 - .rodata.__FUNCTION__.11965 - 0x3c170c18 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170c26 0x2 - .rodata.__FUNCTION__.11971 - 0x3c170c28 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170c3d 0x3 - .rodata.__FUNCTION__.11979 - 0x3c170c40 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170c51 0x3 - .rodata.__FUNCTION__.11987 - 0x3c170c54 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.__FUNCTION__.11993 - 0x3c170c68 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.__FUNCTION__.11999 - 0x3c170c7c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170c92 0x2 - .rodata.__FUNCTION__.12008 - 0x3c170c94 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170ca3 0x1 - .rodata.__FUNCTION__.12014 - 0x3c170ca4 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.__FUNCTION__.12020 - 0x3c170cb4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.__FUNCTION__.12026 - 0x3c170ccc 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170ce7 0x1 - .rodata.__FUNCTION__.12032 - 0x3c170ce8 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170d07 0x1 - .rodata.__FUNCTION__.12038 - 0x3c170d08 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170d22 0x2 - .rodata.__FUNCTION__.12044 - 0x3c170d24 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170d3e 0x2 - .rodata.__FUNCTION__.12050 - 0x3c170d40 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c170d5e 0x2 - .rodata.__FUNCTION__.12071 - 0x3c170d60 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata.esp_wifi_init_internal.str1.4 - 0x3c170d7e 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.net80211_funcs_init.str1.4 - 0x3c170d7e 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.str1.4 - 0x3c170d7e 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata.wifi_osi_funcs_register.str1.4 - 0x3c170d7e 0xad /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c170d7e 0x2 - .rodata.ieee80211_ethbroadcast - 0x3c170d80 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - 0x3c170d80 ieee80211_ethbroadcast - .rodata.ieee80211_send_sa_query.str1.4 - 0x3c170d86 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - *fill* 0x3c170d86 0x2 - .rodata.ieee80211_sta_new_state - 0x3c170d88 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.ieee80211_sta_new_state.str1.4 - 0x3c170da0 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.sta_recv_assoc.str1.4 - 0x3c170da0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.sta_rx_csa.str1.4 - 0x3c170da0 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.state_desc.13375 - 0x3c170da0 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.str1.4 - 0x3c170dc4 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata.ieee80211_add_countryie.str1.4 - 0x3c170dc4 0x3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .rodata 0x3c170dc4 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata.__func__.13150 - 0x3c170dd4 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata.ht_recv_action_ba_addba_response.str1.4 - 0x3c170def 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata.ht_recv_action_ba_delba.str1.4 - 0x3c170def 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata.ieee80211_add_htcap_body.str1.4 - 0x3c170def 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata.ieee80211_recv_action.str1.4 - 0x3c170def 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - *fill* 0x3c170def 0x1 - .rodata.CSWTCH.421 - 0x3c170df0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata.scan_op_start.str1.4 - 0x3c170e00 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata.scan_profile_check.str1.4 - 0x3c170e00 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata.sms4_encap.str1.4 - 0x3c170e00 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .rodata.str1.4 - 0x3c170e00 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata.CSWTCH.494 - 0x3c170e00 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c170e09 0x3 - .rodata.CSWTCH.495 - 0x3c170e0c 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata.pp_create_task.str1.4 - 0x3c170e15 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata.pp_default_event_handler.str1.4 - 0x3c170e15 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c170e15 0x3 - .rodata 0x3c170e18 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata 0x3c170e68 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata.__FUNCTION__.11402 - 0x3c170e80 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170e99 0x3 - .rodata.__FUNCTION__.11467 - 0x3c170e9c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170eb1 0x3 - .rodata.__FUNCTION__.11505 - 0x3c170eb4 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170ed5 0x3 - .rodata.__FUNCTION__.11541 - 0x3c170ed8 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170ef5 0x3 - .rodata.__FUNCTION__.11572 - 0x3c170ef8 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f0d 0x3 - .rodata.__FUNCTION__.11616 - 0x3c170f10 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f26 0x2 - .rodata.__FUNCTION__.11635 - 0x3c170f28 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f42 0x2 - .rodata.__FUNCTION__.11667 - 0x3c170f44 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f5d 0x3 - .rodata.__FUNCTION__.11686 - 0x3c170f60 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f76 0x2 - .rodata.__FUNCTION__.11697 - 0x3c170f78 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170f8e 0x2 - .rodata.__FUNCTION__.11716 - 0x3c170f90 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170fa6 0x2 - .rodata.__FUNCTION__.11743 - 0x3c170fa8 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170fbb 0x1 - .rodata.__FUNCTION__.11789 - 0x3c170fbc 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata.__FUNCTION__.11828 - 0x3c170fc8 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .rodata.lmacProcessTxopSuccess.str1.4 - 0x3c170fd3 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c170fd3 0x1 - .rodata.rcUpdatePhyMode - 0x3c170fd4 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.CSWTCH.45 - 0x3c170ff0 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c17101b 0x1 - .rodata.CSWTCH.46 - 0x3c17101c 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c171047 0x1 - .rodata.__FUNCTION__.13031 - 0x3c171048 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c171052 0x2 - .rodata.__FUNCTION__.13118 - 0x3c171054 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata.rcGetAmpduSched.str1.4 - 0x3c171066 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c171066 0x2 - .rodata.__FUNCTION__.12832 - 0x3c171068 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c17107e 0x2 - .rodata.__FUNCTION__.12974 - 0x3c171080 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata.str1.4 - 0x3c171094 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata.wdev_funcs_init.str1.4 - 0x3c171094 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata 0x3c171094 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .rodata.esp_efuse_rtc_calib_get_ver.str1.4 - 0x3c17109a 0x58 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_init_code.str1.4 - 0x3c17109a 0x130 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - *fill* 0x3c17109a 0x2 - .rodata.__func__.2 - 0x3c17109c 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - *fill* 0x3c1710be 0x2 - .rodata.rmt_periph_signals - 0x3c1710c0 0x24 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - 0x3c1710c0 rmt_periph_signals - .rodata.MPI_OPERATIONS_REG - 0x3c1710e4 0xc esp-idf/soc/libsoc.a(mpi_periph.c.obj) - 0x3c1710e4 MPI_OPERATIONS_REG - .rodata.MPI_BLOCK_BASES - 0x3c1710f0 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - 0x3c1710f0 MPI_BLOCK_BASES - .rodata.gdma_release_group_handle.str1.4 - 0x3c171100 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_release_pair_handle.str1.4 - 0x3c171100 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.do_allocate_gdma_channel.str1.4 - 0x3c171100 0x1aa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_connect.str1.4 - 0x3c171100 0xba esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_disconnect.str1.4 - 0x3c171100 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_config_transfer.str1.4 - 0x3c171100 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_start.str1.4 - 0x3c171100 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.17 - 0x3c171100 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c17110b 0x1 - .rodata.__FUNCTION__.9 - 0x3c17110c 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c171121 0x3 - .rodata.__FUNCTION__.7 - 0x3c171124 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.6 - 0x3c171134 0xd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c171141 0x3 - .rodata.__FUNCTION__.5 - 0x3c171144 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c17115e 0x2 - .rodata.__FUNCTION__.4 - 0x3c171160 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c171171 0x3 - .rodata.__func__.3 - 0x3c171174 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c17118e 0x2 - .rodata.__func__.2 - 0x3c171190 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c1711a9 0x3 - .rodata.__func__.1 - 0x3c1711ac 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c1711c5 0x3 - .rodata.__FUNCTION__.0 - 0x3c1711c8 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - *fill* 0x3c1711e1 0x3 - .rodata 0x3c1711e4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.create_addrinfo.str1.4 - 0x3c1711f8 0x5e esp-idf/lwip/liblwip.a(netdb.c.obj) - .rodata.__func__.0 - 0x3c1711f8 0x10 esp-idf/lwip/liblwip.a(netdb.c.obj) - .rodata.kill_oldest_dhcps_pool.str1.4 - 0x3c171208 0x57 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .rodata.dhcps_start.str1.4 - 0x3c171208 0x70 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .rodata.__func__.0 - 0x3c171208 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x3c17121f 0x1 - .srodata.magic_cookie - 0x3c171220 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .rodata.esp_netif_action_connected.str1.4 - 0x3c171224 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .rodata.esp_netif_action_got_ip.str1.4 - 0x3c171224 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .rodata.__FUNCTION__.0 - 0x3c171224 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .rodata.str1.4 - 0x3c17123f 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - *fill* 0x3c17123f 0x1 - .rodata._g_esp_netif_inherent_ap_config - 0x3c171240 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x3c171240 _g_esp_netif_inherent_ap_config - .rodata._g_esp_netif_soft_ap_ip - 0x3c171268 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x3c171268 _g_esp_netif_soft_ap_ip - .rodata._g_esp_netif_inherent_sta_config - 0x3c171274 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x3c171274 _g_esp_netif_inherent_sta_config - .srodata.s_wifi_netif_config_sta - 0x3c17129c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .srodata.s_wifi_netif_config_ap - 0x3c1712a4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .rodata.wlanif_init.str1.4 - 0x3c1712ac 0x4a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .rodata.__func__.0 - 0x3c1712ac 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .rodata.wpa3_hostap_auth_init.str1.4 - 0x3c1712b8 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .rodata.wpa_group_init_gmk_and_counter.str1.4 - 0x3c1712b8 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .rodata.wpa_gtk_update.str1.4 - 0x3c1712b8 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .rodata.wpa_group_config_group_keys.str1.4 - 0x3c1712b8 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .rodata.wpa_derive_ptk.str1.4 - 0x3c1712b8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .srodata 0x3c1712b8 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .rodata.sae_check_big_sync.str1.4 - 0x3c1712be 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .rodata.sae_accept_sta.str1.4 - 0x3c1712be 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .rodata.sae_sm_step.str1.4 - 0x3c1712be 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .rodata.handle_auth_sae.str1.4 - 0x3c1712be 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - *fill* 0x3c1712be 0x2 - .srodata 0x3c1712c0 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .rodata.sswu.str1.4 - 0x3c1712c6 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_test_pwd_seed_ffc.str1.4 - 0x3c1712c6 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_derive_pt_ecc.str1.4 - 0x3c1712c6 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_derive_pt_ffc.str1.4 - 0x3c1712c6 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_derive_keys.str1.4 - 0x3c1712c6 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_derive_pwe_from_pt_ecc.str1.4 - 0x3c1712c6 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.sae_derive_pwe_from_pt_ffc.str1.4 - 0x3c1712c6 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - *fill* 0x3c1712c6 0x2 - .rodata 0x3c1712c8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata.dragonfly_get_rand_1_to_p_1.str1.4 - 0x3c1712e8 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .rodata.rsn_pmkid.str1.4 - 0x3c1712e8 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .rodata.hmac_sha256_kdf.str1.4 - 0x3c1712e8 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .rodata.dh_groups - 0x3c1712e8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .rodata.dh_group5_order - 0x3c171308 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .rodata.dh_group5_prime - 0x3c1713c8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .srodata.dh_group5_generator - 0x3c171488 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .rodata.wpa_derive_ptk.str1.4 - 0x3c171489 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .rodata.owe_process_assoc_resp.str1.4 - 0x3c171489 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .rodata.wpa_gen_wpa_ie_rsn.str1.4 - 0x3c171489 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x3c171489 0x3 - .rodata.__func__.1 - 0x3c17148c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .rodata.add_char.str1.4 - 0x3c17149f 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - *fill* 0x3c17149f 0x1 - .rodata.d_perm_table - 0x3c1714a0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .rodata.d_mult_table - 0x3c1714c0 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .rodata.zero 0x3c1718c0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .rodata.lib_printf.str1.4 - 0x3c1718d0 0x10 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .rodata.coexist_printf.str1.4 - 0x3c1718d0 0x8 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .rodata.lib_printf.str1.4 - 0x3c1718d0 0x10 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.pp_printf.str1.4 - 0x3c1718d0 0x3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.net80211_printf.str1.4 - 0x3c1718d0 0x9 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .rodata.esp_crypto_sha1_mbedtls.str1.4 - 0x3c1718d0 0x49 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .rodata.misc_nvs_load.str1.4 - 0x3c1718d0 0x5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .rodata 0x3c1718d0 0x20 esp-idf/hal/libhal.a(ds_hal.c.obj) - .rodata._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv.str1.4 - 0x3c1718f0 0x24 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .rodata._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv.str1.4 - 0x3c1718f0 0x26 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .rodata._ZTSSt9exception - 0x3c1718f0 0xd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c1718f0 typeinfo name for std::exception - *fill* 0x3c1718fd 0x3 - .srodata._ZTISt9exception - 0x3c171900 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171900 typeinfo for std::exception - .rodata._ZTSN9__gnu_cxx24__concurrence_lock_errorE - 0x3c171908 0x27 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171908 typeinfo name for __gnu_cxx::__concurrence_lock_error - *fill* 0x3c17192f 0x1 - .rodata._ZTIN9__gnu_cxx24__concurrence_lock_errorE - 0x3c171930 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171930 typeinfo for __gnu_cxx::__concurrence_lock_error - .rodata._ZTSN9__gnu_cxx26__concurrence_unlock_errorE - 0x3c17193c 0x29 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c17193c typeinfo name for __gnu_cxx::__concurrence_unlock_error - *fill* 0x3c171965 0x3 - .rodata._ZTIN9__gnu_cxx26__concurrence_unlock_errorE - 0x3c171968 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171968 typeinfo for __gnu_cxx::__concurrence_unlock_error - .rodata._ZTVN9__gnu_cxx24__concurrence_lock_errorE - 0x3c171974 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171974 vtable for __gnu_cxx::__concurrence_lock_error - .rodata._ZTVN9__gnu_cxx26__concurrence_unlock_errorE - 0x3c171988 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c171988 vtable for __gnu_cxx::__concurrence_unlock_error - .srodata._ZSt7nothrow - 0x3c17199c 0x1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - 0x3c17199c std::nothrow - *fill* 0x3c17199d 0x3 - .rodata._ZTVN10__cxxabiv120__si_class_type_infoE - 0x3c1719a0 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - 0x3c1719a0 vtable for __cxxabiv1::__si_class_type_info - .rodata._ZTVN10__cxxabiv117__class_type_infoE - 0x3c1719cc 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - 0x3c1719cc vtable for __cxxabiv1::__class_type_info - .rodata._ZTSSt9bad_alloc - 0x3c1719f8 0xd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - 0x3c1719f8 typeinfo name for std::bad_alloc - *fill* 0x3c171a05 0x3 - .rodata._ZTISt9bad_alloc - 0x3c171a08 0xc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - 0x3c171a08 typeinfo for std::bad_alloc - .rodata._ZNKSt9bad_alloc4whatEv.str1.4 - 0x3c171a14 0xf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .rodata._ZTVSt9bad_alloc - 0x3c171a14 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - 0x3c171a14 vtable for std::bad_alloc - .rodata.bt_bb_v2_version.str1.4 - 0x3c171a28 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .rodata.lib_printf.str1.4 - 0x3c171a28 0x10 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .rodata.phy_printf.str1.4 - 0x3c171a28 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .rodata.str1.4 - 0x3c171a28 0x15 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .rodata 0x3c171a28 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .srodata.cst8 0x3c171a90 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .srodata.cst4 0x3c171a90 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .rodata.str1.4 - 0x3c171a90 0x8e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .rodata 0x3c171a90 0x101 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - 0x3c171a90 _ctype_ - *fill* 0x3c171b91 0x3 - .rodata 0x3c171b94 0x23c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .rodata.str1.4 - 0x3c171dd0 0x3a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .srodata.cst8 0x3c171dd0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .rodata 0x3c171dd0 0x23c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .rodata.str1.4 - 0x3c17200c 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .rodata.str1.4 - 0x3c17200c 0x2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .rodata.str1.4 - 0x3c17200c 0x701 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .rodata 0x3c17200c 0x23c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .rodata 0x3c172248 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .rodata 0x3c1722a8 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - 0x3c1722a8 __month_lengths - .rodata.str1.4 - 0x3c172308 0x94 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .rodata 0x3c172308 0x158 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .rodata.str1.4 - 0x3c172460 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .rodata.str1.4 - 0x3c172460 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .rodata.str1.4 - 0x3c172460 0x12 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .rodata 0x3c172460 0x16c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - 0x3c172460 __default_global_locale - .rodata.str1.4 - 0x3c1725cc 0x159 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .rodata 0x3c1725cc 0xfc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - 0x3c1725cc _C_time_locale - .srodata.cst8 0x3c1726c8 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .srodata.cst4 0x3c1726c8 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .srodata.cst8 0x3c1726c8 0x8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .rodata.str1.4 - 0x3c1726c8 0x95 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .srodata.cst8 0x3c1726c8 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .rodata.str1.4 - 0x3c1726c8 0x75 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .rodata.str1.4 - 0x3c1726c8 0x81 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .srodata.cst8 0x3c1726c8 0x10 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .rodata 0x3c1726c8 0x128 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - 0x3c1726d8 __mprec_tens - 0x3c1727a0 __mprec_tinytens - 0x3c1727c8 __mprec_bigtens - .rodata 0x3c1727f0 0x414 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - 0x3c172a0c __chclass - 0x3c172b0c __state_table - 0x3c172b78 __action_table - .rodata.str1.4 - 0x3c172c04 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .rodata 0x3c172c04 0x13e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - *fill* 0x3c172d42 0x2 - .rodata 0x3c172d44 0x23c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .rodata.str1.4 - 0x3c172f80 0x3a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .srodata.cst8 0x3c172f80 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .rodata.str1.4 - 0x3c172f80 0x9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .rodata 0x3c172f80 0x2f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .rodata.str1.4 - 0x3c173276 0x1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - *(.rodata_wlog_error .rodata_wlog_error.*) - *fill* 0x3c173276 0x2 - .rodata_wlog_error.12 - 0x3c173278 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17327f 0x1 - .rodata_wlog_error.13 - 0x3c173280 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173287 0x1 - .rodata_wlog_error.14 - 0x3c173288 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17328f 0x1 - .rodata_wlog_error.16 - 0x3c173290 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173297 0x1 - .rodata_wlog_error.21 - 0x3c173298 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17329f 0x1 - .rodata_wlog_error.23 - 0x3c1732a0 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_error.24 - 0x3c1732e0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c1732e7 0x1 - .rodata_wlog_error.26 - 0x3c1732e8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c1732ef 0x1 - .rodata_wlog_error.27 - 0x3c1732f0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c1732f7 0x1 - .rodata_wlog_error.29 - 0x3c1732f8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c1732ff 0x1 - .rodata_wlog_error.30 - 0x3c173300 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173307 0x1 - .rodata_wlog_error.32 - 0x3c173308 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17330f 0x1 - .rodata_wlog_error.36 - 0x3c173310 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173317 0x1 - .rodata_wlog_error.38 - 0x3c173318 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17331f 0x1 - .rodata_wlog_error.39 - 0x3c173320 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173327 0x1 - .rodata_wlog_error.40 - 0x3c173328 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17332f 0x1 - .rodata_wlog_error.43 - 0x3c173330 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173337 0x1 - .rodata_wlog_error.56 - 0x3c173338 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17333f 0x1 - .rodata_wlog_error.58 - 0x3c173340 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c173347 0x1 - .rodata_wlog_error.10 - 0x3c173348 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17334f 0x1 - .rodata_wlog_error.11 - 0x3c173350 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c173357 0x1 - .rodata_wlog_error.13 - 0x3c173358 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17335f 0x1 - .rodata_wlog_error.16 - 0x3c173360 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_error.17 - 0x3c17336c 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c173379 0x3 - .rodata_wlog_error.18 - 0x3c17337c 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c173387 0x1 - .rodata_wlog_error.19 - 0x3c173388 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c173395 0x3 - .rodata_wlog_error.21 - 0x3c173398 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_error.22 - 0x3c1733a4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1733b6 0x2 - .rodata_wlog_error.27 - 0x3c1733b8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1733bf 0x1 - .rodata_wlog_error.29 - 0x3c1733c0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1733c7 0x1 - .rodata_wlog_error.31 - 0x3c1733c8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1733cf 0x1 - .rodata_wlog_error.35 - 0x3c1733d0 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1733ed 0x3 - .rodata_wlog_error.36 - 0x3c1733f0 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17340d 0x3 - .rodata_wlog_error.38 - 0x3c173410 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c173417 0x1 - .rodata_wlog_error.51 - 0x3c173418 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17341f 0x1 - .rodata_wlog_error.56 - 0x3c173420 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_error.9 - 0x3c173438 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17343f 0x1 - .rodata_wlog_error.10 - 0x3c173440 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .rodata_wlog_error.11 - 0x3c173454 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c17347b 0x1 - .rodata_wlog_error.12 - 0x3c17347c 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c1734aa 0x2 - .rodata_wlog_error.3 - 0x3c1734ac 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c1734b3 0x1 - .rodata_wlog_error.4 - 0x3c1734b4 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c1734db 0x1 - .rodata_wlog_error.5 - 0x3c1734dc 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c1734e9 0x3 - .rodata_wlog_error.6 - 0x3c1734ec 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .rodata_wlog_error.7 - 0x3c173500 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c173527 0x1 - .rodata_wlog_error.8 - 0x3c173528 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c173556 0x2 - .rodata_wlog_error.9 - 0x3c173558 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - *fill* 0x3c173565 0x3 - .rodata_wlog_error.3 - 0x3c173568 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - *fill* 0x3c17356f 0x1 - .rodata_wlog_error.5 - 0x3c173570 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - *fill* 0x3c17358b 0x1 - .rodata_wlog_error.6 - 0x3c17358c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - *fill* 0x3c173593 0x1 - .rodata_wlog_error.13 - 0x3c173594 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c17359b 0x1 - .rodata_wlog_error.7 - 0x3c17359c 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c1735b7 0x1 - .rodata_wlog_error.8 - 0x3c1735b8 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .rodata_wlog_error.12 - 0x3c1735d8 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1735f5 0x3 - .rodata_wlog_error.18 - 0x3c1735f8 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c173611 0x3 - .rodata_wlog_error.48 - 0x3c173614 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17364e 0x2 - .rodata_wlog_error.57 - 0x3c173650 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c173657 0x1 - .rodata_wlog_error.64 - 0x3c173658 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17366f 0x1 - .rodata_wlog_error.92 - 0x3c173670 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c173677 0x1 - .rodata_wlog_error.95 - 0x3c173678 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17367f 0x1 - .rodata_wlog_error.3 - 0x3c173680 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c173687 0x1 - .rodata_wlog_error.7 - 0x3c173688 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata_wlog_error.8 - 0x3c1736a8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1736af 0x1 - .rodata_wlog_error.16 - 0x3c1736b0 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c1736c9 0x3 - .rodata_wlog_error.2 - 0x3c1736cc 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c1736ea 0x2 - .rodata_wlog_error.3 - 0x3c1736ec 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c173706 0x2 - .rodata_wlog_error.5 - 0x3c173708 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c173729 0x3 - .rodata_wlog_error.10 - 0x3c17372c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c173733 0x1 - .rodata_wlog_error.3 - 0x3c173734 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c173762 0x2 - .rodata_wlog_error.9 - 0x3c173764 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c17376b 0x1 - .rodata_wlog_error.10 - 0x3c17376c 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.107 - 0x3c1737a0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.115 - 0x3c1737b0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1737b7 0x1 - .rodata_wlog_error.116 - 0x3c1737b8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.131 - 0x3c1737d0 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1737eb 0x1 - .rodata_wlog_error.18 - 0x3c1737ec 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173815 0x3 - .rodata_wlog_error.23 - 0x3c173818 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.31 - 0x3c173838 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173876 0x2 - .rodata_wlog_error.32 - 0x3c173878 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1738a3 0x1 - .rodata_wlog_error.35 - 0x3c1738a4 0x4b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1738ef 0x1 - .rodata_wlog_error.45 - 0x3c1738f0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1738f7 0x1 - .rodata_wlog_error.46 - 0x3c1738f8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1738ff 0x1 - .rodata_wlog_error.48 - 0x3c173900 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173907 0x1 - .rodata_wlog_error.49 - 0x3c173908 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17390f 0x1 - .rodata_wlog_error.51 - 0x3c173910 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.52 - 0x3c173934 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17397a 0x2 - .rodata_wlog_error.53 - 0x3c17397c 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.54 - 0x3c1739c4 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.55 - 0x3c1739ec 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173a15 0x3 - .rodata_wlog_error.56 - 0x3c173a18 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.57 - 0x3c173a40 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173a69 0x3 - .rodata_wlog_error.58 - 0x3c173a6c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173a81 0x3 - .rodata_wlog_error.59 - 0x3c173a84 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173ab3 0x1 - .rodata_wlog_error.60 - 0x3c173ab4 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173aca 0x2 - .rodata_wlog_error.61 - 0x3c173acc 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173adf 0x1 - .rodata_wlog_error.63 - 0x3c173ae0 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173b0d 0x3 - .rodata_wlog_error.70 - 0x3c173b10 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c173b31 0x3 - .rodata_wlog_error.9 - 0x3c173b34 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_error.26 - 0x3c173b68 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c173b8e 0x2 - .rodata_wlog_error.27 - 0x3c173b90 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c173bb3 0x1 - .rodata_wlog_error.28 - 0x3c173bb4 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .rodata_wlog_error.29 - 0x3c173bd0 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c173bed 0x3 - .rodata_wlog_error.13 - 0x3c173bf0 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173c0a 0x2 - .rodata_wlog_error.15 - 0x3c173c0c 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173c2d 0x3 - .rodata_wlog_error.18 - 0x3c173c30 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173c51 0x3 - .rodata_wlog_error.5 - 0x3c173c54 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173c6f 0x1 - .rodata_wlog_error.58 - 0x3c173c70 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.59 - 0x3c173c94 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173cb3 0x1 - .rodata_wlog_error.61 - 0x3c173cb4 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c173cd7 0x1 - .rodata_wlog_error.8 - 0x3c173cd8 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_error.7 - 0x3c173cfc 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata_wlog_error.51 - 0x3c173d18 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173d1f 0x1 - .rodata_wlog_error.57 - 0x3c173d20 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173d41 0x3 - .rodata_wlog_error.66 - 0x3c173d44 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173d52 0x2 - .rodata_wlog_error.88 - 0x3c173d54 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173d5b 0x1 - .rodata_wlog_error.89 - 0x3c173d5c 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173db6 0x2 - .rodata_wlog_error.90 - 0x3c173db8 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173dea 0x2 - .rodata_wlog_error.92 - 0x3c173dec 0x62 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173e4e 0x2 - .rodata_wlog_error.93 - 0x3c173e50 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173e63 0x1 - .rodata_wlog_error.95 - 0x3c173e64 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c173e8b 0x1 - .rodata_wlog_error.10 - 0x3c173e8c 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.11 - 0x3c173ef0 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173f13 0x1 - .rodata_wlog_error.12 - 0x3c173f14 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173f36 0x2 - .rodata_wlog_error.14 - 0x3c173f38 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.2 - 0x3c173f80 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173f87 0x1 - .rodata_wlog_error.31 - 0x3c173f88 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173f8f 0x1 - .rodata_wlog_error.33 - 0x3c173f90 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173f97 0x1 - .rodata_wlog_error.34 - 0x3c173f98 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.35 - 0x3c173fac 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173fc3 0x1 - .rodata_wlog_error.4 - 0x3c173fc4 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173fcb 0x1 - .rodata_wlog_error.44 - 0x3c173fcc 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173fe2 0x2 - .rodata_wlog_error.47 - 0x3c173fe4 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173feb 0x1 - .rodata_wlog_error.5 - 0x3c173fec 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173ff3 0x1 - .rodata_wlog_error.50 - 0x3c173ff4 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c173ffb 0x1 - .rodata_wlog_error.51 - 0x3c173ffc 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174003 0x1 - .rodata_wlog_error.52 - 0x3c174004 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17400b 0x1 - .rodata_wlog_error.53 - 0x3c17400c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174013 0x1 - .rodata_wlog_error.55 - 0x3c174014 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17401b 0x1 - .rodata_wlog_error.61 - 0x3c17401c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174023 0x1 - .rodata_wlog_error.64 - 0x3c174024 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17402b 0x1 - .rodata_wlog_error.65 - 0x3c17402c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174033 0x1 - .rodata_wlog_error.67 - 0x3c174034 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17403b 0x1 - .rodata_wlog_error.68 - 0x3c17403c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174043 0x1 - .rodata_wlog_error.69 - 0x3c174044 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17404b 0x1 - .rodata_wlog_error.7 - 0x3c17404c 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174069 0x3 - .rodata_wlog_error.70 - 0x3c17406c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174073 0x1 - .rodata_wlog_error.71 - 0x3c174074 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17407b 0x1 - .rodata_wlog_error.72 - 0x3c17407c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174083 0x1 - .rodata_wlog_error.73 - 0x3c174084 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17408b 0x1 - .rodata_wlog_error.75 - 0x3c17408c 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c174093 0x1 - .rodata_wlog_error.77 - 0x3c174094 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17409b 0x1 - .rodata_wlog_error.8 - 0x3c17409c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_error.9 - 0x3c1740c0 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1740e3 0x1 - .rodata_wlog_error.2 - 0x3c1740e4 0x57 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x3c17413b 0x1 - .rodata_wlog_error.3 - 0x3c17413c 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x3c17418a 0x2 - .rodata_wlog_error.4 - 0x3c17418c 0x71 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x3c1741fd 0x3 - .rodata_wlog_error.2 - 0x3c174200 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - *fill* 0x3c174207 0x1 - .rodata_wlog_error.103 - 0x3c174208 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17420f 0x1 - .rodata_wlog_error.14 - 0x3c174210 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c174217 0x1 - .rodata_wlog_error.46 - 0x3c174218 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17421f 0x1 - .rodata_wlog_error.55 - 0x3c174220 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17424f 0x1 - .rodata_wlog_error.56 - 0x3c174250 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_error.61 - 0x3c174280 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_error.63 - 0x3c1742a0 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1742d2 0x2 - .rodata_wlog_error.65 - 0x3c1742d4 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1742ea 0x2 - .rodata_wlog_error.71 - 0x3c1742ec 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c174332 0x2 - .rodata_wlog_error.80 - 0x3c174334 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17434a 0x2 - .rodata_wlog_error.81 - 0x3c17434c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c174362 0x2 - .rodata_wlog_error.37 - 0x3c174364 0x6 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c17436a 0x2 - .rodata_wlog_error.8 - 0x3c17436c 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - *fill* 0x3c174386 0x2 - .rodata_wlog_error.30 - 0x3c174388 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1743a7 0x1 - .rodata_wlog_error.39 - 0x3c1743a8 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1743af 0x1 - .rodata_wlog_error.42 - 0x3c1743b0 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1743b7 0x1 - .rodata_wlog_error.54 - 0x3c1743b8 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1743e1 0x3 - .rodata_wlog_error.55 - 0x3c1743e4 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c17440d 0x3 - .rodata_wlog_error.56 - 0x3c174410 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c174437 0x1 - .rodata_wlog_error.57 - 0x3c174438 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_error.69 - 0x3c174460 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c174467 0x1 - .rodata_wlog_error.75 - 0x3c174468 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c17446f 0x1 - .rodata_wlog_error.8 - 0x3c174470 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c174477 0x1 - .rodata_wlog_error.17 - 0x3c174478 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - *fill* 0x3c174495 0x3 - .rodata_wlog_error.4 - 0x3c174498 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c1744bf 0x1 - .rodata_wlog_error.6 - 0x3c1744c0 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c1744df 0x1 - .rodata_wlog_error.8 - 0x3c1744e0 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c1744fb 0x1 - .rodata_wlog_error.19 - 0x3c1744fc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174506 0x2 - .rodata_wlog_error.24 - 0x3c174508 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174512 0x2 - .rodata_wlog_error.26 - 0x3c174514 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17451e 0x2 - .rodata_wlog_error.27 - 0x3c174520 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17452a 0x2 - .rodata_wlog_error.28 - 0x3c17452c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174536 0x2 - .rodata_wlog_error.29 - 0x3c174538 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174542 0x2 - .rodata_wlog_error.30 - 0x3c174544 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17454e 0x2 - .rodata_wlog_error.32 - 0x3c174550 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17455a 0x2 - .rodata_wlog_error.33 - 0x3c17455c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174566 0x2 - .rodata_wlog_error.34 - 0x3c174568 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174572 0x2 - .rodata_wlog_error.40 - 0x3c174574 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17457e 0x2 - .rodata_wlog_error.42 - 0x3c174580 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17458a 0x2 - .rodata_wlog_error.43 - 0x3c17458c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174596 0x2 - .rodata_wlog_error.44 - 0x3c174598 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745a2 0x2 - .rodata_wlog_error.46 - 0x3c1745a4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745ae 0x2 - .rodata_wlog_error.47 - 0x3c1745b0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745ba 0x2 - .rodata_wlog_error.48 - 0x3c1745bc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745c6 0x2 - .rodata_wlog_error.49 - 0x3c1745c8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745d2 0x2 - .rodata_wlog_error.50 - 0x3c1745d4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745de 0x2 - .rodata_wlog_error.51 - 0x3c1745e0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745ea 0x2 - .rodata_wlog_error.52 - 0x3c1745ec 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c1745f6 0x2 - .rodata_wlog_error.54 - 0x3c1745f8 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174602 0x2 - .rodata_wlog_error.55 - 0x3c174604 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17460e 0x2 - .rodata_wlog_error.59 - 0x3c174610 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17461a 0x2 - .rodata_wlog_error.6 - 0x3c17461c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174626 0x2 - .rodata_wlog_error.60 - 0x3c174628 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174632 0x2 - .rodata_wlog_error.61 - 0x3c174634 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17463e 0x2 - .rodata_wlog_error.63 - 0x3c174640 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c17464a 0x2 - .rodata_wlog_error.7 - 0x3c17464c 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174656 0x2 - .rodata_wlog_error.8 - 0x3c174658 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c174662 0x2 - .rodata_wlog_error.14 - 0x3c174664 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c17466e 0x2 - .rodata_wlog_error.15 - 0x3c174670 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c17467d 0x3 - .rodata_wlog_error.16 - 0x3c174680 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c17468a 0x2 - .rodata_wlog_error.17 - 0x3c17468c 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c1746b1 0x3 - .rodata_wlog_error.18 - 0x3c1746b4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c1746be 0x2 - .rodata_wlog_error.22 - 0x3c1746c0 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c1746db 0x1 - .rodata_wlog_error.26 - 0x3c1746dc 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c1746f2 0x2 - .rodata_wlog_error.28 - 0x3c1746f4 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_error.3 - 0x3c174714 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_error.4 - 0x3c174740 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_error.5 - 0x3c17476c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .rodata_wlog_error.26 - 0x3c174798 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c1747a2 0x2 - .rodata_wlog_error.32 - 0x3c1747a4 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c1747d3 0x1 - .rodata_wlog_error.36 - 0x3c1747d4 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_error.49 - 0x3c174800 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c17480a 0x2 - .rodata_wlog_error.53 - 0x3c17480c 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *(.rodata_wlog_info .rodata_wlog_info.*) - *fill* 0x3c174826 0x2 - .rodata_wlog_info.30 - 0x3c174828 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_info.33 - 0x3c174840 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_info.34 - 0x3c174858 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c174896 0x2 - .rodata_wlog_info.37 - 0x3c174898 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1748cb 0x1 - .rodata_wlog_info.58 - 0x3c1748cc 0x4d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c174919 0x3 - .rodata_wlog_info.60 - 0x3c17491c 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_info.2 - 0x3c174960 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - *fill* 0x3c174983 0x1 - .rodata_wlog_info.2 - 0x3c174984 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - *fill* 0x3c1749a5 0x3 - .rodata_wlog_info.103 - 0x3c1749a8 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1749c6 0x2 - .rodata_wlog_info.105 - 0x3c1749c8 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1749e6 0x2 - .rodata_wlog_info.108 - 0x3c1749e8 0x53 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174a3b 0x1 - .rodata_wlog_info.109 - 0x3c174a3c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.13 - 0x3c174a5c 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.42 - 0x3c174a8c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.43 - 0x3c174aac 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174abb 0x1 - .rodata_wlog_info.50 - 0x3c174abc 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174ad1 0x3 - .rodata_wlog_info.55 - 0x3c174ad4 0x35 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174b09 0x3 - .rodata_wlog_info.56 - 0x3c174b0c 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174b3b 0x1 - .rodata_wlog_info.80 - 0x3c174b3c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.81 - 0x3c174b5c 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174b8e 0x2 - .rodata_wlog_info.93 - 0x3c174b90 0x5d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174bed 0x3 - .rodata_wlog_info.94 - 0x3c174bf0 0x59 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c174c49 0x3 - .rodata_wlog_info.97 - 0x3c174c4c 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.98 - 0x3c174c5c 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_info.28 - 0x3c174c98 0x35 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c174ccd 0x3 - .rodata_wlog_info.47 - 0x3c174cd0 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c174cda 0x2 - .rodata_wlog_info.65 - 0x3c174cdc 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c174cf6 0x2 - .rodata_wlog_info.66 - 0x3c174cf8 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c174d1b 0x1 - .rodata_wlog_info.67 - 0x3c174d1c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c174d31 0x3 - .rodata_wlog_info.68 - 0x3c174d34 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c174d4f 0x1 - .rodata_wlog_info.10 - 0x3c174d50 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174d73 0x1 - .rodata_wlog_info.11 - 0x3c174d74 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174d91 0x3 - .rodata_wlog_info.12 - 0x3c174d94 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174db7 0x1 - .rodata_wlog_info.13 - 0x3c174db8 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174ddb 0x1 - .rodata_wlog_info.14 - 0x3c174ddc 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174dfe 0x2 - .rodata_wlog_info.15 - 0x3c174e00 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174e23 0x1 - .rodata_wlog_info.16 - 0x3c174e24 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174e47 0x1 - .rodata_wlog_info.17 - 0x3c174e48 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174e6a 0x2 - .rodata_wlog_info.18 - 0x3c174e6c 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174e8f 0x1 - .rodata_wlog_info.19 - 0x3c174e90 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174eb3 0x1 - .rodata_wlog_info.20 - 0x3c174eb4 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174ed7 0x1 - .rodata_wlog_info.21 - 0x3c174ed8 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174efa 0x2 - .rodata_wlog_info.22 - 0x3c174efc 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174f1e 0x2 - .rodata_wlog_info.23 - 0x3c174f20 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174f43 0x1 - .rodata_wlog_info.4 - 0x3c174f44 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174f67 0x1 - .rodata_wlog_info.5 - 0x3c174f68 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174f8b 0x1 - .rodata_wlog_info.6 - 0x3c174f8c 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174faf 0x1 - .rodata_wlog_info.7 - 0x3c174fb0 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174fd3 0x1 - .rodata_wlog_info.8 - 0x3c174fd4 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c174ff7 0x1 - .rodata_wlog_info.9 - 0x3c174ff8 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c175015 0x3 - .rodata_wlog_info.3 - 0x3c175018 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata_wlog_info.4 - 0x3c175024 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - *fill* 0x3c17504f 0x1 - .rodata_wlog_info.5 - 0x3c175050 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - *fill* 0x3c17507e 0x2 - .rodata_wlog_info.6 - 0x3c175080 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata_wlog_info.8 - 0x3c1750d4 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .rodata_wlog_info.9 - 0x3c1750fc 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - *fill* 0x3c17512e 0x2 - .rodata_wlog_info.101 - 0x3c175130 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_info.103 - 0x3c175170 0x43 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c1751b3 0x1 - .rodata_wlog_info.2 - 0x3c1751b4 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c1751cb 0x1 - .rodata_wlog_info.37 - 0x3c1751cc 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_info.68 - 0x3c1751ec 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17520b 0x1 - .rodata_wlog_info.69 - 0x3c17520c 0x51 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17525d 0x3 - .rodata_wlog_info.70 - 0x3c175260 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_info.71 - 0x3c17529c 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_info.73 - 0x3c1752d8 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c175309 0x3 - .rodata_wlog_info.91 - 0x3c17530c 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17534e 0x2 - .rodata_wlog_info.97 - 0x3c175350 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17535b 0x1 - .rodata_wlog_info.22 - 0x3c17535c 0x37 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c175393 0x1 - .rodata_wlog_info.24 - 0x3c175394 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1753c1 0x3 - .rodata_wlog_info.56 - 0x3c1753c4 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1753e6 0x2 - .rodata_wlog_info.58 - 0x3c1753e8 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_info.59 - 0x3c175434 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_info.78 - 0x3c175460 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_info.17 - 0x3c17549c 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1754a9 0x3 - .rodata_wlog_info.66 - 0x3c1754ac 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1754db 0x1 - .rodata_wlog_info.67 - 0x3c1754dc 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17551a 0x2 - .rodata_wlog_info.68 - 0x3c17551c 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17554f 0x1 - .rodata_wlog_info.69 - 0x3c175550 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17558f 0x1 - .rodata_wlog_info.70 - 0x3c175590 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_info.91 - 0x3c1755c8 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1755dd 0x3 - .rodata_wlog_info.92 - 0x3c1755e0 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1755fd 0x3 - .rodata_wlog_info.11 - 0x3c175600 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c175629 0x3 - .rodata_wlog_info.12 - 0x3c17562c 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c175666 0x2 - .rodata_wlog_info.13 - 0x3c175668 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata_wlog_info.14 - 0x3c1756b0 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c1756de 0x2 - .rodata_wlog_info.15 - 0x3c1756e0 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata_wlog_info.16 - 0x3c175704 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c17573e 0x2 - .rodata_wlog_info.17 - 0x3c175740 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata_wlog_info.18 - 0x3c175788 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c1757b6 0x2 - .rodata_wlog_info.19 - 0x3c1757b8 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c1757e7 0x1 - .rodata_wlog_info.52 - 0x3c1757e8 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c175827 0x1 - .rodata_wlog_info.56 - 0x3c175828 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata_wlog_info.57 - 0x3c17583c 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .rodata_wlog_info.58 - 0x3c175888 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c1758b6 0x2 - .rodata_wlog_info.59 - 0x3c1758b8 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c17590e 0x2 - .rodata_wlog_info.60 - 0x3c175910 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c17592e 0x2 - .rodata_wlog_info.61 - 0x3c175930 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c17596f 0x1 - .rodata_wlog_info.7 - 0x3c175970 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - *fill* 0x3c1759b2 0x2 - .rodata_wlog_info.10 - 0x3c1759b4 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .rodata_wlog_info.21 - 0x3c1759c0 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1759d1 0x3 - .rodata_wlog_info.25 - 0x3c1759d4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c1759e6 0x2 - .rodata_wlog_info.58 - 0x3c1759e8 0x31 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c175a19 0x3 - .rodata_wlog_info.11 - 0x3c175a1c 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175a46 0x2 - .rodata_wlog_info.12 - 0x3c175a48 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175a6b 0x1 - .rodata_wlog_info.13 - 0x3c175a6c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata_wlog_info.14 - 0x3c175a90 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175ab5 0x3 - .rodata_wlog_info.15 - 0x3c175ab8 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175ad6 0x2 - .rodata_wlog_info.16 - 0x3c175ad8 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175af7 0x1 - .rodata_wlog_info.17 - 0x3c175af8 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175b15 0x3 - .rodata_wlog_info.18 - 0x3c175b18 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - *fill* 0x3c175b39 0x3 - .rodata_wlog_info.39 - 0x3c175b3c 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c175b4f 0x1 - .rodata_wlog_info.45 - 0x3c175b50 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c175b5d 0x3 - .rodata_wlog_info.64 - 0x3c175b60 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c175b71 0x3 - .rodata_wlog_info.3 - 0x3c175b74 0x3a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - *fill* 0x3c175bae 0x2 - .rodata_wlog_info.17 - 0x3c175bb0 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175bc2 0x2 - .rodata_wlog_info.18 - 0x3c175bc4 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175bd7 0x1 - .rodata_wlog_info.33 - 0x3c175bd8 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175bf7 0x1 - .rodata_wlog_info.34 - 0x3c175bf8 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175c16 0x2 - .rodata_wlog_info.35 - 0x3c175c18 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175c37 0x1 - .rodata_wlog_info.37 - 0x3c175c38 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175c53 0x1 - .rodata_wlog_info.45 - 0x3c175c54 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175c63 0x1 - .rodata_wlog_info.46 - 0x3c175c64 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .rodata_wlog_info.47 - 0x3c175c7c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c175c91 0x3 - .rodata_wlog_info.2 - 0x3c175c94 0x53 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - *fill* 0x3c175ce7 0x1 - .rodata_wlog_info.4 - 0x3c175ce8 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - *(.rodata_wlog_warning .rodata_wlog_warning.*) - *fill* 0x3c175cff 0x1 - .rodata_wlog_warning.17 - 0x3c175d00 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175d0a 0x2 - .rodata_wlog_warning.25 - 0x3c175d0c 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_warning.28 - 0x3c175d20 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_warning.31 - 0x3c175d34 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_warning.33 - 0x3c175d48 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175d52 0x2 - .rodata_wlog_warning.34 - 0x3c175d54 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175d6a 0x2 - .rodata_wlog_warning.35 - 0x3c175d6c 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175d7a 0x2 - .rodata_wlog_warning.41 - 0x3c175d7c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175d92 0x2 - .rodata_wlog_warning.44 - 0x3c175d94 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175da5 0x3 - .rodata_wlog_warning.45 - 0x3c175da8 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175db3 0x1 - .rodata_wlog_warning.57 - 0x3c175db4 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175dc5 0x3 - .rodata_wlog_warning.59 - 0x3c175dc8 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175ddd 0x3 - .rodata_wlog_warning.60 - 0x3c175de0 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175dfa 0x2 - .rodata_wlog_warning.61 - 0x3c175dfc 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175e06 0x2 - .rodata_wlog_warning.7 - 0x3c175e08 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175e15 0x3 - .rodata_wlog_warning.8 - 0x3c175e18 0x47 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c175e5f 0x1 - .rodata_wlog_warning.12 - 0x3c175e60 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175e67 0x1 - .rodata_wlog_warning.14 - 0x3c175e68 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175e8b 0x1 - .rodata_wlog_warning.15 - 0x3c175e8c 0x5b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175ee7 0x1 - .rodata_wlog_warning.3 - 0x3c175ee8 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175f12 0x2 - .rodata_wlog_warning.4 - 0x3c175f14 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175f1d 0x3 - .rodata_wlog_warning.45 - 0x3c175f20 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175f3e 0x2 - .rodata_wlog_warning.46 - 0x3c175f40 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175f61 0x3 - .rodata_wlog_warning.47 - 0x3c175f64 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175f85 0x3 - .rodata_wlog_warning.52 - 0x3c175f88 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_warning.53 - 0x3c175fc4 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c175fdf 0x1 - .rodata_wlog_warning.54 - 0x3c175fe0 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17601d 0x3 - .rodata_wlog_warning.57 - 0x3c176020 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c176045 0x3 - .rodata_wlog_warning.59 - 0x3c176048 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17606d 0x3 - .rodata_wlog_warning.6 - 0x3c176070 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c176079 0x3 - .rodata_wlog_warning.7 - 0x3c17607c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_warning.8 - 0x3c1760a0 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_warning.3 - 0x3c1760c0 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - *fill* 0x3c1760de 0x2 - .rodata_wlog_warning.2 - 0x3c1760e0 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - *fill* 0x3c1760f5 0x3 - .rodata_wlog_warning.107 - 0x3c1760f8 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17611e 0x2 - .rodata_wlog_warning.17 - 0x3c176120 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c176153 0x1 - .rodata_wlog_warning.24 - 0x3c176154 0x64 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_warning.25 - 0x3c1761b8 0x65 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17621d 0x3 - .rodata_wlog_warning.26 - 0x3c176220 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17622d 0x3 - .rodata_wlog_warning.69 - 0x3c176230 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c176251 0x3 - .rodata_wlog_warning.2 - 0x3c176254 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c176277 0x1 - .rodata_wlog_warning.27 - 0x3c176278 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c176299 0x3 - .rodata_wlog_warning.29 - 0x3c17629c 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1762e1 0x3 - .rodata_wlog_warning.30 - 0x3c1762e4 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c176336 0x2 - .rodata_wlog_warning.43 - 0x3c176338 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c176361 0x3 - .rodata_wlog_warning.10 - 0x3c176364 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c17637f 0x1 - .rodata_wlog_warning.11 - 0x3c176380 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c1763a7 0x1 - .rodata_wlog_warning.12 - 0x3c1763a8 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .rodata_wlog_warning.13 - 0x3c1763cc 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c1763e2 0x2 - .rodata_wlog_warning.14 - 0x3c1763e4 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c176412 0x2 - .rodata_wlog_warning.15 - 0x3c176414 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c176433 0x1 - .rodata_wlog_warning.4 - 0x3c176434 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c17644e 0x2 - .rodata_wlog_warning.8 - 0x3c176450 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c17646b 0x1 - .rodata_wlog_warning.9 - 0x3c17646c 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - *fill* 0x3c176487 0x1 - .rodata_wlog_warning.108 - 0x3c176488 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176493 0x1 - .rodata_wlog_warning.109 - 0x3c176494 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17649f 0x1 - .rodata_wlog_warning.118 - 0x3c1764a0 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1764ba 0x2 - .rodata_wlog_warning.13 - 0x3c1764bc 0x39 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1764f5 0x3 - .rodata_wlog_warning.132 - 0x3c1764f8 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.133 - 0x3c176534 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176559 0x3 - .rodata_wlog_warning.134 - 0x3c17655c 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17657f 0x1 - .rodata_wlog_warning.14 - 0x3c176580 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.19 - 0x3c1765e0 0x55 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176635 0x3 - .rodata_wlog_warning.20 - 0x3c176638 0x73 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1766ab 0x1 - .rodata_wlog_warning.21 - 0x3c1766ac 0x82 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17672e 0x2 - .rodata_wlog_warning.24 - 0x3c176730 0x39 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176769 0x3 - .rodata_wlog_warning.30 - 0x3c17676c 0x60 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.33 - 0x3c1767cc 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1767e2 0x2 - .rodata_wlog_warning.34 - 0x3c1767e4 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1767fb 0x1 - .rodata_wlog_warning.36 - 0x3c1767fc 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176842 0x2 - .rodata_wlog_warning.37 - 0x3c176844 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.38 - 0x3c176898 0x50 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.62 - 0x3c1768e8 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.64 - 0x3c1768fc 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.69 - 0x3c17692c 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176946 0x2 - .rodata_wlog_warning.86 - 0x3c176948 0x8 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_warning.88 - 0x3c176950 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c176979 0x3 - .rodata_wlog_warning.24 - 0x3c17697c 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c176985 0x3 - .rodata_wlog_warning.25 - 0x3c176988 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - *fill* 0x3c176999 0x3 - .rodata_wlog_warning.10 - 0x3c17699c 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c1769ba 0x2 - .rodata_wlog_warning.16 - 0x3c1769bc 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c1769dd 0x3 - .rodata_wlog_warning.17 - 0x3c1769e0 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.19 - 0x3c1769f0 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c1769ff 0x1 - .rodata_wlog_warning.4 - 0x3c176a00 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.6 - 0x3c176a20 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c176a3a 0x2 - .rodata_wlog_warning.7 - 0x3c176a3c 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.9 - 0x3c176a58 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .rodata_wlog_warning.10 - 0x3c176a74 0x5a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - *fill* 0x3c176ace 0x2 - .rodata_wlog_warning.100 - 0x3c176ad0 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c176af5 0x3 - .rodata_wlog_warning.102 - 0x3c176af8 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c176b1d 0x3 - .rodata_wlog_warning.67 - 0x3c176b20 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_warning.94 - 0x3c176b3c 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c176b59 0x3 - .rodata_wlog_warning.27 - 0x3c176b5c 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176b8b 0x1 - .rodata_wlog_warning.28 - 0x3c176b8c 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176bda 0x2 - .rodata_wlog_warning.29 - 0x3c176bdc 0x61 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176c3d 0x3 - .rodata_wlog_warning.3 - 0x3c176c40 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176c59 0x3 - .rodata_wlog_warning.32 - 0x3c176c5c 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176c6b 0x1 - .rodata_wlog_warning.48 - 0x3c176c6c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_warning.49 - 0x3c176c84 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176cba 0x2 - .rodata_wlog_warning.57 - 0x3c176cbc 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176ce5 0x3 - .rodata_wlog_warning.6 - 0x3c176ce8 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176cf7 0x1 - .rodata_wlog_warning.66 - 0x3c176cf8 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176d0a 0x2 - .rodata_wlog_warning.74 - 0x3c176d0c 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176d15 0x3 - .rodata_wlog_warning.76 - 0x3c176d18 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c176d21 0x3 - .rodata_wlog_warning.10 - 0x3c176d24 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176d41 0x3 - .rodata_wlog_warning.11 - 0x3c176d44 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176d56 0x2 - .rodata_wlog_warning.51 - 0x3c176d58 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_warning.52 - 0x3c176da0 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176dd3 0x1 - .rodata_wlog_warning.53 - 0x3c176dd4 0x48 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_warning.54 - 0x3c176e1c 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176e4f 0x1 - .rodata_wlog_warning.60 - 0x3c176e50 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176e6a 0x2 - .rodata_wlog_warning.7 - 0x3c176e6c 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c176e9a 0x2 - .rodata_wlog_warning.2 - 0x3c176e9c 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - *fill* 0x3c176ed9 0x3 - .rodata_wlog_warning.27 - 0x3c176edc 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c176ef6 0x2 - .rodata_wlog_warning.31 - 0x3c176ef8 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c176f05 0x3 - .rodata_wlog_warning.52 - 0x3c176f08 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .rodata_wlog_warning.53 - 0x3c176f28 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - *fill* 0x3c176f49 0x3 - .rodata_wlog_warning.10 - 0x3c176f4c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .rodata_wlog_warning.53 - 0x3c176f74 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c176f87 0x1 - .rodata_wlog_warning.65 - 0x3c176f88 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - *fill* 0x3c176fa9 0x3 - .rodata_wlog_warning.23 - 0x3c176fac 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c176fba 0x2 - .rodata_wlog_warning.24 - 0x3c176fbc 0x7 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c176fc3 0x1 - .rodata_wlog_warning.6 - 0x3c176fc4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c176ff6 0x2 - .rodata_wlog_warning.7 - 0x3c176ff8 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - *fill* 0x3c177026 0x2 - .rodata_wlog_warning.20 - 0x3c177028 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c17703d 0x3 - .rodata_wlog_warning.31 - 0x3c177040 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - *fill* 0x3c177053 0x1 - .rodata_wlog_warning.2 - 0x3c177054 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - *fill* 0x3c17705d 0x3 - .rodata_wlog_warning.3 - 0x3c177060 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - *fill* 0x3c177069 0x3 - .rodata_wlog_warning.4 - 0x3c17706c 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - *fill* 0x3c177075 0x3 - .rodata_wlog_warning.5 - 0x3c177078 0x9 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - *fill* 0x3c177081 0x3 - .rodata_wlog_warning.6 - 0x3c177084 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - *fill* 0x3c177095 0x3 - .rodata_wlog_warning.2 - 0x3c177098 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .rodata_wlog_warning.3 - 0x3c1770a4 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - *(.irom1.text) - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - .gcc_except_table._ZSt15get_new_handlerv - 0x3c1770c3 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - *fill* 0x3c1770c7 0x1 - .gcc_except_table._ZnajRKSt9nothrow_t - 0x3c1770c8 0x10 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .gcc_except_table.__cxa_get_globals_fast - 0x3c1770d8 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .gcc_except_table.__cxa_get_globals - 0x3c1770dc 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE - 0x3c1770e0 0x10 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .gcc_except_table._ZSt13get_terminatev - 0x3c1770f0 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - *(.gnu.linkonce.e.*) - 0x3c1770f4 . = ALIGN (0x4) - 0x3c1770f4 __init_priority_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array.*) - 0x3c1770f4 __init_priority_array_end = ABSOLUTE (.) - 0x3c1770f4 . = ALIGN (0x4) - 0x3c1770f4 __init_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array) - .init_array 0x3c1770f4 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .init_array 0x3c1770f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .init_array 0x3c1770fc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .init_array 0x3c177100 0x4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .init_array 0x3c177104 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .init_array 0x3c177108 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .init_array 0x3c17710c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .init_array 0x3c177110 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .init_array 0x3c177114 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .init_array 0x3c177118 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - 0x3c17711c __init_array_end = ABSOLUTE (.) - 0x3c17711c . = ALIGN (0x4) - 0x3c17711c soc_reserved_memory_region_start = ABSOLUTE (.) - *(.reserved_memory_address) - .reserved_memory_address - 0x3c17711c 0x20 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x3c17713c soc_reserved_memory_region_end = ABSOLUTE (.) - 0x3c17713c . = ALIGN (0x4) - 0x3c17713c _esp_system_init_fn_array_start = ABSOLUTE (.) - *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) - .esp_system_init_fn.1 - 0x3c17713c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.10 - 0x3c177144 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.20 - 0x3c17714c 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .esp_system_init_fn.21 - 0x3c177154 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.100 - 0x3c17715c 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .esp_system_init_fn.100 - 0x3c177164 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .esp_system_init_fn.101 - 0x3c17716c 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .esp_system_init_fn.101 - 0x3c177174 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .esp_system_init_fn.102 - 0x3c17717c 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .esp_system_init_fn.103 - 0x3c177184 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) - .esp_system_init_fn.104 - 0x3c17718c 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.105 - 0x3c177194 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.105 - 0x3c17719c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .esp_system_init_fn.110 - 0x3c1771a4 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .esp_system_init_fn.112 - 0x3c1771ac 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .esp_system_init_fn.113 - 0x3c1771b4 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .esp_system_init_fn.114 - 0x3c1771bc 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .esp_system_init_fn.115 - 0x3c1771c4 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .esp_system_init_fn.130 - 0x3c1771cc 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.140 - 0x3c1771d4 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.203 - 0x3c1771dc 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.204 - 0x3c1771e4 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.230 - 0x3c1771ec 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .esp_system_init_fn.999 - 0x3c1771f4 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - 0x3c1771fc _esp_system_init_fn_array_end = ABSOLUTE (.) - 0x3c1771fc _rodata_end = ABSOLUTE (.) - 0x3c1771fc . = ALIGN (ALIGNOF (.eh_frame_hdr)) - 0x00000001 ASSERT ((ADDR (.eh_frame_hdr) == (ADDR (.flash.rodata) + SIZEOF (.flash.rodata))), The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.) - -.eh_frame_hdr 0x3c1771fc 0x0 - 0x3c1771fc . = ALIGN (ALIGNOF (.eh_frame)) - 0x00000001 ASSERT ((ADDR (.eh_frame) == (ADDR (.eh_frame_hdr) + SIZEOF (.eh_frame_hdr))), The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.) - -.eh_frame 0x3c1771fc 0x0 - 0x3c1771fc . = ALIGN (ALIGNOF (.flash.tdata)) - 0x00000001 ASSERT ((ADDR (.flash.tdata) == (ADDR (.eh_frame) + SIZEOF (.eh_frame))), The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.) - -.flash.tdata 0x3c1771fc 0x0 - 0x3c1771fc _thread_local_data_start = ABSOLUTE (.) - *(.tdata .tdata.* .gnu.linkonce.td.*) - 0x3c1771fc . = ALIGN (ALIGNOF (.flash.tbss)) - 0x3c1771fc _thread_local_data_end = ABSOLUTE (.) - 0x00000001 ASSERT ((ADDR (.flash.tbss) == (ADDR (.flash.tdata) + SIZEOF (.flash.tdata))), The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.) - -.flash.tbss 0x3c1771fc 0x0 - 0x3c1771fc _thread_local_bss_start = ABSOLUTE (.) - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - 0x3c1771fc _thread_local_bss_end = ABSOLUTE (.) - -.flash.rodata_noload - 0x3c1771fc 0x31ff - 0x3c1771fc _rodata_reserved_end = ADDR (.flash.tbss) - *(.rodata_wlog_debug .rodata_wlog_debug.*) - .rodata_wlog_debug.15 - 0x3c1771fc 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .rodata_wlog_debug.22 - 0x3c177214 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c17723f 0x1 - .rodata_wlog_debug.42 - 0x3c177240 0x35 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c177275 0x3 - .rodata_wlog_debug.20 - 0x3c177278 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17728a 0x2 - .rodata_wlog_debug.23 - 0x3c17728c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1772a2 0x2 - .rodata_wlog_debug.24 - 0x3c1772a4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1772d6 0x2 - .rodata_wlog_debug.26 - 0x3c1772d8 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17730a 0x2 - .rodata_wlog_debug.32 - 0x3c17730c 0x2e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17733a 0x2 - .rodata_wlog_debug.39 - 0x3c17733c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_debug.40 - 0x3c17735c 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c177382 0x2 - .rodata_wlog_debug.41 - 0x3c177384 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1773a2 0x2 - .rodata_wlog_debug.42 - 0x3c1773a4 0x5b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1773ff 0x1 - .rodata_wlog_debug.43 - 0x3c177400 0x4e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17744e 0x2 - .rodata_wlog_debug.44 - 0x3c177450 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .rodata_wlog_debug.48 - 0x3c17748c 0x52 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c1774de 0x2 - .rodata_wlog_debug.49 - 0x3c1774e0 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c17752a 0x2 - .rodata_wlog_debug.10 - 0x3c17752c 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177556 0x2 - .rodata_wlog_debug.100 - 0x3c177558 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177576 0x2 - .rodata_wlog_debug.101 - 0x3c177578 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17759d 0x3 - .rodata_wlog_debug.102 - 0x3c1775a0 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1775c6 0x2 - .rodata_wlog_debug.104 - 0x3c1775c8 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1775fe 0x2 - .rodata_wlog_debug.106 - 0x3c177600 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177626 0x2 - .rodata_wlog_debug.11 - 0x3c177628 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17765e 0x2 - .rodata_wlog_debug.110 - 0x3c177660 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177679 0x3 - .rodata_wlog_debug.111 - 0x3c17767c 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177695 0x3 - .rodata_wlog_debug.112 - 0x3c177698 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.14 - 0x3c1776b0 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.15 - 0x3c1776d0 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1776f3 0x1 - .rodata_wlog_debug.16 - 0x3c1776f4 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177712 0x2 - .rodata_wlog_debug.19 - 0x3c177714 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.20 - 0x3c177754 0x44 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.21 - 0x3c177798 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1777b3 0x1 - .rodata_wlog_debug.22 - 0x3c1777b4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1777e6 0x2 - .rodata_wlog_debug.23 - 0x3c1777e8 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177823 0x1 - .rodata_wlog_debug.27 - 0x3c177824 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.28 - 0x3c17783c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.29 - 0x3c177860 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.3 - 0x3c177878 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.30 - 0x3c177890 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.31 - 0x3c1778a0 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1778b1 0x3 - .rodata_wlog_debug.32 - 0x3c1778b4 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1778c1 0x3 - .rodata_wlog_debug.33 - 0x3c1778c4 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1778ce 0x2 - .rodata_wlog_debug.34 - 0x3c1778d0 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1778de 0x2 - .rodata_wlog_debug.35 - 0x3c1778e0 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1778f7 0x1 - .rodata_wlog_debug.36 - 0x3c1778f8 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17790e 0x2 - .rodata_wlog_debug.37 - 0x3c177910 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177931 0x3 - .rodata_wlog_debug.38 - 0x3c177934 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177955 0x3 - .rodata_wlog_debug.39 - 0x3c177958 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c17796b 0x1 - .rodata_wlog_debug.4 - 0x3c17796c 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.40 - 0x3c17797c 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177999 0x3 - .rodata_wlog_debug.41 - 0x3c17799c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.44 - 0x3c1779b4 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c1779ca 0x2 - .rodata_wlog_debug.45 - 0x3c1779cc 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.46 - 0x3c1779f8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.49 - 0x3c177a10 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177a4e 0x2 - .rodata_wlog_debug.5 - 0x3c177a50 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177a66 0x2 - .rodata_wlog_debug.51 - 0x3c177a68 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177a83 0x1 - .rodata_wlog_debug.52 - 0x3c177a84 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177aba 0x2 - .rodata_wlog_debug.53 - 0x3c177abc 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.54 - 0x3c177ad4 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177aed 0x3 - .rodata_wlog_debug.58 - 0x3c177af0 0x35 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177b25 0x3 - .rodata_wlog_debug.59 - 0x3c177b28 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177b3e 0x2 - .rodata_wlog_debug.6 - 0x3c177b40 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177b5e 0x2 - .rodata_wlog_debug.60 - 0x3c177b60 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177b8b 0x1 - .rodata_wlog_debug.61 - 0x3c177b8c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177ba2 0x2 - .rodata_wlog_debug.66 - 0x3c177ba4 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177bc3 0x1 - .rodata_wlog_debug.67 - 0x3c177bc4 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177c06 0x2 - .rodata_wlog_debug.68 - 0x3c177c08 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177c45 0x3 - .rodata_wlog_debug.7 - 0x3c177c48 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177c6d 0x3 - .rodata_wlog_debug.70 - 0x3c177c70 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177c85 0x3 - .rodata_wlog_debug.71 - 0x3c177c88 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.72 - 0x3c177c98 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177ca6 0x2 - .rodata_wlog_debug.73 - 0x3c177ca8 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177cda 0x2 - .rodata_wlog_debug.74 - 0x3c177cdc 0x3d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177d19 0x3 - .rodata_wlog_debug.75 - 0x3c177d1c 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177d2b 0x1 - .rodata_wlog_debug.76 - 0x3c177d2c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.78 - 0x3c177d44 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177d5d 0x3 - .rodata_wlog_debug.79 - 0x3c177d60 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177d87 0x1 - .rodata_wlog_debug.8 - 0x3c177d88 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177dae 0x2 - .rodata_wlog_debug.82 - 0x3c177db0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.83 - 0x3c177dc8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.84 - 0x3c177de0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.85 - 0x3c177df8 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177e23 0x1 - .rodata_wlog_debug.86 - 0x3c177e24 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.87 - 0x3c177e50 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_debug.9 - 0x3c177e7c 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177e9b 0x1 - .rodata_wlog_debug.96 - 0x3c177e9c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177eb1 0x3 - .rodata_wlog_debug.99 - 0x3c177eb4 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c177ed9 0x3 - .rodata_wlog_debug.10 - 0x3c177edc 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177eee 0x2 - .rodata_wlog_debug.11 - 0x3c177ef0 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f05 0x3 - .rodata_wlog_debug.12 - 0x3c177f08 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f19 0x3 - .rodata_wlog_debug.13 - 0x3c177f1c 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f2e 0x2 - .rodata_wlog_debug.14 - 0x3c177f30 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f41 0x3 - .rodata_wlog_debug.15 - 0x3c177f44 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f56 0x2 - .rodata_wlog_debug.16 - 0x3c177f58 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f71 0x3 - .rodata_wlog_debug.17 - 0x3c177f74 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177f86 0x2 - .rodata_wlog_debug.18 - 0x3c177f88 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata_wlog_debug.19 - 0x3c177f98 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177fa9 0x3 - .rodata_wlog_debug.20 - 0x3c177fac 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177fbe 0x2 - .rodata_wlog_debug.21 - 0x3c177fc0 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177fd9 0x3 - .rodata_wlog_debug.22 - 0x3c177fdc 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c177fee 0x2 - .rodata_wlog_debug.23 - 0x3c177ff0 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178002 0x2 - .rodata_wlog_debug.24 - 0x3c178004 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178016 0x2 - .rodata_wlog_debug.25 - 0x3c178018 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c17802a 0x2 - .rodata_wlog_debug.26 - 0x3c17802c 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c17803e 0x2 - .rodata_wlog_debug.31 - 0x3c178040 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178076 0x2 - .rodata_wlog_debug.32 - 0x3c178078 0x47 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1780bf 0x1 - .rodata_wlog_debug.33 - 0x3c1780c0 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata_wlog_debug.34 - 0x3c178100 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c17813f 0x1 - .rodata_wlog_debug.35 - 0x3c178140 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178186 0x2 - .rodata_wlog_debug.36 - 0x3c178188 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1781ab 0x1 - .rodata_wlog_debug.37 - 0x3c1781ac 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1781cb 0x1 - .rodata_wlog_debug.38 - 0x3c1781cc 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata_wlog_debug.39 - 0x3c1781d8 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178203 0x1 - .rodata_wlog_debug.4 - 0x3c178204 0x49 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c17824d 0x3 - .rodata_wlog_debug.40 - 0x3c178250 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178276 0x2 - .rodata_wlog_debug.41 - 0x3c178278 0x58 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .rodata_wlog_debug.42 - 0x3c1782d0 0x56 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178326 0x2 - .rodata_wlog_debug.5 - 0x3c178328 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c178363 0x1 - .rodata_wlog_debug.6 - 0x3c178364 0xb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c17836f 0x1 - .rodata_wlog_debug.9 - 0x3c178370 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - *fill* 0x3c1783a6 0x2 - .rodata_wlog_debug.11 - 0x3c1783a8 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c1783ba 0x2 - .rodata_wlog_debug.4 - 0x3c1783bc 0x4c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .rodata_wlog_debug.5 - 0x3c178408 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c17842b 0x1 - .rodata_wlog_debug.6 - 0x3c17842c 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c17844f 0x1 - .rodata_wlog_debug.7 - 0x3c178450 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c178492 0x2 - .rodata_wlog_debug.8 - 0x3c178494 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - *fill* 0x3c1784b7 0x1 - .rodata_wlog_debug.117 - 0x3c1784b8 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.126 - 0x3c1784e4 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178505 0x3 - .rodata_wlog_debug.127 - 0x3c178508 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.128 - 0x3c178540 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.129 - 0x3c178570 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1785ab 0x1 - .rodata_wlog_debug.130 - 0x3c1785ac 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.22 - 0x3c1785dc 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.25 - 0x3c1785e8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.26 - 0x3c178600 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17861a 0x2 - .rodata_wlog_debug.27 - 0x3c17861c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.28 - 0x3c178634 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17864d 0x3 - .rodata_wlog_debug.39 - 0x3c178650 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178669 0x3 - .rodata_wlog_debug.40 - 0x3c17866c 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178685 0x3 - .rodata_wlog_debug.5 - 0x3c178688 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178697 0x1 - .rodata_wlog_debug.6 - 0x3c178698 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1786a6 0x2 - .rodata_wlog_debug.7 - 0x3c1786a8 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.71 - 0x3c1786b8 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.72 - 0x3c1786e0 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c1786f3 0x1 - .rodata_wlog_debug.73 - 0x3c1786f4 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c17870f 0x1 - .rodata_wlog_debug.74 - 0x3c178710 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178726 0x2 - .rodata_wlog_debug.76 - 0x3c178728 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.8 - 0x3c178738 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178747 0x1 - .rodata_wlog_debug.82 - 0x3c178748 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c178763 0x1 - .rodata_wlog_debug.83 - 0x3c178764 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .rodata_wlog_debug.10 - 0x3c178778 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.11 - 0x3c17879c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.12 - 0x3c1787b4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.13 - 0x3c1787cc 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.14 - 0x3c1787e4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.15 - 0x3c1787fc 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.16 - 0x3c178814 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178841 0x3 - .rodata_wlog_debug.17 - 0x3c178844 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.18 - 0x3c17885c 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17886d 0x3 - .rodata_wlog_debug.19 - 0x3c178870 0xa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17887a 0x2 - .rodata_wlog_debug.20 - 0x3c17887c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.21 - 0x3c178894 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.22 - 0x3c1788ac 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c1788c7 0x1 - .rodata_wlog_debug.23 - 0x3c1788c8 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c1788e2 0x2 - .rodata_wlog_debug.24 - 0x3c1788e4 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17890d 0x3 - .rodata_wlog_debug.25 - 0x3c178910 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.26 - 0x3c178930 0x27 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178957 0x1 - .rodata_wlog_debug.27 - 0x3c178958 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178973 0x1 - .rodata_wlog_debug.28 - 0x3c178974 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.29 - 0x3c178988 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c17899e 0x2 - .rodata_wlog_debug.3 - 0x3c1789a0 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c1789bf 0x1 - .rodata_wlog_debug.30 - 0x3c1789c0 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.31 - 0x3c1789dc 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.32 - 0x3c1789f4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.33 - 0x3c178a0c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.34 - 0x3c178a24 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178a3f 0x1 - .rodata_wlog_debug.35 - 0x3c178a40 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178a56 0x2 - .rodata_wlog_debug.36 - 0x3c178a58 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178a6e 0x2 - .rodata_wlog_debug.38 - 0x3c178a70 0x2f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178a9f 0x1 - .rodata_wlog_debug.39 - 0x3c178aa0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.4 - 0x3c178ab8 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178acd 0x3 - .rodata_wlog_debug.40 - 0x3c178ad0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.41 - 0x3c178ae8 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.42 - 0x3c178b24 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178b45 0x3 - .rodata_wlog_debug.43 - 0x3c178b48 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.45 - 0x3c178b60 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178b79 0x3 - .rodata_wlog_debug.46 - 0x3c178b7c 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178b92 0x2 - .rodata_wlog_debug.5 - 0x3c178b94 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.58 - 0x3c178bac 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.59 - 0x3c178bc8 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178beb 0x1 - .rodata_wlog_debug.6 - 0x3c178bec 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.60 - 0x3c178c04 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178c13 0x1 - .rodata_wlog_debug.61 - 0x3c178c14 0x37 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178c4b 0x1 - .rodata_wlog_debug.62 - 0x3c178c4c 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178c6f 0x1 - .rodata_wlog_debug.63 - 0x3c178c70 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178c93 0x1 - .rodata_wlog_debug.64 - 0x3c178c94 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178cd2 0x2 - .rodata_wlog_debug.65 - 0x3c178cd4 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178cf7 0x1 - .rodata_wlog_debug.7 - 0x3c178cf8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.72 - 0x3c178d10 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178d43 0x1 - .rodata_wlog_debug.74 - 0x3c178d44 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178d83 0x1 - .rodata_wlog_debug.75 - 0x3c178d84 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178d9b 0x1 - .rodata_wlog_debug.76 - 0x3c178d9c 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178dc2 0x2 - .rodata_wlog_debug.77 - 0x3c178dc4 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.78 - 0x3c178e04 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178e3a 0x2 - .rodata_wlog_debug.79 - 0x3c178e3c 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.8 - 0x3c178e5c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.80 - 0x3c178e88 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178e9e 0x2 - .rodata_wlog_debug.81 - 0x3c178ea0 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178ec5 0x3 - .rodata_wlog_debug.82 - 0x3c178ec8 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178ee1 0x3 - .rodata_wlog_debug.83 - 0x3c178ee4 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178f09 0x3 - .rodata_wlog_debug.84 - 0x3c178f0c 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178f39 0x3 - .rodata_wlog_debug.85 - 0x3c178f3c 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178f55 0x3 - .rodata_wlog_debug.86 - 0x3c178f58 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178f82 0x2 - .rodata_wlog_debug.87 - 0x3c178f84 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178f9b 0x1 - .rodata_wlog_debug.9 - 0x3c178f9c 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.96 - 0x3c178fb4 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c178fcd 0x3 - .rodata_wlog_debug.98 - 0x3c178fd0 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.99 - 0x3c178fe8 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_debug.3 - 0x3c179000 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - *fill* 0x3c179023 0x1 - .rodata_wlog_debug.4 - 0x3c179024 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .rodata_wlog_debug.5 - 0x3c179038 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - *fill* 0x3c17904d 0x3 - .rodata_wlog_debug.6 - 0x3c179050 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .rodata_wlog_debug.7 - 0x3c179064 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - *fill* 0x3c179085 0x3 - .rodata_wlog_debug.15 - 0x3c179088 0x47 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1790cf 0x1 - .rodata_wlog_debug.16 - 0x3c1790d0 0x47 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c179117 0x1 - .rodata_wlog_debug.17 - 0x3c179118 0x34 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_debug.18 - 0x3c17914c 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c179176 0x2 - .rodata_wlog_debug.19 - 0x3c179178 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c179193 0x1 - .rodata_wlog_debug.20 - 0x3c179194 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1791cf 0x1 - .rodata_wlog_debug.21 - 0x3c1791d0 0x3c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_debug.23 - 0x3c17920c 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_debug.25 - 0x3c179230 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_debug.26 - 0x3c179268 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c17928d 0x3 - .rodata_wlog_debug.60 - 0x3c179290 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1792b5 0x3 - .rodata_wlog_debug.79 - 0x3c1792b8 0x1f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c1792d7 0x1 - .rodata_wlog_debug.100 - 0x3c1792d8 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17930e 0x2 - .rodata_wlog_debug.101 - 0x3c179310 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.102 - 0x3c179328 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179346 0x2 - .rodata_wlog_debug.104 - 0x3c179348 0x23 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17936b 0x1 - .rodata_wlog_debug.112 - 0x3c17936c 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179399 0x3 - .rodata_wlog_debug.113 - 0x3c17939c 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1793c5 0x3 - .rodata_wlog_debug.114 - 0x3c1793c8 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.115 - 0x3c1793f8 0x1b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179413 0x1 - .rodata_wlog_debug.116 - 0x3c179414 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179431 0x3 - .rodata_wlog_debug.12 - 0x3c179434 0x35 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179469 0x3 - .rodata_wlog_debug.18 - 0x3c17946c 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179497 0x1 - .rodata_wlog_debug.19 - 0x3c179498 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.20 - 0x3c1794bc 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.23 - 0x3c1794e4 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179516 0x2 - .rodata_wlog_debug.24 - 0x3c179518 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.25 - 0x3c179524 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17953d 0x3 - .rodata_wlog_debug.29 - 0x3c179540 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17956a 0x2 - .rodata_wlog_debug.3 - 0x3c17956c 0x46 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1795b2 0x2 - .rodata_wlog_debug.44 - 0x3c1795b4 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1795c2 0x2 - .rodata_wlog_debug.45 - 0x3c1795c4 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1795d2 0x2 - .rodata_wlog_debug.57 - 0x3c1795d4 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17960f 0x1 - .rodata_wlog_debug.58 - 0x3c179610 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17965a 0x2 - .rodata_wlog_debug.59 - 0x3c17965c 0x42 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17969e 0x2 - .rodata_wlog_debug.62 - 0x3c1796a0 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1796b3 0x1 - .rodata_wlog_debug.64 - 0x3c1796b4 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1796c9 0x3 - .rodata_wlog_debug.72 - 0x3c1796cc 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.73 - 0x3c1796dc 0x36 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179712 0x2 - .rodata_wlog_debug.74 - 0x3c179714 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.75 - 0x3c179740 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.76 - 0x3c17976c 0x40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.77 - 0x3c1797ac 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.78 - 0x3c1797d4 0xc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.79 - 0x3c1797e0 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1797f3 0x1 - .rodata_wlog_debug.8 - 0x3c1797f4 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17980d 0x3 - .rodata_wlog_debug.82 - 0x3c179810 0x6d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17987d 0x3 - .rodata_wlog_debug.83 - 0x3c179880 0x6d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c1798ed 0x3 - .rodata_wlog_debug.84 - 0x3c1798f0 0x38 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.85 - 0x3c179928 0x71 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179999 0x3 - .rodata_wlog_debug.86 - 0x3c17999c 0x6d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179a09 0x3 - .rodata_wlog_debug.87 - 0x3c179a0c 0x4a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179a56 0x2 - .rodata_wlog_debug.88 - 0x3c179a58 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179a93 0x1 - .rodata_wlog_debug.9 - 0x3c179a94 0x54 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.93 - 0x3c179ae8 0x2a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b12 0x2 - .rodata_wlog_debug.94 - 0x3c179b14 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b23 0x1 - .rodata_wlog_debug.95 - 0x3c179b24 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b33 0x1 - .rodata_wlog_debug.96 - 0x3c179b34 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b43 0x1 - .rodata_wlog_debug.97 - 0x3c179b44 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b52 0x2 - .rodata_wlog_debug.98 - 0x3c179b54 0x26 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179b7a 0x2 - .rodata_wlog_debug.99 - 0x3c179b7c 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_debug.4 - 0x3c179ba8 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - *fill* 0x3c179bc1 0x3 - .rodata_wlog_debug.5 - 0x3c179bc4 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - *fill* 0x3c179bdd 0x3 - .rodata_wlog_debug.6 - 0x3c179be0 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - *fill* 0x3c179bf9 0x3 - .rodata_wlog_debug.7 - 0x3c179bfc 0x19 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - *(.rodata_wlog_verbose .rodata_wlog_verbose.*) - *fill* 0x3c179c15 0x3 - .rodata_wlog_verbose.11 - 0x3c179c18 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - *fill* 0x3c179c53 0x1 - .rodata_wlog_verbose.25 - 0x3c179c54 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - *fill* 0x3c179c93 0x1 - .rodata_wlog_verbose.10 - 0x3c179c94 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c179cab 0x1 - .rodata_wlog_verbose.11 - 0x3c179cac 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c179cc2 0x2 - .rodata_wlog_verbose.2 - 0x3c179cc4 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .rodata_wlog_verbose.3 - 0x3c179ce4 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c179cfb 0x1 - .rodata_wlog_verbose.4 - 0x3c179cfc 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .rodata_wlog_verbose.5 - 0x3c179d0c 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .rodata_wlog_verbose.6 - 0x3c179d1c 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c179d49 0x3 - .rodata_wlog_verbose.9 - 0x3c179d4c 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - *fill* 0x3c179d63 0x1 - .rodata_wlog_verbose.47 - 0x3c179d64 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c179d8f 0x1 - .rodata_wlog_verbose.62 - 0x3c179d90 0x33 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c179dc3 0x1 - .rodata_wlog_verbose.63 - 0x3c179dc4 0x12 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c179dd6 0x2 - .rodata_wlog_verbose.65 - 0x3c179dd8 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - *fill* 0x3c179df9 0x3 - .rodata_wlog_verbose.77 - 0x3c179dfc 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .rodata_wlog_verbose.75 - 0x3c179e18 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c179e36 0x2 - .rodata_wlog_verbose.84 - 0x3c179e38 0x29 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c179e61 0x3 - .rodata_wlog_verbose.85 - 0x3c179e64 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c179e72 0x2 - .rodata_wlog_verbose.87 - 0x3c179e74 0x2b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x3c179e9f 0x1 - .rodata_wlog_verbose.20 - 0x3c179ea0 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c179eb6 0x2 - .rodata_wlog_verbose.21 - 0x3c179eb8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - *fill* 0x3c179ec6 0x2 - .rodata_wlog_verbose.47 - 0x3c179ec8 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c179ed6 0x2 - .rodata_wlog_verbose.48 - 0x3c179ed8 0x14 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_verbose.49 - 0x3c179eec 0x17 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c179f03 0x1 - .rodata_wlog_verbose.52 - 0x3c179f04 0x3e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c179f42 0x2 - .rodata_wlog_verbose.53 - 0x3c179f44 0x24 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .rodata_wlog_verbose.54 - 0x3c179f68 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - *fill* 0x3c179f7d 0x3 - .rodata_wlog_verbose.62 - 0x3c179f80 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - *fill* 0x3c179f8f 0x1 - .rodata_wlog_verbose.63 - 0x3c179f90 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .rodata_wlog_verbose.105 - 0x3c179fb0 0x1e /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179fce 0x2 - .rodata_wlog_verbose.106 - 0x3c179fd0 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c179fe3 0x1 - .rodata_wlog_verbose.107 - 0x3c179fe4 0x18 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.108 - 0x3c179ffc 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a00f 0x1 - .rodata_wlog_verbose.109 - 0x3c17a010 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a023 0x1 - .rodata_wlog_verbose.110 - 0x3c17a024 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a037 0x1 - .rodata_wlog_verbose.111 - 0x3c17a038 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a04b 0x1 - .rodata_wlog_verbose.13 - 0x3c17a04c 0x3b /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a087 0x1 - .rodata_wlog_verbose.15 - 0x3c17a088 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a0a2 0x2 - .rodata_wlog_verbose.16 - 0x3c17a0a4 0x13 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a0b7 0x1 - .rodata_wlog_verbose.2 - 0x3c17a0b8 0x3f /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a0f7 0x1 - .rodata_wlog_verbose.21 - 0x3c17a0f8 0x11 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a109 0x3 - .rodata_wlog_verbose.22 - 0x3c17a10c 0x15 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a121 0x3 - .rodata_wlog_verbose.26 - 0x3c17a124 0x45 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a169 0x3 - .rodata_wlog_verbose.27 - 0x3c17a16c 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a186 0x2 - .rodata_wlog_verbose.28 - 0x3c17a188 0x1a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a1a2 0x2 - .rodata_wlog_verbose.30 - 0x3c17a1a4 0xe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a1b2 0x2 - .rodata_wlog_verbose.31 - 0x3c17a1b4 0x16 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a1ca 0x2 - .rodata_wlog_verbose.32 - 0x3c17a1cc 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a1e9 0x3 - .rodata_wlog_verbose.33 - 0x3c17a1ec 0x10 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.34 - 0x3c17a1fc 0x2c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.35 - 0x3c17a228 0x20 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.36 - 0x3c17a248 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a26d 0x3 - .rodata_wlog_verbose.37 - 0x3c17a270 0x1c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.38 - 0x3c17a28c 0x21 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a2ad 0x3 - .rodata_wlog_verbose.39 - 0x3c17a2b0 0x22 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a2d2 0x2 - .rodata_wlog_verbose.40 - 0x3c17a2d4 0x30 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.41 - 0x3c17a304 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.42 - 0x3c17a32c 0x28 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .rodata_wlog_verbose.43 - 0x3c17a354 0x25 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a379 0x3 - .rodata_wlog_verbose.47 - 0x3c17a37c 0x1d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a399 0x3 - .rodata_wlog_verbose.49 - 0x3c17a39c 0x2d /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a3c9 0x3 - .rodata_wlog_verbose.50 - 0x3c17a3cc 0xd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a3d9 0x3 - .rodata_wlog_verbose.89 - 0x3c17a3dc 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - *fill* 0x3c17a3eb 0x1 - .rodata_wlog_verbose.90 - 0x3c17a3ec 0xf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - -.iram0.text_end - 0x4039aee4 0x11c - 0x4039aef4 . = (. + 0x10) - *fill* 0x4039aee4 0x10 - 0x4039b000 . = ALIGN (0x200) - *fill* 0x4039aef4 0x10c - *(.iram_end_test) - 0x4039b000 _iram_text_end = ABSOLUTE (.) - -.iram0.data 0x4039b000 0x0 - 0x4039b000 . = ALIGN (0x10) - 0x4039b000 _iram_data_start = ABSOLUTE (.) - *(.iram.data .iram.data.*) - 0x4039b000 _coredump_iram_start = ABSOLUTE (.) - *(.iram2.coredump .iram2.coredump.*) - 0x4039b000 _coredump_iram_end = ABSOLUTE (.) - 0x4039b000 _iram_data_end = ABSOLUTE (.) - -.iram0.bss 0x4039b000 0x0 - 0x4039b000 . = ALIGN (0x10) - 0x4039b000 _iram_bss_start = ABSOLUTE (.) - *(.iram.bss .iram.bss.*) - 0x4039b000 _iram_bss_end = ABSOLUTE (.) - 0x4039b000 . = ALIGN (0x10) - 0x4039b000 _iram_end = ABSOLUTE (.) - -.dram0.heap_start - 0x3fca5de8 0x8 - 0x3fca5df0 . = ALIGN (0x10) - *fill* 0x3fca5de8 0x8 - 0x3fca5df0 _heap_start = ABSOLUTE (.) - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x16e00 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_aranges - 0x00000038 0x40 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_aranges - 0x00000078 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_aranges - 0x00000118 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x000001e0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_aranges - 0x000001f8 0x48 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000240 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_aranges - 0x00000270 0x58 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_aranges - 0x000002c8 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_aranges - 0x00000380 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_aranges - 0x000003a8 0x40 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_aranges - 0x000003e8 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_aranges - 0x00000418 0x40 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_aranges - 0x00000458 0x40 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_aranges - 0x00000498 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_aranges - 0x000004c0 0x38 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_aranges - 0x000004f8 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_aranges - 0x00000528 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_aranges - 0x000005b0 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_aranges - 0x000005f0 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_aranges - 0x00000648 0x90 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_aranges - 0x000006d8 0x50 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_aranges - 0x00000728 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_aranges - 0x00000750 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x00000798 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x000007f0 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_aranges - 0x00000860 0x68 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_aranges - 0x000008c8 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_aranges - 0x00000908 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_aranges - 0x00000930 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_aranges - 0x00000958 0x30 esp-idf/log/liblog.a(log_write.c.obj) - .debug_aranges - 0x00000988 0x20 esp-idf/log/liblog.a(log_level.c.obj) - .debug_aranges - 0x000009a8 0x40 esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_aranges - 0x000009e8 0x40 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_aranges - 0x00000a28 0x50 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_aranges - 0x00000a78 0x30 esp-idf/log/liblog.a(log_lock.c.obj) - .debug_aranges - 0x00000aa8 0x128 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_aranges - 0x00000bd0 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_aranges - 0x00000c20 0xe8 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_aranges - 0x00000d08 0xd0 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_aranges - 0x00000dd8 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_aranges - 0x00000e18 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_aranges - 0x00000e30 0x50 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_aranges - 0x00000e80 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_aranges - 0x00000ea8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_aranges - 0x00000f08 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_aranges - 0x00000f70 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_aranges - 0x00001058 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_aranges - 0x00001110 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_aranges - 0x00001168 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_aranges - 0x000011c8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_aranges - 0x00001230 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_aranges - 0x00001360 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_aranges - 0x000013a8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_aranges - 0x000013f8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_aranges - 0x00001460 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_aranges - 0x000014d0 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_aranges - 0x00001630 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_aranges - 0x00001668 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_aranges - 0x00001690 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_aranges - 0x00001840 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_aranges - 0x00001888 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_aranges - 0x000018b0 0x160 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_aranges - 0x00001a10 0x298 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_aranges - 0x00001ca8 0xb0 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_aranges - 0x00001d58 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_aranges - 0x00001da8 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_aranges - 0x00001dd0 0x38 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_aranges - 0x00001e08 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_aranges - 0x00001e48 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_aranges - 0x00001e68 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_aranges - 0x00001ea0 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_aranges - 0x00001f40 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_aranges - 0x00002018 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_aranges - 0x00002050 0x28 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_aranges - 0x00002078 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_aranges - 0x000020a0 0x50 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_aranges - 0x000020f0 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_aranges - 0x00002150 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_aranges - 0x000021d0 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_aranges - 0x00002220 0x20 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_aranges - 0x00002240 0x170 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_aranges - 0x000023b0 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_aranges - 0x00002438 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_aranges - 0x00002498 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_aranges - 0x00002500 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_aranges - 0x00002558 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_aranges - 0x000025a8 0x28 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_aranges - 0x000025d0 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_aranges - 0x00002600 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_aranges - 0x00002630 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_aranges - 0x00002668 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_aranges - 0x000026d8 0x130 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_aranges - 0x00002808 0x250 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_aranges - 0x00002a58 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_aranges - 0x00002a90 0x118 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_aranges - 0x00002ba8 0x68 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_aranges - 0x00002c10 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_aranges - 0x00002c60 0xa8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_aranges - 0x00002d08 0x238 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_aranges - 0x00002f40 0xa0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_aranges - 0x00002fe0 0xa8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_aranges - 0x00003088 0x58 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_aranges - 0x000030e0 0x30 esp-idf/main/libmain.a(app_main.c.obj) - .debug_aranges - 0x00003110 0x58 esp-idf/main/libmain.a(app_driver.c.obj) - .debug_aranges - 0x00003168 0x90 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_aranges - 0x000031f8 0x180 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_aranges - 0x00003378 0xc0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_aranges - 0x00003438 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_aranges - 0x000034c8 0xa0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_aranges - 0x00003568 0x170 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_aranges - 0x000036d8 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_aranges - 0x00003740 0x58 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_aranges - 0x00003798 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_aranges - 0x000037c8 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_aranges - 0x00003858 0x140 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_aranges - 0x00003998 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_aranges - 0x00003a30 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_aranges - 0x00003a78 0x28 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_aranges - 0x00003aa0 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_aranges - 0x00003b48 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_aranges - 0x00003be0 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_aranges - 0x00003c48 0x58 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_aranges - 0x00003ca0 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_aranges - 0x00003d48 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_aranges - 0x00003d80 0x88 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_aranges - 0x00003e08 0xc8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_aranges - 0x00003ed0 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_aranges - 0x00003f08 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_aranges - 0x00003f50 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_aranges - 0x00003f70 0x70 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_aranges - 0x00003fe0 0xa8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_aranges - 0x00004088 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_aranges - 0x000040b8 0x20 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_aranges - 0x000040d8 0x78 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_aranges - 0x00004150 0x38 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_aranges - 0x00004188 0x80 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_aranges - 0x00004208 0x48 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_aranges - 0x00004250 0x40 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_aranges - 0x00004290 0x48 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_aranges - 0x000042d8 0x68 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_aranges - 0x00004340 0x58 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_aranges - 0x00004398 0x1c8 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_aranges - 0x00004560 0x40 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_aranges - 0x000045a0 0x68 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_aranges - 0x00004608 0x130 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_aranges - 0x00004738 0x6f0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_aranges - 0x00004e28 0x50 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_aranges - 0x00004e78 0xa0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_aranges - 0x00004f18 0xa0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_aranges - 0x00004fb8 0xa8 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_aranges - 0x00005060 0x58 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_aranges - 0x000050b8 0x128 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_aranges - 0x000051e0 0x88 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_aranges - 0x00005268 0x68 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_aranges - 0x000052d0 0x50 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_aranges - 0x00005320 0x50 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_aranges - 0x00005370 0x48 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_aranges - 0x000053b8 0x288 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_aranges - 0x00005640 0x2e8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_aranges - 0x00005928 0x1c8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_aranges - 0x00005af0 0x78 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_aranges - 0x00005b68 0x98 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_aranges - 0x00005c00 0x18 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .debug_aranges - 0x00005c18 0x48 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_aranges - 0x00005c60 0x30 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_aranges - 0x00005c90 0x70 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_aranges - 0x00005d00 0x70 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_aranges - 0x00005d70 0x90 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_aranges - 0x00005e00 0x80 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_aranges - 0x00005e80 0xf0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_aranges - 0x00005f70 0xa8 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_aranges - 0x00006018 0x108 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_aranges - 0x00006120 0x108 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_aranges - 0x00006228 0x48 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_aranges - 0x00006270 0x2e0 esp-idf/bt/libbt.a(bt.c.obj) - .debug_aranges - 0x00006550 0x30 esp-idf/bt/libbt.a(addr.c.obj) - .debug_aranges - 0x00006580 0x78 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_aranges - 0x000065f8 0x60 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_aranges - 0x00006658 0x70 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_aranges - 0x000066c8 0x158 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_aranges - 0x00006820 0x120 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_aranges - 0x00006940 0x38 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_aranges - 0x00006978 0xc8 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_aranges - 0x00006a40 0x608 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_aranges - 0x00007048 0x128 esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_aranges - 0x00007170 0x18 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .debug_aranges - 0x00007188 0x120 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_aranges - 0x000072a8 0x58 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_aranges - 0x00007300 0x1b8 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_aranges - 0x000074b8 0x28 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_aranges - 0x000074e0 0x78 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_aranges - 0x00007558 0xc8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_aranges - 0x00007620 0x548 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_aranges - 0x00007b68 0x88 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_aranges - 0x00007bf0 0x90 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_aranges - 0x00007c80 0x48 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_aranges - 0x00007cc8 0xc8 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_aranges - 0x00007d90 0x48 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_aranges - 0x00007dd8 0x230 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_aranges - 0x00008008 0xa8 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_aranges - 0x000080b0 0x100 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_aranges - 0x000081b0 0xa0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_aranges - 0x00008250 0x130 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_aranges - 0x00008380 0x60 esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_aranges - 0x000083e0 0x38 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_aranges - 0x00008418 0xa8 esp-idf/bt/libbt.a(endian.c.obj) - .debug_aranges - 0x000084c0 0x80 esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_aranges - 0x00008540 0x58 esp-idf/bt/libbt.a(mem.c.obj) - .debug_aranges - 0x00008598 0x128 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_aranges - 0x000086c0 0x38 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_aranges - 0x000086f8 0x1a8 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_aranges - 0x000088a0 0x90 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_aranges - 0x00008930 0x38 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_aranges - 0x00008968 0x40 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_aranges - 0x000089a8 0x90 esp-idf/bt/libbt.a(transport.c.obj) - .debug_aranges - 0x00008a38 0xc0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_aranges - 0x00008af8 0x2a0 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_aranges - 0x00008d98 0x40 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_aranges - 0x00008dd8 0x30 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_aranges - 0x00008e08 0x250 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_aranges - 0x00009058 0x40 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_aranges - 0x00009098 0x90 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_aranges - 0x00009128 0x60 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_aranges - 0x00009188 0x40 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_aranges - 0x000091c8 0x28 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_aranges - 0x000091f0 0xc0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_aranges - 0x000092b0 0x260 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_aranges - 0x00009510 0x398 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_aranges - 0x000098a8 0x28 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_aranges - 0x000098d0 0x148 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_aranges - 0x00009a18 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_aranges - 0x00009a68 0x38 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_aranges - 0x00009aa0 0x88 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_aranges - 0x00009b28 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_aranges - 0x00009b58 0x60 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_aranges - 0x00009bb8 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_aranges - 0x00009be8 0x90 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_aranges - 0x00009c78 0x58 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_aranges - 0x00009cd0 0x88 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_aranges - 0x00009d58 0x88 esp-idf/console/libconsole.a(commands.c.obj) - .debug_aranges - 0x00009de0 0x20 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_aranges - 0x00009e00 0x68 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_aranges - 0x00009e68 0x40 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_aranges - 0x00009ea8 0x60 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_aranges - 0x00009f08 0x50 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_aranges - 0x00009f58 0x60 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_aranges - 0x00009fb8 0x100 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_aranges - 0x0000a0b8 0x190 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_aranges - 0x0000a248 0xe0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_aranges - 0x0000a328 0x90 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_aranges - 0x0000a3b8 0x30 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_aranges - 0x0000a3e8 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_aranges - 0x0000a408 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_aranges - 0x0000a448 0x20 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_aranges - 0x0000a468 0x20 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_aranges - 0x0000a488 0x220 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_aranges - 0x0000a6a8 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_aranges - 0x0000a6c8 0xa8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_aranges - 0x0000a770 0x100 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_aranges - 0x0000a870 0x90 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_aranges - 0x0000a900 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_aranges - 0x0000a978 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x0000a9b0 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_aranges - 0x0000aa00 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_aranges - 0x0000aa20 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_aranges - 0x0000aa68 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_aranges - 0x0000ab18 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_aranges - 0x0000ab90 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_aranges - 0x0000ac48 0xb0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_aranges - 0x0000acf8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_aranges - 0x0000ad28 0xc8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_aranges - 0x0000adf0 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_aranges - 0x0000ae08 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_aranges - 0x0000ae28 0x50 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_aranges - 0x0000ae78 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_aranges - 0x0000aea8 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_aranges - 0x0000af20 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_aranges - 0x0000af98 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_aranges - 0x0000aff0 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_aranges - 0x0000b100 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_aranges - 0x0000b168 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_aranges - 0x0000b230 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_aranges - 0x0000b270 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_aranges - 0x0000b288 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_aranges - 0x0000b398 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_aranges - 0x0000b3d0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_aranges - 0x0000b400 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_aranges - 0x0000b448 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_aranges - 0x0000b4a8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_aranges - 0x0000b4d0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_aranges - 0x0000b4f8 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_aranges - 0x0000b570 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_aranges - 0x0000b5a0 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_aranges - 0x0000b5f8 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_aranges - 0x0000b660 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_aranges - 0x0000b690 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_aranges - 0x0000b770 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_aranges - 0x0000b7c0 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_aranges - 0x0000b7e0 0x78 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_aranges - 0x0000b858 0x50 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_aranges - 0x0000b8a8 0xc0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_aranges - 0x0000b968 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_aranges - 0x0000b9b8 0x58 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_aranges - 0x0000ba10 0x90 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_aranges - 0x0000baa0 0xf0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_aranges - 0x0000bb90 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_aranges - 0x0000bbc0 0x70 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_aranges - 0x0000bc30 0x50 esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_aranges - 0x0000bc80 0x30 esp-idf/log/liblog.a(util.c.obj) - .debug_aranges - 0x0000bcb0 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_aranges - 0x0000bcc8 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_aranges - 0x0000bce0 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_aranges - 0x0000bcf8 0x58 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_aranges - 0x0000bd50 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_aranges - 0x0000bd80 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_aranges - 0x0000bda0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_aranges - 0x0000bdd0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_aranges - 0x0000bdf8 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_aranges - 0x0000be78 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_aranges - 0x0000bea8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_aranges - 0x0000bef0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_aranges - 0x0000bf18 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_aranges - 0x0000c008 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_aranges - 0x0000c068 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_aranges - 0x0000c090 0xf8 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_aranges - 0x0000c188 0x78 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_aranges - 0x0000c200 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_aranges - 0x0000c220 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_aranges - 0x0000c288 0x430 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_aranges - 0x0000c6b8 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_aranges - 0x0000c7a0 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_aranges - 0x0000c7f8 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_aranges - 0x0000c978 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_aranges - 0x0000c9d0 0xe0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_aranges - 0x0000cab0 0x330 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_aranges - 0x0000cde0 0x1a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_aranges - 0x0000cf80 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_aranges - 0x0000d048 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_aranges - 0x0000d0c0 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_aranges - 0x0000d180 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_aranges - 0x0000d1b8 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_aranges - 0x0000d218 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_aranges - 0x0000d348 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_aranges - 0x0000d3c8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_aranges - 0x0000d3f0 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_aranges - 0x0000d428 0x210 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_aranges - 0x0000d638 0xc8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_aranges - 0x0000d700 0x18 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .debug_aranges - 0x0000d718 0xa8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_aranges - 0x0000d7c0 0xf0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_aranges - 0x0000d8b0 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_aranges - 0x0000db00 0xa8 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_aranges - 0x0000dba8 0xa8 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_aranges - 0x0000dc50 0x50 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_aranges - 0x0000dca0 0xd0 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_aranges - 0x0000dd70 0x20 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_aranges - 0x0000dd90 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_aranges - 0x0000ddc8 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_aranges - 0x0000de08 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_aranges - 0x0000de60 0x150 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_aranges - 0x0000dfb0 0x148 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_aranges - 0x0000e0f8 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_aranges - 0x0000e180 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_aranges - 0x0000e350 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_aranges - 0x0000e3c0 0xf0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_aranges - 0x0000e4b0 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_aranges - 0x0000e520 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_aranges - 0x0000e5c0 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_aranges - 0x0000e710 0xb0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_aranges - 0x0000e7c0 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_aranges - 0x0000e7f0 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_aranges - 0x0000e8a0 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_aranges - 0x0000e908 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_aranges - 0x0000e950 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_aranges - 0x0000e970 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_aranges - 0x0000e9d0 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_aranges - 0x0000ea28 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_aranges - 0x0000ea58 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_aranges - 0x0000ea78 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_aranges - 0x0000eb00 0x110 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_aranges - 0x0000ec10 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_aranges - 0x0000ec38 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_aranges - 0x0000ec60 0x40 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_aranges - 0x0000eca0 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_aranges - 0x0000ecc8 0xf8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_aranges - 0x0000edc0 0x60 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_aranges - 0x0000ee20 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_aranges - 0x0000ee70 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_aranges - 0x0000ef90 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_aranges - 0x0000f0d0 0x20 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_aranges - 0x0000f0f0 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_aranges - 0x0000f150 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_aranges - 0x0000f1c0 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_aranges - 0x0000f210 0x438 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_aranges - 0x0000f648 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_aranges - 0x0000f668 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_aranges - 0x0000f7b8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_aranges - 0x0000f7f8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_aranges - 0x0000f850 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_aranges - 0x0000f8e0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_aranges - 0x0000f9c8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_aranges - 0x0000fa18 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_aranges - 0x0000fa78 0x88 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_aranges - 0x0000fb00 0xd8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_aranges - 0x0000fbd8 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_aranges - 0x0000fc48 0x260 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_aranges - 0x0000fea8 0x98 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_aranges - 0x0000ff40 0x148 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_aranges - 0x00010088 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_aranges - 0x000100c0 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_aranges - 0x000100e0 0xc8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_aranges - 0x000101a8 0x108 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_aranges - 0x000102b0 0x140 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_aranges - 0x000103f0 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_aranges - 0x00010420 0x120 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_aranges - 0x00010540 0x220 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_aranges - 0x00010760 0x38 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_aranges - 0x00010798 0x78 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_aranges - 0x00010810 0x50 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_aranges - 0x00010860 0x98 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_aranges - 0x000108f8 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_aranges - 0x000109e0 0xe0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_aranges - 0x00010ac0 0xf0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_aranges - 0x00010bb0 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_aranges - 0x00010c08 0x38 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_aranges - 0x00010c40 0xb8 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_aranges - 0x00010cf8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_aranges - 0x00010d60 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_aranges - 0x00010f20 0x4b8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_aranges - 0x000113d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_aranges - 0x00011408 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_aranges - 0x00011438 0x78 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_aranges - 0x000114b0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_aranges - 0x00011530 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_aranges - 0x00011590 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_aranges - 0x000116a0 0x138 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_aranges - 0x000117d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_aranges - 0x000117f8 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_aranges - 0x000118d8 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_aranges - 0x00011aa8 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_aranges - 0x00011bf0 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_aranges - 0x00011d00 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_aranges - 0x00011e08 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_aranges - 0x00011e50 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_aranges - 0x00011ed0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_aranges - 0x00011f88 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_aranges - 0x00012068 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_aranges - 0x00012108 0x2b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_aranges - 0x000123c0 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_aranges - 0x00012458 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_aranges - 0x000124e8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_aranges - 0x00012580 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_aranges - 0x00012648 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_aranges - 0x00012670 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_aranges - 0x00012778 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_aranges - 0x000127b0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_aranges - 0x000128a0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_aranges - 0x00012948 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_aranges - 0x000129d0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_aranges - 0x00012a10 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_aranges - 0x00012a38 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_aranges - 0x00012c00 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_aranges - 0x00012c40 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_aranges - 0x00012c68 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_aranges - 0x00012ca0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_aranges - 0x00012d18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_aranges - 0x00012d38 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_aranges - 0x00012d60 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_aranges - 0x00012db0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_aranges - 0x00012de8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_aranges - 0x00012e68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_aranges - 0x00012e88 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_aranges - 0x00012ed8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_aranges - 0x00012f58 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_aranges - 0x00012fb8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_aranges - 0x00013020 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_aranges - 0x00013080 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_aranges - 0x00013118 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_aranges - 0x00013168 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_aranges - 0x000131f0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_aranges - 0x00013298 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_aranges - 0x00013358 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_aranges - 0x00013408 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_aranges - 0x000134a0 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_aranges - 0x000135d0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_aranges - 0x00013628 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_aranges - 0x00013678 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_aranges - 0x000136b8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_aranges - 0x00013710 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_aranges - 0x00013768 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_aranges - 0x000137a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_aranges - 0x000137c8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_aranges - 0x000137f0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_aranges - 0x00013830 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_aranges - 0x00013a08 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_aranges - 0x00013a80 0x120 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_aranges - 0x00013ba0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_aranges - 0x00013c18 0x38 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_aranges - 0x00013c50 0x38 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_aranges - 0x00013c88 0x68 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_aranges - 0x00013cf0 0xa8 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_aranges - 0x00013d98 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_aranges - 0x00013dd8 0x80 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_aranges - 0x00013e58 0x70 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_aranges - 0x00013ec8 0x18 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .debug_aranges - 0x00013ee0 0x18 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_aranges - 0x00013ef8 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .debug_aranges - 0x00013f10 0x50 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_aranges - 0x00013f60 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_aranges - 0x00014050 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_aranges - 0x00014078 0x40 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_aranges - 0x000140b8 0xf8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_aranges - 0x000141b0 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_aranges - 0x00014210 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_aranges - 0x00014228 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_aranges - 0x00014240 0x50 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_aranges - 0x00014290 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_aranges - 0x000142b8 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_aranges - 0x00014380 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_aranges - 0x00014420 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_aranges - 0x00014640 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_aranges - 0x000146f8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_aranges - 0x00014728 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_aranges - 0x00014788 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_aranges - 0x00014980 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_aranges - 0x00014a00 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_aranges - 0x00014a80 0x228 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_aranges - 0x00014ca8 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_aranges - 0x00014d08 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_aranges - 0x00014d88 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_aranges - 0x00014df8 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_aranges - 0x00014e90 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_aranges - 0x00014ec8 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_aranges - 0x000150c0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_aranges - 0x00015118 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_aranges - 0x00015208 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_aranges - 0x00015228 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_aranges - 0x00015258 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_aranges - 0x00015280 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_aranges - 0x000152a0 0x230 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_aranges - 0x000154d0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_aranges - 0x00015520 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_aranges - 0x00015598 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_aranges - 0x00015638 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_aranges - 0x000157b0 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_aranges - 0x00015828 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_aranges - 0x00015908 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_aranges - 0x00015928 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_aranges - 0x00015948 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_aranges - 0x00015968 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_aranges - 0x000159b8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_aranges - 0x00015a30 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_aranges - 0x00015ac8 0x28 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_aranges - 0x00015af0 0x58 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_aranges - 0x00015b48 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_aranges - 0x00015b80 0xa0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_aranges - 0x00015c20 0xa0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_aranges - 0x00015cc0 0x70 esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_aranges - 0x00015d30 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_aranges - 0x00015d50 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_aranges - 0x00015d70 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_aranges - 0x00015de8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_aranges - 0x00015e08 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_aranges - 0x00015e50 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_aranges - 0x00015e90 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_aranges - 0x00015ee8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_aranges - 0x00015f08 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_aranges - 0x00015f28 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_aranges - 0x00015f68 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_aranges - 0x00015fe0 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_aranges - 0x00016020 0xa8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_aranges - 0x000160c8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_aranges - 0x000160e8 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_aranges - 0x00016100 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_aranges - 0x00016120 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_aranges - 0x00016150 0xe8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_aranges - 0x00016238 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_aranges - 0x00016268 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_aranges - 0x00016280 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_aranges - 0x000162a0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_aranges - 0x000162c0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_aranges - 0x000162e0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_aranges - 0x00016300 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_aranges - 0x00016320 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_aranges - 0x00016340 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_aranges - 0x00016360 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_aranges - 0x00016380 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_aranges - 0x000163a0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_aranges - 0x000163c0 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_aranges - 0x000163d8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_aranges - 0x000163f8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_aranges - 0x00016418 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_aranges - 0x00016438 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_aranges - 0x00016458 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_aranges - 0x00016478 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_aranges - 0x00016498 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_aranges - 0x000164b8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_aranges - 0x000164d8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_aranges - 0x000164f8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_aranges - 0x00016518 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_aranges - 0x00016538 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_aranges - 0x00016558 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_aranges - 0x00016578 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_aranges - 0x00016598 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_aranges - 0x000165b8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_aranges - 0x000165d8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_aranges - 0x000165f8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_aranges - 0x00016618 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_aranges - 0x00016638 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_aranges - 0x00016658 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_aranges - 0x00016678 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_aranges - 0x00016698 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_aranges - 0x000166b8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_aranges - 0x000166d8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_aranges - 0x000166f8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_aranges - 0x00016718 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_aranges - 0x00016738 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_aranges - 0x00016758 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_aranges - 0x00016778 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_aranges - 0x00016798 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_aranges - 0x000167b8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_aranges - 0x000167d8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_aranges - 0x000167f8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_aranges - 0x00016818 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_aranges - 0x00016830 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_aranges - 0x00016850 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_aranges - 0x00016870 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_aranges - 0x00016890 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_aranges - 0x000168b0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_aranges - 0x000168d0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_aranges - 0x000168f0 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_aranges - 0x00016908 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_aranges - 0x00016928 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_aranges - 0x00016948 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_aranges - 0x00016968 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_aranges - 0x00016988 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_aranges - 0x000169a0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_aranges - 0x000169c0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_aranges - 0x000169e0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_aranges - 0x00016a00 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_aranges - 0x00016a20 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_aranges - 0x00016a40 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_aranges - 0x00016a60 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_aranges - 0x00016a80 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_aranges - 0x00016aa0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_aranges - 0x00016ac0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_aranges - 0x00016ae0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_aranges - 0x00016b00 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_aranges - 0x00016b20 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_aranges - 0x00016b40 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_aranges - 0x00016b60 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_aranges - 0x00016b80 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_aranges - 0x00016ba0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_aranges - 0x00016bc0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_aranges - 0x00016be0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_aranges - 0x00016c00 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_aranges - 0x00016c20 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_aranges - 0x00016c40 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_aranges - 0x00016c60 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_aranges - 0x00016c80 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_aranges - 0x00016ca0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_aranges - 0x00016cc0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_aranges - 0x00016ce0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_aranges - 0x00016d00 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_aranges - 0x00016d20 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_aranges - 0x00016d40 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_aranges - 0x00016d60 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_aranges - 0x00016d80 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_aranges - 0x00016da0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_aranges - 0x00016dc0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_aranges - 0x00016de0 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_pubnames - *(.debug_pubnames) - -.debug_info 0x00000000 0x4a08b8 - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x6bf esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_info 0x000006bf 0x489 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_info 0x00000b48 0x1254 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00001d9c 0x1401 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x0000319d 0x24cd esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x0000566a 0x3f68 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x000095d2 0x196 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_info 0x00009768 0x458d esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_info 0x0000dcf5 0xe0e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_info 0x0000eb03 0x22db esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_info 0x00010dde 0x1c2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_info 0x00010fa0 0x35d6 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_info 0x00014576 0x4aaa esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_info 0x00019020 0x475 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_info 0x00019495 0x400a esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_info 0x0001d49f 0x853 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_info 0x0001dcf2 0x1c3 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_info 0x0001deb5 0x6c80 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_info 0x00024b35 0x3e7 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_info 0x00024f1c 0x441a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_info 0x00029336 0x12b6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_info 0x0002a5ec 0x57bb esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_info 0x0002fda7 0x3be esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_info 0x00030165 0x378f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x000338f4 0x3a38 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x0003732c 0x8286 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_info 0x0003f5b2 0xc94 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_info 0x00040246 0x1916 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_info 0x00041b5c 0x31c6 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_info 0x00044d22 0x221 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_info 0x00044f43 0x2ce esp-idf/log/liblog.a(log_write.c.obj) - .debug_info 0x00045211 0xeb esp-idf/log/liblog.a(log_level.c.obj) - .debug_info 0x000452fc 0x45f esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_info 0x0004575b 0x43e esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_info 0x00045b99 0x460 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_info 0x00045ff9 0x238 esp-idf/log/liblog.a(log_lock.c.obj) - .debug_info 0x00046231 0x1c09 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_info 0x00047e3a 0xd10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_info 0x00048b4a 0x15b6 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_info 0x0004a100 0x7111 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_info 0x00051211 0x8a0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_info 0x00051ab1 0x313 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_info 0x00051dc4 0xd99 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_info 0x00052b5d 0x147 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_info 0x00052ca4 0x8cb esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_info 0x0005356f 0x501 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_info 0x00053a70 0x2db0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_info 0x00056820 0x96e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_info 0x0005718e 0x35f2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_info 0x0005a780 0x22f9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_info 0x0005ca79 0x772 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_info 0x0005d1eb 0x1967 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_info 0x0005eb52 0x4260 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_info 0x00062db2 0x8c5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_info 0x00063677 0x6486 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_info 0x00069afd 0x4e56 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_info 0x0006e953 0x3b0c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_info 0x0007245f 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_info 0x00072687 0x239 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_info 0x000728c0 0x8043 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_info 0x0007a903 0x5ea esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_info 0x0007aeed 0x55c esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_info 0x0007b449 0x2fa4 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_info 0x0007e3ed 0x4fc7 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_info 0x000833b4 0x1c57 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_info 0x0008500b 0x35a esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_info 0x00085365 0xcf1 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_info 0x00086056 0x6564 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_info 0x0008c5ba 0x2e3 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_info 0x0008c89d 0x26c esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_info 0x0008cb09 0x4a1 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_info 0x0008cfaa 0xe9b esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_info 0x0008de45 0x1034 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_info 0x0008ee79 0x1fd esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_info 0x0008f076 0x16a esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_info 0x0008f1e0 0xa2c esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_info 0x0008fc0c 0x178f esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_info 0x0009139b 0xe85 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_info 0x00092220 0x1190 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_info 0x000933b0 0x610 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_info 0x000939c0 0x18a esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_info 0x00093b4a 0x2165 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_info 0x00095caf 0xf6d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_info 0x00096c1c 0x84c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_info 0x00097468 0x962 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_info 0x00097dca 0x5b5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_info 0x0009837f 0x1495 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_info 0x00099814 0x892 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_info 0x0009a0a6 0x16a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_info 0x0009a210 0x27e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_info 0x0009a48e 0x1de esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_info 0x0009a66c 0x690a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_info 0x000a0f76 0x4c12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_info 0x000a5b88 0xda64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_info 0x000b35ec 0xee5 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_info 0x000b44d1 0x38a6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_info 0x000b7d77 0x6f4c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_info 0x000becc3 0x23f esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_info 0x000bef02 0x209c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_info 0x000c0f9e 0x676d esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_info 0x000c770b 0x1e87 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_info 0x000c9592 0xbae esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_info 0x000ca140 0xc4c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_info 0x000cad8c 0x13b4 esp-idf/main/libmain.a(app_main.c.obj) - .debug_info 0x000cc140 0x726 esp-idf/main/libmain.a(app_driver.c.obj) - .debug_info 0x000cc866 0x1687 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_info 0x000cdeed 0x1d05 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_info 0x000cfbf2 0x299f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_info 0x000d2591 0x4cfc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_info 0x000d728d 0x1664 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_info 0x000d88f1 0x3cff esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_info 0x000dc5f0 0x1971 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_info 0x000ddf61 0x40a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_info 0x000de36b 0x9fc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_info 0x000ded67 0x1fde esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_info 0x000e0d45 0x3604 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_info 0x000e4349 0x1e8c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_info 0x000e61d5 0x8c3 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_info 0x000e6a98 0x25d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_info 0x000e6cf5 0x3738 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_info 0x000ea42d 0x1f54 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_info 0x000ec381 0x99a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_info 0x000ecd1b 0x731 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_info 0x000ed44c 0x3651 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_info 0x000f0a9d 0xbfb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_info 0x000f1698 0x24b5 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_info 0x000f3b4d 0x10d5 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_info 0x000f4c22 0x60e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_info 0x000f5230 0x986 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_info 0x000f5bb6 0xc3 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_info 0x000f5c79 0x126d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_info 0x000f6ee6 0x15ba esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_info 0x000f84a0 0x107a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_info 0x000f951a 0x161 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_info 0x000f967b 0x1917 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_info 0x000faf92 0x18ac esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_info 0x000fc83e 0x1787 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_info 0x000fdfc5 0x63b esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_info 0x000fe600 0x9ac esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_info 0x000fefac 0xb81 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_info 0x000ffb2d 0x1a53 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_info 0x00101580 0x1781 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_info 0x00102d01 0x2d68 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_info 0x00105a69 0xd14 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_info 0x0010677d 0x1d43 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_info 0x001084c0 0x1199 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_info 0x00109659 0x13946 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_info 0x0011cf9f 0x4c6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_info 0x0011d465 0x1967 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_info 0x0011edcc 0x3a92 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_info 0x0012285e 0x1b2a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_info 0x00124388 0x139b esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_info 0x00125723 0x69a5 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_info 0x0012c0c8 0x17df esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_info 0x0012d8a7 0x1379 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_info 0x0012ec20 0x1d83 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_info 0x001309a3 0x1fb7 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_info 0x0013295a 0x11bc esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_info 0x00133b16 0x3e9b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_info 0x001379b1 0x44f7 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_info 0x0013bea8 0x2a10 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_info 0x0013e8b8 0x1318 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_info 0x0013fbd0 0x13ef esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_info 0x00140fbf 0x2f0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .debug_info 0x001412af 0x15ac esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_info 0x0014285b 0x130a esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_info 0x00143b65 0x30e2 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_info 0x00146c47 0x2fb1 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_info 0x00149bf8 0x1cdb esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_info 0x0014b8d3 0xa4c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_info 0x0014c31f 0x424e esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_info 0x0015056d 0x1515 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_info 0x00151a82 0x1d51 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_info 0x001537d3 0x1dc1 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_info 0x00155594 0x1379 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_info 0x0015690d 0x4502 esp-idf/bt/libbt.a(bt.c.obj) - .debug_info 0x0015ae0f 0x297 esp-idf/bt/libbt.a(addr.c.obj) - .debug_info 0x0015b0a6 0xc4b esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_info 0x0015bcf1 0xa58 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_info 0x0015c749 0x70b esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_info 0x0015ce54 0x3d56 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_info 0x00160baa 0x3099 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_info 0x00163c43 0xce4 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_info 0x00164927 0x1f95 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_info 0x001668bc 0xa584 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_info 0x00170e40 0x1d8b esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_info 0x00172bcb 0xd44 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .debug_info 0x0017390f 0x37d2 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_info 0x001770e1 0x660 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_info 0x00177741 0x2faa esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_info 0x0017a6eb 0x422 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_info 0x0017ab0d 0x170b esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_info 0x0017c218 0x29c8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_info 0x0017ebe0 0x978c esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_info 0x0018836c 0xcfc esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_info 0x00189068 0xc6c esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_info 0x00189cd4 0x33e esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_info 0x0018a012 0x2938 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_info 0x0018c94a 0x15e4 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_info 0x0018df2e 0x4eb0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_info 0x00192dde 0x1c55 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_info 0x00194a33 0x2be6 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_info 0x00197619 0x103c esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_info 0x00198655 0x25d5 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_info 0x0019ac2a 0x15e7 esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_info 0x0019c211 0x25e esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_info 0x0019c46f 0x5f0 esp-idf/bt/libbt.a(endian.c.obj) - .debug_info 0x0019ca5f 0x1094 esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_info 0x0019daf3 0xb7a esp-idf/bt/libbt.a(mem.c.obj) - .debug_info 0x0019e66d 0x248a esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_info 0x001a0af7 0x5e1 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_info 0x001a10d8 0x367b esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_info 0x001a4753 0x1719 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_info 0x001a5e6c 0x37b esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_info 0x001a61e7 0x409 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_info 0x001a65f0 0xf7b esp-idf/bt/libbt.a(transport.c.obj) - .debug_info 0x001a756b 0x24c8 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_info 0x001a9a33 0x6848 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_info 0x001b027b 0x14a6 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_info 0x001b1721 0x52a esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_info 0x001b1c4b 0x7006 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_info 0x001b8c51 0x12a2 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_info 0x001b9ef3 0x2751 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_info 0x001bc644 0x2036 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_info 0x001be67a 0xd5a esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_info 0x001bf3d4 0x120c esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_info 0x001c05e0 0x29c9 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_info 0x001c2fa9 0x5ecf esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_info 0x001c8e78 0x3d52 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_info 0x001ccbca 0x63f esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_info 0x001cd209 0x37fd esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_info 0x001d0a06 0x89f esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_info 0x001d12a5 0x6bc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_info 0x001d1961 0x1081 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_info 0x001d29e2 0x227 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_info 0x001d2c09 0x8cb esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_info 0x001d34d4 0x9ab esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_info 0x001d3e7f 0x1ef4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_info 0x001d5d73 0x735 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_info 0x001d64a8 0x11cb esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_info 0x001d7673 0x1a4a esp-idf/console/libconsole.a(commands.c.obj) - .debug_info 0x001d90bd 0x1bc esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_info 0x001d9279 0x7b8 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_info 0x001d9a31 0xe8a esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_info 0x001da8bb 0xa68 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_info 0x001db323 0x6fc esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_info 0x001dba1f 0xf83 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_info 0x001dc9a2 0x2d33 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_info 0x001df6d5 0x6b38 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_info 0x001e620d 0x146f esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_info 0x001e767c 0xd02 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_info 0x001e837e 0x3ac esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_info 0x001e872a 0x179 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_info 0x001e88a3 0x414 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_info 0x001e8cb7 0x3e esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_info 0x001e8cf5 0x32 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_info 0x001e8d27 0x63f4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_info 0x001ef11b 0x16a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_info 0x001ef285 0x1fdc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_info 0x001f1261 0x2c63 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_info 0x001f3ec4 0x1edd esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_info 0x001f5da1 0x142c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_info 0x001f71cd 0x635 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x001f7802 0xb06 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_info 0x001f8308 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x001f83a7 0xba1 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_info 0x001f8f48 0x4223 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_info 0x001fd16b 0xc8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_info 0x001fddf9 0x2263 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_info 0x0020005c 0x1d35 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_info 0x00201d91 0x568 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_info 0x002022f9 0x30f7 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_info 0x002053f0 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_info 0x002055b1 0x182 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_info 0x00205733 0xe34 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_info 0x00206567 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_info 0x00206744 0x75f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_info 0x00206ea3 0x1635 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_info 0x002084d8 0x40c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_info 0x002088e4 0x461d esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_info 0x0020cf01 0x653e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_info 0x0021343f 0x129f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_info 0x002146de 0x9a3 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_info 0x00215081 0xc79 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_info 0x00215cfa 0x2664 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_info 0x0021835e 0x1015 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_info 0x00219373 0x10f3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_info 0x0021a466 0x10c4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_info 0x0021b52a 0x1427 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_info 0x0021c951 0xeef esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_info 0x0021d840 0xeef esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_info 0x0021e72f 0x4785 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_info 0x00222eb4 0x3d4 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_info 0x00223288 0x7a7 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_info 0x00223a2f 0x559 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_info 0x00223f88 0x941f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_info 0x0022d3a7 0x217d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_info 0x0022f524 0x96ed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_info 0x00238c11 0x53e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_info 0x0023914f 0x101a esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_info 0x0023a169 0x410c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_info 0x0023e275 0x55b2 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_info 0x00243827 0x4c4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_info 0x00243ceb 0x84c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_info 0x00244537 0x1800 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_info 0x00245d37 0x2a13 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_info 0x0024874a 0x1aec esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_info 0x0024a236 0x463e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_info 0x0024e874 0x83c esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_info 0x0024f0b0 0x277 esp-idf/log/liblog.a(util.c.obj) - .debug_info 0x0024f327 0x245 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_info 0x0024f56c 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_info 0x0024f644 0x32e esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_info 0x0024f972 0x279 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_info 0x0024fbeb 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_info 0x0024fd1f 0x26b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_info 0x0024ff8a 0x2af esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_info 0x00250239 0x2fb esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_info 0x00250534 0xce4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_info 0x00251218 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_info 0x002513e0 0x709b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_info 0x0025847b 0x678 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_info 0x00258af3 0x1fc8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_info 0x0025aabb 0x86f6 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_info 0x002631b1 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_info 0x00263286 0x26f2 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_info 0x00265978 0x10ee esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_info 0x00266a66 0x31 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_info 0x00266a97 0x1cd0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_info 0x00268767 0x3ef5 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_info 0x0026c65c 0x1e80 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_info 0x0026e4dc 0x797 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_info 0x0026ec73 0x3698 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_info 0x0027230b 0x741 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_info 0x00272a4c 0x2f2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_info 0x00275977 0xdfe5 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_info 0x0028395c 0xd520 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_info 0x00290e7c 0x919b esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_info 0x0029a017 0x17a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_info 0x0029b7b7 0xa905 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_info 0x002a60bc 0xa20 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_info 0x002a6adc 0x5855 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_info 0x002ac331 0x914d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_info 0x002b547e 0x89c1 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_info 0x002bde3f 0x1012 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_info 0x002bee51 0x49e3 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_info 0x002c3834 0xda5b esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_info 0x002d128f 0x19c8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_info 0x002d2c57 0x142 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .debug_info 0x002d2d99 0xf36 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_info 0x002d3ccf 0xedb esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_info 0x002d4baa 0x7395 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_info 0x002dbf3f 0x17d2 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_info 0x002dd711 0x12bf esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_info 0x002de9d0 0x48b esp-idf/lwip/liblwip.a(def.c.obj) - .debug_info 0x002dee5b 0x1e32 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_info 0x002e0c8d 0x16f esp-idf/lwip/liblwip.a(init.c.obj) - .debug_info 0x002e0dfc 0xb9c esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_info 0x002e1998 0x39a esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_info 0x002e1d32 0x815 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_info 0x002e2547 0x2c70 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_info 0x002e51b7 0x27d1 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_info 0x002e7988 0x15b4 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_info 0x002e8f3c 0x3673 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_info 0x002ec5af 0x2bce esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_info 0x002ef17d 0x35ea esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_info 0x002f2767 0x10b1 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_info 0x002f3818 0x1c00 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_info 0x002f5418 0x3991 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_info 0x002f8da9 0x1f85 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_info 0x002fad2e 0x1038 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_info 0x002fbd66 0x149f esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_info 0x002fd205 0x178c esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_info 0x002fe991 0xa7b esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_info 0x002ff40c 0xad9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_info 0x002ffee5 0x1451 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_info 0x00301336 0x195c esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_info 0x00302c92 0xa9b esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_info 0x0030372d 0xb5c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_info 0x00304289 0x14b1 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_info 0x0030573a 0x2f82 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_info 0x003086bc 0xb98 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_info 0x00309254 0x620 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_info 0x00309874 0xc93 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_info 0x0030a507 0xf0a esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_info 0x0030b411 0x1527 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_info 0x0030c938 0xe4e esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_info 0x0030d786 0x16d3 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_info 0x0030ee59 0x2ac0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_info 0x00311919 0x445c esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_info 0x00315d75 0x104 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_info 0x00315e79 0x7fe esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_info 0x00316677 0xa44 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_info 0x003170bb 0x4cd esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_info 0x00317588 0x6e5c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_info 0x0031e3e4 0x6ca esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_info 0x0031eaae 0x2b24 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_info 0x003215d2 0x371 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_info 0x00321943 0xde5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_info 0x00322728 0x11a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_info 0x003238c8 0x11ae esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_info 0x00324a76 0xd4e esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_info 0x003257c4 0xcb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_info 0x00326478 0xf92 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_info 0x0032740a 0x1e18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_info 0x00329222 0x9dd esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_info 0x00329bff 0x3614 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_info 0x0032d213 0x1d18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_info 0x0032ef2b 0x49a1 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_info 0x003338cc 0x32b esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_info 0x00333bf7 0xdd esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_info 0x00333cd4 0x44e7 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_info 0x003381bb 0x1169 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_info 0x00339324 0x2bae esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_info 0x0033bed2 0x4a8 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_info 0x0033c37a 0x354c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_info 0x0033f8c6 0x50fd esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_info 0x003449c3 0x1086 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_info 0x00345a49 0xcd1 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_info 0x0034671a 0x978 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_info 0x00347092 0x2c3b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_info 0x00349ccd 0x29d1 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_info 0x0034c69e 0x1bec esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_info 0x0034e28a 0x2640 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_info 0x003508ca 0x13e4 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_info 0x00351cae 0x7ff esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_info 0x003524ad 0x26b2 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_info 0x00354b5f 0x8f5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_info 0x00355454 0x515f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_info 0x0035a5b3 0x8a98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_info 0x0036304b 0x26f2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_info 0x0036573d 0x26c1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_info 0x00367dfe 0x2885 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_info 0x0036a683 0x1785 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_info 0x0036be08 0x2eee esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_info 0x0036ecf6 0x499f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_info 0x00373695 0x534b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_info 0x003789e0 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_info 0x00378b80 0x2eba esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_info 0x0037ba3a 0x5410 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_info 0x00380e4a 0x2a3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_info 0x00383889 0x3477 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_info 0x00386d00 0x23e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_info 0x003890e4 0x91c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_info 0x00389a00 0x1e69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_info 0x0038b869 0x2224 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_info 0x0038da8d 0x1816 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_info 0x0038f2a3 0x21b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_info 0x00391454 0x67ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_info 0x00397c1e 0x4195 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_info 0x0039bdb3 0x1b8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_info 0x0039d93f 0x1da6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_info 0x0039f6e5 0x2082 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_info 0x003a1767 0x4c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_info 0x003a1c28 0x2bc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_info 0x003a47ee 0x8a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_info 0x003a5096 0x1952 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_info 0x003a69e8 0x3b50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_info 0x003aa538 0x1708 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_info 0x003abc40 0x252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_info 0x003abe92 0x1ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_info 0x003ac040 0x6ba1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_info 0x003b2be1 0x107d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_info 0x003b3c5e 0x664 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_info 0x003b42c2 0x7da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_info 0x003b4a9c 0xf11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_info 0x003b59ad 0x123 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_info 0x003b5ad0 0x177 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_info 0x003b5c47 0x73d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_info 0x003b6384 0x295 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_info 0x003b6619 0x6340 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_info 0x003bc959 0x7ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_info 0x003bd105 0xc35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_info 0x003bdd3a 0x1930 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_info 0x003bf66a 0x577e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_info 0x003c4de8 0x86e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_info 0x003c5656 0x78b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_info 0x003c5de1 0x19dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_info 0x003c77bd 0x3fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_info 0x003c7bb9 0x1b2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_info 0x003c96e5 0xdaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_info 0x003ca494 0x108f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_info 0x003cb523 0x1c4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_info 0x003cd171 0x270a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_info 0x003cf87b 0x196c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_info 0x003d11e7 0x1365 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_info 0x003d254c 0x15d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_info 0x003d3b25 0x17b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_info 0x003d52d5 0x15e7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_info 0x003d68bc 0x5bad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_info 0x003dc469 0xc44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_info 0x003dd0ad 0x25f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_info 0x003dd30c 0x2a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_info 0x003dd5ae 0x1a41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_info 0x003defef 0x5301 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_info 0x003e42f0 0x11f4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_info 0x003e54e4 0x307e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_info 0x003e8562 0x109a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_info 0x003e95fc 0x7d7 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_info 0x003e9dd3 0x147a esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_info 0x003eb24d 0x2921 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_info 0x003edb6e 0x87e esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_info 0x003ee3ec 0x61e esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_info 0x003eea0a 0x6f1 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_info 0x003ef0fb 0x568 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_info 0x003ef663 0x2cc esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .debug_info 0x003ef92f 0xf3 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_info 0x003efa22 0xed esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .debug_info 0x003efb0f 0x5cd3 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_info 0x003f57e2 0x979b esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_info 0x003fef7d 0x1ab esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_info 0x003ff128 0xf0f esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_info 0x00400037 0x27a1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_info 0x004027d8 0xccd esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_info 0x004034a5 0x32b esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_info 0x004037d0 0x8df esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_info 0x004040af 0xb87 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_info 0x00404c36 0x404 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_info 0x0040503a 0x4ace esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_info 0x00409b08 0x211b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_info 0x0040bc23 0x716a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_info 0x00412d8d 0x438a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_info 0x00417117 0xe01 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_info 0x00417f18 0x41cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_info 0x0041c0e3 0x4625 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_info 0x00420708 0x1c38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_info 0x00422340 0x10a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_info 0x004233e5 0x5f25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_info 0x0042930a 0x1ac9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_info 0x0042add3 0xfd3 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_info 0x0042bda6 0x2d5a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_info 0x0042eb00 0x29b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_info 0x004314b3 0x9a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_info 0x00431e58 0x7157 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_info 0x00438faf 0xd33 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_info 0x00439ce2 0x1984 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_info 0x0043b666 0x3e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_info 0x0043ba4e 0x668 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_info 0x0043c0b6 0x52f esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_info 0x0043c5e5 0x355 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_info 0x0043c93a 0x66d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_info 0x00443011 0x15b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_info 0x004445c9 0xaf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_info 0x004450ba 0x1b5f esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_info 0x00446c19 0x3fcc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_info 0x0044abe5 0x100a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_info 0x0044bbef 0x1249 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_info 0x0044ce38 0x202 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_info 0x0044d03a 0x2b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_info 0x0044d2eb 0x2a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_info 0x0044d58d 0xa07 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_info 0x0044df94 0xdce esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_info 0x0044ed62 0x178d esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_info 0x004504ef 0x2b2 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_info 0x004507a1 0x54c esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_info 0x00450ced 0x438 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_info 0x00451125 0x1d40 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_info 0x00452e65 0x2620 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_info 0x00455485 0x55d esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_info 0x004559e2 0x838 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_info 0x0045621a 0x92 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_info 0x004562ac 0x1082 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_info 0x0045732e 0x11a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_info 0x00457448 0xa57 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_info 0x00457e9f 0x553 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_info 0x004583f2 0xa8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_info 0x00458e81 0x5af /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_info 0x00459430 0xab /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_info 0x004594db 0xd9b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_info 0x0045a276 0x8c2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_info 0x0045ab38 0xfd6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_info 0x0045bb0e 0x1bd1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_info 0x0045d6df 0xab /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_info 0x0045d78a 0x8b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_info 0x0045e03a 0x87e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_info 0x0045e8b8 0x28b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_info 0x0045eb43 0x1ac9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_info 0x0046060c 0x321 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_info 0x0046092d 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_info 0x00460998 0x106 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_info 0x00460a9e 0x8f1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_info 0x0046138f 0x9ae /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_info 0x00461d3d 0x1e15 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_info 0x00463b52 0xe5f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_info 0x004649b1 0xddf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_info 0x00465790 0xe11 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_info 0x004665a1 0x161c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_info 0x00467bbd 0x915 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_info 0x004684d2 0xb8d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_info 0x0046905f 0xb9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_info 0x00469118 0x2aaa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_info 0x0046bbc2 0x2228 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_info 0x0046ddea 0xa02 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_info 0x0046e7ec 0xac8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_info 0x0046f2b4 0x1038 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_info 0x004702ec 0xb08 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_info 0x00470df4 0x98a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_info 0x0047177e 0xa5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_info 0x004721da 0x9b3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_info 0x00472b8d 0xc08 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_info 0x00473795 0x8b8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_info 0x0047404d 0x965 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_info 0x004749b2 0x9e6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_info 0x00475398 0x8f3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_info 0x00475c8b 0xa49 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_info 0x004766d4 0xa71 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_info 0x00477145 0x9c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_info 0x00477b06 0x9a1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_info 0x004784a7 0xa0d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_info 0x00478eb4 0xb63 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_info 0x00479a17 0x954 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_info 0x0047a36b 0x9aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_info 0x0047ad15 0x992 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_info 0x0047b6a7 0x8ef /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_info 0x0047bf96 0x99b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_info 0x0047c931 0xe46 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_info 0x0047d777 0x990 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_info 0x0047e107 0xaf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_info 0x0047e1b6 0x980 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_info 0x0047eb36 0x92 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_info 0x0047ebc8 0xe5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_info 0x0047ecad 0x220 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_info 0x0047eecd 0x362 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_info 0x0047f22f 0x46a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_info 0x0047f699 0xad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_info 0x0047f746 0x18d4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_info 0x0048101a 0x8f3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_info 0x0048190d 0x267 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_info 0x00481b74 0x106 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_info 0x00481c7a 0x895 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_info 0x0048250f 0xe5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_info 0x00483369 0xcb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_info 0x00483434 0xcbe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_info 0x004840f2 0xbe9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_info 0x00484cdb 0xc3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_info 0x00485919 0x986 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_info 0x0048629f 0x84c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_info 0x00486aeb 0x840 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_info 0x0048732b 0x872 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_info 0x00487b9d 0xa94 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_info 0x00488631 0x8f5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_info 0x00488f26 0x8c9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_info 0x004897ef 0x8bf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_info 0x0048a0ae 0x8c5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_info 0x0048a973 0xcf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_info 0x0048aa42 0xcb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_info 0x0048ab0d 0x1cb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_info 0x0048acd8 0x26a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_info 0x0048af42 0x1867 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_info 0x0048c7a9 0x89a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_info 0x0048d043 0x126a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_info 0x0048e2ad 0x347 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_info 0x0048e5f4 0xc00 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_info 0x0048f1f4 0x1c96 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_info 0x00490e8a 0xbbf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_info 0x00491a49 0x9fe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_info 0x00492447 0x9b7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_info 0x00492dfe 0x2085 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_info 0x00494e83 0x20a8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_info 0x00496f2b 0x280a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_info 0x00499735 0x222a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_info 0x0049b95f 0x87e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_info 0x0049c1dd 0xbc1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_info 0x0049cd9e 0xfa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_info 0x0049ce98 0xab0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_info 0x0049d948 0x170 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_info 0x0049dab8 0xe15 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_info 0x0049e8cd 0xbf6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_info 0x0049f4c3 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_info 0x0049f5b0 0xad7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_info 0x004a0087 0x398 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_info 0x004a041f 0x499 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_abbrev 0x00000000 0x7f883 - *(.debug_abbrev) - .debug_abbrev 0x00000000 0x2a5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_abbrev 0x000002a5 0x238 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_abbrev 0x000004dd 0x31c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x000007f9 0x3ca esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00000bc3 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x00000cc9 0x39c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00001065 0x136 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_abbrev 0x0000119b 0x3aa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_abbrev 0x00001545 0x267 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_abbrev 0x000017ac 0x482 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_abbrev 0x00001c2e 0x11c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_abbrev 0x00001d4a 0x398 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_abbrev 0x000020e2 0x465 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_abbrev 0x00002547 0x1f3 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_abbrev 0x0000273a 0x375 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_abbrev 0x00002aaf 0x294 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_abbrev 0x00002d43 0x12e esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_abbrev 0x00002e71 0x581 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_abbrev 0x000033f2 0x22b esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_abbrev 0x0000361d 0x3a1 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_abbrev 0x000039be 0x346 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_abbrev 0x00003d04 0x35e esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_abbrev 0x00004062 0x1bf esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_abbrev 0x00004221 0x205 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00004426 0x32f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00004755 0x45a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_abbrev 0x00004baf 0x320 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_abbrev 0x00004ecf 0x2e0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_abbrev 0x000051af 0x2b7 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_abbrev 0x00005466 0x133 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_abbrev 0x00005599 0x16a esp-idf/log/liblog.a(log_write.c.obj) - .debug_abbrev 0x00005703 0x93 esp-idf/log/liblog.a(log_level.c.obj) - .debug_abbrev 0x00005796 0x1f0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_abbrev 0x00005986 0x1e3 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_abbrev 0x00005b69 0x21e esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_abbrev 0x00005d87 0x11e esp-idf/log/liblog.a(log_lock.c.obj) - .debug_abbrev 0x00005ea5 0x42b esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_abbrev 0x000062d0 0x366 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_abbrev 0x00006636 0x390 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_abbrev 0x000069c6 0x4ac esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_abbrev 0x00006e72 0x2dc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_abbrev 0x0000714e 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_abbrev 0x0000723b 0x312 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_abbrev 0x0000754d 0xf7 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_abbrev 0x00007644 0x2f6 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_abbrev 0x0000793a 0x237 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_abbrev 0x00007b71 0x630 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_abbrev 0x000081a1 0x21b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_abbrev 0x000083bc 0x37a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_abbrev 0x00008736 0x4a5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_abbrev 0x00008bdb 0x246 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_abbrev 0x00008e21 0x4e3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_abbrev 0x00009304 0x43e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_abbrev 0x00009742 0x241 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_abbrev 0x00009983 0x3f4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_abbrev 0x00009d77 0x309 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_abbrev 0x0000a080 0x539 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_abbrev 0x0000a5b9 0xd3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_abbrev 0x0000a68c 0x159 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_abbrev 0x0000a7e5 0x737 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_abbrev 0x0000af1c 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_abbrev 0x0000b150 0x244 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_abbrev 0x0000b394 0x367 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_abbrev 0x0000b6fb 0x496 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_abbrev 0x0000bb91 0x5be esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_abbrev 0x0000c14f 0x17d esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_abbrev 0x0000c2cc 0x211 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_abbrev 0x0000c4dd 0x424 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_abbrev 0x0000c901 0x111 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_abbrev 0x0000ca12 0x145 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_abbrev 0x0000cb57 0x202 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_abbrev 0x0000cd59 0x2a4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_abbrev 0x0000cffd 0x371 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_abbrev 0x0000d36e 0x132 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_abbrev 0x0000d4a0 0xf8 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_abbrev 0x0000d598 0x24c esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_abbrev 0x0000d7e4 0x333 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_abbrev 0x0000db17 0x2ee esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_abbrev 0x0000de05 0x37c esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_abbrev 0x0000e181 0x1d4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_abbrev 0x0000e355 0x10e esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_abbrev 0x0000e463 0x4b8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_abbrev 0x0000e91b 0x2bc esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_abbrev 0x0000ebd7 0x283 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_abbrev 0x0000ee5a 0x22e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_abbrev 0x0000f088 0x1a4 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_abbrev 0x0000f22c 0x517 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_abbrev 0x0000f743 0x1ff esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_abbrev 0x0000f942 0x112 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_abbrev 0x0000fa54 0x186 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_abbrev 0x0000fbda 0x132 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_abbrev 0x0000fd0c 0x4d3 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_abbrev 0x000101df 0x60c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_abbrev 0x000107eb 0x682 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_abbrev 0x00010e6d 0x27a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_abbrev 0x000110e7 0x5ea esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_abbrev 0x000116d1 0x559 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_abbrev 0x00011c2a 0x10b esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_abbrev 0x00011d35 0x2d7 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_abbrev 0x0001200c 0x596 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_abbrev 0x000125a2 0x33d esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_abbrev 0x000128df 0x28a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_abbrev 0x00012b69 0x25c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_abbrev 0x00012dc5 0x328 esp-idf/main/libmain.a(app_main.c.obj) - .debug_abbrev 0x000130ed 0x21e esp-idf/main/libmain.a(app_driver.c.obj) - .debug_abbrev 0x0001330b 0x318 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_abbrev 0x00013623 0x2f0 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_abbrev 0x00013913 0x529 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_abbrev 0x00013e3c 0x3c0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_abbrev 0x000141fc 0x2d0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_abbrev 0x000144cc 0x39c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_abbrev 0x00014868 0x315 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_abbrev 0x00014b7d 0x18d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_abbrev 0x00014d0a 0x255 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_abbrev 0x00014f5f 0x3f7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_abbrev 0x00015356 0x383 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_abbrev 0x000156d9 0x355 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_abbrev 0x00015a2e 0x228 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_abbrev 0x00015c56 0x12a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_abbrev 0x00015d80 0x49f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_abbrev 0x0001621f 0x47d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_abbrev 0x0001669c 0x275 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_abbrev 0x00016911 0x1d6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_abbrev 0x00016ae7 0x45c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_abbrev 0x00016f43 0x247 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_abbrev 0x0001718a 0x37c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_abbrev 0x00017506 0x174 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_abbrev 0x0001767a 0x110 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_abbrev 0x0001778a 0x19b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_abbrev 0x00017925 0x86 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_abbrev 0x000179ab 0x2a7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_abbrev 0x00017c52 0x2d1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_abbrev 0x00017f23 0x339 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_abbrev 0x0001825c 0xd9 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_abbrev 0x00018335 0x3dd esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_abbrev 0x00018712 0x361 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_abbrev 0x00018a73 0x2fd esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_abbrev 0x00018d70 0x190 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_abbrev 0x00018f00 0x23c esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_abbrev 0x0001913c 0x303 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_abbrev 0x0001943f 0x379 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_abbrev 0x000197b8 0x340 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_abbrev 0x00019af8 0x351 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_abbrev 0x00019e49 0x29f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_abbrev 0x0001a0e8 0x3a3 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_abbrev 0x0001a48b 0x2cc esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_abbrev 0x0001a757 0x6a3 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_abbrev 0x0001adfa 0x17c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_abbrev 0x0001af76 0x3ee esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_abbrev 0x0001b364 0x3b0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_abbrev 0x0001b714 0x329 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_abbrev 0x0001ba3d 0x2a2 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_abbrev 0x0001bcdf 0x5a9 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_abbrev 0x0001c288 0x394 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_abbrev 0x0001c61c 0x384 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_abbrev 0x0001c9a0 0x392 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_abbrev 0x0001cd32 0x3d5 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_abbrev 0x0001d107 0x332 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_abbrev 0x0001d439 0x33b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_abbrev 0x0001d774 0x340 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_abbrev 0x0001dab4 0x33b esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_abbrev 0x0001ddef 0x274 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_abbrev 0x0001e063 0x2df esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_abbrev 0x0001e342 0xc2 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .debug_abbrev 0x0001e404 0x39d esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_abbrev 0x0001e7a1 0x2b6 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_abbrev 0x0001ea57 0x41a esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_abbrev 0x0001ee71 0x456 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_abbrev 0x0001f2c7 0x2ef esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_abbrev 0x0001f5b6 0x1aa esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_abbrev 0x0001f760 0x507 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_abbrev 0x0001fc67 0x2cc esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_abbrev 0x0001ff33 0x2d0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_abbrev 0x00020203 0x2d0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_abbrev 0x000204d3 0x2ce esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_abbrev 0x000207a1 0x47f esp-idf/bt/libbt.a(bt.c.obj) - .debug_abbrev 0x00020c20 0x180 esp-idf/bt/libbt.a(addr.c.obj) - .debug_abbrev 0x00020da0 0x307 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_abbrev 0x000210a7 0x2ff esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_abbrev 0x000213a6 0x27f esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_abbrev 0x00021625 0x67e esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_abbrev 0x00021ca3 0x483 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_abbrev 0x00022126 0x278 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_abbrev 0x0002239e 0x4a8 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_abbrev 0x00022846 0x5fc esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_abbrev 0x00022e42 0x3e3 esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_abbrev 0x00023225 0x20f esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .debug_abbrev 0x00023434 0x434 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_abbrev 0x00023868 0x18b esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_abbrev 0x000239f3 0x393 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_abbrev 0x00023d86 0x1a6 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_abbrev 0x00023f2c 0x3c1 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_abbrev 0x000242ed 0x52a esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_abbrev 0x00024817 0x68b esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_abbrev 0x00024ea2 0x2d5 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_abbrev 0x00025177 0x389 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_abbrev 0x00025500 0x135 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_abbrev 0x00025635 0x569 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_abbrev 0x00025b9e 0x34e esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_abbrev 0x00025eec 0x5b2 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_abbrev 0x0002649e 0x309 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_abbrev 0x000267a7 0x54c esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_abbrev 0x00026cf3 0x299 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_abbrev 0x00026f8c 0x487 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_abbrev 0x00027413 0x3bd esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_abbrev 0x000277d0 0x12f esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_abbrev 0x000278ff 0x14d esp-idf/bt/libbt.a(endian.c.obj) - .debug_abbrev 0x00027a4c 0x36c esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_abbrev 0x00027db8 0x260 esp-idf/bt/libbt.a(mem.c.obj) - .debug_abbrev 0x00028018 0x539 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_abbrev 0x00028551 0x1f5 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_abbrev 0x00028746 0x4cc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_abbrev 0x00028c12 0x4b3 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_abbrev 0x000290c5 0x148 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_abbrev 0x0002920d 0x1df esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_abbrev 0x000293ec 0x339 esp-idf/bt/libbt.a(transport.c.obj) - .debug_abbrev 0x00029725 0x4e2 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_abbrev 0x00029c07 0x5c2 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_abbrev 0x0002a1c9 0x2ff esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_abbrev 0x0002a4c8 0x1fb esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_abbrev 0x0002a6c3 0x58f esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_abbrev 0x0002ac52 0x2b4 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_abbrev 0x0002af06 0x371 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_abbrev 0x0002b277 0x45d esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_abbrev 0x0002b6d4 0x2c7 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_abbrev 0x0002b99b 0x276 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_abbrev 0x0002bc11 0x473 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_abbrev 0x0002c084 0x4f4 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_abbrev 0x0002c578 0x40d esp-idf/json/libjson.a(cJSON.c.obj) - .debug_abbrev 0x0002c985 0x237 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_abbrev 0x0002cbbc 0x300 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_abbrev 0x0002cebc 0x255 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_abbrev 0x0002d111 0x1cc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_abbrev 0x0002d2dd 0x2aa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_abbrev 0x0002d587 0x15a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_abbrev 0x0002d6e1 0x21d esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_abbrev 0x0002d8fe 0x2b7 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_abbrev 0x0002dbb5 0x3dd esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_abbrev 0x0002df92 0x1ed esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_abbrev 0x0002e17f 0x329 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_abbrev 0x0002e4a8 0x3d9 esp-idf/console/libconsole.a(commands.c.obj) - .debug_abbrev 0x0002e881 0xce esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_abbrev 0x0002e94f 0x252 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_abbrev 0x0002eba1 0x2c6 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_abbrev 0x0002ee67 0x273 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_abbrev 0x0002f0da 0x1ea esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_abbrev 0x0002f2c4 0x2f2 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_abbrev 0x0002f5b6 0x3e7 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_abbrev 0x0002f99d 0x4b5 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_abbrev 0x0002fe52 0x2f6 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_abbrev 0x00030148 0x22c esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_abbrev 0x00030374 0x174 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_abbrev 0x000304e8 0x10f esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_abbrev 0x000305f7 0x21c esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_abbrev 0x00030813 0x28 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_abbrev 0x0003083b 0x28 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_abbrev 0x00030863 0x6a8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_abbrev 0x00030f0b 0xaa esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_abbrev 0x00030fb5 0x38d esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_abbrev 0x00031342 0x401 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_abbrev 0x00031743 0x392 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_abbrev 0x00031ad5 0x2b0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_abbrev 0x00031d85 0x1ea esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x00031f6f 0x239 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_abbrev 0x000321a8 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x0003220a 0x27c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_abbrev 0x00032486 0x5df esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_abbrev 0x00032a65 0x2b3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_abbrev 0x00032d18 0x484 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_abbrev 0x0003319c 0x330 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_abbrev 0x000334cc 0x182 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_abbrev 0x0003364e 0x556 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_abbrev 0x00033ba4 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_abbrev 0x00033c61 0xd7 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_abbrev 0x00033d38 0x297 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_abbrev 0x00033fcf 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_abbrev 0x000340f9 0x237 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_abbrev 0x00034330 0x402 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_abbrev 0x00034732 0x291 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_abbrev 0x000349c3 0x578 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_abbrev 0x00034f3b 0x5af esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_abbrev 0x000354ea 0x3dd esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_abbrev 0x000358c7 0x1eb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_abbrev 0x00035ab2 0x154 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_abbrev 0x00035c06 0x4b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_abbrev 0x000360ba 0x23b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_abbrev 0x000362f5 0x217 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_abbrev 0x0003650c 0x28b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_abbrev 0x00036797 0x292 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_abbrev 0x00036a29 0x1e4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_abbrev 0x00036c0d 0x1f5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_abbrev 0x00036e02 0x433 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_abbrev 0x00037235 0x179 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_abbrev 0x000373ae 0x269 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_abbrev 0x00037617 0x1af esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_abbrev 0x000377c6 0x3c0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_abbrev 0x00037b86 0x43a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_abbrev 0x00037fc0 0x3b2 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_abbrev 0x00038372 0x195 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_abbrev 0x00038507 0x367 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_abbrev 0x0003886e 0x423 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_abbrev 0x00038c91 0x50c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_abbrev 0x0003919d 0x215 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_abbrev 0x000393b2 0x2b9 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_abbrev 0x0003966b 0x3b5 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_abbrev 0x00039a20 0x3e9 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_abbrev 0x00039e09 0x302 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_abbrev 0x0003a10b 0x487 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_abbrev 0x0003a592 0x1e1 esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_abbrev 0x0003a773 0xc5 esp-idf/log/liblog.a(util.c.obj) - .debug_abbrev 0x0003a838 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_abbrev 0x0003a8be 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_abbrev 0x0003a92e 0xd4 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_abbrev 0x0003aa02 0x108 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_abbrev 0x0003ab0a 0xa3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_abbrev 0x0003abad 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_abbrev 0x0003ac3d 0x19a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_abbrev 0x0003add7 0x1e7 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_abbrev 0x0003afbe 0x301 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_abbrev 0x0003b2bf 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_abbrev 0x0003b383 0x3a8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_abbrev 0x0003b72b 0x17e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_abbrev 0x0003b8a9 0x47b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_abbrev 0x0003bd24 0x3b6 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_abbrev 0x0003c0da 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_abbrev 0x0003c16f 0x3dc esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_abbrev 0x0003c54b 0x2df esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_abbrev 0x0003c82a 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_abbrev 0x0003c850 0x3fc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_abbrev 0x0003cc4c 0x171 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_abbrev 0x0003cdbd 0x4b9 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_abbrev 0x0003d276 0x1f7 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_abbrev 0x0003d46d 0x373 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_abbrev 0x0003d7e0 0x153 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_abbrev 0x0003d933 0x461 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_abbrev 0x0003dd94 0x1091 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_abbrev 0x0003ee25 0xff1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_abbrev 0x0003fe16 0xc4a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_abbrev 0x00040a60 0x531 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_abbrev 0x00040f91 0xee6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_abbrev 0x00041e77 0x2d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_abbrev 0x00042150 0xa69 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_abbrev 0x00042bb9 0xe43 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_abbrev 0x000439fc 0xe18 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_abbrev 0x00044814 0x441 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_abbrev 0x00044c55 0x851 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_abbrev 0x000454a6 0x63a esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_abbrev 0x00045ae0 0x380 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_abbrev 0x00045e60 0xa6 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .debug_abbrev 0x00045f06 0x30c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_abbrev 0x00046212 0x359 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_abbrev 0x0004656b 0x40d esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_abbrev 0x00046978 0x3b8 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_abbrev 0x00046d30 0x2e4 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_abbrev 0x00047014 0x157 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_abbrev 0x0004716b 0x3b1 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_abbrev 0x0004751c 0xbb esp-idf/lwip/liblwip.a(init.c.obj) - .debug_abbrev 0x000475d7 0x236 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_abbrev 0x0004780d 0x1f6 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_abbrev 0x00047a03 0x2e1 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_abbrev 0x00047ce4 0x44e esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_abbrev 0x00048132 0x3cd esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_abbrev 0x000484ff 0x3e1 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_abbrev 0x000488e0 0x440 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_abbrev 0x00048d20 0x3d3 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_abbrev 0x000490f3 0x3b2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_abbrev 0x000494a5 0x376 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_abbrev 0x0004981b 0x402 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_abbrev 0x00049c1d 0x412 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_abbrev 0x0004a02f 0x3af esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_abbrev 0x0004a3de 0x30c esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_abbrev 0x0004a6ea 0x406 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_abbrev 0x0004aaf0 0x389 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_abbrev 0x0004ae79 0x303 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_abbrev 0x0004b17c 0x276 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_abbrev 0x0004b3f2 0x305 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_abbrev 0x0004b6f7 0x358 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_abbrev 0x0004ba4f 0x286 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_abbrev 0x0004bcd5 0x26b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_abbrev 0x0004bf40 0x3bb esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_abbrev 0x0004c2fb 0x3f3 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_abbrev 0x0004c6ee 0x2e2 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_abbrev 0x0004c9d0 0x20b esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_abbrev 0x0004cbdb 0x28f esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_abbrev 0x0004ce6a 0x1c2 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_abbrev 0x0004d02c 0x321 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_abbrev 0x0004d34d 0x2b4 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_abbrev 0x0004d601 0x285 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_abbrev 0x0004d886 0x41a esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_abbrev 0x0004dca0 0x492 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_abbrev 0x0004e132 0x90 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_abbrev 0x0004e1c2 0x239 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_abbrev 0x0004e3fb 0x228 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_abbrev 0x0004e623 0x224 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_abbrev 0x0004e847 0x5e0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_abbrev 0x0004ee27 0x152 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_abbrev 0x0004ef79 0x3f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_abbrev 0x0004f369 0x171 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_abbrev 0x0004f4da 0x2de esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_abbrev 0x0004f7b8 0x2a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_abbrev 0x0004fa5e 0x322 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_abbrev 0x0004fd80 0x2fe esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_abbrev 0x0005007e 0x1dc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_abbrev 0x0005025a 0x378 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_abbrev 0x000505d2 0x43a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_abbrev 0x00050a0c 0x256 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_abbrev 0x00050c62 0x439 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_abbrev 0x0005109b 0x2f3 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_abbrev 0x0005138e 0x58b esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_abbrev 0x00051919 0x1aa esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_abbrev 0x00051ac3 0x75 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_abbrev 0x00051b38 0x557 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_abbrev 0x0005208f 0x309 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_abbrev 0x00052398 0x401 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_abbrev 0x00052799 0x1ba esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_abbrev 0x00052953 0x38f esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_abbrev 0x00052ce2 0x469 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_abbrev 0x0005314b 0x273 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_abbrev 0x000533be 0x230 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_abbrev 0x000535ee 0x17e esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_abbrev 0x0005376c 0x598 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_abbrev 0x00053d04 0x43a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_abbrev 0x0005413e 0x485 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_abbrev 0x000545c3 0x449 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_abbrev 0x00054a0c 0x3aa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_abbrev 0x00054db6 0x1e4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_abbrev 0x00054f9a 0x376 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_abbrev 0x00055310 0x226 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_abbrev 0x00055536 0x5b7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_abbrev 0x00055aed 0x634 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_abbrev 0x00056121 0x360 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_abbrev 0x00056481 0x360 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_abbrev 0x000567e1 0x39b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_abbrev 0x00056b7c 0x39d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_abbrev 0x00056f19 0x4cd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_abbrev 0x000573e6 0x562 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_abbrev 0x00057948 0x58d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_abbrev 0x00057ed5 0xf5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_abbrev 0x00057fca 0x4f3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_abbrev 0x000584bd 0x50e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_abbrev 0x000589cb 0x418 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_abbrev 0x00058de3 0x50e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_abbrev 0x000592f1 0x371 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_abbrev 0x00059662 0x2a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_abbrev 0x00059908 0x4bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_abbrev 0x00059dc3 0x45b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_abbrev 0x0005a21e 0x31f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_abbrev 0x0005a53d 0x372 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_abbrev 0x0005a8af 0x3e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_abbrev 0x0005ac92 0x2fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_abbrev 0x0005af8c 0x3a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_abbrev 0x0005b332 0x3e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_abbrev 0x0005b715 0x38d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_abbrev 0x0005baa2 0x171 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_abbrev 0x0005bc13 0x496 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_abbrev 0x0005c0a9 0x20b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_abbrev 0x0005c2b4 0x32c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_abbrev 0x0005c5e0 0x401 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_abbrev 0x0005c9e1 0x35c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_abbrev 0x0005cd3d 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_abbrev 0x0005cf09 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_abbrev 0x0005d023 0x424 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_abbrev 0x0005d447 0x20a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_abbrev 0x0005d651 0x19b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_abbrev 0x0005d7ec 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_abbrev 0x0005d9b4 0x32a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_abbrev 0x0005dcde 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_abbrev 0x0005dd9a 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_abbrev 0x0005de7e 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_abbrev 0x0005e08e 0x17d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_abbrev 0x0005e20b 0x3f9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_abbrev 0x0005e604 0x1bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_abbrev 0x0005e7c3 0x2eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_abbrev 0x0005eaae 0x456 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_abbrev 0x0005ef04 0x2fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_abbrev 0x0005f1fe 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_abbrev 0x0005f3fe 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_abbrev 0x0005f5e2 0x3fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_abbrev 0x0005f9dc 0x145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_abbrev 0x0005fb21 0x2e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_abbrev 0x0005fe03 0x2b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_abbrev 0x000600bc 0x233 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_abbrev 0x000602ef 0x403 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_abbrev 0x000606f2 0x50c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_abbrev 0x00060bfe 0x291 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_abbrev 0x00060e8f 0x31c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_abbrev 0x000611ab 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_abbrev 0x0006157b 0x3f9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_abbrev 0x00061974 0x51b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_abbrev 0x00061e8f 0x49a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_abbrev 0x00062329 0x254 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_abbrev 0x0006257d 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_abbrev 0x000626b9 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_abbrev 0x00062813 0x40a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_abbrev 0x00062c1d 0x4b7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_abbrev 0x000630d4 0x318 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_abbrev 0x000633ec 0x3c9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_abbrev 0x000637b5 0x2b2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_abbrev 0x00063a67 0x1f5 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_abbrev 0x00063c5c 0x250 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_abbrev 0x00063eac 0x399 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_abbrev 0x00064245 0x26b esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_abbrev 0x000644b0 0x1f9 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_abbrev 0x000646a9 0x289 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_abbrev 0x00064932 0x1d0 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_abbrev 0x00064b02 0xd8 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .debug_abbrev 0x00064bda 0x89 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_abbrev 0x00064c63 0x70 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .debug_abbrev 0x00064cd3 0x3a3 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_abbrev 0x00065076 0x58d esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_abbrev 0x00065603 0xda esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_abbrev 0x000656dd 0x324 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_abbrev 0x00065a01 0x474 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_abbrev 0x00065e75 0x23c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_abbrev 0x000660b1 0xf5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_abbrev 0x000661a6 0x1f9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_abbrev 0x0006639f 0x2b8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_abbrev 0x00066657 0x1a6 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_abbrev 0x000667fd 0x56b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_abbrev 0x00066d68 0x447 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_abbrev 0x000671af 0x6de esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_abbrev 0x0006788d 0x5ba esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_abbrev 0x00067e47 0x270 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_abbrev 0x000680b7 0x55d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_abbrev 0x00068614 0x44d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_abbrev 0x00068a61 0x426 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_abbrev 0x00068e87 0x37f esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_abbrev 0x00069206 0x610 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_abbrev 0x00069816 0x3a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_abbrev 0x00069bbb 0x39b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_abbrev 0x00069f56 0x428 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_abbrev 0x0006a37e 0x4f3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_abbrev 0x0006a871 0x247 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_abbrev 0x0006aab8 0x4af esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_abbrev 0x0006af67 0x25a esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_abbrev 0x0006b1c1 0x301 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_abbrev 0x0006b4c2 0x162 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_abbrev 0x0006b624 0x233 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_abbrev 0x0006b857 0x1ab esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_abbrev 0x0006ba02 0x162 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_abbrev 0x0006bb64 0x60d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_abbrev 0x0006c171 0x3ae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_abbrev 0x0006c51f 0x2ee esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_abbrev 0x0006c80d 0x40e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_abbrev 0x0006cc1b 0x68a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_abbrev 0x0006d2a5 0x2eb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_abbrev 0x0006d590 0x27b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_abbrev 0x0006d80b 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_abbrev 0x0006d90b 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_abbrev 0x0006da4b 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_abbrev 0x0006db8b 0x212 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_abbrev 0x0006dd9d 0x318 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_abbrev 0x0006e0b5 0x42f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_abbrev 0x0006e4e4 0x190 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_abbrev 0x0006e674 0x190 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_abbrev 0x0006e804 0x177 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_abbrev 0x0006e97b 0x2a6 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_abbrev 0x0006ec21 0x422 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_abbrev 0x0006f043 0x288 esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_abbrev 0x0006f2cb 0x1f0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_abbrev 0x0006f4bb 0x8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_abbrev 0x0006f54a 0x5cd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_abbrev 0x0006fb17 0x122 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_abbrev 0x0006fc39 0x478 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_abbrev 0x000700b1 0x2ff /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_abbrev 0x000703b0 0x46a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_abbrev 0x0007081a 0x199 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_abbrev 0x000709b3 0xa9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_abbrev 0x00070a5c 0x509 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_abbrev 0x00070f65 0x3f2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_abbrev 0x00071357 0x57b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_abbrev 0x000718d2 0x7cb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_abbrev 0x0007209d 0xa4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_abbrev 0x00072141 0x342 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_abbrev 0x00072483 0x2ef /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_abbrev 0x00072772 0x1f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_abbrev 0x00072968 0x44d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_abbrev 0x00072db5 0x190 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_abbrev 0x00072f45 0x5b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_abbrev 0x00072fa0 0xd2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_abbrev 0x00073072 0x209 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_abbrev 0x0007327b 0x21c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_abbrev 0x00073497 0x50d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_abbrev 0x000739a4 0x2f4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_abbrev 0x00073c98 0x2be /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_abbrev 0x00073f56 0x2ea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_abbrev 0x00074240 0x33f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_abbrev 0x0007457f 0x206 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_abbrev 0x00074785 0x2a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_abbrev 0x00074a2b 0x62 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_abbrev 0x00074a8d 0x49b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_abbrev 0x00074f28 0x44f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_abbrev 0x00075377 0x289 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_abbrev 0x00075600 0x2e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_abbrev 0x000758e7 0x424 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_abbrev 0x00075d0b 0x289 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_abbrev 0x00075f94 0x246 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_abbrev 0x000761da 0x253 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_abbrev 0x0007642d 0x247 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_abbrev 0x00076674 0x23a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_abbrev 0x000768ae 0x1bd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_abbrev 0x00076a6b 0x224 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_abbrev 0x00076c8f 0x27a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_abbrev 0x00076f09 0x200 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_abbrev 0x00077109 0x265 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_abbrev 0x0007736e 0x2bd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_abbrev 0x0007762b 0x237 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_abbrev 0x00077862 0x213 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_abbrev 0x00077a75 0x21e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_abbrev 0x00077c93 0x255 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_abbrev 0x00077ee8 0x210 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_abbrev 0x000780f8 0x22d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_abbrev 0x00078325 0x25a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_abbrev 0x0007857f 0x209 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_abbrev 0x00078788 0x225 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_abbrev 0x000789ad 0x2de /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_abbrev 0x00078c8b 0x225 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_abbrev 0x00078eb0 0x6e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_abbrev 0x00078f1e 0x216 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_abbrev 0x00079134 0x74 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_abbrev 0x000791a8 0x7e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_abbrev 0x00079226 0xee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_abbrev 0x00079314 0x185 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_abbrev 0x00079499 0x1e5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_abbrev 0x0007967e 0x61 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_abbrev 0x000796df 0x382 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_abbrev 0x00079a61 0x1e0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_abbrev 0x00079c41 0x131 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_abbrev 0x00079d72 0xcb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_abbrev 0x00079e3d 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_abbrev 0x0007a020 0x2ae /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_abbrev 0x0007a2ce 0x5e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_abbrev 0x0007a32c 0x285 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_abbrev 0x0007a5b1 0x260 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_abbrev 0x0007a811 0x1e9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_abbrev 0x0007a9fa 0x212 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_abbrev 0x0007ac0c 0x174 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_abbrev 0x0007ad80 0x196 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_abbrev 0x0007af16 0x1d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_abbrev 0x0007b0e7 0x1e1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_abbrev 0x0007b2c8 0x1d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_abbrev 0x0007b499 0x1ef /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_abbrev 0x0007b688 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_abbrev 0x0007b85a 0x1d7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_abbrev 0x0007ba31 0x77 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_abbrev 0x0007baa8 0x77 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_abbrev 0x0007bb1f 0x145 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_abbrev 0x0007bc64 0x1c2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_abbrev 0x0007be26 0x326 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_abbrev 0x0007c14c 0x1e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_abbrev 0x0007c333 0x3c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_abbrev 0x0007c6f4 0x187 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_abbrev 0x0007c87b 0x25d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_abbrev 0x0007cad8 0x46e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_abbrev 0x0007cf46 0x247 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_abbrev 0x0007d18d 0x217 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_abbrev 0x0007d3a4 0x230 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_abbrev 0x0007d5d4 0x3cc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_abbrev 0x0007d9a0 0x420 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_abbrev 0x0007ddc0 0x42d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_abbrev 0x0007e1ed 0x3f9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_abbrev 0x0007e5e6 0x1be /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_abbrev 0x0007e7a4 0x257 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_abbrev 0x0007e9fb 0x94 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_abbrev 0x0007ea8f 0x299 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_abbrev 0x0007ed28 0xb7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_abbrev 0x0007eddf 0x2e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_abbrev 0x0007f0c2 0x241 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_abbrev 0x0007f303 0xb9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_abbrev 0x0007f3bc 0x1ae /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_abbrev 0x0007f56a 0x197 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_abbrev 0x0007f701 0x182 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_line 0x00000000 0x32ed74 - *(.debug_line) - .debug_line 0x00000000 0x7e9 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_line 0x000007e9 0x615 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_line 0x00000dfe 0x146b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x00002269 0x16a6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x0000390f 0x215 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x00003b24 0xeac esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x000049d0 0x371 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_line 0x00004d41 0x99b esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_line 0x000056dc 0x6c4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_line 0x00005da0 0xe41 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_line 0x00006be1 0x360 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_line 0x00006f41 0x81b esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_line 0x0000775c 0xbfc esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_line 0x00008358 0x595 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_line 0x000088ed 0x736 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_line 0x00009023 0x671 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_line 0x00009694 0x3a5 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_line 0x00009a39 0xfcc esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_line 0x0000aa05 0x653 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_line 0x0000b058 0x708 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_line 0x0000b760 0x1040 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_line 0x0000c7a0 0x777 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_line 0x0000cf17 0x3e2 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_line 0x0000d2f9 0x44a esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x0000d743 0x6f3 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x0000de36 0x12c5 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_line 0x0000f0fb 0x961 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_line 0x0000fa5c 0x53a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_line 0x0000ff96 0x44b esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_line 0x000103e1 0x44c esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_line 0x0001082d 0x2ed esp-idf/log/liblog.a(log_write.c.obj) - .debug_line 0x00010b1a 0xdb esp-idf/log/liblog.a(log_level.c.obj) - .debug_line 0x00010bf5 0x44e esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_line 0x00011043 0x5a8 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_line 0x000115eb 0x68d esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_line 0x00011c78 0x391 esp-idf/log/liblog.a(log_lock.c.obj) - .debug_line 0x00012009 0x1b99 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_line 0x00013ba2 0xfd2 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_line 0x00014b74 0x1265 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_line 0x00015dd9 0x6eab esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_line 0x0001cc84 0xa3c esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_line 0x0001d6c0 0x23a esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_line 0x0001d8fa 0xdf4 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_line 0x0001e6ee 0x2a4 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_line 0x0001e992 0xaa8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_line 0x0001f43a 0x845 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_line 0x0001fc7f 0x2e0d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_line 0x00022a8c 0x1080 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_line 0x00023b0c 0xace esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_line 0x000245da 0xc7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_line 0x00025254 0x9c2 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_line 0x00025c16 0x1c0b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_line 0x00027821 0x1244 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_line 0x00028a65 0x1003 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_line 0x00029a68 0xd6e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_line 0x0002a7d6 0xc44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_line 0x0002b41a 0x4153 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_line 0x0002f56d 0x398 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_line 0x0002f905 0x372 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_line 0x0002fc77 0x35ee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_line 0x00033265 0x820 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_line 0x00033a85 0x7c8 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_line 0x0003424d 0x336e esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_line 0x000375bb 0x5e9d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_line 0x0003d458 0x1108 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_line 0x0003e560 0x51f esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_line 0x0003ea7f 0x51c esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_line 0x0003ef9b 0x964 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_line 0x0003f8ff 0x609 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_line 0x0003ff08 0x41d esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_line 0x00040325 0x5f3 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_line 0x00040918 0x609 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_line 0x00040f21 0xc1b esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_line 0x00041b3c 0x28e esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_line 0x00041dca 0x297 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_line 0x00042061 0x50c esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_line 0x0004256d 0x77d esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_line 0x00042cea 0x70a esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_line 0x000433f4 0xe89 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_line 0x0004427d 0x571 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_line 0x000447ee 0x2ce esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_line 0x00044abc 0x2419 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_line 0x00046ed5 0xdb2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_line 0x00047c87 0xaa8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_line 0x0004872f 0xba4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_line 0x000492d3 0x8ff esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_line 0x00049bd2 0xcdf esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_line 0x0004a8b1 0x3b7 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_line 0x0004ac68 0x2d6 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_line 0x0004af3e 0x543 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_line 0x0004b481 0x334 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_line 0x0004b7b5 0xe69 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_line 0x0004c61e 0x2c77 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_line 0x0004f295 0x83ed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_line 0x00057682 0x5ac esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_line 0x00057c2e 0x1c63 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_line 0x00059891 0x1847 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_line 0x0005b0d8 0x39d esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_line 0x0005b475 0x96e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_line 0x0005bde3 0x57ec esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_line 0x000615cf 0xcc1 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_line 0x00062290 0x980 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_line 0x00062c10 0xf52 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_line 0x00063b62 0x1041 esp-idf/main/libmain.a(app_main.c.obj) - .debug_line 0x00064ba3 0x673 esp-idf/main/libmain.a(app_driver.c.obj) - .debug_line 0x00065216 0x19f4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_line 0x00066c0a 0x247d esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_line 0x00069087 0x2676 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_line 0x0006b6fd 0x1d2f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_line 0x0006d42c 0x1913 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_line 0x0006ed3f 0x405c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_line 0x00072d9b 0x1064 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_line 0x00073dff 0x66f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_line 0x0007446e 0x87f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_line 0x00074ced 0x1b2e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_line 0x0007681b 0x32f1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_line 0x00079b0c 0x1da9 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_line 0x0007b8b5 0xa33 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_line 0x0007c2e8 0x348 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_line 0x0007c630 0x2a2b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_line 0x0007f05b 0x1ccc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_line 0x00080d27 0xb8c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_line 0x000818b3 0xa69 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_line 0x0008231c 0x2d6a esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_line 0x00085086 0x9f9 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_line 0x00085a7f 0x21bb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_line 0x00087c3a 0xa2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_line 0x00088666 0x3e1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_line 0x00088a47 0x4a0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_line 0x00088ee7 0x19e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_line 0x00089085 0xdd0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_line 0x00089e55 0x79e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_line 0x0008a5f3 0xd83 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_line 0x0008b376 0x2af esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_line 0x0008b625 0x17fd esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_line 0x0008ce22 0xe1b esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_line 0x0008dc3d 0x17ff esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_line 0x0008f43c 0x60b esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_line 0x0008fa47 0x92b esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_line 0x00090372 0xbcd esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_line 0x00090f3f 0x2128 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_line 0x00093067 0x1398 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_line 0x000943ff 0x1135 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_line 0x00095534 0xb56 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_line 0x0009608a 0x1825 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_line 0x000978af 0xc85 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_line 0x00098534 0x186a2 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_line 0x000b0bd6 0x578 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_line 0x000b114e 0x13d9 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_line 0x000b2527 0x3c93 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_line 0x000b61ba 0x2414 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_line 0x000b85ce 0x1762 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_line 0x000b9d30 0x6605 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_line 0x000c0335 0xd04 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_line 0x000c1039 0x1275 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_line 0x000c22ae 0x1780 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_line 0x000c3a2e 0x18dd esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_line 0x000c530b 0xf18 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_line 0x000c6223 0x17bf esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_line 0x000c79e2 0x1adb esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_line 0x000c94bd 0x115f esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_line 0x000ca61c 0x62a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_line 0x000cac46 0x199b esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_line 0x000cc5e1 0x1d8 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .debug_line 0x000cc7b9 0x1695 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_line 0x000cde4e 0x8be esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_line 0x000ce70c 0x237a esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_line 0x000d0a86 0x2621 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_line 0x000d30a7 0x1a7f esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_line 0x000d4b26 0x7e1 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_line 0x000d5307 0x3938 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_line 0x000d8c3f 0x781 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_line 0x000d93c0 0xaa1 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_line 0x000d9e61 0xaa1 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_line 0x000da902 0x496 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_line 0x000dad98 0x36e1 esp-idf/bt/libbt.a(bt.c.obj) - .debug_line 0x000de479 0x3c4 esp-idf/bt/libbt.a(addr.c.obj) - .debug_line 0x000de83d 0x816 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_line 0x000df053 0x819 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_line 0x000df86c 0x8f5 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_line 0x000e0161 0x1b44 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_line 0x000e1ca5 0x1b8c esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_line 0x000e3831 0x576 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_line 0x000e3da7 0xcc9 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_line 0x000e4a70 0x7aef esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_line 0x000ec55f 0x1176 esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_line 0x000ed6d5 0x2dd esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .debug_line 0x000ed9b2 0x1d77 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_line 0x000ef729 0x50b esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_line 0x000efc34 0x16de esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_line 0x000f1312 0x345 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_line 0x000f1657 0xd25 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_line 0x000f237c 0x14ba esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_line 0x000f3836 0x8e59 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_line 0x000fc68f 0x10c2 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_line 0x000fd751 0xaa0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_line 0x000fe1f1 0x292 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_line 0x000fe483 0x1265 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_line 0x000ff6e8 0x704 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_line 0x000ffdec 0x4975 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_line 0x00104761 0x206a esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_line 0x001067cb 0x1936 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_line 0x00108101 0xcd9 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_line 0x00108dda 0x1ca8 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_line 0x0010aa82 0xe60 esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_line 0x0010b8e2 0x3dc esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_line 0x0010bcbe 0xc67 esp-idf/bt/libbt.a(endian.c.obj) - .debug_line 0x0010c925 0xea5 esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_line 0x0010d7ca 0x7e8 esp-idf/bt/libbt.a(mem.c.obj) - .debug_line 0x0010dfb2 0x30e5 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_line 0x00111097 0x547 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_line 0x001115de 0x22df esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_line 0x001138bd 0xf7f esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_line 0x0011483c 0x300 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_line 0x00114b3c 0x4d0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_line 0x0011500c 0xb12 esp-idf/bt/libbt.a(transport.c.obj) - .debug_line 0x00115b1e 0x1271 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_line 0x00116d8f 0x59b3 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_line 0x0011c742 0x6e2 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_line 0x0011ce24 0x5ef esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_line 0x0011d413 0x5866 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_line 0x00122c79 0x627 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_line 0x001232a0 0x1169 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_line 0x00124409 0xa19 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_line 0x00124e22 0xac8 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_line 0x001258ea 0x583 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_line 0x00125e6d 0x2141 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_line 0x00127fae 0x8163 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_line 0x00130111 0x6617 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_line 0x00136728 0x6f7 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_line 0x00136e1f 0x3651 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_line 0x0013a470 0xbfa esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_line 0x0013b06a 0x7d8 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_line 0x0013b842 0x113b esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_line 0x0013c97d 0x2d1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_line 0x0013cc4e 0xa61 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_line 0x0013d6af 0xa69 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_line 0x0013e118 0x2126 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_line 0x0014023e 0x8ea esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_line 0x00140b28 0xe8c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_line 0x001419b4 0x1135 esp-idf/console/libconsole.a(commands.c.obj) - .debug_line 0x00142ae9 0x3e3 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_line 0x00142ecc 0x9a1 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_line 0x0014386d 0x643 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_line 0x00143eb0 0xa91 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_line 0x00144941 0x5d8 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_line 0x00144f19 0x7ed esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_line 0x00145706 0x26ad esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_line 0x00147db3 0x8301 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_line 0x001500b4 0x1ebc esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_line 0x00151f70 0x1094 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_line 0x00153004 0x46c esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_line 0x00153470 0x27e esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_line 0x001536ee 0x3f5 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_line 0x00153ae3 0x209 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_line 0x00153cec 0x129 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_line 0x00153e15 0x5072 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_line 0x00158e87 0xd9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_line 0x00158f60 0x1011 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_line 0x00159f71 0x2a0d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_line 0x0015c97e 0x1a5d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_line 0x0015e3db 0xcdb esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_line 0x0015f0b6 0x98d esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x0015fa43 0xa46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_line 0x00160489 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x0016056b 0x10d2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_line 0x0016163d 0x17a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_line 0x00162ddf 0xc56 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_line 0x00163a35 0x25a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_line 0x00165fd7 0x1e66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_line 0x00167e3d 0x590 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_line 0x001683cd 0x2fdf esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_line 0x0016b3ac 0x297 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_line 0x0016b643 0x436 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_line 0x0016ba79 0x123d esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_line 0x0016ccb6 0x287 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_line 0x0016cf3d 0x772 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_line 0x0016d6af 0x10ab esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_line 0x0016e75a 0x5c0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_line 0x0016ed1a 0x38a7 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_line 0x001725c1 0x13db esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_line 0x0017399c 0xef7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_line 0x00174893 0x40c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_line 0x00174c9f 0x39a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_line 0x00175039 0x22b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_line 0x001772f0 0x45d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_line 0x0017774d 0x4c5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_line 0x00177c12 0x5c3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_line 0x001781d5 0xb39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_line 0x00178d0e 0x3a6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_line 0x001790b4 0x3a4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_line 0x00179458 0xe37 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_line 0x0017a28f 0x3e0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_line 0x0017a66f 0x78e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_line 0x0017adfd 0x959 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_line 0x0017b756 0x7c0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_line 0x0017bf16 0x28a1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_line 0x0017e7b7 0x9ce esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_line 0x0017f185 0x64e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_line 0x0017f7d3 0xc5f esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_line 0x00180432 0x98b esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_line 0x00180dbd 0x1c7f esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_line 0x00182a3c 0x4c9 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_line 0x00182f05 0x862 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_line 0x00183767 0xb09 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_line 0x00184270 0x1240 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_line 0x001854b0 0x4de esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_line 0x0018598e 0x1137 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_line 0x00186ac5 0x820 esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_line 0x001872e5 0x20c esp-idf/log/liblog.a(util.c.obj) - .debug_line 0x001874f1 0xb4 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_line 0x001875a5 0x1ab esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_line 0x00187750 0x1fc esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_line 0x0018794c 0x274 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_line 0x00187bc0 0x20a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_line 0x00187dca 0x3bc esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_line 0x00188186 0x52b esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_line 0x001886b1 0x4ff esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_line 0x00188bb0 0xf81 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_line 0x00189b31 0x216 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_line 0x00189d47 0xb29 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_line 0x0018a870 0x75f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_line 0x0018afcf 0x1c73 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_line 0x0018cc42 0xbfe esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_line 0x0018d840 0x1c4 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_line 0x0018da04 0x171b esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_line 0x0018f11f 0x111b esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_line 0x0019023a 0x19b esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_line 0x001903d5 0xd43 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_line 0x00191118 0x236b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_line 0x00193483 0x1d2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_line 0x001951ad 0x5da esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_line 0x00195787 0x3a07 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_line 0x0019918e 0x5c2 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_line 0x00199750 0x2cf0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_line 0x0019c440 0x3074 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_line 0x0019f4b4 0x387b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_line 0x001a2d2f 0x1168 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_line 0x001a3e97 0x8dd esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_line 0x001a4774 0x18a1 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_line 0x001a6015 0x50b esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_line 0x001a6520 0x1013 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_line 0x001a7533 0x3eff esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_line 0x001ab432 0x1a3b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_line 0x001ace6d 0x84f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_line 0x001ad6bc 0xcc6 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_line 0x001ae382 0x93a2 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_line 0x001b7724 0x1883 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_line 0x001b8fa7 0x206 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .debug_line 0x001b91ad 0xf79 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_line 0x001ba126 0xc3d esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_line 0x001bad63 0x938a esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_line 0x001c40ed 0xf1e esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_line 0x001c500b 0xe93 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_line 0x001c5e9e 0x85d esp-idf/lwip/liblwip.a(def.c.obj) - .debug_line 0x001c66fb 0x2d54 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_line 0x001c944f 0x28d esp-idf/lwip/liblwip.a(init.c.obj) - .debug_line 0x001c96dc 0x501 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_line 0x001c9bdd 0x474 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_line 0x001ca051 0x71b esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_line 0x001ca76c 0x3109 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_line 0x001cd875 0x2466 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_line 0x001cfcdb 0x1b37 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_line 0x001d1812 0x4cd8 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_line 0x001d64ea 0x451e esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_line 0x001daa08 0x3419 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_line 0x001dde21 0xc15 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_line 0x001dea36 0x2a45 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_line 0x001e147b 0x3e91 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_line 0x001e530c 0x1c60 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_line 0x001e6f6c 0xa1d esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_line 0x001e7989 0x1624 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_line 0x001e8fad 0x14c0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_line 0x001ea46d 0xb7f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_line 0x001eafec 0x6d8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_line 0x001eb6c4 0x8dd esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_line 0x001ebfa1 0x23fe esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_line 0x001ee39f 0xe72 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_line 0x001ef211 0x6a1 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_line 0x001ef8b2 0x148b esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_line 0x001f0d3d 0x4ebd esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_line 0x001f5bfa 0x77e esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_line 0x001f6378 0x4ce esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_line 0x001f6846 0x84c esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_line 0x001f7092 0x875 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_line 0x001f7907 0x12b5 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_line 0x001f8bbc 0x759 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_line 0x001f9315 0x749 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_line 0x001f9a5e 0x2705 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_line 0x001fc163 0x4713 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_line 0x00200876 0x252 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_line 0x00200ac8 0x894 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_line 0x0020135c 0xe52 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_line 0x002021ae 0x7e5 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_line 0x00202993 0x6d35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_line 0x002096c8 0x3b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_line 0x00209a7e 0x1695 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_line 0x0020b113 0x45a esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_line 0x0020b56d 0x11e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_line 0x0020c74f 0x105a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_line 0x0020d7a9 0x1bbf esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_line 0x0020f368 0xac7 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_line 0x0020fe2f 0xacf esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_line 0x002108fe 0xf5b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_line 0x00211859 0x14b7 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_line 0x00212d10 0x9a5 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_line 0x002136b5 0x17ba esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_line 0x00214e6f 0x5ab1 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_line 0x0021a920 0x2b04 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_line 0x0021d424 0x522 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_line 0x0021d946 0x1dc esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_line 0x0021db22 0x2b15 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_line 0x00220637 0x1251 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_line 0x00221888 0x246f esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_line 0x00223cf7 0x5a7 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_line 0x0022429e 0x3aa1 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_line 0x00227d3f 0x644c esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_line 0x0022e18b 0x119c esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_line 0x0022f327 0xf46 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_line 0x0023026d 0x8c4 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_line 0x00230b31 0x22f3 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_line 0x00232e24 0x2ff9 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_line 0x00235e1d 0x18d5 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_line 0x002376f2 0x2142 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_line 0x00239834 0x14c8 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_line 0x0023acfc 0x51f esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_line 0x0023b21b 0x2953 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_line 0x0023db6e 0x74d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_line 0x0023e2bb 0x47f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_line 0x00242aab 0x8885 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_line 0x0024b330 0xfbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_line 0x0024c2ed 0xdd7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_line 0x0024d0c4 0x102a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_line 0x0024e0ee 0x127e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_line 0x0024f36c 0x1a77 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_line 0x00250de3 0x42f3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_line 0x002550d6 0x51d7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_line 0x0025a2ad 0x325 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_line 0x0025a5d2 0x1a0d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_line 0x0025bfdf 0x57f4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_line 0x002617d3 0x25a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_line 0x00263d7c 0x2c4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_line 0x002669c8 0x959 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_line 0x00267321 0x84b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_line 0x00267b6c 0x1618 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_line 0x00269184 0x165c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_line 0x0026a7e0 0xd19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_line 0x0026b4f9 0x114a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_line 0x0026c643 0x54f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_line 0x00271b35 0x4f4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_line 0x00276a82 0x111a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_line 0x00277b9c 0x1166 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_line 0x00278d02 0x178f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_line 0x0027a491 0x52f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_line 0x0027a9c0 0x2098 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_line 0x0027ca58 0x4f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_line 0x0027cf4b 0xbe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_line 0x0027db2e 0x28bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_line 0x002803eb 0x1203 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_line 0x002815ee 0x27d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_line 0x0028186b 0x23a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_line 0x00281aa5 0x5930 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_line 0x002873d5 0xfe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_line 0x002883ba 0x645 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_line 0x002889ff 0x769 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_line 0x00289168 0x1234 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_line 0x0028a39c 0x174 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_line 0x0028a510 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_line 0x0028a790 0x944 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_line 0x0028b0d4 0x3ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_line 0x0028b4c1 0x1851 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_line 0x0028cd12 0x65d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_line 0x0028d36f 0x1038 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_line 0x0028e3a7 0x14b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_line 0x0028f860 0x75f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_line 0x0028ffbf 0x97e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_line 0x0029093d 0x96d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_line 0x002912aa 0x1952 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_line 0x00292bfc 0x3fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_line 0x00292ff9 0x208d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_line 0x00295086 0x10ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_line 0x00296132 0x1073 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_line 0x002971a5 0x16de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_line 0x00298883 0x2393 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_line 0x0029ac16 0x1863 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_line 0x0029c479 0x1276 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_line 0x0029d6ef 0xe27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_line 0x0029e516 0xde3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_line 0x0029f2f9 0x1471 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_line 0x002a076a 0xed2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_line 0x002a163c 0x1251 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_line 0x002a288d 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_line 0x002a2b37 0x2d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_line 0x002a2e0c 0xa65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_line 0x002a3871 0x50cc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_line 0x002a893d 0xa11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_line 0x002a934e 0x4809 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_line 0x002adb57 0x1259 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_line 0x002aedb0 0x87d esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_line 0x002af62d 0x6ba esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_line 0x002afce7 0xeee esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_line 0x002b0bd5 0x921 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_line 0x002b14f6 0x6ff esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_line 0x002b1bf5 0x8f1 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_line 0x002b24e6 0x8cd esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_line 0x002b2db3 0xfd esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .debug_line 0x002b2eb0 0xca esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_line 0x002b2f7a 0x1a9 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .debug_line 0x002b3123 0xf6e esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_line 0x002b4091 0x3ea8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_line 0x002b7f39 0x21f esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_line 0x002b8158 0x156d esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_line 0x002b96c5 0x2e31 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_line 0x002bc4f6 0x9d3 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_line 0x002bcec9 0x1e5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_line 0x002bd0ae 0x3ac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_line 0x002bd45a 0x873 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_line 0x002bdccd 0x3e8 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_line 0x002be0b5 0x13ef esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_line 0x002bf4a4 0xbbc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_line 0x002c0060 0x5047 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_line 0x002c50a7 0x21f7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_line 0x002c729e 0x56c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_line 0x002c780a 0x174c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_line 0x002c8f56 0x2e43 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_line 0x002cbd99 0x138a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_line 0x002cd123 0xd96 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_line 0x002cdeb9 0x54b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_line 0x002d3372 0x22d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_line 0x002d5646 0x103f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_line 0x002d6685 0xbe3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_line 0x002d7268 0x1f95 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_line 0x002d91fd 0x963 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_line 0x002d9b60 0x6f17 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_line 0x002e0a77 0xb8a esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_line 0x002e1601 0x27c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_line 0x002e3dc6 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_line 0x002e432b 0x787 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_line 0x002e4ab2 0x5e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_line 0x002e5092 0x4c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_line 0x002e5557 0x5b7b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_line 0x002eb0d2 0x1cc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_line 0x002ecd93 0xb03 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_line 0x002ed896 0x1f2c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_line 0x002ef7c2 0x2cfe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_line 0x002f24c0 0x9d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_line 0x002f2e90 0xc99 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_line 0x002f3b29 0x49b esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_line 0x002f3fc4 0x475 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_line 0x002f4439 0x4d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_line 0x002f490c 0xb41 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_line 0x002f544d 0x10c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_line 0x002f6513 0x14ad esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_line 0x002f79c0 0x43d esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_line 0x002f7dfd 0x5eb esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_line 0x002f83e8 0x3db esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_line 0x002f87c3 0x579 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_line 0x002f8d3c 0xd0c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_line 0x002f9a48 0x65c esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_line 0x002fa0a4 0x44c esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_line 0x002fa4f0 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_line 0x002fa55b 0x53e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_line 0x002faa99 0xa9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_line 0x002fab42 0x43a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_line 0x002faf7c 0x1b1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_line 0x002fb12d 0x493 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_line 0x002fb5c0 0x81 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_line 0x002fb641 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_line 0x002fb6ac 0x45a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_line 0x002fbb06 0x1e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_line 0x002fbced 0x3e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_line 0x002fc0cf 0x7cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_line 0x002fc89e 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_line 0x002fc909 0x8a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_line 0x002fc993 0x145 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_line 0x002fcad8 0xee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_line 0x002fcbc6 0x797 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_line 0x002fd35d 0x483 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_line 0x002fd7e0 0x3a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_line 0x002fd81a 0xcc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_line 0x002fd8e6 0x103 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_line 0x002fd9e9 0x245 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_line 0x002fdc2e 0x22b1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_line 0x002ffedf 0x5d0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_line 0x003004af 0x564 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_line 0x00300a13 0x58c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_line 0x00300f9f 0x1503 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_line 0x003024a2 0x11c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_line 0x003025be 0x5c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_line 0x00302b7f 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_line 0x00302bbd 0x516a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_line 0x00307d27 0x363c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_line 0x0030b363 0x2e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_line 0x0030b647 0x580 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_line 0x0030bbc7 0x856 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_line 0x0030c41d 0x295 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_line 0x0030c6b2 0x19a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_line 0x0030c84c 0x212 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_line 0x0030ca5e 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_line 0x0030cb4b 0x8b1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_line 0x0030d3fc 0x14b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_line 0x0030d547 0x171 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_line 0x0030d6b8 0x1f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_line 0x0030d8a8 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_line 0x0030d995 0x282 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_line 0x0030dc17 0x3fa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_line 0x0030e011 0x34c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_line 0x0030e35d 0x247 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_line 0x0030e5a4 0x2a0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_line 0x0030e844 0x28d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_line 0x0030ead1 0xf9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_line 0x0030ebca 0x21e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_line 0x0030ede8 0x256 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_line 0x0030f03e 0x2aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_line 0x0030f2e8 0x272 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_line 0x0030f55a 0x8c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_line 0x0030fe20 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_line 0x0030fff2 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_line 0x0031008e 0xb32 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_line 0x00310bc0 0x6d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_line 0x00310c2d 0xa8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_line 0x00310cd5 0x470 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_line 0x00311145 0x62b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_line 0x00311770 0xc34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_line 0x003123a4 0x3f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_line 0x003123e3 0x1761 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_line 0x00313b44 0x131 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_line 0x00313c75 0x3f5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_line 0x0031406a 0x6d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_line 0x003140d7 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_line 0x003141c7 0xb41 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_line 0x00314d08 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_line 0x00314d46 0x1ae /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_line 0x00314ef4 0x134 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_line 0x00315028 0x9f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_line 0x003150c7 0x2c4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_line 0x0031538b 0x51 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_line 0x003153dc 0x8e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_line 0x0031546a 0xb1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_line 0x0031551b 0xdf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_line 0x003155fa 0xd5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_line 0x003156cf 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_line 0x003157b7 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_line 0x00315892 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_line 0x0031596d 0x72 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_line 0x003159df 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_line 0x00315a4f 0x1c7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_line 0x00315c16 0x2e0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_line 0x00315ef6 0x212a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_line 0x00318020 0x89 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_line 0x003180a9 0x1014 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_line 0x003190bd 0x5f5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_line 0x003196b2 0x1a7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_line 0x00319859 0x2217 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_line 0x0031ba70 0x13b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_line 0x0031bbab 0x2a0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_line 0x0031be4b 0x34c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_line 0x0031c197 0x363d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_line 0x0031f7d4 0x3d26 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_line 0x003234fa 0x4e70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_line 0x0032836a 0x44dd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_line 0x0032c847 0x189 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_line 0x0032c9d0 0x391 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_line 0x0032cd61 0x216 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_line 0x0032cf77 0x5f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_line 0x0032d56d 0x80 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_line 0x0032d5ed 0x5aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_line 0x0032db97 0x1b8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_line 0x0032dd4f 0x79 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_line 0x0032ddc8 0xc4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_line 0x0032de8c 0x585 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_line 0x0032e411 0x963 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_frame 0x00000000 0x55dd8 - *(.debug_frame) - .debug_frame 0x00000000 0x78 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_frame 0x00000078 0x98 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_frame 0x00000110 0x26c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x0000037c 0x338 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x000006b4 0x10c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x000007c0 0x48 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_frame 0x00000808 0xf4 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_frame 0x000008fc 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_frame 0x00000aec 0x58 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_frame 0x00000b44 0x8c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_frame 0x00000bd0 0x64 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_frame 0x00000c34 0xc0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_frame 0x00000cf4 0x80 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_frame 0x00000d74 0x4c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_frame 0x00000dc0 0x5c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_frame 0x00000e1c 0x6c esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_frame 0x00000e88 0x1a4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_frame 0x0000102c 0xa8 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_frame 0x000010d4 0x120 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_frame 0x000011f4 0x1c8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_frame 0x000013bc 0x8c esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_frame 0x00001448 0x4c esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_frame 0x00001494 0x80 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x00001514 0xc8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x000015dc 0xdc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_frame 0x000016b8 0x12c esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_frame 0x000017e4 0x6c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_frame 0x00001850 0x50 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_frame 0x000018a0 0x50 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_frame 0x000018f0 0x78 esp-idf/log/liblog.a(log_write.c.obj) - .debug_frame 0x00001968 0x20 esp-idf/log/liblog.a(log_level.c.obj) - .debug_frame 0x00001988 0xb0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_frame 0x00001a38 0xd4 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_frame 0x00001b0c 0xd8 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_frame 0x00001be4 0x6c esp-idf/log/liblog.a(log_lock.c.obj) - .debug_frame 0x00001c50 0x4f4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_frame 0x00002144 0x120 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_frame 0x00002264 0x350 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_frame 0x000025b4 0x390 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_frame 0x00002944 0xc0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_frame 0x00002a04 0x110 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_frame 0x00002b14 0x30 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_frame 0x00002b44 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_frame 0x00002c18 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_frame 0x00002d40 0x3b8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_frame 0x000030f8 0x26c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_frame 0x00003364 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_frame 0x0000345c 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_frame 0x00003574 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_frame 0x0000370c 0x3b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_frame 0x00003abc 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_frame 0x00003ba4 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_frame 0x00003c8c 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_frame 0x00003e00 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_frame 0x00003f50 0x3b4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_frame 0x00004304 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_frame 0x00004354 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_frame 0x000043a8 0x5cc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_frame 0x00004974 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_frame 0x00004a48 0x54 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_frame 0x00004a9c 0x61c esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_frame 0x000050b8 0xaa4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_frame 0x00005b5c 0x220 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_frame 0x00005d7c 0xe0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_frame 0x00005e5c 0x70 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_frame 0x00005ecc 0xa0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_frame 0x00005f6c 0x60 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_frame 0x00005fcc 0x2c esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_frame 0x00005ff8 0x78 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_frame 0x00006070 0x1c8 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_frame 0x00006238 0x314 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_frame 0x0000654c 0x50 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_frame 0x0000659c 0x40 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_frame 0x000065dc 0x54 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_frame 0x00006630 0xe4 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_frame 0x00006714 0x130 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_frame 0x00006844 0x1f0 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_frame 0x00006a34 0x100 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_frame 0x00006b34 0x34 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_frame 0x00006b68 0x52c esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_frame 0x00007094 0x1f8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_frame 0x0000728c 0x138 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_frame 0x000073c4 0x194 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_frame 0x00007558 0x110 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_frame 0x00007668 0x100 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_frame 0x00007768 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_frame 0x00007798 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_frame 0x000077f0 0x64 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_frame 0x00007854 0x74 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_frame 0x000078c8 0x194 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_frame 0x00007a5c 0x4a4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_frame 0x00007f00 0xa78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_frame 0x00008978 0x6c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_frame 0x000089e4 0x414 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_frame 0x00008df8 0x174 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_frame 0x00008f6c 0xd4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_frame 0x00009040 0x228 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_frame 0x00009268 0xb68 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_frame 0x00009dd0 0x20c esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_frame 0x00009fdc 0x200 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_frame 0x0000a1dc 0x124 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_frame 0x0000a300 0xac esp-idf/main/libmain.a(app_main.c.obj) - .debug_frame 0x0000a3ac 0x120 esp-idf/main/libmain.a(app_driver.c.obj) - .debug_frame 0x0000a4cc 0x274 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_frame 0x0000a740 0x67c esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_frame 0x0000adbc 0x2b0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_frame 0x0000b06c 0x264 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_frame 0x0000b2d0 0x2a8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_frame 0x0000b578 0x680 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_frame 0x0000bbf8 0x190 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_frame 0x0000bd88 0x100 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_frame 0x0000be88 0x94 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_frame 0x0000bf1c 0x208 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_frame 0x0000c124 0x598 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_frame 0x0000c6bc 0x2b8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_frame 0x0000c974 0xd8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_frame 0x0000ca4c 0x3c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_frame 0x0000ca88 0x2f4 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_frame 0x0000cd7c 0x274 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_frame 0x0000cff0 0x168 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_frame 0x0000d158 0x11c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_frame 0x0000d274 0x2bc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_frame 0x0000d530 0xbc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_frame 0x0000d5ec 0x230 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_frame 0x0000d81c 0x2d8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_frame 0x0000daf4 0xb0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_frame 0x0000dba4 0xfc esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_frame 0x0000dca0 0x2c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_frame 0x0000dccc 0x17c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_frame 0x0000de48 0x214 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_frame 0x0000e05c 0x74 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_frame 0x0000e0d0 0x2c esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_frame 0x0000e0fc 0x1d4 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_frame 0x0000e2d0 0xb0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_frame 0x0000e380 0x224 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_frame 0x0000e5a4 0xc8 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_frame 0x0000e66c 0xcc esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_frame 0x0000e738 0xd8 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_frame 0x0000e810 0x1b0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_frame 0x0000e9c0 0x15c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_frame 0x0000eb1c 0x61c esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_frame 0x0000f138 0xbc esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_frame 0x0000f1f4 0x1c0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_frame 0x0000f3b4 0x4e4 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_frame 0x0000f898 0x260c esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_frame 0x00011ea4 0xf8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_frame 0x00011f9c 0x24c esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_frame 0x000121e8 0x27c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_frame 0x00012464 0x2b0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_frame 0x00012714 0x138 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_frame 0x0001284c 0x578 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_frame 0x00012dc4 0x1b0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_frame 0x00012f74 0x16c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_frame 0x000130e0 0x138 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_frame 0x00013218 0x150 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_frame 0x00013368 0xf8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_frame 0x00013460 0x8cc esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_frame 0x00013d2c 0xa24 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_frame 0x00014750 0x61c esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_frame 0x00014d6c 0x168 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_frame 0x00014ed4 0x2a0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_frame 0x00015174 0x110 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_frame 0x00015284 0x90 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_frame 0x00015314 0x200 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_frame 0x00015514 0x214 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_frame 0x00015728 0x2dc esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_frame 0x00015a04 0x1e0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_frame 0x00015be4 0x3d4 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_frame 0x00015fb8 0x214 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_frame 0x000161cc 0x36c esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_frame 0x00016538 0x36c esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_frame 0x000168a4 0xbc esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_frame 0x00016960 0xa4c esp-idf/bt/libbt.a(bt.c.obj) - .debug_frame 0x000173ac 0x5c esp-idf/bt/libbt.a(addr.c.obj) - .debug_frame 0x00017408 0x154 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_frame 0x0001755c 0x12c esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_frame 0x00017688 0x184 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_frame 0x0001780c 0x4a8 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_frame 0x00017cb4 0x3c4 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_frame 0x00018078 0xa4 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_frame 0x0001811c 0x278 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_frame 0x00018394 0x1aec esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_frame 0x00019e80 0x3ec esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_frame 0x0001a26c 0x5c8 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_frame 0x0001a834 0x120 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_frame 0x0001a954 0x648 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_frame 0x0001af9c 0x44 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_frame 0x0001afe0 0x1ac esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_frame 0x0001b18c 0x2e4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_frame 0x0001b470 0x15a4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_frame 0x0001ca14 0x1f0 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_frame 0x0001cc04 0x1b4 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_frame 0x0001cdb8 0x70 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_frame 0x0001ce28 0x270 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_frame 0x0001d098 0xc0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_frame 0x0001d158 0x954 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_frame 0x0001daac 0x314 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_frame 0x0001ddc0 0x358 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_frame 0x0001e118 0x238 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_frame 0x0001e350 0x518 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_frame 0x0001e868 0x138 esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_frame 0x0001e9a0 0x80 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_frame 0x0001ea20 0x130 esp-idf/bt/libbt.a(endian.c.obj) - .debug_frame 0x0001eb50 0x174 esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_frame 0x0001ecc4 0x174 esp-idf/bt/libbt.a(mem.c.obj) - .debug_frame 0x0001ee38 0x50c esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_frame 0x0001f344 0x94 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_frame 0x0001f3d8 0x5fc esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_frame 0x0001f9d4 0x1c0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_frame 0x0001fb94 0x68 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_frame 0x0001fbfc 0xa4 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_frame 0x0001fca0 0x1b8 esp-idf/bt/libbt.a(transport.c.obj) - .debug_frame 0x0001fe58 0x250 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_frame 0x000200a8 0xb80 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_frame 0x00020c28 0xc8 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_frame 0x00020cf0 0x90 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_frame 0x00020d80 0xc44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_frame 0x000219c4 0xcc esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_frame 0x00021a90 0x2d0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_frame 0x00021d60 0x128 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_frame 0x00021e88 0xe4 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_frame 0x00021f6c 0x68 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_frame 0x00021fd4 0x2fc esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_frame 0x000222d0 0xadc esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_frame 0x00022dac 0xf84 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_frame 0x00023d30 0x7c esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_frame 0x00023dac 0x6c4 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_frame 0x00024470 0xdc esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_frame 0x0002454c 0xb0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_frame 0x000245fc 0x204 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_frame 0x00024800 0x7c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_frame 0x0002487c 0x148 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_frame 0x000249c4 0x80 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_frame 0x00024a44 0x27c esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_frame 0x00024cc0 0x110 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_frame 0x00024dd0 0x1d4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_frame 0x00024fa4 0x22c esp-idf/console/libconsole.a(commands.c.obj) - .debug_frame 0x000251d0 0x20 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_frame 0x000251f0 0x17c esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_frame 0x0002536c 0xc4 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_frame 0x00025430 0x144 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_frame 0x00025574 0xe0 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_frame 0x00025654 0x168 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_frame 0x000257bc 0x530 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_frame 0x00025cec 0x794 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_frame 0x00026480 0x318 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_frame 0x00026798 0x1fc esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_frame 0x00026994 0x70 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_frame 0x00026a04 0x30 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_frame 0x00026a34 0xac esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_frame 0x00026ae0 0x86c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_frame 0x0002734c 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_frame 0x0002736c 0x268 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_frame 0x000275d4 0x444 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_frame 0x00027a18 0x290 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_frame 0x00027ca8 0x1ac esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_frame 0x00027e54 0xac esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x00027f00 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_frame 0x00028004 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x00028030 0xe0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_frame 0x00028110 0x280 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_frame 0x00028390 0x174 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_frame 0x00028504 0x2a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_frame 0x000287ac 0x32c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_frame 0x00028ad8 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_frame 0x00028b50 0x350 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_frame 0x00028ea0 0x48 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_frame 0x00028ee8 0x148 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_frame 0x00029030 0x40 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_frame 0x00029070 0x158 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_frame 0x000291c8 0x1d8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_frame 0x000293a0 0xbc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_frame 0x0002945c 0x510 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_frame 0x0002996c 0x16c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_frame 0x00029ad8 0x2ac esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_frame 0x00029d84 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_frame 0x00029e08 0x474 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_frame 0x0002a27c 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_frame 0x0002a2e8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_frame 0x0002a328 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_frame 0x0002a3c4 0x158 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_frame 0x0002a51c 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_frame 0x0002a54c 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_frame 0x0002a57c 0x16c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_frame 0x0002a6e8 0x7c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_frame 0x0002a764 0x110 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_frame 0x0002a874 0x180 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_frame 0x0002a9f4 0x6c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_frame 0x0002aa60 0x388 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_frame 0x0002ade8 0x118 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_frame 0x0002af00 0x3c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_frame 0x0002af3c 0x1b8 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_frame 0x0002b0f4 0xc4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_frame 0x0002b1b8 0x2a8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_frame 0x0002b460 0x9c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_frame 0x0002b4fc 0xec esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_frame 0x0002b5e8 0x168 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_frame 0x0002b750 0x218 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_frame 0x0002b968 0x50 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_frame 0x0002b9b8 0x168 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_frame 0x0002bb20 0x120 esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_frame 0x0002bc40 0x94 esp-idf/log/liblog.a(util.c.obj) - .debug_frame 0x0002bcd4 0xf0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_frame 0x0002bdc4 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_frame 0x0002be04 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_frame 0x0002be24 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_frame 0x0002be84 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_frame 0x0002bedc 0x1c4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_frame 0x0002c0a0 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_frame 0x0002c10c 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_frame 0x0002c1e0 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_frame 0x0002c224 0x39c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_frame 0x0002c5c0 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_frame 0x0002c6e8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_frame 0x0002c718 0x3f4 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_frame 0x0002cb0c 0x1c8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_frame 0x0002ccd4 0x1c0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_frame 0x0002ce94 0x1354 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_frame 0x0002e1e8 0x404 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_frame 0x0002e5ec 0x110 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_frame 0x0002e6fc 0x690 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_frame 0x0002ed8c 0x110 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_frame 0x0002ee9c 0x464 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_frame 0x0002f300 0xd10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_frame 0x00030010 0x76c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_frame 0x0003077c 0x2a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_frame 0x00030a24 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_frame 0x00030b54 0x278 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_frame 0x00030dcc 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_frame 0x00030e40 0x11c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_frame 0x00030f5c 0x51c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_frame 0x00031478 0x1cc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_frame 0x00031644 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_frame 0x000316b0 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_frame 0x00031748 0x9a4 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_frame 0x000320ec 0x2c0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_frame 0x000323ac 0x230 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_frame 0x000325dc 0x2e0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_frame 0x000328bc 0xbf8 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_frame 0x000334b4 0x28c esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_frame 0x00033740 0x1ec esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_frame 0x0003392c 0xd8 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_frame 0x00033a04 0x370 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_frame 0x00033d74 0x2c esp-idf/lwip/liblwip.a(init.c.obj) - .debug_frame 0x00033da0 0x8c esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_frame 0x00033e2c 0x90 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_frame 0x00033ebc 0xfc esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_frame 0x00033fb8 0x578 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_frame 0x00034530 0x578 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_frame 0x00034aa8 0x1d0 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_frame 0x00034c78 0x728 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_frame 0x000353a0 0x1b8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_frame 0x00035558 0x4e8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_frame 0x00035a40 0x18c esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_frame 0x00035bcc 0x264 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_frame 0x00035e30 0x638 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_frame 0x00036468 0x304 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_frame 0x0003676c 0x9c esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_frame 0x00036808 0x2c4 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_frame 0x00036acc 0x198 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_frame 0x00036c64 0xbc esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_frame 0x00036d20 0x60 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_frame 0x00036d80 0x188 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_frame 0x00036f08 0x198 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_frame 0x000370a0 0xac esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_frame 0x0003714c 0x60 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_frame 0x000371ac 0x228 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_frame 0x000373d4 0x424 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_frame 0x000377f8 0x74 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_frame 0x0003786c 0x68 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_frame 0x000378d4 0x84 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_frame 0x00037958 0x50 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_frame 0x000379a8 0x3ac esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_frame 0x00037d54 0x120 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_frame 0x00037e74 0xe8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_frame 0x00037f5c 0x488 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_frame 0x000383e4 0x5b0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_frame 0x00038994 0x20 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_frame 0x000389b4 0x118 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_frame 0x00038acc 0x188 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_frame 0x00038c54 0xc4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_frame 0x00038d18 0xfe0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_frame 0x00039cf8 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_frame 0x00039d24 0x57c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_frame 0x0003a2a0 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_frame 0x0003a34c 0x1d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_frame 0x0003a520 0x27c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_frame 0x0003a79c 0x368 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_frame 0x0003ab04 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_frame 0x0003ac24 0x1c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_frame 0x0003ade8 0x170 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_frame 0x0003af58 0x360 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_frame 0x0003b2b8 0x158 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_frame 0x0003b410 0x7b8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_frame 0x0003bbc8 0x210 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_frame 0x0003bdd8 0x510 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_frame 0x0003c2e8 0x68 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_frame 0x0003c350 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_frame 0x0003c37c 0x370 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_frame 0x0003c6ec 0x334 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_frame 0x0003ca20 0x43c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_frame 0x0003ce5c 0x68 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_frame 0x0003cec4 0x544 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_frame 0x0003d408 0x890 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_frame 0x0003dc98 0xd0 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_frame 0x0003dd68 0x1fc esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_frame 0x0003df64 0x154 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_frame 0x0003e0b8 0x22c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_frame 0x0003e2e4 0x46c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_frame 0x0003e750 0x380 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_frame 0x0003ead0 0x3fc esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_frame 0x0003eecc 0x1a8 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_frame 0x0003f074 0xa0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_frame 0x0003f114 0x2c0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_frame 0x0003f3d4 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_frame 0x0003f4e4 0x6e0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_frame 0x0003fbc4 0x1184 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_frame 0x00040d48 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_frame 0x00040dd0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_frame 0x00040e44 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_frame 0x00041014 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_frame 0x000411f8 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_frame 0x000413d0 0x468 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_frame 0x00041838 0x554 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_frame 0x00041d8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_frame 0x00041dbc 0x2fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_frame 0x000420b8 0x8d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_frame 0x00042988 0x544 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_frame 0x00042ecc 0x3c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_frame 0x00043294 0x384 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_frame 0x00043618 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_frame 0x000436c8 0x2b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_frame 0x0004397c 0x2d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_frame 0x00043c54 0x39c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_frame 0x00043ff0 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_frame 0x000442e8 0xe54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_frame 0x0004513c 0x25c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_frame 0x00045398 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_frame 0x000455d4 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_frame 0x0004585c 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_frame 0x00045b20 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_frame 0x00045b8c 0x470 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_frame 0x00045ffc 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_frame 0x000460a4 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_frame 0x00046444 0x368 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_frame 0x000467ac 0x260 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_frame 0x00046a0c 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_frame 0x00046a84 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_frame 0x00046ad4 0xa1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_frame 0x000474f0 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_frame 0x00047628 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_frame 0x0004769c 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_frame 0x00047758 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_frame 0x00047950 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_frame 0x00047984 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_frame 0x000479cc 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_frame 0x00047ac8 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_frame 0x00047b44 0x278 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_frame 0x00047dbc 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_frame 0x00047dfc 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_frame 0x00047f04 0x270 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_frame 0x00048174 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_frame 0x000482d4 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_frame 0x0004842c 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_frame 0x00048568 0x260 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_frame 0x000487c8 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_frame 0x00048890 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_frame 0x00048b40 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_frame 0x00048e08 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_frame 0x000490e8 0x328 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_frame 0x00049410 0x308 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_frame 0x00049718 0x49c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_frame 0x00049bb4 0x174 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_frame 0x00049d28 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_frame 0x00049ee0 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_frame 0x0004a024 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_frame 0x0004a168 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_frame 0x0004a2a8 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_frame 0x0004a388 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_frame 0x0004a3b4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_frame 0x0004a3f0 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_frame 0x0004a4d0 0x954 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_frame 0x0004ae24 0x1ac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_frame 0x0004afd0 0x538 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_frame 0x0004b508 0x258 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_frame 0x0004b760 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_frame 0x0004b808 0x50 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_frame 0x0004b858 0x178 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_frame 0x0004b9d0 0x170 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_frame 0x0004bb40 0xb0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_frame 0x0004bbf0 0x140 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_frame 0x0004bd30 0xfc esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_frame 0x0004be2c 0x12c esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_frame 0x0004bf58 0x4ec esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_frame 0x0004c444 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_frame 0x0004c480 0x124 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_frame 0x0004c5a4 0x3d4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_frame 0x0004c978 0x124 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_frame 0x0004ca9c 0xf4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_frame 0x0004cb90 0x64 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_frame 0x0004cbf4 0x2dc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_frame 0x0004ced0 0x1d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_frame 0x0004d0a4 0x90c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_frame 0x0004d9b0 0x304 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_frame 0x0004dcb4 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_frame 0x0004dd18 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_frame 0x0004de7c 0x90c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_frame 0x0004e788 0x22c esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_frame 0x0004e9b4 0x1e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_frame 0x0004eb94 0x900 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_frame 0x0004f494 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_frame 0x0004f5fc 0x218 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_frame 0x0004f814 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_frame 0x0004f99c 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_frame 0x0004fc04 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_frame 0x0004fcc8 0xab0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_frame 0x00050778 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_frame 0x000508d4 0x2d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_frame 0x00050ba4 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_frame 0x00050bec 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_frame 0x00050c68 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_frame 0x00050cd4 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_frame 0x00050d20 0xad0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_frame 0x000517f0 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_frame 0x000518f8 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_frame 0x00051ab8 0x2b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_frame 0x00051d6c 0x594 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_frame 0x00052300 0x184 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_frame 0x00052484 0x384 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_frame 0x00052808 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_frame 0x00052830 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_frame 0x00052884 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_frame 0x000528d0 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_frame 0x000529f4 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_frame 0x00052b9c 0x284 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_frame 0x00052e20 0x54 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_frame 0x00052e74 0xfc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_frame 0x00052f70 0x88 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_frame 0x00052ff8 0x1e0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_frame 0x000531d8 0x130 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_frame 0x00053308 0x118 esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_frame 0x00053420 0x38 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_frame 0x00053458 0x280 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_frame 0x000536d8 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_frame 0x00053748 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_frame 0x00053770 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_frame 0x000537bc 0x6c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_frame 0x00053828 0x1c8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_frame 0x000539f0 0x8c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_frame 0x00053a7c 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_frame 0x00053af4 0xb4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_frame 0x00053ba8 0x170 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_frame 0x00053d18 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_frame 0x00053d68 0x80 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_frame 0x00053de8 0x108 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_frame 0x00053ef0 0x128 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_frame 0x00054018 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_frame 0x00054070 0x84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_frame 0x000540f4 0x17c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_frame 0x00054270 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_frame 0x000542d0 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_frame 0x00054328 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_frame 0x00054384 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_frame 0x000543c8 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_frame 0x00054428 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_frame 0x00054478 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_frame 0x000544c4 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_frame 0x00054520 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_frame 0x0005455c 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_frame 0x000545b0 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_frame 0x00054608 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_frame 0x00054670 0x54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_frame 0x000546c4 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_frame 0x00054724 0xa4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_frame 0x000547c8 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_frame 0x00054804 0x64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_frame 0x00054868 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_frame 0x000548c8 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_frame 0x00054900 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_frame 0x00054958 0x78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_frame 0x000549d0 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_frame 0x00054a28 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_frame 0x00054a54 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_frame 0x00054abc 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_frame 0x00054adc 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_frame 0x00054b08 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_frame 0x00054b4c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_frame 0x00054b90 0x84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_frame 0x00054c14 0x90 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_frame 0x00054ca4 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_frame 0x00054cdc 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_frame 0x00054d10 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_frame 0x00054d40 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_frame 0x00054d88 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_frame 0x00054e04 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_frame 0x00054e6c 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_frame 0x00054eac 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_frame 0x00054ecc 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_frame 0x00054f18 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_frame 0x00054f44 0x2c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_frame 0x00054f70 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_frame 0x00054fa0 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_frame 0x00054fd0 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_frame 0x00055004 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_frame 0x00055038 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_frame 0x0005506c 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_frame 0x0005508c 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_frame 0x000550ac 0x40 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_frame 0x000550ec 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_frame 0x00055148 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_frame 0x000551e4 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_frame 0x00055214 0x84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_frame 0x00055298 0x84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_frame 0x0005531c 0x38 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_frame 0x00055354 0x320 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_frame 0x00055674 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_frame 0x000556a4 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_frame 0x00055704 0x68 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_frame 0x0005576c 0x104 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_frame 0x00055870 0x110 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_frame 0x00055980 0xb8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_frame 0x00055a38 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_frame 0x00055ab4 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_frame 0x00055ad4 0x6c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_frame 0x00055b40 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_frame 0x00055b60 0x94 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_frame 0x00055bf4 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_frame 0x00055c14 0xb8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_frame 0x00055ccc 0x5c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_frame 0x00055d28 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_frame 0x00055d48 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_frame 0x00055d68 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_frame 0x00055da4 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_str 0x00000000 0xa0367 - *(.debug_str) - .debug_str 0x00000000 0xa0367 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x4b7 (size before relaxing) - .debug_str 0x000a0367 0x4c2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_str 0x000a0367 0x977 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_str 0x000a0367 0xa8d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x000a0367 0x26a6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_str 0x000a0367 0x2c2b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x000a0367 0x2a1 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_str 0x000a0367 0x35bd esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_str 0x000a0367 0x6da esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_str 0x000a0367 0x1c2e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_str 0x000a0367 0x2eb esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_str 0x000a0367 0x2b36 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_str 0x000a0367 0x3cc0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_str 0x000a0367 0x837 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_str 0x000a0367 0x29be esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_str 0x000a0367 0xbbb esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_str 0x000a0367 0x30a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_str 0x000a0367 0x4453 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_str 0x000a0367 0x4a2 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_str 0x000a0367 0x32ff esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_str 0x000a0367 0xfa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_str 0x000a0367 0x4ec6 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_str 0x000a0367 0x521 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_str 0x000a0367 0x2816 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x000a0367 0x29dd esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x000a0367 0x5130 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_str 0x000a0367 0x618 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_str 0x000a0367 0xa41 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_str 0x000a0367 0x21dd esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_str 0x000a0367 0x35c esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_str 0x000a0367 0x35d esp-idf/log/liblog.a(log_write.c.obj) - .debug_str 0x000a0367 0x29f esp-idf/log/liblog.a(log_level.c.obj) - .debug_str 0x000a0367 0x44c esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_str 0x000a0367 0x3d9 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_str 0x000a0367 0x3e7 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_str 0x000a0367 0x304 esp-idf/log/liblog.a(log_lock.c.obj) - .debug_str 0x000a0367 0xb15 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_str 0x000a0367 0x748 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_str 0x000a0367 0x8e2 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_str 0x000a0367 0x9ce esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_str 0x000a0367 0x87e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_str 0x000a0367 0x437 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_str 0x000a0367 0x5fe esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_str 0x000a0367 0x2c8 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_str 0x000a0367 0x508 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_str 0x000a0367 0x4e0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_str 0x000a0367 0x168e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_str 0x000a0367 0x7bf esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_str 0x000a0367 0x29ef esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_str 0x000a0367 0x1ea5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_str 0x000a0367 0x51f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_str 0x000a0367 0x14e4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_str 0x000a0367 0x2f24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_str 0x000a0367 0xa3b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_str 0x000a0367 0x51eb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_str 0x000a0367 0x321c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_str 0x000a0367 0x23bb esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_str 0x000a0367 0x496 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_str 0x000a0367 0x362 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_str 0x000a0367 0x5d1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_str 0x000a0367 0x65e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_str 0x000a0367 0x4ae esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_str 0x000a0367 0xe16 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_str 0x000a0367 0x1d58 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_str 0x000a0367 0x15e2 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_str 0x000a0367 0x351 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_str 0x000a0367 0x7eb esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_str 0x000a0367 0x5906 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_str 0x000a0367 0x35a esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_str 0x000a0367 0x286 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_str 0x000a0367 0x31f esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_str 0x000a0367 0x7ab esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_str 0x000a0367 0x8dc esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_str 0x000a0367 0x2d5 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_str 0x000a0367 0x257 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_str 0x000a0367 0x654 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_str 0x000a0367 0xcaf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_str 0x000a0367 0x896 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_str 0x000a0367 0xa53 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_str 0x000a0367 0x92f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_str 0x000a0367 0x297 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_str 0x000a0367 0xe17 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_str 0x000a0367 0x871 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_str 0x000a0367 0x522 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_str 0x000a0367 0x5a2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_str 0x000a0367 0x41d esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_str 0x000a0367 0xb5d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_str 0x000a0367 0x493 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_str 0x000a0367 0x2fc esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_str 0x000a0367 0x3d4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_str 0x000a0367 0x328 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_str 0x000a0367 0x5ae4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_str 0x000a0367 0x212e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_str 0x000a0367 0x71fe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_str 0x000a0367 0xe3e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_str 0x000a0367 0x213d esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_str 0x000a0367 0x5c92 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_str 0x000a0367 0x3b1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_str 0x000a0367 0x1174 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_str 0x000a0367 0x1bdc esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_str 0x000a0367 0x10b3 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_str 0x000a0367 0x9a4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_str 0x000a0367 0x976 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_str 0x000a0367 0xc0b esp-idf/main/libmain.a(app_main.c.obj) - .debug_str 0x000a0367 0x6ef esp-idf/main/libmain.a(app_driver.c.obj) - .debug_str 0x000a0367 0x9eb esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_str 0x000a0367 0x780 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_str 0x000a0367 0x1cb7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_str 0x000a0367 0x315d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_str 0x000a0367 0xcd2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_str 0x000a0367 0x16b8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_str 0x000a0367 0xeb1 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_str 0x000a0367 0x46e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_str 0x000a0367 0x96c esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_str 0x000a0367 0x18d7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_str 0x000a0367 0x192e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_str 0x000a0367 0xee2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_str 0x000a0367 0x675 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_str 0x000a0367 0x4ff esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_str 0x000a0367 0x1de5 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_str 0x000a0367 0x1697 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_str 0x000a0367 0x75f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_str 0x000a0367 0x521 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_str 0x000a0367 0x25ba esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_str 0x000a0367 0xa96 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_str 0x000a0367 0xf9d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_str 0x000a0367 0x79d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_str 0x000a0367 0x3f2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_str 0x000a0367 0x799 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_str 0x000a0367 0x269 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_str 0x000a0367 0x102b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_str 0x000a0367 0x13c7 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_str 0x000a0367 0xc22 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_str 0x000a0367 0x2c9 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_str 0x000a0367 0x1000 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_str 0x000a0367 0x1991 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_str 0x000a0367 0xac0 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_str 0x000a0367 0x773 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_str 0x000a0367 0x892 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_str 0x000a0367 0x6e5 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_str 0x000a0367 0xe97 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_str 0x000a0367 0x109f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_str 0x000a0367 0x1a68 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_str 0x000a0367 0xa9f esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_str 0x000a0367 0xe7e esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_str 0x000a0367 0x628 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_str 0x000a0367 0x3dc9 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_str 0x000a0367 0x3a7 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_str 0x000a0367 0xf4b esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_str 0x000a0367 0xe97 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_str 0x000a0367 0xf8a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_str 0x000a0367 0x8cc esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_str 0x000a0367 0x3292 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_str 0x000a0367 0x13ce esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_str 0x000a0367 0xe33 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_str 0x000a0367 0x1c2e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_str 0x000a0367 0x1b85 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_str 0x000a0367 0x1052 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_str 0x000a0367 0x29db esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_str 0x000a0367 0x26dd esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_str 0x000a0367 0x186d esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_str 0x000a0367 0xfe3 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_str 0x000a0367 0x6ae esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_str 0x000a0367 0x38d esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .debug_str 0x000a0367 0xc34 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_str 0x000a0367 0x111b esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_str 0x000a0367 0x1b38 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_str 0x000a0367 0x19e9 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_str 0x000a0367 0x7be esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_str 0x000a0367 0x483 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_str 0x000a0367 0x1c21 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_str 0x000a0367 0xe32 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_str 0x000a0367 0x117e esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_str 0x000a0367 0x1215 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_str 0x000a0367 0x1244 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_str 0x000a0367 0x3692 esp-idf/bt/libbt.a(bt.c.obj) - .debug_str 0x000a0367 0x2d6 esp-idf/bt/libbt.a(addr.c.obj) - .debug_str 0x000a0367 0x774 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_str 0x000a0367 0x673 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_str 0x000a0367 0x4ba esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_str 0x000a0367 0x2124 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_str 0x000a0367 0x1e3b esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_str 0x000a0367 0xac6 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_str 0x000a0367 0x1291 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_str 0x000a0367 0x39b3 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_str 0x000a0367 0xc83 esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_str 0x000a0367 0x8b6 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .debug_str 0x000a0367 0x1789 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_str 0x000a0367 0x4d2 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_str 0x000a0367 0x14a4 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_str 0x000a0367 0x3e2 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_str 0x000a0367 0xded esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_str 0x000a0367 0x1dce esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_str 0x000a0367 0x40c0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_str 0x000a0367 0x59f esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_str 0x000a0367 0xcd9 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_str 0x000a0367 0x3f0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_str 0x000a0367 0x17cf esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_str 0x000a0367 0xe46 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_str 0x000a0367 0x20b1 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_str 0x000a0367 0xa50 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_str 0x000a0367 0x19fb esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_str 0x000a0367 0x99f esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_str 0x000a0367 0x1119 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_str 0x000a0367 0xf8f esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_str 0x000a0367 0x334 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_str 0x000a0367 0x2fd esp-idf/bt/libbt.a(endian.c.obj) - .debug_str 0x000a0367 0xc0c esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_str 0x000a0367 0x635 esp-idf/bt/libbt.a(mem.c.obj) - .debug_str 0x000a0367 0xfd7 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_str 0x000a0367 0x4b9 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_str 0x000a0367 0x15e4 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_str 0x000a0367 0xf32 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_str 0x000a0367 0x414 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_str 0x000a0367 0x3b1 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_str 0x000a0367 0x7cc esp-idf/bt/libbt.a(transport.c.obj) - .debug_str 0x000a0367 0x1be9 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_str 0x000a0367 0x2916 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_str 0x000a0367 0xcb8 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_str 0x000a0367 0x961 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_str 0x000a0367 0x28f5 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_str 0x000a0367 0xc2a esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_str 0x000a0367 0x1809 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_str 0x000a0367 0x1a8a esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_str 0x000a0367 0x78d esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_str 0x000a0367 0xbc0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_str 0x000a0367 0x128d esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_str 0x000a0367 0x1603 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_str 0x000a0367 0x1009 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_str 0x000a0367 0x556 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_str 0x000a0367 0xa43 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_str 0x000a0367 0x5e1 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_str 0x000a0367 0x605 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_str 0x000a0367 0xaca esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_str 0x000a0367 0x2ba esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_str 0x000a0367 0x5e4 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_str 0x000a0367 0x784 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_str 0x000a0367 0x152a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_str 0x000a0367 0x4ec esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_str 0x000a0367 0xa63 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_str 0x000a0367 0xc35 esp-idf/console/libconsole.a(commands.c.obj) - .debug_str 0x000a0367 0x2c6 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_str 0x000a0367 0x401 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_str 0x000a0367 0x7e9 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_str 0x000a0367 0x478 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_str 0x000a0367 0x440 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_str 0x000a0367 0x753 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_str 0x000a0367 0xb99 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_str 0x000a0367 0x2853 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_str 0x000a0367 0x96c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_str 0x000a0367 0x620 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_str 0x000a0367 0x434 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_str 0x000a0367 0x295 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_str 0x000a0367 0x328 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_str 0x000a0367 0xa2 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_str 0x000a0367 0x93 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_str 0x000a0367 0x2db6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_str 0x000a0367 0x350 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_str 0x000a0367 0x174e esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_str 0x000a0367 0x197a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_str 0x000a0367 0x1366 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_str 0x000a0367 0x1019 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_str 0x000a0367 0x64d esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x000a0367 0xefb esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_str 0x000a0367 0x241 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_str 0x000a0367 0xa49 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_str 0x000a0367 0x2bd4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_str 0x000a0367 0x13b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_str 0x000a0367 0x16c7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_str 0x000a0367 0x1616 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_str 0x000a0367 0x40e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_str 0x000a0367 0x1031 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_str 0x000a0367 0x35c esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_str 0x000a0367 0x29f esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_str 0x000a0367 0x607 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_str 0x000a0367 0x351 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_str 0x000a0367 0xe37 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_str 0x000a0367 0xb99 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_str 0x000a0367 0x5d8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_str 0x000a0367 0x22a7 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_str 0x000a0367 0x3a73 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_str 0x000a0367 0xc49 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_str 0x000a0367 0x76f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_str 0x000a0367 0x96d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_str 0x000a0367 0x1b49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_str 0x000a0367 0xc96 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_str 0x000a0367 0x1366 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_str 0x000a0367 0xccc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_str 0x000a0367 0xd7f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_str 0x000a0367 0xbf5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_str 0x000a0367 0xbed esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_str 0x000a0367 0x2d33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_str 0x000a0367 0x2fa esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_str 0x000a0367 0xb7f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_str 0x000a0367 0x4bd esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_str 0x000a0367 0x7414 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_str 0x000a0367 0xc62 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_str 0x000a0367 0x7473 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_str 0x000a0367 0x41d esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_str 0x000a0367 0x615 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_str 0x000a0367 0x28c7 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_str 0x000a0367 0x26ca esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_str 0x000a0367 0x4e5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_str 0x000a0367 0xbb0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_str 0x000a0367 0xe4f esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_str 0x000a0367 0x13eb esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_str 0x000a0367 0x1218 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_str 0x000a0367 0x2237 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_str 0x000a0367 0x42d esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_str 0x000a0367 0x265 esp-idf/log/liblog.a(util.c.obj) - .debug_str 0x000a0367 0x8a7 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_str 0x000a0367 0x22f esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_str 0x000a0367 0x940 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_str 0x000a0367 0x2ec esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_str 0x000a0367 0x262 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_str 0x000a0367 0x241 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_str 0x000a0367 0x41e esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_str 0x000a0367 0x329 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_str 0x000a0367 0x71c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_str 0x000a0367 0x2ce esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_str 0x000a0367 0x550c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_str 0x000a0367 0xa49 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_str 0x000a0367 0x121b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_str 0x000a0367 0x6a10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_str 0x000a0367 0x23b esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_str 0x000a0367 0x1108 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_str 0x000a0367 0x849 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_str 0x000a0367 0xb3 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_str 0x000a0367 0xe8a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_str 0x000a0367 0xe48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_str 0x000a0367 0xdb7 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_str 0x000a0367 0x4ac esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_str 0x000a0367 0xe49 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_str 0x000a0367 0x566 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_str 0x000a0367 0x112c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_str 0x000a0367 0xb0fc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_str 0x000a0367 0xa967 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_str 0x000a0367 0x92ab esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_str 0x000a0367 0x1284 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_str 0x000a0367 0xa6d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_str 0x000a0367 0x502 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_str 0x000a0367 0x46ed esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_str 0x000a0367 0x5d01 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_str 0x000a0367 0x77c4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_str 0x000a0367 0xf50 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_str 0x000a0367 0x395c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_str 0x000a0367 0x6b6a esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_str 0x000a0367 0x14b2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_str 0x000a0367 0x263 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .debug_str 0x000a0367 0xb05 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_str 0x000a0367 0x966 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_str 0x000a0367 0x1f6c esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_str 0x000a0367 0xcb5 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_str 0x000a0367 0xc3b esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_str 0x000a0367 0x2f6 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_str 0x000a0367 0xc92 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_str 0x000a0367 0x27c esp-idf/lwip/liblwip.a(init.c.obj) - .debug_str 0x000a0367 0x963 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_str 0x000a0367 0x2d6 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_str 0x000a0367 0x680 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_str 0x000a0367 0x115a esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_str 0x000a0367 0xed6 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_str 0x000a0367 0xcd7 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_str 0x000a0367 0x12ec esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_str 0x000a0367 0x1115 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_str 0x000a0367 0xf68 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_str 0x000a0367 0xa7d esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_str 0x000a0367 0xfb3 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_str 0x000a0367 0x1645 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_str 0x000a0367 0xf1a esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_str 0x000a0367 0x90a esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_str 0x000a0367 0xab5 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_str 0x000a0367 0xdfc esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_str 0x000a0367 0x7cc esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_str 0x000a0367 0x701 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_str 0x000a0367 0xb6d esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_str 0x000a0367 0xb97 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_str 0x000a0367 0x877 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_str 0x000a0367 0x755 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_str 0x000a0367 0xd48 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_str 0x000a0367 0x1435 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_str 0x000a0367 0x957 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_str 0x000a0367 0x5fb esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_str 0x000a0367 0xa5a esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_str 0x000a0367 0x9dc esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_str 0x000a0367 0xa48 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_str 0x000a0367 0xb1b esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_str 0x000a0367 0x956 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_str 0x000a0367 0x12a4 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_str 0x000a0367 0x18bd esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_str 0x000a0367 0x23a esp-idf/lwip/liblwip.a(err.c.obj) - .debug_str 0x000a0367 0x618 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_str 0x000a0367 0x487 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_str 0x000a0367 0x427 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_str 0x000a0367 0x3641 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_str 0x000a0367 0x473 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_str 0x000a0367 0x1763 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_str 0x000a0367 0x323 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_str 0x000a0367 0x3d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_str 0x000a0367 0x3e4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_str 0x000a0367 0x582 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_str 0x000a0367 0x519 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_str 0x000a0367 0x395 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_str 0x000a0367 0xb52 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_str 0x000a0367 0x13cf esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_str 0x000a0367 0x669 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_str 0x000a0367 0x2a4a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_str 0x000a0367 0x1316 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_str 0x000a0367 0x298c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_str 0x000a0367 0x464 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_str 0x000a0367 0x25a esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_str 0x000a0367 0x2e1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_str 0x000a0367 0xd04 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_str 0x000a0367 0x13be esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_str 0x000a0367 0x63f esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_str 0x000a0367 0x119b esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_str 0x000a0367 0x2336 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_str 0x000a0367 0x7ef esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_str 0x000a0367 0x558 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_str 0x000a0367 0x3b5 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_str 0x000a0367 0x13db esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_str 0x000a0367 0x14fc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_str 0x000a0367 0x12e9 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_str 0x000a0367 0x12a7 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_str 0x000a0367 0xec3 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_str 0x000a0367 0x46d esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_str 0x000a0367 0x1d1b esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_str 0x000a0367 0x1223 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_str 0x000a0367 0x2923 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_str 0x000a0367 0x45d5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_str 0x000a0367 0x1bc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_str 0x000a0367 0x1d13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_str 0x000a0367 0x1a26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_str 0x000a0367 0x7ed esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_str 0x000a0367 0x1e49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_str 0x000a0367 0x26f3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_str 0x000a0367 0x2ac2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_str 0x000a0367 0x299 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_str 0x000a0367 0x1e2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_str 0x000a0367 0x1140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_str 0x000a0367 0xa81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_str 0x000a0367 0x19f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_str 0x000a0367 0x1b86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_str 0x000a0367 0x422 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_str 0x000a0367 0x12c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_str 0x000a0367 0xb3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_str 0x000a0367 0x9f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_str 0x000a0367 0xbdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_str 0x000a0367 0x1202 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_str 0x000a0367 0xa54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_str 0x000a0367 0xb4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_str 0x000a0367 0xb8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_str 0x000a0367 0xe7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_str 0x000a0367 0x34a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_str 0x000a0367 0x119a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_str 0x000a0367 0x64b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_str 0x000a0367 0xbb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_str 0x000a0367 0x1acd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_str 0x000a0367 0x8f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_str 0x000a0367 0x30b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_str 0x000a0367 0x262 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_str 0x000a0367 0x1353 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_str 0x000a0367 0x485 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_str 0x000a0367 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_str 0x000a0367 0x4a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_str 0x000a0367 0x552 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_str 0x000a0367 0x23b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_str 0x000a0367 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_str 0x000a0367 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_str 0x000a0367 0x2d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_str 0x000a0367 0x4e7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_str 0x000a0367 0x4d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_str 0x000a0367 0x873 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_str 0x000a0367 0xffd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_str 0x000a0367 0x476d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_str 0x000a0367 0x4c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_str 0x000a0367 0x4ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_str 0x000a0367 0xa18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_str 0x000a0367 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_str 0x000a0367 0x548 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_str 0x000a0367 0x56a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_str 0x000a0367 0x5f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_str 0x000a0367 0x9b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_str 0x000a0367 0xb08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_str 0x000a0367 0x1586 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_str 0x000a0367 0x1084 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_str 0x000a0367 0x1305 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_str 0x000a0367 0x141a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_str 0x000a0367 0x10b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_str 0x000a0367 0x4ed0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_str 0x000a0367 0x3a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_str 0x000a0367 0x42d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_str 0x000a0367 0x445 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_str 0x000a0367 0xedb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_str 0x000a0367 0x1978 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_str 0x000a0367 0x995 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_str 0x000a0367 0xcbf esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_str 0x000a0367 0x689 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_str 0x000a0367 0x750 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_str 0x000a0367 0x8d5 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_str 0x000a0367 0x1995 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_str 0x000a0367 0x668 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_str 0x000a0367 0x41a esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_str 0x000a0367 0x5b2 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_str 0x000a0367 0x45d esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_str 0x000a0367 0x8e8 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .debug_str 0x000a0367 0x273 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_str 0x000a0367 0x231 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .debug_str 0x000a0367 0x4a1b esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_str 0x000a0367 0x606a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_str 0x000a0367 0x332 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_str 0x000a0367 0x978 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_str 0x000a0367 0x1826 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_str 0x000a0367 0x8b8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_str 0x000a0367 0x590 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_str 0x000a0367 0x922 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_str 0x000a0367 0x73a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_str 0x000a0367 0x3ee esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_str 0x000a0367 0x3c6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_str 0x000a0367 0x220a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_str 0x000a0367 0x429a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_str 0x000a0367 0x2a0d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_str 0x000a0367 0xae9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_str 0x000a0367 0x320c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_str 0x000a0367 0x1847 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_str 0x000a0367 0xf64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_str 0x000a0367 0xc70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_str 0x000a0367 0x2cd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_str 0x000a0367 0xef3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_str 0x000a0367 0x64b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_str 0x000a0367 0x205d esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_str 0x000a0367 0x1ab5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_str 0x000a0367 0x44e esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_str 0x000a0367 0x12c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_str 0x000a0367 0x594 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_str 0x000a0367 0x875 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_str 0x000a0367 0x2cc esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_str 0x000a0367 0x3e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_str 0x000a0367 0x306 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_str 0x000a0367 0x2b2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_str 0x000a0367 0x2704 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_str 0x000a0367 0xb08 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_str 0x000a0367 0x3d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_str 0x000a0367 0xc09 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_str 0x000a0367 0x2b67 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_str 0x000a0367 0xb9f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_str 0x000a0367 0x6e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_str 0x000a0367 0x25c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_str 0x000a0367 0x292 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_str 0x000a0367 0x28f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_str 0x000a0367 0x38d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_str 0x000a0367 0x6d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_str 0x000a0367 0xbe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_str 0x000a0367 0x2f7 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_str 0x000a0367 0x33e esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_str 0x000a0367 0x35e esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_str 0x000a0367 0xdc5 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_str 0x000a0367 0x11f5 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_str 0x000a0367 0x450 esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_str 0x000a0367 0x6b3 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_str 0x000a0367 0x111 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_str 0x000a0367 0xf46 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_str 0x000a0367 0x153 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_str 0x000a0367 0x94d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_str 0x000a0367 0x489 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_str 0x000a0367 0x8c8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_str 0x000a0367 0x291 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_str 0x000a0367 0x106 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_str 0x000a0367 0xb0a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_str 0x000a0367 0x989 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_str 0x000a0367 0xcce /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_str 0x000a0367 0x17b9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_str 0x000a0367 0x110 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_str 0x000a0367 0x775 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_str 0x000a0367 0x41b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_str 0x000a0367 0x20c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_str 0x000a0367 0x1015 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_str 0x000a0367 0x2fd esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_str 0x000a0367 0x95 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_str 0x000a0367 0x13a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_str 0x000a0367 0x4fb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_str 0x000a0367 0x52d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_str 0x000a0367 0xa78 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_str 0x000a0367 0x765 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_str 0x000a0367 0x761 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_str 0x000a0367 0x779 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_str 0x000a0367 0x6f1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_str 0x000a0367 0x50d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_str 0x000a0367 0x581 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_str 0x000a0367 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_str 0x000a0367 0xd54 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_str 0x000a0367 0xc3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_str 0x000a0367 0x5a4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_str 0x000a0367 0x599 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_str 0x000a0367 0x752 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_str 0x000a0367 0x5cb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_str 0x000a0367 0x558 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_str 0x000a0367 0x5a2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_str 0x000a0367 0x500 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_str 0x000a0367 0x585 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_str 0x000a0367 0x4e0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_str 0x000a0367 0x51f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_str 0x000a0367 0x562 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_str 0x000a0367 0x4fa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_str 0x000a0367 0x5a0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_str 0x000a0367 0x55b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_str 0x000a0367 0x530 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_str 0x000a0367 0x522 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_str 0x000a0367 0x53a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_str 0x000a0367 0x547 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_str 0x000a0367 0x527 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_str 0x000a0367 0x532 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_str 0x000a0367 0x519 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_str 0x000a0367 0x512 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_str 0x000a0367 0x529 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_str 0x000a0367 0x705 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_str 0x000a0367 0x52b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_str 0x000a0367 0x108 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_str 0x000a0367 0x530 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_str 0x000a0367 0xbe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_str 0x000a0367 0x141 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_str 0x000a0367 0x1b9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_str 0x000a0367 0x253 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_str 0x000a0367 0x2ac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_str 0x000a0367 0x114 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_str 0x000a0367 0x97e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_str 0x000a0367 0x531 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_str 0x000a0367 0x1e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_str 0x000a0367 0x176 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_str 0x000a0367 0x512 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_str 0x000a0367 0x64d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_str 0x000a0367 0x120 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_str 0x000a0367 0x77b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_str 0x000a0367 0x727 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_str 0x000a0367 0x770 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_str 0x000a0367 0x502 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_str 0x000a0367 0x4e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_str 0x000a0367 0x4dc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_str 0x000a0367 0x4e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_str 0x000a0367 0x62e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_str 0x000a0367 0x54c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_str 0x000a0367 0x515 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_str 0x000a0367 0x4e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_str 0x000a0367 0x4ea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_str 0x000a0367 0x125 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_str 0x000a0367 0x12a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_str 0x000a0367 0x172 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_str 0x000a0367 0x227 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_str 0x000a0367 0x89c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_str 0x000a0367 0x558 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_str 0x000a0367 0x8d9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_str 0x000a0367 0x24b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_str 0x000a0367 0x709 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_str 0x000a0367 0x7f7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_str 0x000a0367 0x710 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_str 0x000a0367 0x53d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_str 0x000a0367 0x533 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_str 0x000a0367 0xb84 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_str 0x000a0367 0x963 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_str 0x000a0367 0xc75 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_str 0x000a0367 0x9db /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_str 0x000a0367 0x4dc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_str 0x000a0367 0x674 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_str 0x000a0367 0x11b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_str 0x000a0367 0x582 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_str 0x000a0367 0x194 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_str 0x000a0367 0x775 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_str 0x000a0367 0x709 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_str 0x000a0367 0x122 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_str 0x000a0367 0x6c1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_str 0x000a0367 0x221 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_str 0x000a0367 0x350 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_loc 0x00000000 0x1f4d0e - *(.debug_loc) - .debug_loc 0x00000000 0x115 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_loc 0x00000115 0x7c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_loc 0x00000191 0xb7b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x00000d0c 0x12a0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00001fac 0x39d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00002349 0x118 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_loc 0x00002461 0x3c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_loc 0x0000249d 0x726 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_loc 0x00002bc3 0x187 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_loc 0x00002d4a 0x27 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_loc 0x00002d71 0x80 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_loc 0x00002df1 0x20f esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_loc 0x00003000 0x33f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_loc 0x0000333f 0x50 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_loc 0x0000338f 0x22c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_loc 0x000035bb 0x3c7 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_loc 0x00003982 0x81 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_loc 0x00003a03 0x221 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_loc 0x00003c24 0x71b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_loc 0x0000433f 0x1bb esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_loc 0x000044fa 0x178 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_loc 0x00004672 0x39 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x000046ab 0x1c2 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x0000486d 0xebb esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_loc 0x00005728 0xb96 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_loc 0x000062be 0x2a9 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_loc 0x00006567 0x111 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_loc 0x00006678 0x13 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_loc 0x0000668b 0x195 esp-idf/log/liblog.a(log_write.c.obj) - .debug_loc 0x00006820 0x1d0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_loc 0x000069f0 0x282 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_loc 0x00006c72 0x370 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_loc 0x00006fe2 0x159c esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_loc 0x0000857e 0x835 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_loc 0x00008db3 0xe50 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_loc 0x00009c03 0x85eb esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_loc 0x000121ee 0x3dd esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_loc 0x000125cb 0xbac esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_loc 0x00013177 0x7b4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_loc 0x0001392b 0x12a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_loc 0x00013a55 0x19f3 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_loc 0x00015448 0xc91 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_loc 0x000160d9 0x314 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_loc 0x000163ed 0x339 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_loc 0x00016726 0x3fe esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_loc 0x00016b24 0xcf5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_loc 0x00017819 0x5c9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_loc 0x00017de2 0x2a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_loc 0x00018082 0x5c7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_loc 0x00018649 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_loc 0x000186d5 0x41c4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_loc 0x0001c899 0x2ca esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_loc 0x0001cb63 0x13d esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_loc 0x0001cca0 0x129f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_loc 0x0001df3f 0x35f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_loc 0x0001e29e 0x72 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_loc 0x0001e310 0x2d8a esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_loc 0x0002109a 0x3e6e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_loc 0x00024f08 0x61a esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_loc 0x00025522 0x1d8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_loc 0x000256fa 0x1e6 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_loc 0x000258e0 0x2bd esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_loc 0x00025b9d 0x63 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_loc 0x00025c00 0x74 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_loc 0x00025c74 0x31a esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_loc 0x00025f8e 0x505 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_loc 0x00026493 0x5f2 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_loc 0x00026a85 0x75 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_loc 0x00026afa 0xdd esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_loc 0x00026bd7 0x132 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_loc 0x00026d09 0xaa esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_loc 0x00026db3 0x46a esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_loc 0x0002721d 0x73d esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_loc 0x0002795a 0xd0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_loc 0x00027a2a 0xc9 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_loc 0x00027af3 0x15ba esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_loc 0x000290ad 0x6a7 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_loc 0x00029754 0x4f3 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_loc 0x00029c47 0x53a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_loc 0x0002a181 0x491 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_loc 0x0002a612 0x3dd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_loc 0x0002a9ef 0x1e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_loc 0x0002aa0d 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_loc 0x0002aa35 0x367 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_loc 0x0002ad9c 0x1541 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_loc 0x0002c2dd 0x488d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_loc 0x00030b6a 0x3d esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_loc 0x00030ba7 0xfa7 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_loc 0x00031b4e 0x69b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_loc 0x000321e9 0xd2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_loc 0x000322bb 0x5aa esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_loc 0x00032865 0x4de4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_loc 0x00037649 0x8ab esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_loc 0x00037ef4 0x3ca esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_loc 0x000382be 0x58d esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_loc 0x0003884b 0x3e0 esp-idf/main/libmain.a(app_main.c.obj) - .debug_loc 0x00038c2b 0x20d esp-idf/main/libmain.a(app_driver.c.obj) - .debug_loc 0x00038e38 0xff0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_loc 0x00039e28 0x259e esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_loc 0x0003c3c6 0xa33 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_loc 0x0003cdf9 0xa7b esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_loc 0x0003d874 0xc9f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_loc 0x0003e513 0x19d8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_loc 0x0003feeb 0x915 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_loc 0x00040800 0x6e esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_loc 0x0004086e 0x262 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_loc 0x00040ad0 0x6c2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_loc 0x00041192 0x1125 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_loc 0x000422b7 0xac6 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_loc 0x00042d7d 0x28d esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_loc 0x0004300a 0x27 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_loc 0x00043031 0xa32 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_loc 0x00043a63 0x8fb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_loc 0x0004435e 0x449 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_loc 0x000447a7 0xad esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_loc 0x00044854 0xef9 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_loc 0x0004574d 0x2eb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_loc 0x00045a38 0x97f esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_loc 0x000463b7 0x818 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_loc 0x00046bcf 0x318 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_loc 0x00046ee7 0x4d2 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_loc 0x000473b9 0x2d8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_loc 0x00047691 0x780 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_loc 0x00047e11 0x3f3 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_loc 0x00048204 0x6bf esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_loc 0x000488c3 0x542 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_loc 0x00048e05 0xd71 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_loc 0x00049b76 0x1e3 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_loc 0x00049d59 0x46d esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_loc 0x0004a1c6 0x5be esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_loc 0x0004a784 0x8cc esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_loc 0x0004b050 0x790 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_loc 0x0004b7e0 0x1680 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_loc 0x0004ce60 0x216 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_loc 0x0004d076 0x965 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_loc 0x0004d9db 0xe34 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_loc 0x0004e80f 0x12516 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_loc 0x00060d25 0x1f8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_loc 0x00060f1d 0x8c6 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_loc 0x000617e3 0x30a6 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_loc 0x00064889 0xde7 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_loc 0x00065670 0x2dc esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_loc 0x0006594c 0x173e esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_loc 0x0006708a 0x4e7 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_loc 0x00067571 0x7d4 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_loc 0x00067d45 0x9ce esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_loc 0x00068713 0xaa5 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_loc 0x000691b8 0x7ab esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_loc 0x00069963 0x2080 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_loc 0x0006b9e3 0x2580 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_loc 0x0006df63 0x1680 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_loc 0x0006f5e3 0x500 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_loc 0x0006fae3 0x11a4 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_loc 0x00070c87 0x68d esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_loc 0x00071314 0x2e1 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_loc 0x000715f5 0x1616 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_loc 0x00072c0b 0x153c esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_loc 0x00074147 0x12ed esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_loc 0x00075434 0x6f5 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_loc 0x00075b29 0x1017 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_loc 0x00076b40 0x780 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_loc 0x000772c0 0xc80 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_loc 0x00077f40 0xc80 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_loc 0x00078bc0 0x280 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_loc 0x00078e40 0x1920 esp-idf/bt/libbt.a(bt.c.obj) - .debug_loc 0x0007a760 0xd5 esp-idf/bt/libbt.a(addr.c.obj) - .debug_loc 0x0007a835 0x2c4 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_loc 0x0007aaf9 0x50b esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_loc 0x0007b004 0x5df esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_loc 0x0007b5e3 0xa41 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_loc 0x0007c024 0x19ff esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_loc 0x0007da23 0x326 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_loc 0x0007dd49 0x8a2 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_loc 0x0007e5eb 0x7ae3 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_loc 0x000860ce 0x118c esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_loc 0x0008725a 0x2225 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_loc 0x0008947f 0x282 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_loc 0x00089701 0x1b6b esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_loc 0x0008b26c 0x70 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_loc 0x0008b2dc 0x2d8 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_loc 0x0008b5b4 0xcd4 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_loc 0x0008c288 0x4ff4 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_loc 0x0009127c 0xc3e esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_loc 0x00091eba 0x43e esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_loc 0x000922f8 0xd21 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_loc 0x00093019 0x39c esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_loc 0x000933b5 0x369d esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_loc 0x00096a52 0x1ba1 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_loc 0x000985f3 0xcbf esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_loc 0x000992b2 0x890 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_loc 0x00099b42 0x16f7 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_loc 0x0009b239 0x2fb esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_loc 0x0009b534 0x4e esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_loc 0x0009b582 0x52b esp-idf/bt/libbt.a(endian.c.obj) - .debug_loc 0x0009baad 0xabd esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_loc 0x0009c56a 0x929 esp-idf/bt/libbt.a(mem.c.obj) - .debug_loc 0x0009ce93 0x1e21 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_loc 0x0009ecb4 0x129 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_loc 0x0009eddd 0x156c esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_loc 0x000a0349 0x547 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_loc 0x000a0890 0x4e esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_loc 0x000a08de 0x151 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_loc 0x000a0a2f 0x2bc esp-idf/bt/libbt.a(transport.c.obj) - .debug_loc 0x000a0ceb 0x781 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_loc 0x000a146c 0x32bd esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_loc 0x000a4729 0x362 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_loc 0x000a4a8b 0x27a esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_loc 0x000a4d05 0x4f27 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_loc 0x000a9c2c 0x2bd esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_loc 0x000a9ee9 0xf9a esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_loc 0x000aae83 0x4e8 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_loc 0x000ab36b 0x4ee esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_loc 0x000ab859 0x14c esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_loc 0x000ab9a5 0x1155 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_loc 0x000acafa 0x7d8e esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_loc 0x000b4888 0x4a49 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_loc 0x000b92d1 0x28e esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_loc 0x000b955f 0x3936 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_loc 0x000bce95 0x13e esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_loc 0x000bcfd3 0x1e9 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_loc 0x000bd1bc 0x4a5 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_loc 0x000bd661 0x132 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_loc 0x000bd793 0x3e9 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_loc 0x000bdb7c 0x10d esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_loc 0x000bdc89 0xd3d esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_loc 0x000be9c6 0x2a8 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_loc 0x000bec6e 0x687 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_loc 0x000bf2f5 0x788 esp-idf/console/libconsole.a(commands.c.obj) - .debug_loc 0x000bfa7d 0x2da esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_loc 0x000bfd57 0x49c esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_loc 0x000c01f3 0x33a esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_loc 0x000c052d 0x945 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_loc 0x000c0e72 0x520 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_loc 0x000c1392 0x5b6 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_loc 0x000c1948 0x2040 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_loc 0x000c3988 0x2b5c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_loc 0x000c64e4 0x1514 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_loc 0x000c79f8 0x88e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_loc 0x000c8286 0x5b esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_loc 0x000c82e1 0x8c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_loc 0x000c836d 0x1fb esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_loc 0x000c8568 0x2724 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_loc 0x000cac8c 0x27 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_loc 0x000cacb3 0xa62 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_loc 0x000cb715 0x14c2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_loc 0x000ccbd7 0x119d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_loc 0x000cdd74 0xeb8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_loc 0x000cec2c 0x1a1 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x000cedcd 0x5bb esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_loc 0x000cf388 0x29f esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_loc 0x000cf627 0x1150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_loc 0x000d0777 0x4a0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_loc 0x000d0c17 0x1046 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_loc 0x000d1c5d 0x1a46 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_loc 0x000d36a3 0x23d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_loc 0x000d38e0 0x24b8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_loc 0x000d5d98 0x15e esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_loc 0x000d5ef6 0x1124 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_loc 0x000d701a 0x109 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_loc 0x000d7123 0xda7 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_loc 0x000d7eca 0x144 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_loc 0x000d800e 0x1d4c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_loc 0x000d9d5a 0x7da esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_loc 0x000da534 0x8ae esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_loc 0x000dade2 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_loc 0x000daecc 0x17e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_loc 0x000dc6ac 0x19a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_loc 0x000dc846 0x149 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_loc 0x000dc98f 0x2c7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_loc 0x000dcc56 0x845 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_loc 0x000dd49b 0x11a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_loc 0x000dd5b5 0x11a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_loc 0x000dd6cf 0x8b7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_loc 0x000ddf86 0x394 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_loc 0x000de31a 0x237 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_loc 0x000de551 0x45e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_loc 0x000de9af 0xb5 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_loc 0x000dea64 0xeb3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_loc 0x000df917 0x55e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_loc 0x000dfe75 0x45 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_loc 0x000dfeba 0x1043 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_loc 0x000e0efd 0x3cb esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_loc 0x000e12c8 0x1676 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_loc 0x000e293e 0x20a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_loc 0x000e2b48 0x305 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_loc 0x000e2e4d 0xb4b esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_loc 0x000e3998 0xdb8 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_loc 0x000e4750 0x30b esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_loc 0x000e4a5b 0xc0e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_loc 0x000e5669 0x73b esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_loc 0x000e5da4 0x30f esp-idf/log/liblog.a(util.c.obj) - .debug_loc 0x000e60b3 0x107 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_loc 0x000e61ba 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_loc 0x000e6262 0x7e7 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_loc 0x000e6a49 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_loc 0x000e6ad9 0x146 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_loc 0x000e6c1f 0x466 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_loc 0x000e7085 0x1707 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_loc 0x000e878c 0x24a esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_loc 0x000e89d6 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_loc 0x000e8a26 0x1612 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_loc 0x000ea038 0xe22 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_loc 0x000eae5a 0x87d esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_loc 0x000eb6d7 0x52f7 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_loc 0x000f09ce 0x1007 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_loc 0x000f19d5 0x337 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_loc 0x000f1d0c 0x42ac esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_loc 0x000f5fb8 0x608 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_loc 0x000f65c0 0x2963 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_loc 0x000f8f23 0x379d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_loc 0x000fc6c0 0x2e85 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_loc 0x000ff545 0xd61 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_loc 0x001002a6 0x4fe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_loc 0x001007a4 0xe3d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_loc 0x001015e1 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_loc 0x0010162f 0x5ac esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_loc 0x00101bdb 0x391a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_loc 0x001054f5 0xd41 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_loc 0x00106236 0x1fb esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_loc 0x00106431 0x30d esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_loc 0x0010673e 0x62f1 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_loc 0x0010ca2f 0x4e0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_loc 0x0010cf0f 0x4bd esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_loc 0x0010d3cc 0x4e2 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_loc 0x0010d8ae 0x5d7f esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_loc 0x0011362d 0x8b6 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_loc 0x00113ee3 0x5d8 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_loc 0x001144bb 0x60e esp-idf/lwip/liblwip.a(def.c.obj) - .debug_loc 0x00114ac9 0x1fe4 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_loc 0x00116aad 0x278 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_loc 0x00116d25 0x116 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_loc 0x00116e3b 0x2e9 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_loc 0x00117124 0x1e78 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_loc 0x00118f9c 0x2150 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_loc 0x0011b0ec 0xbe6 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_loc 0x0011bcd2 0x209c esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_loc 0x0011dd6e 0xe7a esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_loc 0x0011ebe8 0x29ef esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_loc 0x001215d7 0x469 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_loc 0x00121a40 0x117d esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_loc 0x00122bbd 0x1fc2 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_loc 0x00124b7f 0x1821 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_loc 0x001263a0 0x2fa esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_loc 0x0012669a 0xb22 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_loc 0x001271bc 0xf78 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_loc 0x00128134 0x62b esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_loc 0x0012875f 0x2b7 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_loc 0x00128a16 0x8f9 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_loc 0x0012930f 0x146f esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_loc 0x0012a77e 0x708 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_loc 0x0012ae86 0x278 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_loc 0x0012b0fe 0x7ee esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_loc 0x0012b8ec 0x2505 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_loc 0x0012ddf1 0x20d esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_loc 0x0012dffe 0x1f9 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_loc 0x0012e1f7 0x44d esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_loc 0x0012e644 0x58f esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_loc 0x0012ebd3 0xba7 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_loc 0x0012f77a 0x434 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_loc 0x0012fbae 0x20d esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_loc 0x0012fdbb 0x1a7f esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_loc 0x0013183a 0x25bb esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_loc 0x00133df5 0x54 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_loc 0x00133e49 0x33e esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_loc 0x00134187 0xf01 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_loc 0x00135088 0x264 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_loc 0x001352ec 0x46aa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_loc 0x00139996 0x111 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_loc 0x00139aa7 0x26a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_loc 0x0013c14d 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_loc 0x0013c2ab 0x12e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_loc 0x0013d58e 0x105f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_loc 0x0013e5ed 0x1481 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_loc 0x0013fa6e 0x929 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_loc 0x00140397 0xf7b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_loc 0x00141312 0x113 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_loc 0x00141425 0xd20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_loc 0x00142145 0x7ab esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_loc 0x001428f0 0x13d4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_loc 0x00143cc4 0x3871 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_loc 0x00147535 0x1dc3 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_loc 0x001492f8 0x160 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_loc 0x00149458 0x110f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_loc 0x0014a567 0xd1c esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_loc 0x0014b283 0x198c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_loc 0x0014cc0f 0x96 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_loc 0x0014cca5 0x23b4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_loc 0x0014f059 0x2589 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_loc 0x001515e2 0x66c esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_loc 0x00151c4e 0x98d esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_loc 0x001525db 0x818 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_loc 0x00152df3 0x12b8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_loc 0x001540ab 0x1d14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_loc 0x00155dbf 0xcf9 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_loc 0x00156ab8 0x1e10 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_loc 0x001588c8 0x7f2 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_loc 0x001590ba 0x459 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_loc 0x00159513 0xfe1 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_loc 0x0015a4f4 0x3f9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_loc 0x0015a8ed 0x307e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_loc 0x0015d96b 0x7e5f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_loc 0x001657ca 0x481 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_loc 0x00165c4b 0x4cd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_loc 0x00166118 0x640 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_loc 0x00166758 0x117d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_loc 0x001678d5 0x1d3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_loc 0x00169613 0x33ea esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_loc 0x0016c9fd 0x3a7b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_loc 0x00170478 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_loc 0x001704c1 0x9e4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_loc 0x00170ea5 0x4147 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_loc 0x00174fec 0x35b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_loc 0x0017859d 0x3174 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_loc 0x0017b711 0x10ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_loc 0x0017c7fd 0x701 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_loc 0x0017cefe 0x152e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_loc 0x0017e42c 0x11d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_loc 0x0017f601 0x172d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_loc 0x00180d2e 0x1b7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_loc 0x001828a9 0x5c3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_loc 0x001884e7 0x5263 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_loc 0x0018d74a 0xc1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_loc 0x0018e364 0xddb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_loc 0x0018f13f 0x1821 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_loc 0x00190960 0x189 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_loc 0x00190ae9 0x2761 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_loc 0x0019324a 0x390 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_loc 0x001935da 0x13bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_loc 0x00194996 0x24a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_loc 0x00196e38 0xeeb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_loc 0x00197d23 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_loc 0x00197de1 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_loc 0x00197e9e 0x6af0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_loc 0x0019e98e 0xa6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_loc 0x0019f3fd 0x222 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_loc 0x0019f61f 0x3ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_loc 0x0019f9cb 0xc2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_loc 0x001a05f7 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_loc 0x001a06bf 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_loc 0x001a0734 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_loc 0x001a0ce4 0x167 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_loc 0x001a0e4b 0x124e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_loc 0x001a2099 0x263 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_loc 0x001a22fc 0x70d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_loc 0x001a2a09 0xf30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_loc 0x001a3939 0x489 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_loc 0x001a3dc2 0x61a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_loc 0x001a43dc 0x5cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_loc 0x001a49a9 0x1a22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_loc 0x001a63cb 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_loc 0x001a65c3 0x15d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_loc 0x001a7b94 0xf78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_loc 0x001a8b0c 0x1599 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_loc 0x001aa0a5 0x18f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_loc 0x001ab99c 0x1feb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_loc 0x001ad987 0x148a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_loc 0x001aee11 0x1054 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_loc 0x001afe65 0x125a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_loc 0x001b10bf 0xd1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_loc 0x001b1dd9 0xe49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_loc 0x001b2c22 0x9a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_loc 0x001b35c4 0x10ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_loc 0x001b467e 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_loc 0x001b46a5 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_loc 0x001b471a 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_loc 0x001b49ad 0x50a7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_loc 0x001b9a54 0x877 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_loc 0x001ba2cb 0x3fdf esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_loc 0x001be2aa 0x122c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_loc 0x001bf4d6 0x4e6 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_loc 0x001bf9bc 0x30a esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_loc 0x001bfcc6 0xbf5 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_loc 0x001c08bb 0x372 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_loc 0x001c0c2d 0x5d7 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_loc 0x001c1204 0x2ba esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_loc 0x001c14be 0x23a esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_loc 0x001c16f8 0x817 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_loc 0x001c1f0f 0x2267 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_loc 0x001c4176 0xb02 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_loc 0x001c4c78 0x1f58 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_loc 0x001c6bd0 0x6d1 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_loc 0x001c72a1 0x417 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_loc 0x001c76b8 0x1a8 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_loc 0x001c7860 0xafa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_loc 0x001c835a 0x6c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_loc 0x001c8a1c 0x2aec esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_loc 0x001cb508 0x10e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_loc 0x001cc5ee 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_loc 0x001cc65d 0x9f5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_loc 0x001cd052 0x34dd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_loc 0x001d052f 0xd56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_loc 0x001d1285 0x61a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_loc 0x001d189f 0x330b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_loc 0x001d4baa 0x13b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_loc 0x001d5f63 0xd64 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_loc 0x001d6cc7 0x501 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_loc 0x001d71c8 0x1b2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_loc 0x001d8cf5 0x609 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_loc 0x001d92fe 0x6e56 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_loc 0x001e0154 0xa57 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_loc 0x001e0bab 0x2a1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_loc 0x001e35c8 0x24b esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_loc 0x001e3813 0x21e esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_loc 0x001e3a31 0x422 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_loc 0x001e3e53 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_loc 0x001e405b 0x4f26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_loc 0x001e8f81 0x113a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_loc 0x001ea0bb 0x765 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_loc 0x001ea820 0x1b1f esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_loc 0x001ec33f 0x19a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_loc 0x001edce3 0x66e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_loc 0x001ee351 0xfb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_loc 0x001ef306 0x1f3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_loc 0x001ef4f9 0x21b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_loc 0x001ef714 0x233 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_loc 0x001ef947 0x9b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_loc 0x001f02fd 0xcf5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_loc 0x001f0ff2 0xde8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_loc 0x001f1dda 0x11a esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_loc 0x001f1ef4 0x246 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_loc 0x001f213a 0x299 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_loc 0x001f23d3 0x9c0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_loc 0x001f2d93 0x146b esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_loc 0x001f41fe 0x28b esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_loc 0x001f4489 0xd3 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_loc 0x001f455c 0x666 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_loc 0x001f4bc2 0x14c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - -.debug_macinfo - *(.debug_macinfo) - -.debug_pubtypes - *(.debug_pubtypes) - -.debug_ranges 0x00000000 0x1ea28 - *(.debug_ranges) - .debug_ranges 0x00000000 0x88 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_ranges 0x00000088 0x60 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_ranges 0x000000e8 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x00000190 0x188 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000318 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x000003f8 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_ranges 0x00000430 0x48 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_ranges 0x00000478 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_ranges 0x00000520 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_ranges 0x00000550 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_ranges 0x00000580 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_ranges 0x000005d8 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_ranges 0x00000608 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_ranges 0x00000638 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_ranges 0x00000668 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_ranges 0x000006a8 0x20 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_ranges 0x000006c8 0x90 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_ranges 0x00000758 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_ranges 0x00000788 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_ranges 0x000007d0 0xb0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_ranges 0x00000880 0x58 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_ranges 0x000008d8 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_ranges 0x000008f0 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00000928 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x000009a0 0x78 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_ranges 0x00000a18 0x100 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_ranges 0x00000b18 0x60 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_ranges 0x00000b78 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_ranges 0x00000b90 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_ranges 0x00000ba8 0x20 esp-idf/log/liblog.a(log_write.c.obj) - .debug_ranges 0x00000bc8 0x10 esp-idf/log/liblog.a(log_level.c.obj) - .debug_ranges 0x00000bd8 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) - .debug_ranges 0x00000c08 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) - .debug_ranges 0x00000c38 0x58 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .debug_ranges 0x00000c90 0x20 esp-idf/log/liblog.a(log_lock.c.obj) - .debug_ranges 0x00000cb0 0x268 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_ranges 0x00000f18 0x108 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_ranges 0x00001020 0xf0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_ranges 0x00001110 0x1008 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_ranges 0x00002118 0x70 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_ranges 0x00002188 0x110 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_ranges 0x00002298 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_ranges 0x000022b0 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_ranges 0x00002390 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_ranges 0x00002400 0x210 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_ranges 0x00002610 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_ranges 0x000026b8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_ranges 0x00002700 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_ranges 0x000027b0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_ranges 0x00002808 0x270 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_ranges 0x00002a78 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_ranges 0x00002ae0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_ranges 0x00002b20 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_ranges 0x00002b78 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_ranges 0x00002bd8 0x498 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_ranges 0x00003070 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_ranges 0x00003098 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_ranges 0x000030b0 0x3b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_ranges 0x00003468 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_ranges 0x000034b8 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_ranges 0x000034e8 0x2d8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_ranges 0x000037c0 0x6f0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_ranges 0x00003eb0 0xe8 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_ranges 0x00003f98 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_ranges 0x00003fd8 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_ranges 0x00003ff0 0x90 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_ranges 0x00004080 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_ranges 0x000040b0 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_ranges 0x000040d8 0x60 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_ranges 0x00004138 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_ranges 0x000041c8 0x110 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_ranges 0x000042d8 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_ranges 0x00004300 0x18 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_ranges 0x00004318 0x78 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_ranges 0x00004390 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_ranges 0x000043d0 0x68 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_ranges 0x00004438 0xa0 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_ranges 0x000044d8 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_ranges 0x00004518 0x10 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_ranges 0x00004528 0x1c8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_ranges 0x000046f0 0x90 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_ranges 0x00004780 0x90 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_ranges 0x00004810 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_ranges 0x00004868 0x60 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_ranges 0x000048c8 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_ranges 0x00004950 0x18 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_ranges 0x00004968 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_ranges 0x00004988 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_ranges 0x000049a8 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_ranges 0x000049d0 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_ranges 0x00004a60 0x298 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_ranges 0x00004cf8 0x458 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_ranges 0x00005150 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_ranges 0x00005178 0x1a8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_ranges 0x00005320 0xa0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_ranges 0x000053c0 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_ranges 0x00005400 0x98 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_ranges 0x00005498 0x598 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_ranges 0x00005a30 0x90 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_ranges 0x00005ac0 0x98 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .debug_ranges 0x00005b58 0x60 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .debug_ranges 0x00005bb8 0x68 esp-idf/main/libmain.a(app_main.c.obj) - .debug_ranges 0x00005c20 0x48 esp-idf/main/libmain.a(app_driver.c.obj) - .debug_ranges 0x00005c68 0xc8 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .debug_ranges 0x00005d30 0x218 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .debug_ranges 0x00005f48 0xe0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .debug_ranges 0x00006028 0x80 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .debug_ranges 0x000060a8 0x90 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .debug_ranges 0x00006138 0x2b0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .debug_ranges 0x000063e8 0x70 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .debug_ranges 0x00006458 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .debug_ranges 0x000064a0 0x20 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .debug_ranges 0x000064c0 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .debug_ranges 0x00006558 0x160 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .debug_ranges 0x000066b8 0xa0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .debug_ranges 0x00006758 0x68 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .debug_ranges 0x000067c0 0x18 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .debug_ranges 0x000067d8 0x130 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .debug_ranges 0x00006908 0x100 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .debug_ranges 0x00006a08 0xa0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .debug_ranges 0x00006aa8 0x48 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .debug_ranges 0x00006af0 0x138 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .debug_ranges 0x00006c28 0x28 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .debug_ranges 0x00006c50 0x78 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .debug_ranges 0x00006cc8 0xb8 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .debug_ranges 0x00006d80 0x28 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .debug_ranges 0x00006da8 0x38 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .debug_ranges 0x00006de0 0x10 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .debug_ranges 0x00006df0 0x60 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .debug_ranges 0x00006e50 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .debug_ranges 0x00006ee8 0x98 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .debug_ranges 0x00006f80 0x10 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .debug_ranges 0x00006f90 0xc8 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .debug_ranges 0x00007058 0xd0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .debug_ranges 0x00007128 0x88 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .debug_ranges 0x000071b0 0x38 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .debug_ranges 0x000071e8 0x30 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .debug_ranges 0x00007218 0x50 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .debug_ranges 0x00007268 0xa0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .debug_ranges 0x00007308 0x60 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .debug_ranges 0x00007368 0x1b8 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .debug_ranges 0x00007520 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .debug_ranges 0x00007550 0x70 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_ranges 0x000075c0 0x140 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .debug_ranges 0x00007700 0xf08 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .debug_ranges 0x00008608 0x40 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .debug_ranges 0x00008648 0xd8 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .debug_ranges 0x00008720 0x270 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .debug_ranges 0x00008990 0xc8 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .debug_ranges 0x00008a58 0x60 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .debug_ranges 0x00008ab8 0x1f8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .debug_ranges 0x00008cb0 0x78 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .debug_ranges 0x00008d28 0x88 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .debug_ranges 0x00008db0 0xd0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .debug_ranges 0x00008e80 0xe0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .debug_ranges 0x00008f60 0x98 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .debug_ranges 0x00008ff8 0x278 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .debug_ranges 0x00009270 0x2d8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .debug_ranges 0x00009548 0x1b8 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .debug_ranges 0x00009700 0x68 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .debug_ranges 0x00009768 0xd0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .debug_ranges 0x00009838 0x50 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .debug_ranges 0x00009888 0x20 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .debug_ranges 0x000098a8 0x60 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .debug_ranges 0x00009908 0x60 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .debug_ranges 0x00009968 0x80 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .debug_ranges 0x000099e8 0x70 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .debug_ranges 0x00009a58 0x118 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .debug_ranges 0x00009b70 0x98 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .debug_ranges 0x00009c08 0xf8 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .debug_ranges 0x00009d00 0xf8 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .debug_ranges 0x00009df8 0x38 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .debug_ranges 0x00009e30 0x2f0 esp-idf/bt/libbt.a(bt.c.obj) - .debug_ranges 0x0000a120 0x20 esp-idf/bt/libbt.a(addr.c.obj) - .debug_ranges 0x0000a140 0x68 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .debug_ranges 0x0000a1a8 0x50 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .debug_ranges 0x0000a1f8 0x60 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .debug_ranges 0x0000a258 0x148 esp-idf/bt/libbt.a(ble_hs.c.obj) - .debug_ranges 0x0000a3a0 0x128 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .debug_ranges 0x0000a4c8 0x28 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .debug_ranges 0x0000a4f0 0xb8 esp-idf/bt/libbt.a(ble_att.c.obj) - .debug_ranges 0x0000a5a8 0x5f8 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .debug_ranges 0x0000aba0 0x118 esp-idf/bt/libbt.a(ble_store.c.obj) - .debug_ranges 0x0000acb8 0x110 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .debug_ranges 0x0000adc8 0x48 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .debug_ranges 0x0000ae10 0x1a8 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .debug_ranges 0x0000afb8 0x18 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .debug_ranges 0x0000afd0 0x68 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .debug_ranges 0x0000b038 0xb8 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .debug_ranges 0x0000b0f0 0x538 esp-idf/bt/libbt.a(ble_gap.c.obj) - .debug_ranges 0x0000b628 0xc8 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .debug_ranges 0x0000b6f0 0x80 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .debug_ranges 0x0000b770 0x38 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .debug_ranges 0x0000b7a8 0xb8 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .debug_ranges 0x0000b860 0x38 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .debug_ranges 0x0000b898 0x238 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .debug_ranges 0x0000bad0 0xb0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .debug_ranges 0x0000bb80 0x120 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .debug_ranges 0x0000bca0 0x90 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .debug_ranges 0x0000bd30 0x120 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .debug_ranges 0x0000be50 0x50 esp-idf/bt/libbt.a(nimble_port.c.obj) - .debug_ranges 0x0000bea0 0x28 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .debug_ranges 0x0000bec8 0x98 esp-idf/bt/libbt.a(endian.c.obj) - .debug_ranges 0x0000bf60 0x70 esp-idf/bt/libbt.a(os_mempool.c.obj) - .debug_ranges 0x0000bfd0 0x48 esp-idf/bt/libbt.a(mem.c.obj) - .debug_ranges 0x0000c018 0x160 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .debug_ranges 0x0000c178 0x28 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .debug_ranges 0x0000c1a0 0x198 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .debug_ranges 0x0000c338 0x80 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .debug_ranges 0x0000c3b8 0x28 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .debug_ranges 0x0000c3e0 0x30 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .debug_ranges 0x0000c410 0x80 esp-idf/bt/libbt.a(transport.c.obj) - .debug_ranges 0x0000c490 0xb0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .debug_ranges 0x0000c540 0x290 esp-idf/bt/libbt.a(ble_sm.c.obj) - .debug_ranges 0x0000c7d0 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .debug_ranges 0x0000c800 0x20 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .debug_ranges 0x0000c820 0x240 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .debug_ranges 0x0000ca60 0x30 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .debug_ranges 0x0000ca90 0x80 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .debug_ranges 0x0000cb10 0x50 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .debug_ranges 0x0000cb60 0x30 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .debug_ranges 0x0000cb90 0x18 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .debug_ranges 0x0000cba8 0xc8 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .debug_ranges 0x0000cc70 0x870 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .debug_ranges 0x0000d4e0 0x480 esp-idf/json/libjson.a(cJSON.c.obj) - .debug_ranges 0x0000d960 0x30 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .debug_ranges 0x0000d990 0x610 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .debug_ranges 0x0000dfa0 0x40 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .debug_ranges 0x0000dfe0 0x28 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .debug_ranges 0x0000e008 0x78 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .debug_ranges 0x0000e080 0x38 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .debug_ranges 0x0000e0b8 0x50 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .debug_ranges 0x0000e108 0x20 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .debug_ranges 0x0000e128 0x160 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .debug_ranges 0x0000e288 0x48 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .debug_ranges 0x0000e2d0 0x78 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .debug_ranges 0x0000e348 0x90 esp-idf/console/libconsole.a(commands.c.obj) - .debug_ranges 0x0000e3d8 0x40 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_ranges 0x0000e418 0x70 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .debug_ranges 0x0000e488 0x30 esp-idf/console/libconsole.a(arg_end.c.obj) - .debug_ranges 0x0000e4b8 0xc8 esp-idf/console/libconsole.a(arg_int.c.obj) - .debug_ranges 0x0000e580 0x40 esp-idf/console/libconsole.a(arg_str.c.obj) - .debug_ranges 0x0000e5c0 0x50 esp-idf/console/libconsole.a(arg_utils.c.obj) - .debug_ranges 0x0000e610 0x228 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_ranges 0x0000e838 0x340 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .debug_ranges 0x0000eb78 0x120 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .debug_ranges 0x0000ec98 0xf8 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .debug_ranges 0x0000ed90 0x20 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .debug_ranges 0x0000edb0 0x10 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_ranges 0x0000edc0 0x48 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_ranges 0x0000ee08 0x2e8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_ranges 0x0000f0f0 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_ranges 0x0000f100 0x100 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .debug_ranges 0x0000f200 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_ranges 0x0000f368 0x110 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_ranges 0x0000f478 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_ranges 0x0000f4f8 0x40 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x0000f538 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_ranges 0x0000f5c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x0000f5d8 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_ranges 0x0000f650 0x198 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_ranges 0x0000f7e8 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_ranges 0x0000f850 0x1c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_ranges 0x0000fa18 0x108 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_ranges 0x0000fb20 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_ranges 0x0000fb58 0x278 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_ranges 0x0000fdd0 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_ranges 0x0000fde0 0x78 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .debug_ranges 0x0000fe58 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_ranges 0x0000fe78 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_ranges 0x0000fee0 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_ranges 0x0000ffe0 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_ranges 0x00010040 0x1f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_ranges 0x00010238 0xd8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_ranges 0x00010310 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_ranges 0x000103c8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_ranges 0x000103f8 0x180 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_ranges 0x00010578 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_ranges 0x000105a0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_ranges 0x000105c0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_ranges 0x000105f8 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_ranges 0x00010660 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_ranges 0x00010678 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_ranges 0x00010690 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_ranges 0x000106f8 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_ranges 0x00010718 0x60 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_ranges 0x00010778 0xa0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_ranges 0x00010818 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_ranges 0x00010838 0x190 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_ranges 0x000109c8 0xa0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_ranges 0x00010a68 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_ranges 0x00010a78 0xf8 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_ranges 0x00010b70 0x40 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_ranges 0x00010bb0 0x288 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_ranges 0x00010e38 0x40 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_ranges 0x00010e78 0xc8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_ranges 0x00010f40 0xb0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_ranges 0x00010ff0 0x1a0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_ranges 0x00011190 0x38 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_ranges 0x000111c8 0xf0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_ranges 0x000112b8 0x58 esp-idf/log/liblog.a(log_buffers.c.obj) - .debug_ranges 0x00011310 0x20 esp-idf/log/liblog.a(util.c.obj) - .debug_ranges 0x00011330 0x48 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_ranges 0x00011378 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_ranges 0x00011398 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_ranges 0x000113a8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_ranges 0x000113c8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_ranges 0x000113f8 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_ranges 0x00011498 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_ranges 0x000114b8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_ranges 0x000114f0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_ranges 0x00011508 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_ranges 0x00011648 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_ranges 0x00011698 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_ranges 0x000116b0 0x100 esp-idf/freertos/libfreertos.a(timers.c.obj) - .debug_ranges 0x000117b0 0xd0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_ranges 0x00011880 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_ranges 0x000118d8 0x420 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_ranges 0x00011cf8 0x1e8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_ranges 0x00011ee0 0x78 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_ranges 0x00011f58 0x1b8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_ranges 0x00012110 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_ranges 0x00012158 0x2e8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_ranges 0x00012440 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_ranges 0x00012778 0x3c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_ranges 0x00012b40 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_ranges 0x00012bf8 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_ranges 0x00012c60 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_ranges 0x00012d40 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_ranges 0x00012d68 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_ranges 0x00012e48 0x480 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_ranges 0x000132c8 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_ranges 0x00013410 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_ranges 0x00013428 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_ranges 0x00013488 0x4c0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .debug_ranges 0x00013948 0x130 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .debug_ranges 0x00013a78 0x110 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_ranges 0x00013b88 0xe0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_ranges 0x00013c68 0x508 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_ranges 0x00014170 0x98 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_ranges 0x00014208 0x98 esp-idf/lwip/liblwip.a(sntp.c.obj) - .debug_ranges 0x000142a0 0x70 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_ranges 0x00014310 0x188 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_ranges 0x00014498 0x10 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_ranges 0x000144a8 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_ranges 0x000144d0 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_ranges 0x00014500 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_ranges 0x00014548 0x1a8 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_ranges 0x000146f0 0x200 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_ranges 0x000148f0 0x98 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_ranges 0x00014988 0x328 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_ranges 0x00014cb0 0x1d0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_ranges 0x00014e80 0x148 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_ranges 0x00014fc8 0x78 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_ranges 0x00015040 0xa8 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_ranges 0x000150e8 0x1b0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_ranges 0x00015298 0x148 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_ranges 0x000153e0 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_ranges 0x00015438 0xd0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_ranges 0x00015508 0xe0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_ranges 0x000155e8 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_ranges 0x00015620 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_ranges 0x00015630 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_ranges 0x00015680 0xf8 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_ranges 0x00015778 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_ranges 0x00015798 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_ranges 0x000157a8 0xc8 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_ranges 0x00015870 0x200 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_ranges 0x00015a70 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_ranges 0x00015a88 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .debug_ranges 0x00015aa0 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .debug_ranges 0x00015ad0 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .debug_ranges 0x00015ae8 0x130 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_ranges 0x00015c18 0x50 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .debug_ranges 0x00015c68 0x58 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_ranges 0x00015cc0 0x188 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_ranges 0x00015e48 0x200 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_ranges 0x00016048 0x10 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_ranges 0x00016058 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_ranges 0x000160a8 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_ranges 0x00016108 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_ranges 0x00016148 0x500 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_ranges 0x00016648 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_ranges 0x00016658 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_ranges 0x00016798 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_ranges 0x000167c8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_ranges 0x00016810 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .debug_ranges 0x00016890 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_ranges 0x000169d0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .debug_ranges 0x00016a40 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_ranges 0x00016a90 0x78 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_ranges 0x00016b08 0x218 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_ranges 0x00016d20 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_ranges 0x00016d80 0x250 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_ranges 0x00016fd0 0x180 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .debug_ranges 0x00017150 0x1b0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_ranges 0x00017300 0x68 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .debug_ranges 0x00017368 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .debug_ranges 0x00017378 0x138 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_ranges 0x000174b0 0xf8 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .debug_ranges 0x000175a8 0x238 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .debug_ranges 0x000177e0 0x20 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .debug_ranges 0x00017800 0x268 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .debug_ranges 0x00017a68 0x350 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .debug_ranges 0x00017db8 0x28 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .debug_ranges 0x00017de0 0x80 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .debug_ranges 0x00017e60 0xa0 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .debug_ranges 0x00017f00 0xc0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_ranges 0x00017fc0 0x190 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_ranges 0x00018150 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_ranges 0x00018238 0x110 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_ranges 0x00018348 0x68 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_ranges 0x000183b0 0x28 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_ranges 0x000183d8 0x138 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .debug_ranges 0x00018510 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_ranges 0x00018580 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .debug_ranges 0x00018848 0x610 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_ranges 0x00018e58 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .debug_ranges 0x00018ec0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .debug_ranges 0x00018f10 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .debug_ranges 0x00018ff0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_ranges 0x000190e0 0x128 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .debug_ranges 0x00019208 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .debug_ranges 0x000193b8 0x238 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .debug_ranges 0x000195f0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .debug_ranges 0x00019600 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .debug_ranges 0x00019700 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_ranges 0x00019980 0x230 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .debug_ranges 0x00019bb0 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_ranges 0x00019d78 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_ranges 0x00019e70 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .debug_ranges 0x00019ed8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .debug_ranges 0x00019f90 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_ranges 0x0001a050 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_ranges 0x0001a120 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_ranges 0x0001a1b0 0x2c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_ranges 0x0001a470 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_ranges 0x0001a4f8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_ranges 0x0001a578 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_ranges 0x0001a638 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_ranges 0x0001a6f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_ranges 0x0001a708 0x2f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_ranges 0x0001a9f8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .debug_ranges 0x0001aa80 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_ranges 0x0001ab60 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_ranges 0x0001aca0 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_ranges 0x0001adc8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_ranges 0x0001adf8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_ranges 0x0001ae10 0x218 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_ranges 0x0001b028 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .debug_ranges 0x0001b058 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_ranges 0x0001b070 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_ranges 0x0001b098 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_ranges 0x0001b130 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_ranges 0x0001b140 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_ranges 0x0001b158 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_ranges 0x0001b1b8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_ranges 0x0001b1e0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_ranges 0x0001b250 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .debug_ranges 0x0001b260 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .debug_ranges 0x0001b2d0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_ranges 0x0001b340 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .debug_ranges 0x0001b390 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_ranges 0x0001b3e8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_ranges 0x0001b438 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .debug_ranges 0x0001b4d8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .debug_ranges 0x0001b518 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .debug_ranges 0x0001b5c0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_ranges 0x0001b690 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_ranges 0x0001b758 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_ranges 0x0001b828 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_ranges 0x0001b9c0 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_ranges 0x0001bb30 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_ranges 0x0001bb90 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_ranges 0x0001bbd0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_ranges 0x0001bc18 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_ranges 0x0001bca8 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_ranges 0x0001bd48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_ranges 0x0001bd78 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_ranges 0x0001bd88 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_ranges 0x0001bda0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_ranges 0x0001bdd0 0x270 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_ranges 0x0001c040 0x68 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .debug_ranges 0x0001c0a8 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_ranges 0x0001c288 0x98 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_ranges 0x0001c320 0x58 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_ranges 0x0001c378 0x28 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .debug_ranges 0x0001c3a0 0x198 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_ranges 0x0001c538 0x98 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .debug_ranges 0x0001c5d0 0x90 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_ranges 0x0001c660 0x88 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_ranges 0x0001c6e8 0x60 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .debug_ranges 0x0001c748 0xa0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .debug_ranges 0x0001c7e8 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_ranges 0x0001c998 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .debug_ranges 0x0001c9b0 0x50 esp-idf/lwip/liblwip.a(netdb.c.obj) - .debug_ranges 0x0001ca00 0x100 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_ranges 0x0001cb00 0x80 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_ranges 0x0001cb80 0x40 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .debug_ranges 0x0001cbc0 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .debug_ranges 0x0001cbd8 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_ranges 0x0001cca8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .debug_ranges 0x0001cd38 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .debug_ranges 0x0001cfb0 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_ranges 0x0001d088 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .debug_ranges 0x0001d0a8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_ranges 0x0001d0f8 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .debug_ranges 0x0001d430 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .debug_ranges 0x0001d4d8 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_ranges 0x0001d548 0x230 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_ranges 0x0001d778 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_ranges 0x0001d7c8 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .debug_ranges 0x0001d838 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .debug_ranges 0x0001d898 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .debug_ranges 0x0001d9a8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .debug_ranges 0x0001d9d0 0x2d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_ranges 0x0001dca8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .debug_ranges 0x0001dd28 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_ranges 0x0001de50 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .debug_ranges 0x0001de60 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_ranges 0x0001de80 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .debug_ranges 0x0001de98 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .debug_ranges 0x0001dea8 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_ranges 0x0001e128 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_ranges 0x0001e168 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_ranges 0x0001e1f0 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .debug_ranges 0x0001e298 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .debug_ranges 0x0001e420 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_ranges 0x0001e488 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .debug_ranges 0x0001e558 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_ranges 0x0001e568 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_ranges 0x0001e578 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_ranges 0x0001e588 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .debug_ranges 0x0001e5c8 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .debug_ranges 0x0001e678 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_ranges 0x0001e700 0x18 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .debug_ranges 0x0001e718 0x48 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_ranges 0x0001e760 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .debug_ranges 0x0001e788 0x90 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_ranges 0x0001e818 0xa8 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_ranges 0x0001e8c0 0x60 esp-idf/hal/libhal.a(ds_hal.c.obj) - .debug_ranges 0x0001e920 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_ranges 0x0001e930 0xd8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_ranges 0x0001ea08 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) - -.debug_gnu_pubnames - *(.debug_gnu_pubnames) - -.debug_gnu_pubtypes - *(.debug_gnu_pubtypes) - -.debug_types - *(.debug_types) - -.debug_addr - *(.debug_addr) - -.debug_line_str - 0x00000000 0x3430 - *(.debug_line_str) - .debug_line_str - 0x00000000 0x3430 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - 0x2a1 (size before relaxing) - .debug_line_str - 0x00003430 0x5c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_line_str - 0x00003430 0x2a7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_line_str - 0x00003430 0x3d1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_line_str - 0x00003430 0x3aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_line_str - 0x00003430 0x3c8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_line_str - 0x00003430 0x3e4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_line_str - 0x00003430 0x2a1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_line_str - 0x00003430 0x4d8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_line_str - 0x00003430 0x42f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_line_str - 0x00003430 0x5c3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_line_str - 0x00003430 0x66f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_line_str - 0x00003430 0x2a1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_line_str - 0x00003430 0x4ed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_line_str - 0x00003430 0x48c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_line_str - 0x00003430 0x34b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_line_str - 0x00003430 0x1b4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .debug_line_str - 0x00003430 0x26a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_line_str - 0x00003430 0x2d9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_line_str - 0x00003430 0x2f2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_line_str - 0x00003430 0x3e5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_line_str - 0x00003430 0x368 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_line_str - 0x00003430 0x363 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_line_str - 0x00003430 0x366 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_line_str - 0x00003430 0x2f3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_line_str - 0x00003430 0x2d9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_line_str - 0x00003430 0x2fa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_line_str - 0x00003430 0x1fa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .debug_line_str - 0x00003430 0x410 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_line_str - 0x00003430 0x400 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_line_str - 0x00003430 0x2e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_line_str - 0x00003430 0x2e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_line_str - 0x00003430 0x2e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_line_str - 0x00003430 0x2db /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_line_str - 0x00003430 0x2ee /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_line_str - 0x00003430 0x2d3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_line_str - 0x00003430 0x2f5 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_line_str - 0x00003430 0x2d3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_line_str - 0x00003430 0x2df /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_line_str - 0x00003430 0x2d8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_line_str - 0x00003430 0x2d9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_line_str - 0x00003430 0x2eb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_line_str - 0x00003430 0x2e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_line_str - 0x00003430 0x2ed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_line_str - 0x00003430 0x2ea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_line_str - 0x00003430 0x2db /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_line_str - 0x00003430 0x2e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_line_str - 0x00003430 0x2e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_line_str - 0x00003430 0x2e7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_line_str - 0x00003430 0x2ed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_line_str - 0x00003430 0x383 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_line_str - 0x00003430 0x1fe /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_line_str - 0x00003430 0x2e9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_line_str - 0x00003430 0x1b7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_line_str - 0x00003430 0x2c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_line_str - 0x00003430 0x2c6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_line_str - 0x00003430 0x2df /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_line_str - 0x00003430 0x2df /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_line_str - 0x00003430 0x1ca /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .debug_line_str - 0x00003430 0x3f4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_line_str - 0x00003430 0x345 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_line_str - 0x00003430 0x298 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_line_str - 0x00003430 0x204 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .debug_line_str - 0x00003430 0x2d8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .debug_line_str - 0x00003430 0x376 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_line_str - 0x00003430 0x1f7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .debug_line_str - 0x00003430 0x367 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_line_str - 0x00003430 0x2f9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_line_str - 0x00003430 0x2f6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_line_str - 0x00003430 0x2d4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_line_str - 0x00003430 0x279 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_line_str - 0x00003430 0x287 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .debug_line_str - 0x00003430 0x2eb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_line_str - 0x00003430 0x36d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_line_str - 0x00003430 0x35c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_line_str - 0x00003430 0x2f9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_line_str - 0x00003430 0x2e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_line_str - 0x00003430 0x2eb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_line_str - 0x00003430 0x201 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_line_str - 0x00003430 0x204 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_line_str - 0x00003430 0x2bf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_line_str - 0x00003430 0x225 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_line_str - 0x00003430 0x3c7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_line_str - 0x00003430 0x2dd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_line_str - 0x00003430 0x3e8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_line_str - 0x00003430 0x22b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_line_str - 0x00003430 0x354 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_line_str - 0x00003430 0x3ca /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_line_str - 0x00003430 0x354 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_line_str - 0x00003430 0x2f3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_line_str - 0x00003430 0x402 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_line_str - 0x00003430 0x406 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_line_str - 0x00003430 0x412 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_line_str - 0x00003430 0x40b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_line_str - 0x00003430 0x27f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_line_str - 0x00003430 0x375 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_line_str - 0x00003430 0x201 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_line_str - 0x00003430 0x2f0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_line_str - 0x00003430 0x284 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .debug_line_str - 0x00003430 0x363 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_line_str - 0x00003430 0x348 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_line_str - 0x00003430 0x2cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_line_str - 0x00003430 0x35f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_line_str - 0x00003430 0x1d2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_line_str - 0x00003430 0x1cf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_loclists - 0x00000000 0x15fc4 - *(.debug_loclists) - .debug_loclists - 0x00000000 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_loclists - 0x00000025 0x1cc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_loclists - 0x000001f1 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_loclists - 0x00000216 0x42e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_loclists - 0x00000644 0xea /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_loclists - 0x0000072e 0x33a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_loclists - 0x00000a68 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_loclists - 0x00000a8d 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_loclists - 0x00000ab2 0x13f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_loclists - 0x00000bf1 0xa2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_loclists - 0x00000c93 0x12c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_loclists - 0x00000dbf 0x274 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_loclists - 0x00001033 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_loclists - 0x00001058 0x43 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_loclists - 0x0000109b 0x61 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_loclists - 0x000010fc 0x17 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .debug_loclists - 0x00001113 0x4e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .debug_loclists - 0x00001161 0xcf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .debug_loclists - 0x00001230 0x106a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_loclists - 0x0000229a 0x334 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_loclists - 0x000025ce 0x24a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .debug_loclists - 0x00002818 0x327 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .debug_loclists - 0x00002b3f 0xae1 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_loclists - 0x00003620 0x6c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .debug_loclists - 0x0000368c 0x1ca /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .debug_loclists - 0x00003856 0x2431 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_loclists - 0x00005c87 0x15cc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_loclists - 0x00007253 0x7f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .debug_loclists - 0x000072d2 0x16a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_loclists - 0x0000743c 0x280 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_loclists - 0x000076bc 0xd2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .debug_loclists - 0x0000778e 0xb7 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_loclists - 0x00007845 0xb6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .debug_loclists - 0x000078fb 0xf4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_loclists - 0x000079ef 0x2e6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_loclists - 0x00007cd5 0x8c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .debug_loclists - 0x00007d61 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .debug_loclists - 0x00007db9 0x129 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_loclists - 0x00007ee2 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .debug_loclists - 0x00007f2e 0x95 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_loclists - 0x00007fc3 0xdd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_loclists - 0x000080a0 0x13d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .debug_loclists - 0x000081dd 0x7f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .debug_loclists - 0x0000825c 0x8a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .debug_loclists - 0x000082e6 0x211 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .debug_loclists - 0x000084f7 0x7c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .debug_loclists - 0x00008573 0x153 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .debug_loclists - 0x000086c6 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_loclists - 0x000087ae 0x58 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_loclists - 0x00008806 0x85 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .debug_loclists - 0x0000888b 0x200 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_loclists - 0x00008a8b 0xaf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .debug_loclists - 0x00008b3a 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .debug_loclists - 0x00008b6d 0xb7b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .debug_loclists - 0x000096e8 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .debug_loclists - 0x00009708 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .debug_loclists - 0x0000973e 0x120 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .debug_loclists - 0x0000985e 0xe4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .debug_loclists - 0x00009942 0x3a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_loclists - 0x00009ce8 0x9eb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_loclists - 0x0000a6d3 0x25 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .debug_loclists - 0x0000a6f8 0x134 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .debug_loclists - 0x0000a82c 0x23d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_loclists - 0x0000aa69 0x88 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .debug_loclists - 0x0000aaf1 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_loclists - 0x0000ab2d 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .debug_loclists - 0x0000ab4d 0x69 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_loclists - 0x0000abb6 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .debug_loclists - 0x0000abd4 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .debug_loclists - 0x0000ac10 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .debug_loclists - 0x0000ac4c 0x3e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .debug_loclists - 0x0000ac8a 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .debug_loclists - 0x0000ace4 0x5a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .debug_loclists - 0x0000ad3e 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .debug_loclists - 0x0000ad5e 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .debug_loclists - 0x0000ad7e 0x8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_loclists - 0x0000ae0d 0x9c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_loclists - 0x0000aea9 0x1100 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_loclists - 0x0000bfa9 0x34 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .debug_loclists - 0x0000bfdd 0x878 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_loclists - 0x0000c855 0x28c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .debug_loclists - 0x0000cae1 0xa2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .debug_loclists - 0x0000cb83 0x1348 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_loclists - 0x0000decb 0x96 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .debug_loclists - 0x0000df61 0x8a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .debug_loclists - 0x0000dfeb 0x13d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .debug_loclists - 0x0000e128 0x1a64 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_loclists - 0x0000fb8c 0x16b3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_loclists - 0x0001123f 0x2388 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_loclists - 0x000135c7 0x1aac /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_loclists - 0x00015073 0x85 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .debug_loclists - 0x000150f8 0x106 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .debug_loclists - 0x000151fe 0xf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_loclists - 0x000152f1 0x185 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .debug_loclists - 0x00015476 0x332 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .debug_loclists - 0x000157a8 0xf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .debug_loclists - 0x0001589a 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .debug_loclists - 0x000158ba 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .debug_loclists - 0x000158ed 0x251 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_loclists - 0x00015b3e 0x486 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_macro - *(.debug_macro) - -.debug_names - *(.debug_names) - -.debug_rnglists - 0x00000000 0x1039 - *(.debug_rnglists) - .debug_rnglists - 0x00000000 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .debug_rnglists - 0x00000013 0xdc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .debug_rnglists - 0x000000ef 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .debug_rnglists - 0x00000102 0x50 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_rnglists - 0x00000152 0x4c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .debug_rnglists - 0x0000019e 0x67 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .debug_rnglists - 0x00000205 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .debug_rnglists - 0x00000218 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .debug_rnglists - 0x0000022b 0x43 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .debug_rnglists - 0x0000026e 0x55 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .debug_rnglists - 0x000002c3 0x9d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .debug_rnglists - 0x00000360 0x115 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .debug_rnglists - 0x00000475 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .debug_rnglists - 0x00000488 0x1f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .debug_rnglists - 0x000004a7 0x1f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .debug_rnglists - 0x000004c6 0x47 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .debug_rnglists - 0x0000050d 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .debug_rnglists - 0x00000525 0x82 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .debug_rnglists - 0x000005a7 0xab /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .debug_rnglists - 0x00000652 0x60 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .debug_rnglists - 0x000006b2 0x21 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .debug_rnglists - 0x000006d3 0x57 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .debug_rnglists - 0x0000072a 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .debug_rnglists - 0x0000073d 0x19 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .debug_rnglists - 0x00000756 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .debug_rnglists - 0x00000786 0x1c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .debug_rnglists - 0x000007a2 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .debug_rnglists - 0x000007b5 0x1a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .debug_rnglists - 0x000007cf 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .debug_rnglists - 0x000007e2 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .debug_rnglists - 0x000007f5 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .debug_rnglists - 0x00000813 0x3c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .debug_rnglists - 0x0000084f 0x92 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .debug_rnglists - 0x000008e1 0x17 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .debug_rnglists - 0x000008f8 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .debug_rnglists - 0x00000920 0x1e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .debug_rnglists - 0x0000093e 0x13 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .debug_rnglists - 0x00000951 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .debug_rnglists - 0x00000969 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .debug_rnglists - 0x0000099f 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .debug_rnglists - 0x000009e1 0x77 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .debug_rnglists - 0x00000a58 0x56 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .debug_rnglists - 0x00000aae 0x1dd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .debug_rnglists - 0x00000c8b 0xa0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .debug_rnglists - 0x00000d2b 0x20c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .debug_rnglists - 0x00000f37 0x14 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .debug_rnglists - 0x00000f4b 0x36 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .debug_rnglists - 0x00000f81 0xb8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_str_offsets - *(.debug_str_offsets) - -.comment 0x00000000 0x60 - *(.comment) - .comment 0x00000000 0x60 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x30 (size before relaxing) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_write.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_level.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(random.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .comment 0x00000060 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .comment 0x00000060 0x30 esp-idf/main/libmain.a(app_main.c.obj) - .comment 0x00000060 0x30 esp-idf/main/libmain.a(app_driver.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .comment 0x00000060 0x30 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .comment 0x00000060 0x30 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .comment 0x00000060 0x30 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .comment 0x00000060 0x30 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .comment 0x00000060 0x30 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .comment 0x00000060 0x30 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .comment 0x00000060 0x30 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(bt.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(addr.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_att.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_store.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_gap.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(nimble_port.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(endian.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(os_mempool.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(mem.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(transport.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_sm.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .comment 0x00000060 0x30 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - .comment 0x00000060 0x30 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .comment 0x00000060 0x30 esp-idf/json/libjson.a(cJSON.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .comment 0x00000060 0x30 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(commands.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(split_argv.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(arg_end.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(arg_int.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(arg_str.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(arg_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) - .comment 0x00000060 0x30 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .comment 0x00000060 0x30 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .comment 0x00000060 0x30 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .comment 0x00000060 0x30 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .comment 0x00000060 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(log_buffers.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(util.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(timers.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .comment 0x00000060 0x30 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(sntp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(sntp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(def.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(init.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(netif.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(raw.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip6.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(mld6.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(nd6.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(err.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .comment 0x00000060 0x30 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .comment 0x00000060 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .comment 0x00000060 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .comment 0x00000060 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .comment 0x00000060 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .comment 0x00000060 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .comment 0x00000060 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .comment 0x00000060 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .comment 0x00000060 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(netdb.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .comment 0x00000060 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .comment 0x00000060 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(ds_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - .comment 0x00000060 0x32 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .comment 0x00000060 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.note.GNU-stack - 0x00000000 0x0 - *(.note.GNU-stack) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/main/libmain.a(app_main.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/main/libmain.a(app_driver.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(bt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(addr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(endian.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(os_mempool.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(transport.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(arg_end.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(arg_int.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(arg_str.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(arg_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_buffers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(sntp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.riscv.attributes - 0x00000000 0x6a - *(.riscv.attributes) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .riscv.attributes - 0x00000044 0x44 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .riscv.attributes - 0x00000088 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .riscv.attributes - 0x000000cc 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000110 0x44 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .riscv.attributes - 0x00000154 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000198 0x44 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .riscv.attributes - 0x000001dc 0x44 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .riscv.attributes - 0x00000220 0x44 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .riscv.attributes - 0x00000264 0x48 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .riscv.attributes - 0x000002ac 0x44 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .riscv.attributes - 0x000002f0 0x44 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .riscv.attributes - 0x00000334 0x48 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .riscv.attributes - 0x0000037c 0x44 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .riscv.attributes - 0x000003c0 0x48 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .riscv.attributes - 0x00000408 0x44 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .riscv.attributes - 0x0000044c 0x44 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .riscv.attributes - 0x00000490 0x44 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .riscv.attributes - 0x000004d4 0x44 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .riscv.attributes - 0x00000518 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .riscv.attributes - 0x0000055c 0x48 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .riscv.attributes - 0x000005a4 0x44 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .riscv.attributes - 0x000005e8 0x44 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .riscv.attributes - 0x0000062c 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000670 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x000006b4 0x44 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .riscv.attributes - 0x000006f8 0x44 esp-idf/hal/libhal.a(cache_hal.c.obj) - .riscv.attributes - 0x0000073c 0x44 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .riscv.attributes - 0x00000780 0x44 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .riscv.attributes - 0x000007c4 0x48 esp-idf/log/liblog.a(log_timestamp.c.obj) - .riscv.attributes - 0x0000080c 0x44 esp-idf/log/liblog.a(log_write.c.obj) - .riscv.attributes - 0x00000850 0x44 esp-idf/log/liblog.a(log_level.c.obj) - .riscv.attributes - 0x00000894 0x44 esp-idf/log/liblog.a(tag_log_level.c.obj) - .riscv.attributes - 0x000008d8 0x44 esp-idf/log/liblog.a(log_linked_list.c.obj) - .riscv.attributes - 0x0000091c 0x44 esp-idf/log/liblog.a(log_binary_heap.c.obj) - .riscv.attributes - 0x00000960 0x44 esp-idf/log/liblog.a(log_lock.c.obj) - .riscv.attributes - 0x000009a4 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) - .riscv.attributes - 0x000009e8 0x44 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .riscv.attributes - 0x00000a2c 0x44 esp-idf/heap/libheap.a(multi_heap.c.obj) - .riscv.attributes - 0x00000a70 0x44 esp-idf/heap/libheap.a(tlsf.c.obj) - .riscv.attributes - 0x00000ab4 0x44 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .riscv.attributes - 0x00000af8 0x44 esp-idf/heap/libheap.a(memory_layout.c.obj) - .riscv.attributes - 0x00000b3c 0x44 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .riscv.attributes - 0x00000b80 0x44 esp-idf/esp_security/libesp_security.a(init.c.obj) - .riscv.attributes - 0x00000bc4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .riscv.attributes - 0x00000c0c 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .riscv.attributes - 0x00000c50 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .riscv.attributes - 0x00000c98 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .riscv.attributes - 0x00000cdc 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .riscv.attributes - 0x00000d20 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .riscv.attributes - 0x00000d64 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .riscv.attributes - 0x00000da8 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .riscv.attributes - 0x00000dec 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .riscv.attributes - 0x00000e30 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .riscv.attributes - 0x00000e74 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .riscv.attributes - 0x00000eb8 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .riscv.attributes - 0x00000efc 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .riscv.attributes - 0x00000f40 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .riscv.attributes - 0x00000f84 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .riscv.attributes - 0x00000fc8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .riscv.attributes - 0x00001010 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .riscv.attributes - 0x00001054 0x44 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .riscv.attributes - 0x00001098 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) - .riscv.attributes - 0x000010dc 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .riscv.attributes - 0x00001120 0x48 esp-idf/freertos/libfreertos.a(port.c.obj) - .riscv.attributes - 0x00001168 0x44 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .riscv.attributes - 0x000011ac 0x44 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .riscv.attributes - 0x000011f0 0x44 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .riscv.attributes - 0x00001234 0x44 esp-idf/freertos/libfreertos.a(list.c.obj) - .riscv.attributes - 0x00001278 0x44 esp-idf/newlib/libnewlib.a(abort.c.obj) - .riscv.attributes - 0x000012bc 0x44 esp-idf/newlib/libnewlib.a(assert.c.obj) - .riscv.attributes - 0x00001300 0x44 esp-idf/newlib/libnewlib.a(heap.c.obj) - .riscv.attributes - 0x00001344 0x44 esp-idf/newlib/libnewlib.a(locks.c.obj) - .riscv.attributes - 0x00001388 0x44 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .riscv.attributes - 0x000013cc 0x44 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .riscv.attributes - 0x00001410 0x44 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .riscv.attributes - 0x00001454 0x44 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .riscv.attributes - 0x00001498 0x44 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .riscv.attributes - 0x000014dc 0x44 esp-idf/newlib/libnewlib.a(time.c.obj) - .riscv.attributes - 0x00001520 0x44 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .riscv.attributes - 0x00001564 0x44 esp-idf/newlib/libnewlib.a(random.c.obj) - .riscv.attributes - 0x000015a8 0x44 esp-idf/pthread/libpthread.a(pthread.c.obj) - .riscv.attributes - 0x000015ec 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .riscv.attributes - 0x00001630 0x44 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .riscv.attributes - 0x00001674 0x44 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .riscv.attributes - 0x000016b8 0x44 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .riscv.attributes - 0x000016fc 0x44 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .riscv.attributes - 0x00001740 0x44 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .riscv.attributes - 0x00001784 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .riscv.attributes - 0x000017c8 0x44 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .riscv.attributes - 0x0000180c 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .riscv.attributes - 0x00001850 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .riscv.attributes - 0x00001894 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .riscv.attributes - 0x000018d8 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .riscv.attributes - 0x0000191c 0x44 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .riscv.attributes - 0x00001960 0x44 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .riscv.attributes - 0x000019a4 0x44 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .riscv.attributes - 0x000019e8 0x44 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .riscv.attributes - 0x00001a2c 0x44 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .riscv.attributes - 0x00001a70 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) - .riscv.attributes - 0x00001ab4 0x44 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .riscv.attributes - 0x00001af8 0x44 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - .riscv.attributes - 0x00001b3c 0x44 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - .riscv.attributes - 0x00001b80 0x44 esp-idf/main/libmain.a(app_main.c.obj) - .riscv.attributes - 0x00001bc4 0x44 esp-idf/main/libmain.a(app_driver.c.obj) - .riscv.attributes - 0x00001c08 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - .riscv.attributes - 0x00001c4c 0x44 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - .riscv.attributes - 0x00001c90 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - .riscv.attributes - 0x00001cd4 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - .riscv.attributes - 0x00001d18 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - .riscv.attributes - 0x00001d5c 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - .riscv.attributes - 0x00001da0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - .riscv.attributes - 0x00001de4 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - .riscv.attributes - 0x00001e28 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - .riscv.attributes - 0x00001e6c 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - .riscv.attributes - 0x00001eb0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - .riscv.attributes - 0x00001ef4 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - .riscv.attributes - 0x00001f38 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - .riscv.attributes - 0x00001f7c 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - .riscv.attributes - 0x00001fc0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - .riscv.attributes - 0x00002004 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - .riscv.attributes - 0x00002048 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - .riscv.attributes - 0x0000208c 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - .riscv.attributes - 0x000020d0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - .riscv.attributes - 0x00002114 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - .riscv.attributes - 0x00002158 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - .riscv.attributes - 0x0000219c 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - .riscv.attributes - 0x000021e0 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - .riscv.attributes - 0x00002224 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - .riscv.attributes - 0x00002268 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - .riscv.attributes - 0x000022ac 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - .riscv.attributes - 0x000022f0 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - .riscv.attributes - 0x00002354 0x64 esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - .riscv.attributes - 0x000023b8 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - .riscv.attributes - 0x000023fc 0x44 esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - .riscv.attributes - 0x00002440 0x44 esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - .riscv.attributes - 0x00002484 0x44 esp-idf/app_network/libapp_network.a(app_network.c.obj) - .riscv.attributes - 0x000024c8 0x44 esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - .riscv.attributes - 0x0000250c 0x44 esp-idf/gpio_button/libgpio_button.a(button.c.obj) - .riscv.attributes - 0x00002550 0x44 esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - .riscv.attributes - 0x00002594 0x44 esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - .riscv.attributes - 0x000025d8 0x44 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - .riscv.attributes - 0x0000261c 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - .riscv.attributes - 0x00002660 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - .riscv.attributes - 0x000026a4 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - .riscv.attributes - 0x000026e8 0x44 esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - .riscv.attributes - 0x0000272c 0x44 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .riscv.attributes - 0x00002770 0x44 esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - .riscv.attributes - 0x000027b4 0x44 esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - .riscv.attributes - 0x000027f8 0x44 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - .riscv.attributes - 0x0000283c 0x44 esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - .riscv.attributes - 0x00002880 0x44 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - .riscv.attributes - 0x000028c4 0x44 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - .riscv.attributes - 0x00002908 0x44 esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - .riscv.attributes - 0x0000294c 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - .riscv.attributes - 0x00002990 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - .riscv.attributes - 0x000029d4 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - .riscv.attributes - 0x00002a18 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - .riscv.attributes - 0x00002a5c 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - .riscv.attributes - 0x00002aa0 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - .riscv.attributes - 0x00002ae4 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - .riscv.attributes - 0x00002b28 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - .riscv.attributes - 0x00002b6c 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - .riscv.attributes - 0x00002bb0 0x44 esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - .riscv.attributes - 0x00002bf4 0x44 esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - .riscv.attributes - 0x00002c38 0x44 esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - .riscv.attributes - 0x00002c7c 0x44 esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - .riscv.attributes - 0x00002cc0 0x44 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - .riscv.attributes - 0x00002d04 0x44 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - .riscv.attributes - 0x00002d48 0x44 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - .riscv.attributes - 0x00002d8c 0x44 esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - .riscv.attributes - 0x00002dd0 0x44 esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - .riscv.attributes - 0x00002e14 0x44 esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - .riscv.attributes - 0x00002e58 0x44 esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - .riscv.attributes - 0x00002e9c 0x44 esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - .riscv.attributes - 0x00002ee0 0x44 esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - .riscv.attributes - 0x00002f24 0x44 esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - .riscv.attributes - 0x00002f68 0x44 esp-idf/bt/libbt.a(bt.c.obj) - .riscv.attributes - 0x00002fac 0x44 esp-idf/bt/libbt.a(addr.c.obj) - .riscv.attributes - 0x00002ff0 0x44 esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - .riscv.attributes - 0x00003034 0x44 esp-idf/bt/libbt.a(ble_store_util.c.obj) - .riscv.attributes - 0x00003078 0x44 esp-idf/bt/libbt.a(ble_hs_id.c.obj) - .riscv.attributes - 0x000030bc 0x44 esp-idf/bt/libbt.a(ble_hs.c.obj) - .riscv.attributes - 0x00003100 0x44 esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - .riscv.attributes - 0x00003144 0x44 esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - .riscv.attributes - 0x00003188 0x44 esp-idf/bt/libbt.a(ble_att.c.obj) - .riscv.attributes - 0x000031cc 0x44 esp-idf/bt/libbt.a(ble_gattc.c.obj) - .riscv.attributes - 0x00003210 0x44 esp-idf/bt/libbt.a(ble_store.c.obj) - .riscv.attributes - 0x00003254 0x44 esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - .riscv.attributes - 0x00003298 0x44 esp-idf/bt/libbt.a(ble_att_clt.c.obj) - .riscv.attributes - 0x000032dc 0x44 esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - .riscv.attributes - 0x00003320 0x44 esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - .riscv.attributes - 0x00003364 0x44 esp-idf/bt/libbt.a(ble_hs_log.c.obj) - .riscv.attributes - 0x000033a8 0x44 esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - .riscv.attributes - 0x000033ec 0x44 esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - .riscv.attributes - 0x00003430 0x44 esp-idf/bt/libbt.a(ble_gap.c.obj) - .riscv.attributes - 0x00003474 0x44 esp-idf/bt/libbt.a(ble_uuid.c.obj) - .riscv.attributes - 0x000034b8 0x44 esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - .riscv.attributes - 0x000034fc 0x44 esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - .riscv.attributes - 0x00003540 0x44 esp-idf/bt/libbt.a(ble_l2cap.c.obj) - .riscv.attributes - 0x00003584 0x44 esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - .riscv.attributes - 0x000035c8 0x44 esp-idf/bt/libbt.a(ble_gatts.c.obj) - .riscv.attributes - 0x0000360c 0x44 esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - .riscv.attributes - 0x00003650 0x44 esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - .riscv.attributes - 0x00003694 0x44 esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - .riscv.attributes - 0x000036d8 0x44 esp-idf/bt/libbt.a(ble_store_config.c.obj) - .riscv.attributes - 0x0000371c 0x44 esp-idf/bt/libbt.a(nimble_port.c.obj) - .riscv.attributes - 0x00003760 0x44 esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - .riscv.attributes - 0x000037a4 0x44 esp-idf/bt/libbt.a(endian.c.obj) - .riscv.attributes - 0x000037e8 0x44 esp-idf/bt/libbt.a(os_mempool.c.obj) - .riscv.attributes - 0x0000382c 0x44 esp-idf/bt/libbt.a(mem.c.obj) - .riscv.attributes - 0x00003870 0x44 esp-idf/bt/libbt.a(os_mbuf.c.obj) - .riscv.attributes - 0x000038b4 0x44 esp-idf/bt/libbt.a(os_msys_init.c.obj) - .riscv.attributes - 0x000038f8 0x44 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - .riscv.attributes - 0x0000393c 0x44 esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - .riscv.attributes - 0x00003980 0x44 esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - .riscv.attributes - 0x000039c4 0x44 esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - .riscv.attributes - 0x00003a08 0x44 esp-idf/bt/libbt.a(transport.c.obj) - .riscv.attributes - 0x00003a4c 0x44 esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - .riscv.attributes - 0x00003a90 0x44 esp-idf/bt/libbt.a(ble_sm.c.obj) - .riscv.attributes - 0x00003ad4 0x44 esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - .riscv.attributes - 0x00003b18 0x44 esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - .riscv.attributes - 0x00003b5c 0x44 esp-idf/bt/libbt.a(ble_att_svr.c.obj) - .riscv.attributes - 0x00003ba0 0x44 esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - .riscv.attributes - 0x00003be4 0x44 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - .riscv.attributes - 0x00003c28 0x44 esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - .riscv.attributes - 0x00003c6c 0x44 esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - .riscv.attributes - 0x00003cb0 0x44 esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - .riscv.attributes - 0x00003cf4 0x44 esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - .riscv.attributes - 0x00003d38 0x44 esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - .riscv.attributes - 0x00003d7c 0x44 esp-idf/json/libjson.a(cJSON.c.obj) - .riscv.attributes - 0x00003dc0 0x44 esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - .riscv.attributes - 0x00003e04 0x44 esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - .riscv.attributes - 0x00003e48 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - .riscv.attributes - 0x00003e8c 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - .riscv.attributes - 0x00003ed0 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - .riscv.attributes - 0x00003f14 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - .riscv.attributes - 0x00003f58 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - .riscv.attributes - 0x00003f9c 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - .riscv.attributes - 0x00003fe0 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - .riscv.attributes - 0x00004024 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - .riscv.attributes - 0x00004068 0x44 esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - .riscv.attributes - 0x000040ac 0x44 esp-idf/console/libconsole.a(commands.c.obj) - .riscv.attributes - 0x000040f0 0x44 esp-idf/console/libconsole.a(split_argv.c.obj) - .riscv.attributes - 0x00004134 0x44 esp-idf/console/libconsole.a(arg_dstr.c.obj) - .riscv.attributes - 0x00004178 0x44 esp-idf/console/libconsole.a(arg_end.c.obj) - .riscv.attributes - 0x000041bc 0x44 esp-idf/console/libconsole.a(arg_int.c.obj) - .riscv.attributes - 0x00004200 0x44 esp-idf/console/libconsole.a(arg_str.c.obj) - .riscv.attributes - 0x00004244 0x44 esp-idf/console/libconsole.a(arg_utils.c.obj) - .riscv.attributes - 0x00004288 0x44 esp-idf/console/libconsole.a(argtable3.c.obj) - .riscv.attributes - 0x000042cc 0x44 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - .riscv.attributes - 0x00004310 0x44 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - .riscv.attributes - 0x00004354 0x44 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - .riscv.attributes - 0x00004398 0x44 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - .riscv.attributes - 0x000043dc 0x44 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .riscv.attributes - 0x00004420 0x44 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .riscv.attributes - 0x00004464 0x68 esp-idf/riscv/libriscv.a(vectors.S.obj) - .riscv.attributes - 0x000044cc 0x64 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .riscv.attributes - 0x00004530 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .riscv.attributes - 0x00004574 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .riscv.attributes - 0x000045b8 0x44 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - .riscv.attributes - 0x000045fc 0x64 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - .riscv.attributes - 0x00004660 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .riscv.attributes - 0x000046a4 0x44 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .riscv.attributes - 0x000046e8 0x44 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .riscv.attributes - 0x0000472c 0x44 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x00004770 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .riscv.attributes - 0x000047b4 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .riscv.attributes - 0x000047f8 0x44 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .riscv.attributes - 0x0000483c 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .riscv.attributes - 0x00004880 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .riscv.attributes - 0x000048c4 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .riscv.attributes - 0x00004908 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .riscv.attributes - 0x0000494c 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .riscv.attributes - 0x00004990 0x44 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .riscv.attributes - 0x000049d4 0x44 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .riscv.attributes - 0x00004a18 0x44 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .riscv.attributes - 0x00004a5c 0x44 esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - .riscv.attributes - 0x00004aa0 0x44 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .riscv.attributes - 0x00004ae4 0x44 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .riscv.attributes - 0x00004b28 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .riscv.attributes - 0x00004b6c 0x44 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .riscv.attributes - 0x00004bb0 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .riscv.attributes - 0x00004bf4 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .riscv.attributes - 0x00004c38 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .riscv.attributes - 0x00004c7c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .riscv.attributes - 0x00004cc0 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .riscv.attributes - 0x00004d04 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .riscv.attributes - 0x00004d48 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .riscv.attributes - 0x00004d8c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .riscv.attributes - 0x00004dd0 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .riscv.attributes - 0x00004e14 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .riscv.attributes - 0x00004e58 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .riscv.attributes - 0x00004e9c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .riscv.attributes - 0x00004ee0 0x44 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .riscv.attributes - 0x00004f24 0x44 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .riscv.attributes - 0x00004f68 0x44 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .riscv.attributes - 0x00004fac 0x44 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .riscv.attributes - 0x00004ff0 0x44 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .riscv.attributes - 0x00005034 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .riscv.attributes - 0x00005078 0x44 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .riscv.attributes - 0x000050bc 0x44 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .riscv.attributes - 0x00005100 0x44 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .riscv.attributes - 0x00005144 0x44 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .riscv.attributes - 0x00005188 0x44 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .riscv.attributes - 0x000051cc 0x44 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .riscv.attributes - 0x00005210 0x44 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .riscv.attributes - 0x00005254 0x44 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .riscv.attributes - 0x00005298 0x44 esp-idf/hal/libhal.a(uart_hal.c.obj) - .riscv.attributes - 0x000052dc 0x44 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .riscv.attributes - 0x00005320 0x44 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .riscv.attributes - 0x00005364 0x44 esp-idf/log/liblog.a(log_buffers.c.obj) - .riscv.attributes - 0x000053a8 0x44 esp-idf/log/liblog.a(util.c.obj) - .riscv.attributes - 0x000053ec 0x44 esp-idf/soc/libsoc.a(interrupts.c.obj) - .riscv.attributes - 0x00005430 0x44 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .riscv.attributes - 0x00005474 0x44 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .riscv.attributes - 0x000054b8 0x44 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .riscv.attributes - 0x000054fc 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .riscv.attributes - 0x00005540 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .riscv.attributes - 0x00005588 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .riscv.attributes - 0x000055cc 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .riscv.attributes - 0x00005614 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .riscv.attributes - 0x00005658 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .riscv.attributes - 0x0000569c 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .riscv.attributes - 0x000056e0 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .riscv.attributes - 0x00005724 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .riscv.attributes - 0x00005768 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .riscv.attributes - 0x000057ac 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .riscv.attributes - 0x000057f0 0x44 esp-idf/freertos/libfreertos.a(timers.c.obj) - .riscv.attributes - 0x00005834 0x44 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .riscv.attributes - 0x00005878 0x64 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .riscv.attributes - 0x000058dc 0x44 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .riscv.attributes - 0x00005920 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .riscv.attributes - 0x00005964 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .riscv.attributes - 0x000059a8 0x44 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .riscv.attributes - 0x000059ec 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .riscv.attributes - 0x00005a30 0x44 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .riscv.attributes - 0x00005a74 0x44 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .riscv.attributes - 0x00005ab8 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .riscv.attributes - 0x00005afc 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .riscv.attributes - 0x00005b40 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .riscv.attributes - 0x00005b84 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .riscv.attributes - 0x00005bc8 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .riscv.attributes - 0x00005c0c 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .riscv.attributes - 0x00005c50 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .riscv.attributes - 0x00005c94 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .riscv.attributes - 0x00005cd8 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .riscv.attributes - 0x00005d1c 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .riscv.attributes - 0x00005d60 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .riscv.attributes - 0x00005da4 0x44 esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - .riscv.attributes - 0x00005de8 0x44 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - .riscv.attributes - 0x00005e2c 0x44 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - .riscv.attributes - 0x00005e70 0x44 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .riscv.attributes - 0x00005eb4 0x44 esp-idf/lwip/liblwip.a(sntp.c.obj) - .riscv.attributes - 0x00005ef8 0x44 esp-idf/lwip/liblwip.a(sockets.c.obj) - .riscv.attributes - 0x00005f3c 0x44 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .riscv.attributes - 0x00005f80 0x44 esp-idf/lwip/liblwip.a(sntp.c.obj) - .riscv.attributes - 0x00005fc4 0x44 esp-idf/lwip/liblwip.a(def.c.obj) - .riscv.attributes - 0x00006008 0x44 esp-idf/lwip/liblwip.a(dns.c.obj) - .riscv.attributes - 0x0000604c 0x44 esp-idf/lwip/liblwip.a(init.c.obj) - .riscv.attributes - 0x00006090 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) - .riscv.attributes - 0x000060d4 0x44 esp-idf/lwip/liblwip.a(mem.c.obj) - .riscv.attributes - 0x00006118 0x44 esp-idf/lwip/liblwip.a(memp.c.obj) - .riscv.attributes - 0x0000615c 0x44 esp-idf/lwip/liblwip.a(netif.c.obj) - .riscv.attributes - 0x000061a0 0x44 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .riscv.attributes - 0x000061e4 0x44 esp-idf/lwip/liblwip.a(raw.c.obj) - .riscv.attributes - 0x00006228 0x44 esp-idf/lwip/liblwip.a(tcp.c.obj) - .riscv.attributes - 0x0000626c 0x44 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .riscv.attributes - 0x000062b0 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .riscv.attributes - 0x000062f4 0x44 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .riscv.attributes - 0x00006338 0x44 esp-idf/lwip/liblwip.a(udp.c.obj) - .riscv.attributes - 0x0000637c 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .riscv.attributes - 0x000063c0 0x44 esp-idf/lwip/liblwip.a(etharp.c.obj) - .riscv.attributes - 0x00006404 0x44 esp-idf/lwip/liblwip.a(icmp.c.obj) - .riscv.attributes - 0x00006448 0x44 esp-idf/lwip/liblwip.a(igmp.c.obj) - .riscv.attributes - 0x0000648c 0x44 esp-idf/lwip/liblwip.a(ip4.c.obj) - .riscv.attributes - 0x000064d0 0x44 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .riscv.attributes - 0x00006514 0x44 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .riscv.attributes - 0x00006558 0x44 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .riscv.attributes - 0x0000659c 0x44 esp-idf/lwip/liblwip.a(ip6.c.obj) - .riscv.attributes - 0x000065e0 0x44 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .riscv.attributes - 0x00006624 0x44 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .riscv.attributes - 0x00006668 0x44 esp-idf/lwip/liblwip.a(mld6.c.obj) - .riscv.attributes - 0x000066ac 0x44 esp-idf/lwip/liblwip.a(nd6.c.obj) - .riscv.attributes - 0x000066f0 0x44 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .riscv.attributes - 0x00006734 0x44 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - .riscv.attributes - 0x00006778 0x44 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - .riscv.attributes - 0x000067bc 0x44 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - .riscv.attributes - 0x00006800 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .riscv.attributes - 0x00006844 0x44 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - .riscv.attributes - 0x00006888 0x44 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .riscv.attributes - 0x000068cc 0x44 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .riscv.attributes - 0x00006910 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .riscv.attributes - 0x00006954 0x44 esp-idf/lwip/liblwip.a(err.c.obj) - .riscv.attributes - 0x00006998 0x44 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .riscv.attributes - 0x000069dc 0x44 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .riscv.attributes - 0x00006a20 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .riscv.attributes - 0x00006a64 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .riscv.attributes - 0x00006aa8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .riscv.attributes - 0x00006aec 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .riscv.attributes - 0x00006b30 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .riscv.attributes - 0x00006b74 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .riscv.attributes - 0x00006bb8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - .riscv.attributes - 0x00006bfc 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .riscv.attributes - 0x00006c40 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - .riscv.attributes - 0x00006c84 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .riscv.attributes - 0x00006cc8 0x44 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .riscv.attributes - 0x00006d0c 0x44 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .riscv.attributes - 0x00006d50 0x44 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .riscv.attributes - 0x00006d94 0x44 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .riscv.attributes - 0x00006dd8 0x44 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - .riscv.attributes - 0x00006e1c 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .riscv.attributes - 0x00006e60 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - .riscv.attributes - 0x00006ea4 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - .riscv.attributes - 0x00006ee8 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .riscv.attributes - 0x00006f2c 0x44 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - .riscv.attributes - 0x00006f70 0x44 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - .riscv.attributes - 0x00006fb4 0x44 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - .riscv.attributes - 0x00006ff8 0x44 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - .riscv.attributes - 0x0000703c 0x44 esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - .riscv.attributes - 0x00007080 0x44 esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - .riscv.attributes - 0x000070c4 0x44 esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - .riscv.attributes - 0x00007108 0x44 esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - .riscv.attributes - 0x0000714c 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .riscv.attributes - 0x00007190 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .riscv.attributes - 0x000071d4 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .riscv.attributes - 0x00007218 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .riscv.attributes - 0x0000725c 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .riscv.attributes - 0x000072a0 0x44 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .riscv.attributes - 0x000072e4 0x44 esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - .riscv.attributes - 0x00007328 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .riscv.attributes - 0x0000736c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - .riscv.attributes - 0x000073b0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .riscv.attributes - 0x000073f4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - .riscv.attributes - 0x00007438 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - .riscv.attributes - 0x0000747c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - .riscv.attributes - 0x000074c0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .riscv.attributes - 0x00007504 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - .riscv.attributes - 0x00007548 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - .riscv.attributes - 0x0000758c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - .riscv.attributes - 0x000075d0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - .riscv.attributes - 0x00007614 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - .riscv.attributes - 0x00007658 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .riscv.attributes - 0x0000769c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - .riscv.attributes - 0x000076e0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .riscv.attributes - 0x00007724 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .riscv.attributes - 0x00007768 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - .riscv.attributes - 0x000077ac 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - .riscv.attributes - 0x000077f0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .riscv.attributes - 0x00007834 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .riscv.attributes - 0x00007878 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .riscv.attributes - 0x000078bc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .riscv.attributes - 0x00007900 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .riscv.attributes - 0x00007944 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .riscv.attributes - 0x00007988 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .riscv.attributes - 0x000079cc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .riscv.attributes - 0x00007a10 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .riscv.attributes - 0x00007a54 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .riscv.attributes - 0x00007a98 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - .riscv.attributes - 0x00007adc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .riscv.attributes - 0x00007b20 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .riscv.attributes - 0x00007b64 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .riscv.attributes - 0x00007ba8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .riscv.attributes - 0x00007bec 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .riscv.attributes - 0x00007c30 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .riscv.attributes - 0x00007c74 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - .riscv.attributes - 0x00007cb8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .riscv.attributes - 0x00007cfc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .riscv.attributes - 0x00007d40 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .riscv.attributes - 0x00007d84 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .riscv.attributes - 0x00007dc8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .riscv.attributes - 0x00007e0c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .riscv.attributes - 0x00007e50 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .riscv.attributes - 0x00007e94 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .riscv.attributes - 0x00007ed8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - .riscv.attributes - 0x00007f1c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - .riscv.attributes - 0x00007f60 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .riscv.attributes - 0x00007fa4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - .riscv.attributes - 0x00007fe8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .riscv.attributes - 0x0000802c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .riscv.attributes - 0x00008070 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - .riscv.attributes - 0x000080b4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - .riscv.attributes - 0x000080f8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - .riscv.attributes - 0x0000813c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .riscv.attributes - 0x00008180 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .riscv.attributes - 0x000081c4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .riscv.attributes - 0x00008208 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .riscv.attributes - 0x0000824c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .riscv.attributes - 0x00008290 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .riscv.attributes - 0x000082d4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .riscv.attributes - 0x00008318 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .riscv.attributes - 0x0000835c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .riscv.attributes - 0x000083a0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .riscv.attributes - 0x000083e4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .riscv.attributes - 0x00008428 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .riscv.attributes - 0x0000846c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .riscv.attributes - 0x000084b0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .riscv.attributes - 0x000084f4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .riscv.attributes - 0x00008538 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - .riscv.attributes - 0x0000857c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .riscv.attributes - 0x000085c0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .riscv.attributes - 0x00008604 0x44 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .riscv.attributes - 0x00008648 0x44 esp-idf/hal/libhal.a(rmt_hal.c.obj) - .riscv.attributes - 0x0000868c 0x44 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .riscv.attributes - 0x000086d0 0x44 esp-idf/hal/libhal.a(mpi_hal.c.obj) - .riscv.attributes - 0x00008714 0x44 esp-idf/hal/libhal.a(sha_hal.c.obj) - .riscv.attributes - 0x00008758 0x44 esp-idf/hal/libhal.a(aes_hal.c.obj) - .riscv.attributes - 0x0000879c 0x44 esp-idf/hal/libhal.a(hmac_hal.c.obj) - .riscv.attributes - 0x000087e0 0x44 esp-idf/soc/libsoc.a(rmt_periph.c.obj) - .riscv.attributes - 0x00008824 0x44 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .riscv.attributes - 0x00008868 0x44 esp-idf/soc/libsoc.a(mpi_periph.c.obj) - .riscv.attributes - 0x000088ac 0x44 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - .riscv.attributes - 0x000088f0 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .riscv.attributes - 0x00008934 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - .riscv.attributes - 0x00008978 0x44 esp-idf/lwip/liblwip.a(netdb.c.obj) - .riscv.attributes - 0x000089bc 0x44 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .riscv.attributes - 0x00008a00 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .riscv.attributes - 0x00008a44 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .riscv.attributes - 0x00008a88 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .riscv.attributes - 0x00008acc 0x44 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - .riscv.attributes - 0x00008b10 0x44 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - .riscv.attributes - 0x00008b54 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .riscv.attributes - 0x00008b98 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - .riscv.attributes - 0x00008bdc 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - .riscv.attributes - 0x00008c20 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .riscv.attributes - 0x00008c64 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - .riscv.attributes - 0x00008ca8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .riscv.attributes - 0x00008cec 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - .riscv.attributes - 0x00008d30 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - .riscv.attributes - 0x00008d74 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .riscv.attributes - 0x00008db8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .riscv.attributes - 0x00008dfc 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .riscv.attributes - 0x00008e40 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - .riscv.attributes - 0x00008e84 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - .riscv.attributes - 0x00008ec8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - .riscv.attributes - 0x00008f0c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - .riscv.attributes - 0x00008f50 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .riscv.attributes - 0x00008f94 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - .riscv.attributes - 0x00008fd8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .riscv.attributes - 0x0000901c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - .riscv.attributes - 0x00009060 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .riscv.attributes - 0x000090a4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - .riscv.attributes - 0x000090e8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - .riscv.attributes - 0x0000912c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .riscv.attributes - 0x00009170 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .riscv.attributes - 0x000091b4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .riscv.attributes - 0x000091f8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - .riscv.attributes - 0x0000923c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - .riscv.attributes - 0x00009280 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .riscv.attributes - 0x000092c4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - .riscv.attributes - 0x00009308 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .riscv.attributes - 0x0000934c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .riscv.attributes - 0x00009390 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .riscv.attributes - 0x000093d4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - .riscv.attributes - 0x00009418 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - .riscv.attributes - 0x0000945c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .riscv.attributes - 0x000094a0 0x44 esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - .riscv.attributes - 0x000094e4 0x44 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .riscv.attributes - 0x00009528 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - .riscv.attributes - 0x0000956c 0x44 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .riscv.attributes - 0x000095b0 0x44 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .riscv.attributes - 0x000095f4 0x44 esp-idf/hal/libhal.a(ds_hal.c.obj) - .riscv.attributes - 0x00009638 0x44 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .riscv.attributes - 0x0000967c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - .riscv.attributes - 0x000096c0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - .riscv.attributes - 0x00009704 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - .riscv.attributes - 0x00009748 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - .riscv.attributes - 0x0000978c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - .riscv.attributes - 0x000097d0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - .riscv.attributes - 0x00009814 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - .riscv.attributes - 0x00009858 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - .riscv.attributes - 0x0000989c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - .riscv.attributes - 0x000098e0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - .riscv.attributes - 0x00009924 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - .riscv.attributes - 0x00009968 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - .riscv.attributes - 0x000099ac 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - .riscv.attributes - 0x000099f0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - .riscv.attributes - 0x00009a34 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - .riscv.attributes - 0x00009a78 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - .riscv.attributes - 0x00009abc 0x44 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .riscv.attributes - 0x00009b00 0x44 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .riscv.attributes - 0x00009b44 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - .riscv.attributes - 0x00009b88 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - .riscv.attributes - 0x00009bcc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - .riscv.attributes - 0x00009c10 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - .riscv.attributes - 0x00009c54 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - .riscv.attributes - 0x00009c98 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - .riscv.attributes - 0x00009cdc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - .riscv.attributes - 0x00009d20 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - .riscv.attributes - 0x00009d64 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - .riscv.attributes - 0x00009da8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - .riscv.attributes - 0x00009dec 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - .riscv.attributes - 0x00009e30 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - .riscv.attributes - 0x00009e74 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - .riscv.attributes - 0x00009eb8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - .riscv.attributes - 0x00009efc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - .riscv.attributes - 0x00009f40 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - .riscv.attributes - 0x00009f84 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - .riscv.attributes - 0x00009fc8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - .riscv.attributes - 0x0000a00c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - .riscv.attributes - 0x0000a050 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - .riscv.attributes - 0x0000a094 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - .riscv.attributes - 0x0000a0d8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - .riscv.attributes - 0x0000a11c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - .riscv.attributes - 0x0000a160 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - .riscv.attributes - 0x0000a1a4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - .riscv.attributes - 0x0000a1e8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - .riscv.attributes - 0x0000a22c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - .riscv.attributes - 0x0000a270 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - .riscv.attributes - 0x0000a2b4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - .riscv.attributes - 0x0000a2f8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - .riscv.attributes - 0x0000a33c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - .riscv.attributes - 0x0000a380 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - .riscv.attributes - 0x0000a3c4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - .riscv.attributes - 0x0000a408 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - .riscv.attributes - 0x0000a44c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - .riscv.attributes - 0x0000a490 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - .riscv.attributes - 0x0000a4d4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - .riscv.attributes - 0x0000a518 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - .riscv.attributes - 0x0000a55c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - .riscv.attributes - 0x0000a5a0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - .riscv.attributes - 0x0000a5e4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - .riscv.attributes - 0x0000a628 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - .riscv.attributes - 0x0000a66c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - .riscv.attributes - 0x0000a6b0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - .riscv.attributes - 0x0000a6f4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - .riscv.attributes - 0x0000a738 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - .riscv.attributes - 0x0000a77c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - .riscv.attributes - 0x0000a7c0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - .riscv.attributes - 0x0000a804 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - .riscv.attributes - 0x0000a848 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - .riscv.attributes - 0x0000a88c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - .riscv.attributes - 0x0000a8d0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - .riscv.attributes - 0x0000a914 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - .riscv.attributes - 0x0000a958 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - .riscv.attributes - 0x0000a99c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - .riscv.attributes - 0x0000a9e0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - .riscv.attributes - 0x0000aa24 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - .riscv.attributes - 0x0000aa68 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - .riscv.attributes - 0x0000aaac 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .riscv.attributes - 0x0000aaf0 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - .riscv.attributes - 0x0000ab34 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - .riscv.attributes - 0x0000ab78 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - .riscv.attributes - 0x0000abbc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - .riscv.attributes - 0x0000ac00 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - .riscv.attributes - 0x0000ac44 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - .riscv.attributes - 0x0000ac88 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - .riscv.attributes - 0x0000accc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - .riscv.attributes - 0x0000ad10 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - .riscv.attributes - 0x0000ad54 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - .riscv.attributes - 0x0000ad98 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - .riscv.attributes - 0x0000addc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - .riscv.attributes - 0x0000ae20 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - .riscv.attributes - 0x0000ae64 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - .riscv.attributes - 0x0000aea8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - .riscv.attributes - 0x0000aeec 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - .riscv.attributes - 0x0000af30 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - .riscv.attributes - 0x0000af74 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - .riscv.attributes - 0x0000afb8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - .riscv.attributes - 0x0000affc 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - .riscv.attributes - 0x0000b040 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - .riscv.attributes - 0x0000b084 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - .riscv.attributes - 0x0000b0c8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - .riscv.attributes - 0x0000b10c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - .riscv.attributes - 0x0000b150 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - .riscv.attributes - 0x0000b194 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - .riscv.attributes - 0x0000b1d8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - .riscv.attributes - 0x0000b21c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - .riscv.attributes - 0x0000b260 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - .riscv.attributes - 0x0000b2a4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - .riscv.attributes - 0x0000b2e8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - .riscv.attributes - 0x0000b32c 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - .riscv.attributes - 0x0000b370 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - .riscv.attributes - 0x0000b3b4 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - .riscv.attributes - 0x0000b3f8 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -/DISCARD/ - *(.rela.*) - *(.got .got.plt) - *(.eh_frame_hdr) - *(.eh_frame) - 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) - 0x00000001 ASSERT (((_heap_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) -OUTPUT(RainMaker_Table-Lights.elf elf32-littleriscv) - -Cross Reference Table - -Symbol File -APB_SARADC esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -API_vhci_host_check_send_available /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - esp-idf/bt/libbt.a(bt.c.obj) -API_vhci_host_register_callback /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - esp-idf/bt/libbt.a(bt.c.obj) -API_vhci_host_send_packet /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - esp-idf/bt/libbt.a(bt.c.obj) -APP_NETWORK_EVENT esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -APRecvBcnStartTick /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ApFreqCalTimer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -BAROFDMSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -BasePoint_x_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -BasePoint_y_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -BasicOFDMSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -BasicOFDMSched_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -BcnInterval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -BcnSendTick /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -CanDoFreqCal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -CompressedEnumTable::set(unsigned int, bool) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -CurFreeSigIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -CurSigIdxToBeUse /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -DW.ref.__gxx_personality_v0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) -DebugE256PublicKey_x /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -DebugE256PublicKey_y /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -DebugE256SecretKey /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -DefFreqCalTimer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -DefFreqCalTimerCB /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ECC_4Win_Look_up_table /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -EFUSE esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_ERR_RST_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_USR_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ERR_RST_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_HTTPS_OTA_EVENT esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -ESP_HTTPS_SERVER_EVENT esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -ESP_HTTP_CLIENT_EVENT esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -ESP_HTTP_SERVER_EVENT esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -ESP_RMAKER_OTA_DEFAULT_SERVER_CERT esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -ETH_EVENT esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) -GDMA esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -GPIO esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -GPSPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -GetAccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -HighestFreqOffsetInOneChk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -IP_EVENT esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -LLM_AA_CT1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -LLM_AA_CT2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -LowestFreqOffsetInOneChk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) -MPI_BLOCK_BASES esp-idf/soc/libsoc.a(mpi_periph.c.obj) - esp-idf/hal/libhal.a(mpi_hal.c.obj) -MPI_OPERATIONS_REG esp-idf/soc/libsoc.a(mpi_periph.c.obj) - esp-idf/hal/libhal.a(mpi_hal.c.obj) -MQTT_EVENTS esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -NETWORK_PROV_EVENT esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -NETWORK_PROV_MGR_PVT_EVENT esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -NVSHandleEntry::s_nvs_next_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -NoiseTimerInterval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -PROTOCOMM_SECURITY_SESSION_EVENT esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -PROTOCOMM_TRANSPORT_BLE_EVENT esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -RC_GetAckRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) -RC_GetAckTime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -RC_GetBlockAckTime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -RC_GetCtsTime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -RC_GetRtsRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) -RC_SetBasicRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -RFChannelSel /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -RMAKER_COMMON_EVENT esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -RMAKER_EVENT esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -RMAKER_OTA_EVENT esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -RMT esp-idf/hal/libhal.a(rmt_hal.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -RMTMEM esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) -RTCCNTL esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -RxNodeNum /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -SPIMEM0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SPIMEM1 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SYSTEM esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) -SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -SigInMacISR /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -SigSpaceFree /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -SigSpaceMalloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) -TASK_DESC_LLC /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) -TASK_DESC_LLM /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -TASK_DESC_MISC /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) -TASK_DESC_VSHCI /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) -TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -TIMERG1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -TRC_AMPDU_PER_DOWN_THRESHOLD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -TRC_AMPDU_PER_UP_THRESHOLD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -TRC_PER_IS_GOOD /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -TmpSTAAPCloseAP /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -TxNodeNum /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -TxRxCxt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -UART0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -UART1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -USB_SERIAL_JTAG esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -WIFI_MESH_EVENT /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -_Balloc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -_Bfree /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -_C_time_locale /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -_PathLocale /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -__action_table /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__adddf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__addsf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__any_on /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) -__ascii_mbtowc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -__ascii_wctomb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -__ashldi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) -__assert esp-idf/newlib/libnewlib.a(assert.c.obj) -__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__atexit /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) -__atexit_recursive_mutex /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) -__atomic_add_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_compare_exchange esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_compare_exchange_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) -__atomic_compare_exchange_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_compare_exchange_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -__atomic_compare_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_exchange_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_exchange_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_exchange_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_add_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_add_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_add_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -__atomic_fetch_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -__atomic_fetch_and_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_and_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_and_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -__atomic_fetch_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -__atomic_fetch_nand_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_or_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_or_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_or_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -__atomic_fetch_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -__atomic_fetch_sub_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_sub_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_sub_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -__atomic_fetch_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -__atomic_fetch_xor_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_xor_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_xor_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -__atomic_nand_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -__atomic_sub_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__b2d /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) -__bswapdi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -__bswapsi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_bswapsi2.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -__call_exitprocs /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) -__chclass /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__clz_tab /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) -__clzsi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clzsi2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(addsf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(adddf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) -__copybits /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__ctzdi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzdi2.o) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -__ctzsi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ctzsi2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -__cxa_begin_catch /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) -__cxa_end_catch /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) -__cxa_get_exception_ptr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -__cxa_get_globals /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -__cxa_get_globals_fast /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_pure_virtual /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -__cxx_eh_arena_size_get esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) -__cxx_init_dummy esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) -__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -__cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -__cxxabiv1::__terminate(void (*)()) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__cxxabiv1::__terminate_handler /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__cxxabiv1::__unexpected(void (*)()) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__cxxabiv1::__unexpected_handler /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__d2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__default_global_locale /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -__divdf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divdf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -__divdi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_divdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -__divsf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(divsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__eh_globals_init::_S_init /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) -__env_lock /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) -__env_unlock /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) -__eqdf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -__eqsf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -__errno /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) -__esp_rmaker_claim_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -__esp_rmaker_get_node_config esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -__extenddftf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extenddftf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) -__extendsfdf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(extendsfdf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -__ffsdi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffsdi2.o) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -__ffssi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ffssi2.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) -__fixdfdi /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfdi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__fixdfsi /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixdfsi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -__fixunsdfsi /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunsdfsi.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__fixunssfsi /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(fixunssfsi.o) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -__floatdidf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__floatsidf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -__floatsisf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatsisf.o) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__floatundisf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -__floatunsidf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -__floatunsisf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatunsisf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -__fp_lock_all /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__fp_unlock_all /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__gedf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - esp-idf/json/libjson.a(cJSON.c.obj) -__gesf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -__gethex /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__getopt_long_only_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) -__getopt_long_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) -__getopt_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) -__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-errno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -__gettzinfo /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gettzinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -__global_locale_ptr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__global_pointer$ esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -__gnu_cxx::__concurrence_lock_error::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_unlock_error::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__mutex::lock() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gnu_cxx::__mutex::unlock() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -__gtdf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gedf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) -__gtsf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(gesf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__hexdig_fun /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) -__hexnan /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__hi0bits /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) -__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -__i2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_priority_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_priority_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -__itoa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) -__ledf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) -__lesf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -__lo0bits /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) -__locale_mb_cur_max /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -__localeconv_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) -__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) -__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) -__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) -__lshift /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__lshrdi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatdidf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(floatundisf.o) -__ltdf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(ledf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__ltsf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(lesf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__match /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-hexnan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__mcmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__mdiff /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__moddi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_moddi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -__month_lengths /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-month_lengths.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -__mprec_bigtens /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__mprec_tens /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__mprec_tinytens /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) -__muldf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(muldf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) -__mulsf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(mulsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -__multadd /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) -__multiply /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__nedf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqdf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__nesf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(eqsf2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__popcountsi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__pow5mult /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__ratio /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-envlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-__call_atexit.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__s2b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__sccl /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sccl.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -__sclose /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__seofread /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) -__sf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) -__sflags /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-flags.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) -__sflush_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) -__sfp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) -__sfp_lock_acquire /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) -__sfp_lock_release /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) -__sfvwrite_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) -__sglue /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) -__sinit /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__smakebuf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) -__sprint_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__sread /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__srefill_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) -__srget /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) -__srget_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rget.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) -__sseek /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__ssprint_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) -__ssrefill_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) -__ssvfiscanf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) -__ssvfscanf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) -__state_table /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__stdio_exit_handler /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) -__subdf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subdf3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) -__submore /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -__subsf3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(subsf3.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__swbuf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) -__swbuf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) -__swhatbuf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) -__swrite /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) -__swsetup_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__sync_add_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_add_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_add_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_add_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_and_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_and_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_and_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_sub_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_sub_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_sub_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_xor_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_xor_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_xor_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__time_load_locale /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-timelocal.o) -__truncdfsf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(truncdfsf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -__trunctfdf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -__tz_lock /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -__tz_unlock /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzlock.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -__tzcalc_limits /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__udivdi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/log/liblog.a(util.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -__ulp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__umoddi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_umoddi3.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/log/liblog.a(util.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -__unorddf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unorddf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) -__unordsf2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(unordsf2.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -__utoa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) -__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_SetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_SetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___deregister_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___gxx_personality_v0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_table_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap_mbedtls_ssl_close_notify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -__wrap_mbedtls_ssl_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -__wrap_mbedtls_ssl_handshake_client_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -__wrap_mbedtls_ssl_handshake_server_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -__wrap_mbedtls_ssl_read esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -__wrap_mbedtls_ssl_send_alert_message esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -__wrap_mbedtls_ssl_session_reset esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -__wrap_mbedtls_ssl_setup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -__wrap_mbedtls_ssl_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -__wrap_mbedtls_ssl_write_client_hello esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -_asprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) -_atoi_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) -_binary_rmaker_mqtt_server_crt_end esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) -_binary_rmaker_mqtt_server_crt_start esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -_binary_rmaker_ota_server_crt_end esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) -_binary_rmaker_ota_server_crt_start esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -_binary_x509_crt_bundle_end esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -_binary_x509_crt_bundle_start esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_bt_bss_end esp-idf/bt/libbt.a(bt.c.obj) -_bt_bss_start esp-idf/bt/libbt.a(bt.c.obj) -_bt_controller_bss_end esp-idf/bt/libbt.a(bt.c.obj) -_bt_controller_bss_start esp-idf/bt/libbt.a(bt.c.obj) -_bt_controller_data_end esp-idf/bt/libbt.a(bt.c.obj) -_bt_controller_data_start esp-idf/bt/libbt.a(bt.c.obj) -_bt_data_end esp-idf/bt/libbt.a(bt.c.obj) -_bt_data_start esp-idf/bt/libbt.a(bt.c.obj) -_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_cnx_start_connect_without_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -_ctype_ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ctype_.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) -_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_daylight /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -_do_wifi_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -_do_wifi_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -_dtoa_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) -_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) -_fclose_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_fflush_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -_fgetc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) -_fgets_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) -_findenv /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) -_findenv_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) -_fopen_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) -_fprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) -_fputc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) -_fputs_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) -_fread_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) -_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wsetup.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fseek_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) -_fseeko_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) -_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_ftell_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) -_ftello_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) -_fwalk_sglue /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwalk.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) -_fwrite_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) -_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) -_g_esp_netif_inherent_sta_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -_g_esp_netif_netstack_default_eth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -_g_esp_netif_netstack_default_wifi_ap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -_g_esp_netif_netstack_default_wifi_nan esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -_g_esp_netif_netstack_default_wifi_sta esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -_g_esp_netif_soft_ap_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) -_getenv_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) -_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_global_interrupt_handler esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_impure_data /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-refill.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -_impure_ptr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) -_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_interrupt_handler esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) -_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) -_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_localeconv_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) -_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) -_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-makebuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_mbrtowc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -_mbtowc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbtowc_r.o) -_mdns_disable_pcb esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_enable_pcb esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_get_esp_netif esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -_mdns_get_packet_data esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_get_packet_len esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_packet_free esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_pcb_deinit esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_pcb_init esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_send_rx_action esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -_mdns_server esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mdns_udp_pcb_write esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -_mesh_check_roots_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_check_window_close_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_check_window_open_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_find_root_competitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -_mesh_remove_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_reset_window_open_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_num_reach_max /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_conflict_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_roots_process_yield /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_set_flag_roots_found /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_timer_process_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_timer_process_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_timer_process_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_timer_process_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mesh_timer_process_yield /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_mprec_log10 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) -_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_panic_handler esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/riscv/libriscv.a(vectors_intc.S.obj) -_print_roots_count /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_printf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) -_putc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) -_putchar_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) -_puts_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) -_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_reclaim_reent /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -_remove_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) -_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_force_slow_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_setenv_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) -_setlocale_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -_sfread_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) -_siscanf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) -_sniprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) -_snprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) -_sprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) -_sscanf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) -_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_strdup_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) -_strerror_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) -_strndup_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) -_strtod_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -_strtod_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) -_strtol_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) -_strtoll_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -_strtoul_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -_strtoull_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -_sungetc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) -_svfiprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) -_svfprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) -_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_thread_local_bss_end esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_bss_start esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_data_end esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_data_start esp-idf/freertos/libfreertos.a(port.c.obj) -_times_r esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_timezone /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) -_tzname /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzvars.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -_tzset_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) -_tzset_unlocked /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) -_tzset_unlocked_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) -_ungetc_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) -_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_unsetenv_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) -_user_strerror /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-u_strerr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) -_vasprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) -_vector_table esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_vfiprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) -_vfprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) -_vprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) -_vsnprintf_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) -_wctomb_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-wctomb_r.o) -_wifi_vnd_ext_mesh_roots_free /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_wifi_vnd_ext_mesh_roots_malloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) -aa_gen /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -abort esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_term_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -abort_expect_void esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -abort_expect_void_and_return esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -abs /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-abs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -access esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -acd_add esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -acd_arp_reply esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) -acd_netif_ip_addr_changed esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -acd_network_changed_link_down esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -acd_remove esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -acd_start esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -adc2_cal_include esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -adc2_wifi_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc2_wifi_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_apb_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -adc_apb_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -adc_calc_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) -adc_hal_arbiter_config esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_hal_calibration_init esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) -adc_hal_self_calibration esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_calibration_param esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_controller esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_try_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_set_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) -add_mic_ie_bip /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -addba_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -adjtime esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -advFilter_stack_enableDupExcListVsCmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -adv_adv_data_need_to_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -adv_evt_prop2type /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -adv_evt_type2prop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -adv_itf_version_is_legacy /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -adv_scan_rsp_data_need_to_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -adv_stack_enableClearLegacyAdvVsCmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -aes_128_cbc_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -aes_128_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -aes_cmac_zero /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) -aes_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) -aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) -aes_decrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) -aes_decrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) -aes_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) -aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) -aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) -aes_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) -aes_gcm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) -aes_gcm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) -aes_gmac esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -aes_hal_mode_init esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_read_iv esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_set_iv esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_setkey esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_transform_block esp-idf/hal/libhal.a(aes_hal.c.obj) -aes_hal_transform_dma_finish esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -aes_hal_transform_dma_start esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -aes_hal_wait_done esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -aes_k2_salt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) -aes_k3_id64 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) -aes_k3_salt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) -aes_k4_id6 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) -aes_k4_salt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) -aes_siv_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -aes_siv_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) -aes_unwrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -aes_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) -ampdu_alloc_rx_ba_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ampdu_dispatch /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ampdu_dispatch_all /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ampdu_dispatch_as_many_as_possible /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ampdu_dispatch_movement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ampdu_dispatch_upto /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ampdu_free_rx_ba_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ampdu_process_multicast_address_qos_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ant_btrx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -ant_bttx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -ant_dft_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_rx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_tx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_wifirx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ant_wifitx_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ap_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -ap_free_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -ap_get_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -ap_no_lr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ap_no_lr_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ap_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ap_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ap_sa_query_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ap_sta_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -ap_sta_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -ap_sta_hash_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -ap_sta_pending_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -ap_try_sa_query_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -app_driver_init esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -app_insights_enable esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_light_init esp-idf/main/libmain.a(app_driver.c.obj) -app_light_set_brightness esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_light_set_hue esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_light_set_led esp-idf/main/libmain.a(app_driver.c.obj) -app_light_set_power esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_light_set_saturation esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_main esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -app_network_init esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_network_set_custom_mfg_data esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_network_set_custom_pop esp-idf/app_network/libapp_network.a(app_network.c.obj) -app_network_start esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -app_network_start_timer esp-idf/app_network/libapp_network.a(app_network.c.obj) -app_reset_button_create esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) -app_reset_button_register esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -app_scan_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -arg_dstr_cat esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) -arg_dstr_catc esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) -arg_dstr_catf esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) -arg_dstr_create esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_dstr_cstr esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_dstr_destroy esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_dstr_free esp-idf/console/libconsole.a(arg_dstr.c.obj) -arg_dstr_reset esp-idf/console/libconsole.a(arg_dstr.c.obj) -arg_dstr_set esp-idf/console/libconsole.a(arg_dstr.c.obj) -arg_end esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_free esp-idf/console/libconsole.a(argtable3.c.obj) -arg_freetable esp-idf/console/libconsole.a(argtable3.c.obj) -arg_int0 esp-idf/console/libconsole.a(arg_int.c.obj) -arg_int1 esp-idf/console/libconsole.a(arg_int.c.obj) -arg_intn esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_mgsort esp-idf/console/libconsole.a(arg_utils.c.obj) -arg_nullcheck esp-idf/console/libconsole.a(argtable3.c.obj) -arg_parse esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_print_errors esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_print_errors_ds esp-idf/console/libconsole.a(arg_end.c.obj) -arg_print_formatted esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_print_glossary esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_print_glossary_ds esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_glossary_gnu esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_glossary_gnu_ds esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_option esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_option_ds esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) -arg_print_syntax esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_syntax_ds esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_print_syntaxv esp-idf/console/libconsole.a(argtable3.c.obj) -arg_print_syntaxv_ds esp-idf/console/libconsole.a(argtable3.c.obj) -arg_set_panic esp-idf/console/libconsole.a(arg_utils.c.obj) -arg_str0 esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -arg_str1 esp-idf/console/libconsole.a(arg_str.c.obj) -arg_strn esp-idf/console/libconsole.a(arg_str.c.obj) -argtable3_xcalloc esp-idf/console/libconsole.a(arg_utils.c.obj) -argtable3_xfree esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) -argtable3_xmalloc esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_str.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) -argtable3_xrealloc esp-idf/console/libconsole.a(arg_utils.c.obj) -asprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-asprintf.o) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -assoc_ie_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -atoi /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -auth_build_token_req esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -auth_sae_queue esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -bars /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -bb_hw_intr_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) -bb_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -bb_int_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) -bb_intr_handl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -bias_dreg_i2c_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -bias_reg_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -bigHexP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -bin_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -ble_2_rf_chan_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) -ble_acl_data_cb_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -ble_acl_data_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -ble_acl_data_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -ble_adv_reattempt esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_att_chan_mtu esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_att_clt_rx_error esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_exec_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_find_info esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_find_type_value esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_indicate esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_mtu esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_prep_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read_blob esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read_group_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read_mult esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read_mult_var esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_read_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_rx_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_clt_tx_exec_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_find_info esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_find_type_value esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_indicate esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_mtu esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_notify esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_notify_mult esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_prep_write esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_read esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_read_blob esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_read_group_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_read_mult esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_read_type esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_signed_write_cmd esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_write_cmd esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_clt_tx_write_req esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_cmd_get esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_att_cmd_prepare esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_att_conn_chan_find esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_conn_chan_find_by_psm esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_create_chan esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_att_error_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_error_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_exec_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_exec_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_exec_write_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_exec_write_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_info_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_info_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_info_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_info_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_type_value_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_find_type_value_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_get_default_bearer_cid esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_inc_tx_stat esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_indicate_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_indicate_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_indicate_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_indicate_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_init esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_att_is_att_pdu_op esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_is_request_op esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_is_response_op esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_mtu esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_mtu_by_cid esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_mtu_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_mtu_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_mtu_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_mtu_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_notify_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_notify_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_preferred_mtu esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_prep_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_prep_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_prep_write_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_prep_write_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_blob_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_blob_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_group_type_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_group_type_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_group_type_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_group_type_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_mult_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_mult_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_mult_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_mult_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_type_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_type_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_type_rsp_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_read_type_rsp_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_set_default_bearer_using_cid esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_set_peer_mtu esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_att_set_preferred_mtu esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_stats esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_find_by_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_find_by_uuid esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_hide_range esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_init esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_att_svr_prep_clear esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_att_svr_prev_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_read_handle esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_svr_read_local esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_att_svr_register esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_reset esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_restore_range esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_rx_exec_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_find_info esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_find_type_value esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_indicate esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_mtu esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_notify esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_notify_multi esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_prep_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read_blob esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read_group_type esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read_mult esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read_mult_var esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_read_type esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_signed_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_write esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_rx_write_no_rsp esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_start esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_stop esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_att_svr_ticks_until_tmo esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_att_svr_tx_error_rsp esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_svr_write_local esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_att_truncate_to_mtu esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_tx esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_att_tx_with_conn esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_att_write_cmd_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_write_cmd_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_write_req_parse esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_att_write_req_write esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_buf_alloc esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_buf_free esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_con_evt_cb_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -ble_con_evt_status_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -ble_conn_reattempt esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_deepsleep_recover_hw_logic /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_deepsleep_recover_hw_reg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_deepsleep_reset_lc_bb_reg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_evt_kick_delay_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) -ble_evt_kick_delay_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) -ble_freertos_co_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_freertos_ev_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_freertos_evq_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_freertos_mutex_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_freertos_sem_pool esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_gap_adv_active esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gap_adv_rsp_set_data esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_adv_rsp_set_fields esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gap_adv_set_data esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_adv_set_fields esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gap_adv_start esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gap_adv_stop esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gap_authorize_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_gap_conn_active esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gap_conn_broken esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_conn_cancel esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_conn_find esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gap_conn_find_by_addr esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_conn_find_handle_by_addr esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_conn_foreach_handle esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_conn_rssi esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_connect esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_deinit esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gap_dev_authorization esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_disc esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_disc_active esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gap_disc_cancel esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_dtm_enh_rx_start esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_dtm_enh_tx_start esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_dtm_rx_start esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_dtm_stop esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_dtm_tx_start esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_eatt_event esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_enc_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_gap_encryption_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_end_test_evt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_enh_read_transmit_power_level esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_event_listener_register esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) -ble_gap_event_listener_unregister esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) -ble_gap_ext_disc esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_get_local_used_addr esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_host_check_status esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_identity_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_gap_init esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gap_link_estab_call esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_master_connect_reattempt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_master_in_progress esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_mtu_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gap_notify_rx_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_gap_notify_tx_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gap_pair_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_pairing_complete_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_gap_passkey_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_gap_preempt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_gap_preempt_done esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_gap_preempt_no_lock esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_read_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_read_rem_ver_info esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_read_remote_transmit_power_level esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_read_sugg_def_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_reattempt_count esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_repeat_pairing_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_gap_reset_state esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gap_rx_adv_report esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_conn_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_data_len_change esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_disconn_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_l2cap_update_req esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_gap_rx_param_req esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_phy_update_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_rd_rem_sup_feat_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_rd_rem_ver_info_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_test_evt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_rx_update_complete esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_security_initiate esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_data_related_addr_change_param esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_event_cb esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_path_loss_reporting_enable esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_path_loss_reporting_param esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_prefered_default_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_prefered_le_phy esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_priv_mode esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_set_transmit_power_reporting_enable esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_slave_adv_reattempt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_stats esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_subscribe_event esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gap_terminate esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gap_terminate_with_conn esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_gap_timer esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gap_tx_test_evt esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gap_unpair esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_unpair_oldest_except esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_gap_unpair_oldest_peer esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_gap_update_params esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_gap_wl_read_size esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_wl_set esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_wl_tx_clear esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_wl_tx_rmv esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gap_write_sugg_def_data_len esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gattc_any_jobs esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_connection_broken esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gattc_disc_all_chrs esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_disc_all_dscs esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_disc_all_svcs esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_disc_chrs_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_disc_svc_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_exchange_mtu esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_find_inc_svcs esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_indicate esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_indicate_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_init esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gattc_notify esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_notify_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_read esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_read_by_uuid esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_read_long esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_read_mult esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_read_mult_var esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_rx_err esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_exec_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_find_info_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_find_info_idata esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_find_type_value_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_find_type_value_hinfo esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_mtu esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_prep_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_blob_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_group_type_adata esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_group_type_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_mult_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_type_adata esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_read_type_complete esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_rx_write_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gattc_signed_write esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_stats esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_timer esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gattc_write esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_write_flat esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_write_long esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_write_no_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_write_no_rsp_flat esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gattc_write_reliable esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_add_svcs esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gatts_bonding_established esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gatts_bonding_restored esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gatts_chr_updated esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_clt_cfg_access esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_conn_can_alloc esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_gatts_conn_init esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_gatts_connection_broken esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_gatts_count_cfg esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_gatts_find_chr esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_find_dsc esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_find_svc esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_free_svcs esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_gatts_get_cfgable_chrs esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_gatts_indicate esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_indicate_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_indicate_fail_notconn esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_init esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gatts_lcl_svc_foreach esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_notify esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_notify_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_notify_multiple_custom esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_peer_cl_sup_feat_get esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_peer_cl_sup_feat_update esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_register_svcs esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_reset esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_rx_indicate_ack esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_rx_indicate_rsp esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_gatts_send_next_indicate esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_gatts_set_clt_cfg_perm_flags esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_start esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gatts_stats esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_stop esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_gatts_svc_set_visibility esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_gatts_tx_notifications esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hci_trans_cfg_hs esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_hci_trans_hs_acl_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) -ble_hci_trans_hs_cmd_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) -ble_hci_trans_ll_acl_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_hci_trans_ll_evt_tx esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_hci_trans_reset esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_hs_adv_find_field esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_adv_parse esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_hs_adv_parse_fields esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_hs_adv_set_fields esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_adv_set_fields_mbuf esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_hs_adv_set_flat esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_hs_atomic_conn_delete esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_atomic_conn_flags esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_hs_atomic_conn_insert esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) -ble_hs_atomic_conn_set_flags esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) -ble_hs_atomic_first_conn_handle esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_cfg esp-idf/bt/libbt.a(ble_hs_cfg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_hs_conn_addrs esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_alloc esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_can_alloc esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_chan_exist esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_hs_conn_chan_find_by_dcid esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_hs_conn_chan_find_by_scid esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_hs_conn_chan_insert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_hs_conn_delete_chan esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_hs_conn_exists esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_hs_conn_find esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_conn_find_assert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_hs_conn_find_by_addr esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_find_by_idx esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_hs_conn_first esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_conn_foreach esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_free esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) -ble_hs_conn_init esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_conn_insert esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_conn_remove esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) -ble_hs_conn_timer esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_deinit esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -ble_hs_enabled_state esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_hs_enqueue_hci_event esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_evq_get esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_evq_set esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_flow_connection_broken esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_flow_deinit esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_flow_init esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_flow_startup esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_flow_stop esp-idf/bt/libbt.a(ble_hs_flow.c.obj) -ble_hs_flow_track_data_mbuf esp-idf/bt/libbt.a(ble_hs_flow.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_get_rpa_timeout esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_hci_acl_tx esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_hs_hci_acl_tx_now esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_add_avail_pkts esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_hci_avail_pkts esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_cmd_send_buf esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_cmd_tx esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_cmd_tx_no_rsp esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) -ble_hs_hci_deinit esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_dtm_enh_rx_start esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_dtm_enh_tx_start esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_dtm_rx_start esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_dtm_stop esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_dtm_tx_start esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_ev_pool esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_evt_acl_process esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_evt_process esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_frag_num_mbufs esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_frag_num_mbufs_free esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_get_hci_supported_cmd esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_get_hci_version esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_get_le_supported_feat esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_init esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_read_chan_map esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) -ble_hs_hci_rx_evt esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_hci_set_buf_sz esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_set_chan_class esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) -ble_hs_hci_set_hci_supported_cmd esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_set_hci_version esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_set_le_supported_feat esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_hci_util_data_hdr_strip esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_hci_util_handle_pb_bc_join esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_hci_util_rand esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_hci_util_read_adv_tx_pwr esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_hs_hci_util_read_rssi esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_util_read_sugg_def_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_util_set_data_addr_change esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_util_set_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hci_util_set_random_addr esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_hci_util_write_sugg_def_data_len esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_hw_error esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_id_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_id_copy_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(addr.c.obj) -ble_hs_id_gen_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(addr.c.obj) -ble_hs_id_infer_auto esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_hs_id_reset esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_id_rnd_reset esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_id_set_pub esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_id_set_rnd esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(addr.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_hs_id_use_addr esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_init esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_is_enabled esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_is_parent_task esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) -ble_hs_is_rpa esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_lock esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_lock_nested esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_log esp-idf/bt/libbt.a(ble_hs_log.c.obj) -ble_hs_log_flat_buf esp-idf/bt/libbt.a(ble_hs_log.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_hs_log_mbuf esp-idf/bt/libbt.a(ble_hs_log.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_max_attrs esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_hs_max_client_configs esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_hs_max_services esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_hs_mbuf_acl_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_mbuf_att_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_hs_mbuf_bare_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_hs_mbuf_from_flat esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_hs_mbuf_l2cap_pkt esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_hs_mbuf_pullup_base esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_hs_mbuf_to_flat esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_hs_misc_conn_chan_find esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_hs_misc_conn_chan_find_reqd esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_hs_misc_own_addr_type_to_id esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_misc_peer_addr_type_to_id esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_hs_misc_restore_irks esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_notifications_sched esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_hs_process_rx_data_queue esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_pvcy_add_entry esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_store.c.obj) -ble_hs_pvcy_default_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_pvcy_enabled esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_pvcy_ensure_started esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_pvcy_our_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_hs_pvcy_remove_entry esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_pvcy_set_default_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_pvcy_set_mode esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_hs_pvcy_set_our_irk esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) -ble_hs_pvcy_set_resolve_enabled esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_reset_rpa_timeout esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_sched_reset esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_hs_sched_start esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_set_rpa_timeout esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_hs_start esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_startup_go esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_stats esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_stop esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -ble_hs_stop_deinit esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_stop_init esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_sync_state esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) -ble_hs_synced esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_timer_resched esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_hs_tx_data esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -ble_hs_unlock esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs_atomic.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) -ble_hs_unlock_nested esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_hs_util_ensure_addr esp-idf/bt/libbt.a(addr.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_hs_wakeup_tx esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_isr_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) -ble_l2cap_chan_alloc esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_l2cap_chan_free esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_l2cap_chan_pool esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_l2cap_connect esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_create_server esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_disconnect esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_enhanced_connect esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_get_chan_info esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_get_conn_handle esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_l2cap_init esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_l2cap_is_mtu_req_sent esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -ble_l2cap_parse_hdr esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_prepend_hdr esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_reconfig esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_reconfig_mtu_mps esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_recv_ready esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_remove_rx esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_l2cap_rx esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_l2cap_send esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_sig_cmd_get esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_l2cap_sig_conn_broken esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_l2cap_sig_create_chan esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_l2cap_sig_hdr_parse esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_l2cap_sig_init esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_sig_reject_invalid_cid_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_l2cap_sig_reject_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_l2cap_sig_timer esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_l2cap_sig_tx esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) -ble_l2cap_sig_update esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_l2cap_stats esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_l2cap_tx esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -ble_ll_adv_aa_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_get_adv_txed_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_get_scan_rxed_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_qa_test_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_rand_addr_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -ble_ll_reset_rand_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_scan_aa_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_scan_channel_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_ll_scan_set_perfer_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_mqueue_deinit esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_mqueue_get esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_mqueue_init esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_mqueue_put esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_port_mutex esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ble_resolve_adv_data esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_restore_our_sec_nvs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_restore_peer_sec_nvs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_sm_alg_aes_cmac esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_sm_alg_c1 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) -ble_sm_alg_ecc_init esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_encrypt esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -ble_sm_alg_f4 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_f5 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_f6 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_g2 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_gen_dhkey esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_gen_key_pair esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_alg_s1 esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) -ble_sm_cmd_get esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_connection_broken esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_sm_create_chan esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) -ble_sm_enc_change_rx esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_sm_enc_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_sm_enc_key_refresh_rx esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_sm_gen_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_ia_ra esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) -ble_sm_incr_our_sign_counter esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -ble_sm_incr_peer_sign_counter esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -ble_sm_init esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) -ble_sm_inject_io esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_ioact_state esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_lgcy_confirm_exec esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_lgcy_io_action esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_lgcy_random_exec esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_lgcy_random_rx esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_ltk_req_rx esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -ble_sm_num_procs esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_our_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) -ble_sm_pair_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_sm_peer_pair_rand esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) -ble_sm_proc_can_advance esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_proc_find esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_process_result esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_confirm_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_dhkey_check_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_dhkey_check_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_init esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_io_action esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_oob_confirm esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_oob_data_check esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_oob_generate_data esp-idf/bt/libbt.a(ble_sm_sc.c.obj) -ble_sm_sc_public_key_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_public_key_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_random_exec esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_sc_random_rx esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_sm_slave_initiate esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_sm_timer esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_sm_tx esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_clear esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_config_cccds esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_compare_bond_count esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_csfcs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_delete esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_init esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_store_config_local_irks esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_cccds esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_csfcs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_local_irks esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_our_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_peer_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_num_rpa_recs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_our_bond_count esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_our_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_peer_bond_count esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_peer_secs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_read esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_rpa_recs esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_config_write esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_delete esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_store_delete_cccd esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_delete_csfc esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_delete_local_irk esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_delete_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_delete_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_delete_rpa_rec esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_full_event esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_iterate esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_store_key_from_value esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_key_from_value_cccd esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_key_from_value_csfc esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_key_from_value_local_irk esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_key_from_value_rpa_rec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_key_from_value_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) -ble_store_overflow_event esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_read esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_store_read_cccd esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_read_csfc esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_read_local_irk esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_store_read_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_store_read_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_store_read_rpa_rec esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_util_bonded_peers esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_store_util_count esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_util_delete_all esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_store_util_delete_oldest_peer esp-idf/bt/libbt.a(ble_store_util.c.obj) -ble_store_util_delete_peer esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -ble_store_util_status_rr esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_store_write esp-idf/bt/libbt.a(ble_store.c.obj) -ble_store_write_cccd esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_write_csfc esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -ble_store_write_local_irk esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -ble_store_write_our_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_write_peer_sec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_store_write_rpa_rec esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) -ble_svc_gap_deinit esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_svc_gap_device_appearance esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_svc_gap_device_appearance_set esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_svc_gap_device_name esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_svc_gap_device_name_set esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_svc_gap_init esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_svc_gap_set_chr_changed_cb esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -ble_transport_alloc_acl_from_hs esp-idf/bt/libbt.a(transport.c.obj) -ble_transport_alloc_acl_from_ll esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_alloc_cmd esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) -ble_transport_alloc_evt esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_alloc_iso_from_hs esp-idf/bt/libbt.a(transport.c.obj) -ble_transport_alloc_iso_from_ll esp-idf/bt/libbt.a(transport.c.obj) -ble_transport_deinit esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_free esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_transport_hs_init esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -ble_transport_init esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_ipc_free esp-idf/bt/libbt.a(transport.c.obj) -ble_transport_ll_deinit esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -ble_transport_ll_init esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -ble_transport_register_put_acl_from_ll_cb esp-idf/bt/libbt.a(transport.c.obj) -ble_transport_to_hs_acl_impl esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_to_hs_evt_impl esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -ble_transport_to_hs_iso_impl esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_transport_to_ll_acl_impl esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -ble_transport_to_ll_cmd_impl esp-idf/bt/libbt.a(hci_esp_ipc_legacy.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) -ble_try_turn_on_pll_track /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_txpwr_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -ble_txpwr_lvl_range_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_txpwr_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -ble_txpwr_set_inter /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_util_buf_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -ble_uuid_cmp esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_copy esp-idf/bt/libbt.a(ble_uuid.c.obj) -ble_uuid_flat esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -ble_uuid_from_str esp-idf/bt/libbt.a(ble_uuid.c.obj) -ble_uuid_init_from_att_buf esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_init_from_att_mbuf esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_init_from_buf esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_uuid_length esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_to_any esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_to_mbuf esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) -ble_uuid_to_str esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -ble_uuid_u16 esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) -block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) -bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_efuse_blk_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -bootloader_flash_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -bt_async_wakeup_request esp-idf/bt/libbt.a(bt.c.obj) -bt_bb_corr_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_detect_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_dpo_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_filter_sel /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_gain_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_restart_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_target_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) -bt_bb_v2_init_cmplx /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -bt_bb_v2_recorrect /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_v2_rx_rssi_thresh /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_v2_rx_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_v2_tx_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_bb_v2_version /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_chan_pwr_interp /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -bt_controller_txpwr_index_2_level /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) -bt_controller_txpwr_level_2_index /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) -bt_get_channel_pwr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_get_channel_pwr_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_get_channel_pwr_unset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_osi_mem_calloc esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) -bt_osi_mem_calloc_internal esp-idf/bt/libbt.a(bt_osi_mem.c.obj) -bt_osi_mem_free esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -bt_osi_mem_malloc esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -bt_osi_mem_malloc_internal esp-idf/bt/libbt.a(bt_osi_mem.c.obj) -bt_record_hci_data esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -bt_rf_coex_cfg_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) -bt_rf_coex_cfg_overwrite /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -bt_rf_coex_cfg_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) -bt_rf_coex_get_dft_cfg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) -bt_rf_coex_hook_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) -bt_rf_coex_hooks_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -bt_rf_coex_hooks_p_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) -bt_set_chn /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -bt_stack_enableEchoVsCmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -bt_track_pll_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -bt_tx_gain_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -bt_tx_pwctrl_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -bt_txdc_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -bt_txiq_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -bt_txpwr_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -bt_wakeup_request_end esp-idf/bt/libbt.a(bt.c.obj) -btbb_wifi_bb_cfg2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -btdm_aa_check_enhance_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_app_ref_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_ble_power_down_dma_copy /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_cca_feature_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_coex_dynamic_pti_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) -btdm_con_maxevtime_cal /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_con_maxevtime_cal_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_controller_compile_version_check_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_controller_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_disable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_enable_sleep /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_get_compile_version /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_get_compile_version_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_controller_get_mode /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_get_sleep_mode /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_is_enabled /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) -btdm_controller_on_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -btdm_controller_rom_data_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_controller_sleep_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_controller_task /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_deep_sleep_mem_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_deep_sleep_mem_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_dis_privacy_err_report /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_dis_privacy_err_report_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_disable_adv_delay /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_disable_adv_delay_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_enable_irq_fifo /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) -btdm_enable_scan_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_enable_scan_continue_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_enable_scan_forever /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_enable_scan_forever_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_env_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_get_power_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_get_power_state_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_get_prevent_sleep_flag /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_get_prevent_sleep_flag_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_gpio_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_gpio_set_level /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_hci_tl_io_event_post /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_hli_funcs_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_hli_get_funcs /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_hli_get_null_funcs /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_in_wakeup_requesting_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_lpclk_select_src /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_lpclk_set_div /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_ol_task_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) -btdm_osi_funcs_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_power_state_active /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_power_state_active_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_pwr_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_rom_ref_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_set_cca_fifo_int_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_set_cca_sw_intr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_sleep_clock_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_slp_err /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) -btdm_switch_phy_coded /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_switch_phy_coded_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -btdm_vnd_offload_task_deregister /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_vnd_offload_task_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -btdm_wakeup_request /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(bt.c.obj) -buf_shift_right esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -byte_tx_time /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -bzero /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - esp-idf/newlib/libnewlib.a(heap.c.obj) -cJSON_AddArrayToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddBoolToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddFalseToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddItemReferenceToArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddItemReferenceToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddItemToArray esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_AddItemToObject esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_AddItemToObjectCS esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddNullToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddNumberToObject esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_AddObjectToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddRawToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_AddStringToObject esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_AddTrueToObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Compare esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateArray esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_CreateArrayReference esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateBool esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateDoubleArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateFalse esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateFloatArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateIntArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateNull esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateNumber esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateObject esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_CreateObjectReference esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateRaw esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateString esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_CreateStringArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateStringReference esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_CreateTrue esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Delete esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_DeleteItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DeleteItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DeleteItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DetachItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DetachItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DetachItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_DetachItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Duplicate esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_GetArrayItem esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetArraySize esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetErrorPtr esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetNumberValue esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetObjectItem esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetObjectItemCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_GetStringValue esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_HasObjectItem esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_InitHooks esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_InsertItemInArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsBool esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsFalse esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsInvalid esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsNull esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsNumber esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsRaw esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsString esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_IsTrue esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Minify esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Parse esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ParseWithLength esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ParseWithLengthOpts esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ParseWithOpts esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Print esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -cJSON_PrintBuffered esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_PrintPreallocated esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_PrintUnformatted esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ReplaceItemInArray esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ReplaceItemInObject esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ReplaceItemInObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_ReplaceItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_SetNumberHelper esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_SetValuestring esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_Version esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_free esp-idf/json/libjson.a(cJSON.c.obj) -cJSON_malloc esp-idf/json/libjson.a(cJSON.c.obj) -cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -cache_ilg_bits esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -calloc esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -candidate_monitor_timer_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -candidate_monitor_timer_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -cannel_scan_connect_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -capture_tcp_transport_error esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -ccmp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ccmp_256_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -ccmp_256_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -ccmp_decap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) -ccmp_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -ccmp_encap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) -ccmp_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -ccmp_encrypt_pv1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -ccmp_get_pn esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) -cfree esp-idf/newlib/libnewlib.a(heap.c.obj) -challenge_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) -challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) -chan14_mic_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -chan14_mic_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) -chanSel_stack_enableSetCsaVsCmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -chap_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) -check_bss_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -check_comeback_token esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -chip726_phyrom_version_num /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -chip7_phy_init_ctrl /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -chip_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chip_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chip_post_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chip_v7_set_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -chip_v7_set_chan_ana /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -chip_v7_set_chan_misc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -chip_v7_set_chan_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -chm_acquire_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -chm_bitmap_idx_to_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -chm_cancel_op /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chm_check_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -chm_check_channel_is_valid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -chm_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chm_end_op /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -chm_end_op_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -chm_get_band_from_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -chm_get_chan_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -chm_get_channel_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -chm_get_current_band /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -chm_get_current_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -chm_get_home_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -chm_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -chm_is_at_home_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -chm_mhz2num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -chm_release_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -chm_return_home_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -chm_set_current_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -chm_set_home_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -chm_start_op /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cipher_map_net80211_to_public_cipher /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cipher_type_map_public_to_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -cipher_type_map_supp_to_public esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -clear_bss_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -clk_hal_clock_output_setup esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_clock_output_teardown esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -clk_hal_lp_slow_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -clk_hal_soc_root_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) -clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) -close /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysclose.o) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -closedir esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -cmd_apply_thread_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_thread_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_apply_wifi_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_ctrl_thread_reprov__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reprov__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_thread_reset__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reprov__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_ctrl_wifi_reset__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -cmd_get_property_count__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_count__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_property_values__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_get_thread_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_thread_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_get_wifi_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_scan_thread_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_start__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_thread_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_start__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_scan_wifi_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -cmd_set_property_values__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_property_values__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -cmd_set_thread_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_thread_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cmd_set_wifi_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -cnx_add_rc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_add_to_blacklist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_assoc_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_assoc_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_auth_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -cnx_auth_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_auth_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_beacon_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_bss_alloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_bss_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_can_do_obss_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_check_bssid_in_blacklist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_clear_blacklist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_connect_next_ap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_connect_next_ap_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_connect_next_ap_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_connect_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_connect_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_csa_fn /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_csa_fn_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_do_handoff_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -cnx_get_authtype_strength /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_handshake_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_handshake_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -cnx_is_any_node_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -cnx_node_alloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -cnx_node_is_existing /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -cnx_node_join /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -cnx_node_leave /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -cnx_node_remove /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_node_search /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -cnx_obss_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_obss_scan_done_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_obss_scan_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_rc_search /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -cnx_rc_update_age /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_rc_update_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -cnx_rc_update_state_metric /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_remove_all_rc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_remove_from_blacklist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_remove_rc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_remove_rc_except /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_sta_associated /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_sta_connect_cmd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_sta_connect_led_timer_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_sta_leave /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -cnx_sta_pm /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -cnx_sta_scan_cmd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_start_handoff_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -cnx_start_obss_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_stop_obss_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -cnx_update_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_update_bss_more /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -cnx_validate_owe_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -co_default_bdaddr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -co_null_bdaddr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -co_phy_mask_to_value /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -co_phy_to_rate /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -co_phy_value_to_mask /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -co_rate_to_phy /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) -co_sca2ppm /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -coef_B /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -coex_bt_release /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_bt_request /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_ble_conn_dyn_prio_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_core_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_event_duration_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_pre_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_pti_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_pti_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_register_start_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_release /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_request /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_status_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_core_timer_idx_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_dbg_output /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_dbg_set_log_level /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_env /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_env_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_event_duration_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_gpio_debug_matrix_config /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_gpio_debug_matrix_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_gpio_debug_max_event_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_hw_debug_matrix_config /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_hw_debug_matrix_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_hw_timer_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) -coex_hw_timer_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) -coex_hw_timer_force /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) -coex_hw_timer_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) -coex_hw_timer_unforce /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) -coex_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_lld_scan_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -coex_log_level /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_pre_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -coex_preference_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_pti_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_pti_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -coex_pti_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_pti_tab /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_pti_tab_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_pti_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - esp-idf/bt/libbt.a(bt.c.obj) -coex_register_start_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_register_wifi_channel_change_callback /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_rom_data_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_rom_osi_funcs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_rom_osi_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) -coex_schm_all_default /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_a2dp_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_a2dp_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_a2dp_wifi_default /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_a2dp_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_default_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_default_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_default_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_idle_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_idle_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_idle_wifi_default /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_default_bt_idle_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_idle_bt_idle_wifi_default /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_a2dp_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_conn_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_conn_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_conn_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_default_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_default_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_default_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_iscan_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_iscan_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_iscan_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_sniff_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_sniff_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_bt_sniff_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_config_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_conn_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_conn_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_conn_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_default_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_default_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_default_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_iscan_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_iscan_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_sniff_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_bt_sniff_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_standby_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_conn_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_conn_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_default_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_default_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_default_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_mesh_traffic_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_ble_scan_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) -coex_schm_ble_scan_stop_interval_num_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -coex_schm_bt_a2dp_paused_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_a2dp_paused_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_a2dp_paused_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_a2dp_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_a2dp_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_a2dp_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_conn_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_conn_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_conn_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_default_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_default_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_default_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_idle_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_idle_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_idle_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_inq_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_inq_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_inq_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_iscan_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_iscan_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_iscan_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_page_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_page_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_page_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_sniff_wifi_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_sniff_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_bt_sniff_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_btdm_callback /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -coex_schm_btdm_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) -coex_schm_curr_period_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_curr_phase_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_curr_phase_idx_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_curr_phase_idx_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_disable_flag_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) -coex_schm_env /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_schm_env_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_schm_external_coex_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_external_coex_wifi_default /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_external_coex_wifi_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_flexible_period_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_flexible_period_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_get_phase_by_idx /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_init /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) -coex_schm_interval_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_interval_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_schm_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_schm_phase_end_ts_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -coex_schm_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -coex_schm_process_in_active /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -coex_schm_process_restart /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_schm_register_callback /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_status_bit_clear /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_status_bit_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -coex_schm_status_bitmap_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_schm_status_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_schm_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coex_schm_wakeup_flag_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -coex_set_gpio_debug_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_dbg.o) -coex_status_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_update_lpclk_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/bt/libbt.a(bt.c.obj) -coex_version_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_version_get_value /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_wifi_channel_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) -coex_wifi_channel_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_wifi_register_update_lpclk_callback /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -coex_wifi_release /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coex_wifi_request /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -coexist_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -coexist_printf esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -comeback_token_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) -con_evt_func_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -config_get_wifi_task_stack_size /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -config_is_cache_tx_buf_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -connect_req_dur_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -connect_scan_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -console_access esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_close esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_end_select esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fcntl esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fstat esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fsync esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_open esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_read esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcdrain esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcflush esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcgetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcsetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_write esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -core0_acs_bits esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -core_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) -correct_rfpll_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -country_info_24ghz /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) -cpu_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -crc32_le /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -create_APN_PPI_string esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -create_new_bss_for_sa_query_failed_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -crypto_bignum_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_addmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) -crypto_bignum_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_bignum_div esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_exptmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_init_set esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_bignum_init_uint esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_inverse esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_is_odd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) -crypto_bignum_is_one esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_is_zero esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_legendre esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) -crypto_bignum_mod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_mulmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_rand esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) -crypto_bignum_rshift esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_sqrmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_sub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_bignum_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_bignum_to_string esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) -crypto_debug_print_point esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_ec_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_get_affine_coordinates esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_get_curve_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_group_byname esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_group_from_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_mbedtls_to_nist_group_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_get_prime esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_get_priv_key_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_get_publickey_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_key_compare esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_debug_print esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -crypto_ec_key_gen esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_get_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_get_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_get_subject_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_group esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -crypto_ec_key_parse_priv esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_parse_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -crypto_ec_key_set_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_key_verify_signature esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -crypto_ec_key_verify_signature_r_s esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_order_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_parse_subpub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_point_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_compute_y_sqr esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_from_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_invert esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_is_at_infinity esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_is_on_curve esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_mul esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_point_solve_y_coord esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ec_point_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_prime_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_prime_len_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -crypto_ec_write_pub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ecdh esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_ecdh_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) -crypto_ecdh_get_pubkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -crypto_ecdh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -crypto_ecdh_set_peerkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -crypto_ecdsa_get_sign esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_free_buffer esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) -crypto_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_global_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_global_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_hash_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_hash_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_hash_update esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -crypto_is_ec_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_mbedtls_get_grp_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_mod_exp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) -crypto_pk_write_formatted_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -crypto_write_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -cs_create_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -cs_free_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -cs_recv_from_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) -cs_send_to_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -ctx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -current_task_is_wifi_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -dbg_cnt_lmac_drop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -dbg_ebuf_loc_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_his_lmac_eb_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_his_lmac_event_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_his_lmac_int_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_his_lmac_rx_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_his_lmac_tx_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_hmac_rxtx_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) -dbg_hmac_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -dbg_lmac_diag_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_lmac_get_acs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -dbg_lmac_hw_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_lmac_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -dbg_lmac_ps_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_lmac_ps_statis_reset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -dbg_lmac_rxtx_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_lmac_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -dbg_perf_path_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_perf_path_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_perf_throughput_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -dbg_printf esp-idf/console/libconsole.a(arg_utils.c.obj) -default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) -des3_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -des3_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -des3_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -des_block_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -des_block_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -des_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) -des_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) -destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) -dh5_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -dh5_free esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -dh5_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) -dh5_init_fixed esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) -dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) -dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) -dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_cleanup esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcp_coarse_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) -dhcp_fine_timeout_cb esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_fine_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_inform esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_network_changed_link_up esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -dhcp_parse_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_release esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcp_release_and_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_renew esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_search_ip_on_mac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcp_set_struct esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcp_start esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcp_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcp_supplied_address esp-idf/lwip/liblwip.a(dhcp.c.obj) -dhcps_delete esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_dns_getserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_dns_setserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_new esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_pbuf_alloc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) -dhcps_set_new_lease_cb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_set_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_start esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dhcps_stop esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -difftime /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-difftime.o) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -discnx_reason_id2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -div /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-div.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -dns_clear_cache esp-idf/lwip/liblwip.a(dns.c.obj) -dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -dns_init esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) -dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) -dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -dns_tmr esp-idf/lwip/liblwip.a(dns.c.obj) -dragonfly_generate_scalar esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dragonfly_get_random_qr_qnr esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dragonfly_is_quadratic_residue_blind esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dragonfly_min_pwe_loop_iter esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dragonfly_sqrt esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -dragonfly_suitable_group esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) -ds_hal_busy esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_configure_iv esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_finish esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_read_result esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_start esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_start_sign esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_write_message esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ds_hal_write_private_key_params esp-idf/hal/libhal.a(ds_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -dutytype2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -eap_allowed_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_client_get_eap_state esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -eap_deinit_prev_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_get_config esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -eap_get_config_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_config_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_config_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_config_password2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_get_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -eap_get_phase2_types esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -eap_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_hdr_len_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) -eap_hdr_validate esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_mbedtls_x509_crt_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -eap_msg_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -eap_peer_blob_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_blob_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_config_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_config_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_get_eap_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_get_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_method_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_peer_method_free esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_peer_method_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_peer_mschapv2_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_peap_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_register_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_peer_select_phase2_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_build_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_derive_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_derive_session_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_phase2_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_process_helper esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_process_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_reauth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_tls_reset_input esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_reset_output esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) -eap_peer_tls_ssl_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_ssl_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_tls_status esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -eap_peer_ttls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_peer_unregister_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_set_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_sm_abort esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_sm_allowMethod esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_sm_buildIdentity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) -eap_sm_build_identity_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_sm_build_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_sm_get_method_name esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_sm_process_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_sm_request_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_sm_request_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_sm_request_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -eap_sm_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -eap_update_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -eap_wsc_build_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -eapol_sm_notify_eap_success esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -eapol_txcb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -eb_space /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) -eb_txdesc_space /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) -ecc_Jacobian_InfinityPoint256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -ecc_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -eloop_cancel_timeout_one esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) -eloop_deplete_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) -eloop_destroy esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -eloop_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -eloop_is_timeout_registered esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -eloop_replenish_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) -eloop_run esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) -em_base_reg_lut /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) -emi_reset_em_mapping_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) -emul_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -encrypt_pw_block_with_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -environ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-environ.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -errno /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-reent.o) -esf_buf_alloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -esf_buf_alloc_default_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -esf_buf_alloc_dynamic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -esf_buf_alloc_dynamic_default_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -esf_buf_free_static /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) -esf_buf_recycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -esf_buf_recycle_default_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -esf_buf_setdown /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -esf_buf_setup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -esf_buf_setup_for_mesh /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -esf_buf_setup_static /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) -esf_buf_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_dma_done esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -esp_aes_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -esp_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -esp_aes_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_aes_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_aes_gcm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -esp_aes_gcm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_aes_gcm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_aes_gcm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_aes_gcm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -esp_aes_gcm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -esp_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -esp_aes_intr_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) -esp_aes_process_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -esp_aes_xts_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_apb_backup_dma_lock_init esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_base_mac_addr_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_base_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_ble_adv_aa_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_clear_all_rxerr_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_clear_rand_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_controller_status_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_dis_privacy_err_report /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_disable_adv_delay /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_enable_fixed_aux_chan_index /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_enable_scan_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_enable_scan_forever /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_get_rxerr_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_internalTestFeaturesEnable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_qa_get_adv_txed_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_qa_get_scan_rxed_cnt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_qa_set_scan_perfer_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_qa_test_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_rxerr_record_en /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_scan_aa_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_scan_channel_setting /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_set_aux_chan_index /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -esp_ble_switch_phy_coded /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_ble_tx_power_get esp-idf/bt/libbt.a(bt.c.obj) -esp_ble_tx_power_get_enhanced esp-idf/bt/libbt.a(bt.c.obj) -esp_ble_tx_power_set esp-idf/bt/libbt.a(bt.c.obj) -esp_ble_tx_power_set_enhanced esp-idf/bt/libbt.a(bt.c.obj) -esp_ble_txpower_lvl_range_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_brownout_disable esp-idf/esp_system/libesp_system.a(brownout.c.obj) -esp_brownout_init esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_bt_controller_deinit esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_bt_controller_disable esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_bt_controller_enable esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_bt_controller_get_status esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_bt_controller_init esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_bt_controller_is_sleeping esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_controller_mem_release esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_controller_rom_mem_release esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_controller_wakeup_request esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_get_lpclk_src esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_h4tl_eif_io_event_notify esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_mem_release esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -esp_bt_sleep_disable esp-idf/bt/libbt.a(bt.c.obj) -esp_bt_sleep_enable esp-idf/bt/libbt.a(bt.c.obj) -esp_cache_aligned_calloc esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -esp_cache_aligned_calloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -esp_cache_aligned_malloc esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -esp_cache_aligned_malloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_err_has_active_err esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_cache_err_panic_string esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_get_alignment esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) -esp_cache_msync esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -esp_clk_apb_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) -esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -esp_clk_tree_enable_src esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_tree_rc_fast_d256_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_coex_adapter_funcs_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -esp_coex_adapter_register /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_coex_common_clk_slowclk_cal_get_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_env_is_chip_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_int_disable_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_int_restore_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_malloc_internal_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_semphr_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_semphr_delete_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_semphr_give_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_semphr_take_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_spin_lock_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_task_yield_from_isr_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_timer_arm_us_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_timer_disarm_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_timer_done_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_common_timer_setfn_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_coex_i154_funcs_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -esp_coex_rom_version_get /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -esp_coex_status_bit_clear /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -esp_coex_status_bit_set /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -esp_console_cmd_deregister esp-idf/console/libconsole.a(commands.c.obj) -esp_console_cmd_register esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_console_deinit esp-idf/console/libconsole.a(commands.c.obj) -esp_console_get_completion esp-idf/console/libconsole.a(commands.c.obj) -esp_console_get_hint esp-idf/console/libconsole.a(commands.c.obj) -esp_console_init esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) -esp_console_register_help_command esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) -esp_console_rm_item_free_hint esp-idf/console/libconsole.a(commands.c.obj) -esp_console_run esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) -esp_console_set_help_verbose_level esp-idf/console/libconsole.a(commands.c.obj) -esp_console_split_argv esp-idf/console/libconsole.a(split_argv.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_create_mbedtls_handle esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -esp_crt_bundle_attach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_crt_bundle_attach_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_crt_bundle_detach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -esp_crt_bundle_in_use esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) -esp_crt_bundle_set esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -esp_crt_verify_callback esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -esp_crypto_base64_encode esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_crypto_ds_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -esp_crypto_ds_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -esp_crypto_hmac_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -esp_crypto_hmac_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -esp_crypto_mpi_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -esp_crypto_mpi_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -esp_crypto_sha1 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_crypto_sha_aes_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_crypto_sha_aes_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -esp_crypto_shared_gdma_start_axi_ahb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) -esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_deregister_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_register_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_derive_local_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_ds_encrypt_params esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -esp_ds_finish_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) -esp_ds_get_keylen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_ds_init_data_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_ds_is_busy esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -esp_ds_release_ds_lock esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_ds_rsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_ds_set_session_timeout esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_ds_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -esp_ds_start_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) -esp_eap_client_clear_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_clear_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_clear_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_clear_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_clear_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_clear_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_get_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_fast_params esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_suiteb_192bit_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_ttls_phase2_method esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_set_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_eap_client_use_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_check_secure_version esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_mac_get_custom esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_efuse_mac_get_default esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_read_secure_version esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_reset esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_rtc_calib_get_cal_voltage esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_init_code esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_rtc_calib_get_tsens_val esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_ver esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_startup_include_func esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_update_secure_version esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_enable_cache_wrap esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -esp_eth_decrease_reference esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_driver_install esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_driver_uninstall esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_get_mac_instance esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_get_phy_instance esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_increase_reference esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_ioctl esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_start esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_stop esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_transmit esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_transmit_vargs esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_eth_update_input_path esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) -esp_event_dump esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_handler_instance_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) -esp_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) -esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_event_handler_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_event_handler_register_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_handler_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_event_handler_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_event_handler_unregister_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_isr_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_isr_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_create esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_event_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) -esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_th esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_dangerous_write_protection esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_aws_ppi esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_get_ble_isr_err_counter /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) -esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_get_random esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -esp_get_tx_power esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_gpio_is_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -esp_gpio_reserve esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_gpio_revoke esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -esp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -esp_heap_adjust_alignment_to_hw esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -esp_hmac_calculate esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -esp_hmac_jtag_disable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -esp_hmac_jtag_enable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -esp_http_client_add_auth esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_cancel_request esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_cleanup esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_close esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_delete_all_headers esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_delete_header esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_fetch_headers esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_flush_response esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_chunk_length esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_content_length esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_get_errno esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_header esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_password esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_post_field esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_get_status_code esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_get_transport_type esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_url esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_user_data esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_get_username esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_init esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_is_chunked_response esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_is_complete_data_received esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_open esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_perform esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_read esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_read_response esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_reset_redirect_counter esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_auth_data esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_authtype esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_header esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_set_method esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_client_set_password esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_post_field esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_redirection esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_http_client_set_timeout_ms esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_url esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_user_data esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_set_username esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_http_client_write esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_http_server_dispatch_event esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -esp_https_ota esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_https_ota_abort esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_begin esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_finish esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_get_image_len_read esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_get_image_size esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_https_ota_get_img_desc esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_get_status_code esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_https_ota_is_complete_data_received esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_https_ota_perform esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_hw_stack_guard_get_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_get_fired_cpu esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_get_pc esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_monitor_start esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_hw_stack_guard_monitor_stop esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_hw_stack_guard_set_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_iface_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_intr_ptr_in_isr_region esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_ip4addr_aton esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_ip4addr_ntoa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -esp_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_local_ctrl_add_property esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_local_ctrl_data_handler esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -esp_local_ctrl_get_prop_count esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -esp_local_ctrl_get_prop_values esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -esp_local_ctrl_get_property esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -esp_local_ctrl_get_transport_httpd esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_local_ctrl_remove_property esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -esp_local_ctrl_set_handler esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -esp_local_ctrl_set_prop_values esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -esp_local_ctrl_start esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_local_ctrl_stop esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_log_buffer_char_internal esp-idf/log/liblog.a(log_buffers.c.obj) -esp_log_buffer_hex_internal esp-idf/log/liblog.a(log_buffers.c.obj) -esp_log_buffer_hexdump_internal esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_log_cache_add esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_cache_clean esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_cache_get_level esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_cache_set_level esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_default_level esp-idf/log/liblog.a(log_level.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_log_impl_lock esp-idf/log/liblog.a(log_lock.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/log/liblog.a(log_write.c.obj) -esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_lock.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_impl_unlock esp-idf/log/liblog.a(log_lock.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/log/liblog.a(log_write.c.obj) -esp_log_level_get esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_level_get_timeout esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/log/liblog.a(log_write.c.obj) -esp_log_level_set esp-idf/log/liblog.a(tag_log_level.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_log_linked_list_clean esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_linked_list_get_level esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_linked_list_set_level esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_set_default_level esp-idf/log/liblog.a(log_level.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -esp_log_set_vprintf esp-idf/log/liblog.a(log_write.c.obj) -esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_log_util_cvt esp-idf/log/liblog.a(util.c.obj) -esp_log_util_cvt_dec esp-idf/log/liblog.a(util.c.obj) -esp_log_util_cvt_hex esp-idf/log/liblog.a(util.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) -esp_log_write esp-idf/log/liblog.a(log_write.c.obj) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_misc.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_startup.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/app_insights/libapp_insights.a(app_insights.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_log_writev esp-idf/log/liblog.a(log_write.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_mac_addr_len_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_mbedtls_add_rx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_add_tx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_cleanup esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_mbedtls_conn_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_free_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_free_cacert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_free_dhm esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_free_keycert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_free_keycert_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) -esp_mbedtls_free_keycert_key esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_free_rx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_free_tx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_get_ciphersuites_list esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_get_crt_size esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -esp_mbedtls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_get_ssl_context esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_handshake esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -esp_mbedtls_read esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_reset_add_rx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_reset_add_tx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_reset_free_rx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_reset_free_tx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_mbedtls_setup_rx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_setup_tx_buffer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -esp_mbedtls_verify_certificate esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -esp_mbedtls_write esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_md5_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_md5_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_md5_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) -esp_md5_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -esp_mesh_add_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_allow_root_conflicts /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_ap_enqueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_clear /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_clear_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_clear_invalid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) -esp_mesh_ap_list_find /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_find_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_find_invalid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ap_list_update_invalid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_appie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_available_txupQ_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_best_effort_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_channel_enable_jp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_check_multi_redundant_ack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_check_nonassociated_children /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_check_vnd_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_clear_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -esp_mesh_clear_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_combine_multi_redundant_ack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_compute_my_votes /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_compute_votes /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_conn_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_conn_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_copy_mgmt_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_create_context /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_create_mbox /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_decrypt_vnd_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_delete_group_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_delete_group_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_delete_sub_children /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_delivery_toDS /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_delivery_toSelf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_disable_ps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_discard_context /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_enable_ps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_encrypt_vnd_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_find_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_fix_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_flush_scan_result /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -esp_mesh_flush_tcpip_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_flush_upstream_packets /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_force_txupQ_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_forward_check_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_forward_packet /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_free_context /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_free_mbox /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_active_duty_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_announce_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_ap_assoc_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_get_ap_authmode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_ap_connections /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_attempts /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_capacity_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_child_idx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_get_child_idx_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_get_child_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_get_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_conflict_root_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_get_group_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_group_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_ie_crypto_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_max_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_network_duty_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_non_mesh_connections /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_optlen /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_get_parent_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_get_parent_monitor_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_get_passive_scan_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_root_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_root_healing_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_router_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_routing_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_get_routing_table_size /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_get_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_rssi_threshold_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_running_active_duty_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -esp_mesh_get_rx_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_self_organized /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_storage /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_sub_capacity /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_get_subnet_nodes_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_subnet_nodes_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_switch_parent_paras /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_topology /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_total_children_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_get_total_node_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_tsf_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -esp_mesh_get_tx_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_get_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_vnd_ext_assoc_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_get_vnd_roots_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_get_vnd_ssid_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_get_vote_percentage /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_get_xon_qsize /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_ie_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_ie_monitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ie_update_capacity /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_ie_update_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_insert_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_insert_group_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_io_sem_signal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_io_sem_wait /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -esp_mesh_is_device_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_is_my_group /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_is_my_ie_encrypted /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_is_nwk_inited /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -esp_mesh_is_nwk_running /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -esp_mesh_is_ps_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_is_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_is_root_conflicts_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_is_root_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_is_roots_found /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_is_rt_change_debug /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_is_same_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_is_scan_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_is_start_pm_now /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_is_switch_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_look_for_network /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_lookup_route /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_lookup_sub_route /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_map_change_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_map_deauth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_mesh_map_probe_response /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_map_reject_connection /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_map_stop_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_match_self /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_mcast_cover_node /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_monitor_nonassociated_children /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_monitor_parent_candidate_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_monitor_parent_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_monitor_vote_candidate_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_nvs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_nvs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_nvs_operate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) -esp_mesh_nvs_set_assoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_nvs_set_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_nwk_redundant_route /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_nwk_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_nwk_task_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_operation_rxseqno /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_pack_multi_routing_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_pack_rmv_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_parent_reselect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_parent_select /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_parse_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_parse_conflict_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_parse_conflict_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_parse_ext_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_parse_ps_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_go_to_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_go_to_wake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_rx_beacon_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_tbtt_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_tx_data_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_pm_tx_null_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_post_toDS_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_print_route_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_print_rxQ_waiting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_print_scan_result /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_print_txQ_waiting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_process_bcast /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_process_mcast /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_process_options /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_process_ps_awake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_process_ps_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_process_redundant_subchildren /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_process_txupQ_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_process_ucast /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_ps_control_check_awake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_ps_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_ps_duty_cycle_get_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_ps_duty_cycle_set_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_ps_duty_ext_get_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_ps_duty_signaling /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_ps_get_duties /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_ps_get_ext_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_push_to_ack_state_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_push_to_myself_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_push_to_nwk_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_push_to_ps_tx_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_push_to_rx_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_push_to_tcpip_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_push_to_tx_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_push_to_wnd_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_push_to_xmit_state_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_quick_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -esp_mesh_quick_funcs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_quick_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_recv /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_recv_release /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_recv_toDS /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_recv_xon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_refresh_routing_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_remove_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_remove_children /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_remove_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_remove_nonassociated_children /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_revote_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_root_process_duty_duration_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_route_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_route_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_rt_change_debug /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_rx_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_rx_task_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_scan_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_scan_done_get_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_scan_done_vote /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_scan_get_ap_ie_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_scan_get_ap_record /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_send /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_send_add_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_send_block_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_send_block_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_send_block_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_send_block_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_send_block_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_send_event_internal esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_send_mgmt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_send_rmv_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_send_root_switch /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -esp_mesh_send_rtable_ack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_send_rtable_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_send_sem_signal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_send_sem_wait /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_send_stop_vote /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_send_xon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_set_6m_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -esp_mesh_set_active_duty_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_announce_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ap_assoc_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_set_ap_authmode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ap_connections /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ap_password /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_attempts /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_mesh_set_capacity_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_group_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_ie_crypto_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ie_crypto_funcs_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ie_crypto_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_ie_crypto_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_max_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_network_duty_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_network_duty_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_mesh_set_non_mesh_connections /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_parent_candidate_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_parent_monitor_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_passive_scan_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_root_healing_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_router_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_rssi_threshold_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_set_self_organized /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_switch_parent_paras /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_topology /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_vote_percentage /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_set_xon_qsize /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_sta_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_sta_disassoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_sta_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_sta_monitor_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_stop_parent_reconnection /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -esp_mesh_switch_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_switch_channel_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -esp_mesh_sync_interface_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -esp_mesh_tx_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_tx_task_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_tx_tid_flush /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mesh_txupQ_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_txupQ_pending_clear_xonseq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_mesh_txupQ_pending_delete_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_txupQ_pending_get_cidx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_txupQ_pending_get_xonseq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_txupQ_pending_insert_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_mesh_update_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_mesh_waive_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_mesh_wifi_recv_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mpi_a_add_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_a_exp_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_a_mul_b_mod_c esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_ctx_free esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_ctx_new esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_enable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_exp_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_free esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_get_rand esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_hardware_words esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_mul_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_mult_mpi_failover_mod_mult_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -esp_mpi_new esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_new_from_bin esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mpi_new_from_hex esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -esp_mpi_sizeof esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -esp_mpi_to_bin esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_mprot_dump_configuration esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_active_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_default_main_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_violate_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_operation esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_has_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_is_conf_locked_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mprot_is_intr_ena_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_ll_err_to_esp_err esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_ll_world_to_hl_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_monitor_clear_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_oper_type_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_pms_world_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_set_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_prot esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mprot_set_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mqtt_client_destroy esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_disconnect esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_enqueue esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_get_outbox_size esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_init esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_publish esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_reconnect esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_register_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_set_uri esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_start esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_stop esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_subscribe_multiple esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_subscribe_single esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_client_unregister_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_client_unsubscribe esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -esp_mqtt_destroy_config esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_dispatch_custom_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_set_config esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mqtt_set_if_config esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_mspi_32bit_address_flash_feature_check esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_mspi_pin_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mspi_pin_reserve esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_net80211_rom_version_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_netif_action_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_action_connected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_action_disconnected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_action_got_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_action_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_action_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_action_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_action_start esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_action_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_add_to_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -esp_netif_create_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_create_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_deinit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_destroy esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_destroy_default_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_dhcpc_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_netif_dhcpc_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcpc_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcpc_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_dhcpc_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_dhcps_get_clients_by_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcps_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_find_if esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -esp_netif_get_all_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_netif_get_all_preferred_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_desc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_get_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_event_id esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_get_flags esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_get_handle_from_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_netif_get_handle_from_ifkey_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_handle_from_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) -esp_netif_get_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -esp_netif_get_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) -esp_netif_get_io_driver esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_get_ip6_global esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_netif_get_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_netif_get_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -esp_netif_get_netif_impl_index esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_netif_impl_name esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_netif_impl_name_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_nr_of_ifs esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_get_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_get_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_init esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -esp_netif_ip6_get_addr_type esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_is_netif_listed esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_is_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -esp_netif_is_valid_static_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_napt_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_napt_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_netstack_buf_free esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_netstack_buf_ref esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_new esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_next esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) -esp_netif_next_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_ppp_set_auth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_ppp_set_auth_internal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_remove_from_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_link_speed esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_netif_set_mac_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_str_to_ip4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_str_to_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_tcpip_exec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_transmit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) -esp_netif_transmit_wrap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -esp_netif_tx_rx_event_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_tx_rx_event_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) -esp_netif_update_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_newlib_init_global_stdio esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_nimble_deinit esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_nimble_disable esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) -esp_nimble_enable esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) -esp_nimble_hci_deinit esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_nimble_hci_init esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_nimble_init esp-idf/bt/libbt.a(nimble_port.c.obj) -esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) -esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_reconfigure_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_copy esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_get_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_pbuf_allocate esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -esp_perip_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_phy_apply_phy_init_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_phy_common_clock_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_common_clock_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_phy_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_phy_erase_cal_data_in_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_get_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_get_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_get_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_load_cal_and_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_load_cal_data_from_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_modem_deinit esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_phy_modem_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_phy_release_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_set_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_set_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_store_cal_data_to_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -esp_phy_update_country_info esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pp_rom_version_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_qrcode_generate esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_qrcode_print_console esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) -esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) -esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_reset_reason esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) -esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) -esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_rmaker_array esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_attribute_delete esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_bool esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_brightness_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_cct_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_change_node_id esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_claim_data_free esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_claim_task esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_rmaker_clean_mqtt_conn_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_cmd_deregister esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) -esp_rmaker_cmd_prepare_empty_response esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) -esp_rmaker_cmd_register esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_cmd_resp_parse_response esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) -esp_rmaker_cmd_resp_test_send esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_rmaker_cmd_response_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_cmd_response_handler esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) -esp_rmaker_common_console_init esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) -esp_rmaker_common_register_commands esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) -esp_rmaker_console_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_create_local_control_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_create_mqtt_topic esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_create_scenes_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) -esp_rmaker_create_schedule_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_rmaker_create_system_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_device_add_attribute esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_device_add_bulk_cb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_device_add_cb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_device_add_model esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_device_add_param esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_device_add_subtype esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_device_assign_primary_param esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_device_cb_src_to_str esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_device_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_device_delete esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_device_get_name esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_device_get_param_by_name esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_device_get_param_by_type esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_device_get_priv_data esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_device_get_type esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_direction_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_factory_get esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_factory_get_size esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -esp_rmaker_factory_init esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_factory_reset esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) -esp_rmaker_factory_reset_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_factory_set esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_rmaker_fan_device_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_float esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_get_client_cert esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -esp_rmaker_get_client_cert_len esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -esp_rmaker_get_client_csr esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -esp_rmaker_get_client_key esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -esp_rmaker_get_client_key_len esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -esp_rmaker_get_local_time_str esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -esp_rmaker_get_mqtt_conn_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_get_mqtt_host esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) -esp_rmaker_get_node esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_get_node_config esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_get_node_id esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_get_node_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_get_secure_boot_digest esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_get_state esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_get_user_role_string esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) -esp_rmaker_handle_set_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_rmaker_hue_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_init_local_ctrl_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_int esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_intensity_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_is_mqtt_connected esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) -esp_rmaker_lightbulb_device_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_local_control_pop_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_local_control_type_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_local_ctrl_disable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_local_ctrl_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_local_ctrl_service_started esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_mqtt_budgeting_deinit esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_budgeting_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_budgeting_start esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_budgeting_stop esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_connect esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_mqtt_decrease_budget esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_deinit esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_disconnect esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_mqtt_get_conn_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_glue_setup esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_increase_budget esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) -esp_rmaker_mqtt_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_mqtt_is_budget_available esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_publish esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_mqtt_setup esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) -esp_rmaker_mqtt_subscribe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_mqtt_unsubscribe esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) -esp_rmaker_name_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_node_add_attribute esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_node_add_device esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_node_add_fw_version esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_node_add_model esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_node_add_subtype esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_node_auth_sign_msg esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_rmaker_node_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_node_deinit esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_node_delete esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_node_get_device_by_name esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_node_get_first_attribute esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -esp_rmaker_node_get_first_device esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_node_get_id esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_node_get_info esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -esp_rmaker_node_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_node_remove_device esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_obj esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_ota_common_cb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) -esp_rmaker_ota_default_cb esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_enable_default esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_ota_enable_using_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_enable_using_topics esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_fetch esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) -esp_rmaker_ota_fetch_with_delay esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_finish_using_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_finish_using_topics esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_handle_metadata esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_handle_time esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_info_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_ota_mark_invalid esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_mark_valid esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_report_status esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) -esp_rmaker_ota_report_status_using_params esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_report_status_using_topics esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_service_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) -esp_rmaker_ota_status_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_ota_status_to_event esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_ota_status_to_string esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) -esp_rmaker_ota_url_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_param_add_array_max_count esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_param_add_bounds esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_param_add_simple_time_series_ttl esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_add_ui_type esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_param_add_valid_str_list esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_param_delete esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_param_get_name esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_param_get_stored_value esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_param_get_type esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_param_get_val esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_notify esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_report_simple_ts_data esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_store_value esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) -esp_rmaker_param_update esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_param_update_and_notify esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_param_update_and_report esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_params_mqtt_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_power_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_raise_alert esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_reboot esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_rmaker_reboot_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_report_data_type esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_report_node_config esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_report_node_details esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_report_node_state esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_report_value esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_reset_user_node_mapping esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_saturation_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_scenes_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_scenes_get_operation_from_str esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) -esp_rmaker_scenes_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_schedule_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_schedule_get_operation_from_str esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_rmaker_schedules_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_secure_boot_digest_free esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_secure_boot_digest.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -esp_rmaker_self_claim_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_self_claim_perform esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_service_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_speed_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_start esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_start_local_ctrl_service esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -esp_rmaker_start_user_node_mapping esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_rmaker_stop esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_str esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_switch_device_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_temp_sensor_device_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_temperature_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_devices.c.obj) -esp_rmaker_test_cmd_resp esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_rmaker_time_check esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -esp_rmaker_time_get_timezone esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_time_get_timezone_posix esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_time_service_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_time_set_timezone esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_time_set_timezone_posix esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) -esp_rmaker_time_sync_init esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_time_wait_for_sync esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -esp_rmaker_timezone_enable esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -esp_rmaker_timezone_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_timezone_posix_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_services.c.obj) -esp_rmaker_timezone_service_enable esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -esp_rmaker_tz_db_get_posix_str esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(timezone.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -esp_rmaker_user_mapping_endpoint_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -esp_rmaker_user_mapping_endpoint_register esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -esp_rmaker_user_mapping_handler esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -esp_rmaker_user_mapping_lock esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -esp_rmaker_user_mapping_prov_deinit esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_user_mapping_prov_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_user_node_mapping_deinit esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -esp_rmaker_user_node_mapping_get_state esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_user_node_mapping_init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_wifi_reset esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) -esp_rmaker_wifi_reset_param_create esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_standard_params.c.obj) -esp_rmaker_work_queue_add_task esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_work_queue_deinit esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_work_queue_init esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_work_queue_start esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_rmaker_work_queue_stop esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) -esp_rom_crc32_le esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -esp_rom_delay_us esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_efuse_get_flash_gpio_info esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_efuse_get_flash_wp_gpio esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_get_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_rom_get_reset_reason esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_rom_gpio_connect_out_signal esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_md5_final esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) -esp_rom_output_flush_tx esp-idf/newlib/libnewlib.a(syscalls.c.obj) -esp_rom_output_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) -esp_rom_output_tx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) -esp_rom_output_tx_wait_idle esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_rom_regi2c_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_route_intr_matrix esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -esp_rom_software_reset_system esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rrm_is_rrm_supported_connection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_rrm_send_neighbor_rep_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_rrm_send_neighbor_report_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_schedule_create esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_delete esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_disable esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_edit esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_enable esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_get esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_init esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -esp_schedule_nvs_add esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_nvs_get_all esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_nvs_init esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_nvs_is_enabled esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_nvs_remove esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_schedule_nvs_remove_all esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.c.obj) -esp_send_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_send_sae_auth_reply esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -esp_set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_set_scan_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_setenv esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_sha esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -esp_sha_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) -esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) -esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) -esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) -esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) -esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_cpu_pd_low_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_cpu_pd_low_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_cpu_retention_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_cpu_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_get_gpio_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_gpio_include esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_sub_mode_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_sleep_sub_mode_dump_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_sub_mode_force_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sntp_enabled esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_sntp_getoperatingmode esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_sntp_getreachability esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_sntp_getserver esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_sntp_getservername esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_sntp_init esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_sntp_setoperatingmode esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_sntp_setserver esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_sntp_setservername esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -esp_sntp_stop esp-idf/lwip/liblwip.a(sntp.c.obj) -esp_srp_exchange_proofs esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_srp_free esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_srp_gen_salt_verifier esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_srp_get_session_key esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_srp_init esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_srp_set_salt_verifier esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_srp_srv_pubkey esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -esp_srp_srv_pubkey_from_salt_verifier esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_supplicant_common_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_supplicant_common_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_supplicant_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_supplicant_disable_pmk_caching esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_supplicant_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_supplicant_str_to_mac esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_supplicant_unset_all_appie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_system_include_startup_funcs esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_system_reset_modules_on_exit esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timeout_triggered esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_allocate esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_free esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_restart esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_stop esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_task_wdt_isr_user_handler esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_test_dump_htc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -esp_time_impl_get_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_get_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_get_time_since_boot esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_init esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_set_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_get_expiry_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_period esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_restart esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -esp_tls_cfg_server_session_tickets_free esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_cfg_server_session_tickets_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_conn_destroy esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_tls_conn_http_new esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_conn_http_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_conn_http_new_sync esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_conn_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_tls_conn_new_sync esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_tls_conn_read esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_conn_write esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_get_and_clear_error_type esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) -esp_tls_get_and_clear_last_error esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_get_ciphersuites_list esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_get_conn_sockfd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_tls_get_conn_state esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_get_error_handle esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_get_platform_time esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_get_ssl_context esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_internal_event_tracker_capture esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_internal_event_tracker_create esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_internal_event_tracker_destroy esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_plain_tcp_connect esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_tls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -esp_tls_set_conn_sockfd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_set_conn_state esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_tls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -esp_transport_capture_errno esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_close esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_connect esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_connect_async esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_transport_destroy esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_destroy_foundation_transport esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_esp_tls_destroy esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_get_context_data esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_get_default_port esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_get_errno esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_get_error_handle esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_get_payload_transport_handle esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) -esp_transport_get_socket esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_init esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_init_foundation_transport esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_list_add esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_list_clean esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) -esp_transport_list_destroy esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_list_get_transport esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_list_init esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_poll_read esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_poll_write esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_read esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_set_async_connect_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_set_context_data esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_set_default_port esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_set_errors esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_set_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_set_parent_transport_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ssl_crt_bundle_attach esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_enable_global_ca_store esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_init esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_alpn_protocol esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_cert_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_cert_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_client_cert_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_client_cert_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_client_key_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_client_key_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_client_key_password esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_common_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_ds_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_interface_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ssl_set_keep_alive esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_ssl_set_tls_version esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_transport_ssl_skip_common_name_check esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_tcp_init esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_tcp_set_interface_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_tcp_set_keep_alive esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_transport_translate_error esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -esp_transport_utils_ms_to_timeval esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) -esp_transport_write esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ws_get_fin_flag esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_get_read_opcode esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_get_read_payload_len esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_get_upgrade_request_status esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_init esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ws_poll_connection_closed esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_send_raw esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_set_auth esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_set_config esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_set_headers esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_transport_ws_set_path esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ws_set_subprotocol esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -esp_transport_ws_set_user_agent esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -esp_tx_state_out /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -esp_vendor_cmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -esp_vfs_access esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dump_fds esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_dump_registered_paths esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_include_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_include_nullfs_register esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_lwip_sockets_register esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) -esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_null_get_vfs esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_null_register esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fs esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_register_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_set_readonly_flag esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_uart_get_vfs esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fs esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_usb_serial_jtag_get_vfs esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_usb_serial_jtag_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vhci_host_check_send_available esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -esp_vhci_host_register_callback esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -esp_vhci_host_send_packet esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -esp_vhci_host_send_packet_wrapper esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) -esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_wifi_80211_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -esp_wifi_action_tx_req /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_ap_deauth_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_ap_get_max_sta_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_get_prof_ap_ssid_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_get_prof_authmode_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_get_prof_pairwise_cipher_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_get_prof_password_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_get_prof_pmk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -esp_wifi_ap_get_sta_aid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_ap_get_sta_aid_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ap_get_sta_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_ap_get_transition_disable_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_ap_is_sta_sae_reauth_node /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_ap_notify_node_sae_auth_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_auth_done_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_band_get_config_channel_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_beacon_monitor_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_beacon_offset_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_beacon_offset_sample_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_beacon_offset_set_rx_beacon_standard /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_bt_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_wifi_bt_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -esp_wifi_build_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_clear_ap_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_clear_default_wifi_driver_and_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_clear_fast_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_coex_pwr_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_config_11b_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_config_80211_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_config_80211_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_config_espnow_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_connect esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_wifi_connect_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_connectionless_module_set_wake_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_create_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_deauth_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -esp_wifi_deauthenticate_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_deinit esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_deinit_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_del_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_destroy_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_disable_pmf_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_disarm_sta_connection_timer_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_disconnect esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_disconnect_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_eb_tx_status_success_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_enable_sae_pk_only_mode_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) -esp_wifi_enable_sta_privacy_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_force_wakeup_acquire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_force_wakeup_release /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_end_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_end_session_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_get_report /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_get_report_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_initiate_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_resp_set_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ftm_resp_set_offset_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_ant /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_ant_gpio /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_appie_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_get_assoc_bssid_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_get_auto_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_band /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_band_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_bandwidth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_bandwidths /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -esp_wifi_get_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_get_config_channel_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_config_sae_pwe_h2e_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_get_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_country_code /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_event_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -esp_wifi_get_hostap_private_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_get_if_mac esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_get_inactive_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_inactive_time_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_get_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -esp_wifi_get_macaddr_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_get_max_tx_power /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wifi_get_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -esp_wifi_get_negotiated_bw_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_negotiated_channel_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_pmf_config_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_get_promiscuous /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_promiscuous_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_promiscuous_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_protocol /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_protocols /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_ps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_wifi_get_scan_parameters /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_spp_attrubute_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -esp_wifi_get_sta_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_get_tsf_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_get_user_init_flag_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_get_wps_status_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_get_wps_type_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_improve_contention_ability /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -esp_wifi_init_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_internal_band_get_config_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_configure_wake_window /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_crypto_funcs_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_esp_wifi_he_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_esp_wifi_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_free_rx_buffer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) -esp_wifi_internal_get_config_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_get_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_get_log /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_get_mib /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -esp_wifi_internal_get_negotiated_bandwidth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_get_negotiated_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_get_rts /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -esp_wifi_internal_ioctl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_is_tsf_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_issue_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wifi_internal_on_coex_schm_phase /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -esp_wifi_internal_on_coex_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -esp_wifi_internal_osi_funcs_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_reg_netstack_buf_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_internal_reg_netstack_buf_cb_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_reg_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_internal_set_baw /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -esp_wifi_internal_set_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_set_log_level /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_internal_set_log_mod /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_set_mac_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_set_msdu_lifetime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -esp_wifi_internal_set_retry_counter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -esp_wifi_internal_set_rts /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -esp_wifi_internal_set_spp_amsdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_set_sta_ip /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_internal_supplicant_header_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_internal_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) -esp_wifi_internal_tx_by_ref /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -esp_wifi_internal_tx_is_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -esp_wifi_internal_update_light_sleep_default_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_update_light_sleep_wake_ahead_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_wifi_he_type_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_internal_wifi_type_md5_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_ipc_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_is_btm_enabled_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_is_ft_enabled_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_is_if_ready_when_started esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_is_mbo_enabled_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_is_rm_enabled_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_mesh_reg_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -esp_wifi_mesh_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -esp_wifi_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_promiscuous_scan_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_register_eapol_txdonecb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_register_if_rxcb esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_register_mgmt_frame_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wifi_register_owe_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_register_tx_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_register_wpa2_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_register_wpa3_ap_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_register_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_register_wpa_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_remain_on_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_restart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_scan_get_ap_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_scan_get_ap_record /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_scan_get_ap_records /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_scan_get_cur_ap_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_scan_get_cur_ap_record /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_scan_sort_ap_records /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_scan_sort_get_cur_ap_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_scan_sort_get_cur_ap_record /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_scan_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_scan_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_send_deauth_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_send_mgmt_frm_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wifi_set_11b_tx_plcp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -esp_wifi_set_ant /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_ant_gpio /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_ap_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -esp_wifi_set_appie_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_set_auto_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_band /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_band_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_bandwidth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_bandwidths /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_set_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_wifi_set_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -esp_wifi_set_country_code /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_csi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_csi_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_csi_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_default_wifi_ap_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_set_default_wifi_nan_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_set_default_wifi_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) -esp_wifi_set_dynamic_cs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_event_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_home_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_igtk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -esp_wifi_set_inactive_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_inactive_time_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_keep_alive_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_set_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_set_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_max_tx_power /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -esp_wifi_set_non_mesh_connections /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -esp_wifi_set_promiscuous /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_promiscuous_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_promiscuous_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_promiscuous_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_protocol /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_protocols /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_ps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -esp_wifi_set_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_set_scan_parameters /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_sigma_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_set_sleep_min_active_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_set_sleep_wait_broadcast_data_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -esp_wifi_set_sta_key_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_set_sta_rx_probe_req /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_storage /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -esp_wifi_set_tx_done_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_vendor_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_vendor_ie_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_set_wpa2_ent_state_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_set_wps_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_set_wps_start_flag_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_set_wps_status_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_set_wps_type_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_skip_supp_pmkcaching /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_softap_set_obss_overlap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_connect_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_disable_owe_trans_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) -esp_wifi_sta_disable_sae_pk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_sta_disable_wpa2_authmode_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) -esp_wifi_sta_enterprise_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_sta_enterprise_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_sta_get_aid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_get_aid_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_get_ap_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -esp_wifi_sta_get_ap_info_prof_pmk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_get_config_sae_pk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_sta_get_group_cipher_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_get_mgmt_group_cipher /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_get_negotiated_phymode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_get_negotiated_phymode_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_get_pairwise_cipher_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_get_prof_authmode_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_get_prof_password_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_get_prof_pmk_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_sta_get_prof_ssid_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_get_reset_param_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_get_rsnxe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_sta_get_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_sta_get_sae_identifier_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_sta_is_ap_notify_completed_rsne_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_is_running_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -esp_wifi_sta_pmf_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_prof_is_rsn_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_prof_is_wapi_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_prof_is_wpa2_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_prof_is_wpa_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_sta_set_reset_param_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_update_ap_info_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -esp_wifi_sta_wpa2_ent_disable_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_sta_wpa2_ent_enable_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_wifi_statis_dump /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -esp_wifi_tbtt_quick_wake_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_unregister_wpa2_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -esp_wifi_unregister_wpa_cb_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esp_wifi_unset_appie_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wifi_update_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_update_tsf_tick_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_vnd_lora_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -esp_wifi_vnd_lora_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -esp_wifi_vnd_mesh_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_wifi_vnd_mesh_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_vnd_mesh_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -esp_wifi_vnd_mesh_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_vnd_roots_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -esp_wifi_vnd_roots_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -esp_wifi_wpa_ptk_init_done_internal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -esp_wifi_wps_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_wps_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wifi_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -esp_wnm_is_btm_supported_connection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wnm_send_bss_transition_mgmt_query esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -esp_wpa3_free_sae_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -esprv_get_interrupt_unmask esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) -esprv_int_disable esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_enable esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_get_priority esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_get_type esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_is_vectored esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) -esprv_int_set_priority esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esprv_int_set_threshold esp-idf/freertos/libfreertos.a(port.c.obj) -esprv_int_set_type esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -etharp_acd_announce esp-idf/lwip/liblwip.a(etharp.c.obj) -etharp_acd_probe esp-idf/lwip/liblwip.a(etharp.c.obj) -etharp_add_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) -etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) -etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) -etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) -etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) -etharp_remove_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) -etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -etharp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) -ethbroadcast esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) -ethernet_input esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -ethernet_output esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(ethip6.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) -ethernetif_init esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -ethernetif_input esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -ethip6_output esp-idf/lwip/liblwip.a(ethip6.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -ethzero esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) -ets_apb_backup_init_lock_func esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) -ets_backup_dma_copy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ets_delay_us /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) -ets_ds_encrypt_params esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -ets_jtag_enable_temporarily esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -ets_printf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -ets_rom_layout_p esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -ets_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) -ets_timer_deinit esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -ets_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) -ets_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) -ets_timer_init esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -ets_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) -exit /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-exit.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) -f_hci_le_add_dev_to_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_clear_adv_sets_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_clear_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_create_con_cancel_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) -f_hci_le_create_con_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) -f_hci_le_enc_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_enh_rx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_enh_tx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_ext_create_con_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) -f_hci_le_generate_dhkey_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_ltk_req_neg_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_hci_le_ltk_req_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_hci_le_per_adv_create_sync_cancel_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_per_adv_create_sync_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_per_adv_term_sync_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_rd_local_p256_public_key_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_rd_max_adv_data_len_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_rd_nb_supp_adv_sets_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_rd_per_adv_list_size_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_rmv_adv_set_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_rmv_dev_from_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_rx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_set_adv_set_rand_addr_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_ext_adv_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_ext_adv_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_ext_adv_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_ext_scan_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_set_ext_scan_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_set_ext_scan_rsp_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_per_adv_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_per_adv_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_per_adv_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -f_hci_le_set_phy_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_hci_le_set_scan_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_set_scan_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_hci_le_start_enc_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_hci_le_test_end_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_le_tx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -f_hci_vendor_ble_init_adv_flow_control_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -f_hci_vendor_ble_update_adv_report_flow_control_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -f_hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -f_ll_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_ll_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_ll_pause_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_ll_pause_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_ll_phy_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_ll_phy_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_ll_phy_update_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_ll_ping_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -f_ll_ping_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -f_ll_start_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_ll_start_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_llc_auth_payl_nearly_to_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -f_llc_auth_payl_real_to_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -f_llc_encrypt_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_llc_op_encrypt_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -f_llc_op_le_ping_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -f_llc_op_phy_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_lld_adv_rep_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_lld_per_adv_rep_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_lld_per_adv_rx_end_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_lld_phy_upd_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -f_lld_scan_end_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_lld_sync_start_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_llm_scan_period_to_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -f_nvds_del /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) -f_nvds_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) -f_nvds_put /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) -fastpbkdf2_hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -fclose /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fclose.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) -fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -ferror /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ferror.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -fflush /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fflush.o) - esp-idf/console/libconsole.a(linenoise.c.obj) -fgetc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgetc.o) - esp-idf/console/libconsole.a(linenoise.c.obj) -fgets /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) -fileno /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fileno.o) - esp-idf/console/libconsole.a(linenoise.c.obj) -fixed_tx_time /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -fls /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fls.o) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -fopen /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fopen.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -force_coex_timer0_wifi_pti_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_coex_timer0_wifi_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_coex_timer11_bt_pti_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_coex_timer11_bt_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_coex_timer1_bt_pti_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_coex_timer1_bt_v2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -force_txrx_off /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -forced_memzero esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -fprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -fputc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -fputs /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_end.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) -fread /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -free esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) -free_bss_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -freq_get_i2c_data /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -freq_i2c_data_write /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -freq_i2c_write_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -frexp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_frexp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) -fseek /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseek.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -fseeko /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) -fstat /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysfstat.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -fsync esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -ftell /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftell.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -ftello /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ftello.o) -ftm_add_resp_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_create_responder_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_free_resp_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_get_estimated_dist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_get_resp_session_by_cookie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_get_resp_session_for_peer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_cleanup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ftm_initiator_end_session_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ftm_initiator_get_report_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ftm_initiator_negotiate_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_post_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_process_resp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_session_abort /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_session_end /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_initiator_start_session /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_is_initiator_supported /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ftm_is_responder_supported /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ftm_is_supported /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_map_bw_param_to_phybw /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_offchan_end /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_offchan_tx_req /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_parse_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_record_t1t4_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_record_t2t3_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_request_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_resp_allocate_para /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_resp_ctx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_resp_get_burst_inst_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_resp_get_burst_slot /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_responder_cleanup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ftm_responder_set_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ftm_send_initial_resp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_send_msmt_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_send_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_session_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_set_t1t4_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ftm_start_initiator_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ftm_validate_initiator_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -fwrite /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fwrite.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -gChmCxt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -gScanStruct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -gWpaSm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -gWpsSm esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -g_adv_delay_dis /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -g_authmode_incompatible /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -g_authmode_threshold_failure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -g_beacon_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) -g_beacon_idx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) -g_ble_ext_config /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -g_bt_plf_log_level /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_chm /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -g_cnxMgr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -g_cnx_probe_rc_list_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -g_coa_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_scheme.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_hw.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -g_coex_adapter_funcs_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -g_coex_basic_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -g_coex_i154_funcs_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -g_coex_param /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_core.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -g_coex_param_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_param.o) -g_config_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -g_conflict_elt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) -g_deauth_mac_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -g_direct_adv_use_peer_rpa_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -g_dynamic_cs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -g_eb_list_desc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_eb_list_desc_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_eif_api /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_esp_mesh_quick_funcs_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_esp_wifi_he_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_esp_wifi_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_event_empty /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -g_hmac_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_hmac_cnt_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_ic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_ic_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_in_blacklist_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -g_initor_evt_end_abort /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) -g_initor_evt_end_type_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) -g_intr_lock_mux /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_is_mesh_started /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_is_root_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_is_standalone_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_is_wifi_connected /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -g_is_wifi_connecting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -g_is_wifi_disconnecting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -g_lmac_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -g_lmac_cnt_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_log_level /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) -g_log_mod /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -g_mac_deinit_count /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -g_mac_deinit_rxing /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -g_mac_deinit_txing /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -g_mac_sleep_en /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mac_sleep_en_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_max_evt_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -g_max_rx_octets esp-idf/bt/libbt.a(ble_gap.c.obj) -g_max_rx_time esp-idf/bt/libbt.a(ble_gap.c.obj) -g_max_tx_octets esp-idf/bt/libbt.a(ble_gap.c.obj) -g_max_tx_time esp-idf/bt/libbt.a(ble_gap.c.obj) -g_mesh_ann_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_cfg_attemps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_cfg_switch_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_cfg_vote_percent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_chain /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_conn /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -g_mesh_current_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -g_mesh_dfs_compensation_ms /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -g_mesh_ext_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_ext_vote_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -g_mesh_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_init_ps_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_mesh_init_ps_type_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_is_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_mesh_is_root_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_is_started /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_is_started_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_manual_nwk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_max_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_monitor_parent_beacon_count /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -g_mesh_nvs_settings /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_packet_lifetime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -g_mesh_passive_scan_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_rmv_opt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -g_mesh_root_conflicts_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_root_healing_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_rt_capacity /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -g_mesh_self_map_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_self_organized /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -g_mesh_self_sta_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_stop_event_group /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_stop_reconnection /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -g_mesh_topology /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_mesh_topology_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_mesh_xon_cfg_qsize /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -g_misc_nvs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_misc_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) -g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -g_msys_pool_list esp-idf/bt/libbt.a(os_mbuf.c.obj) -g_net80211_tx_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -g_os_mempool_list esp-idf/bt/libbt.a(os_mempool.c.obj) -g_osi_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) -g_per_conn_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -g_phyFuns /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -g_phy_cap_rx_stbc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -g_pm /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -g_pm_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -g_pm_cfg_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_pm_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -g_pm_cnt_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_pm_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_pp_timer_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -g_pp_tx_pkt_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -g_rf_pwr_tbl_desc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) -g_rma_rule_db /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) -g_rssi_threshold_failure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -g_rtp_rule_db /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) -g_rw_controller_task_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_rw_init_sem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_rw_schd_queue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_sa_query_mac_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -g_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_scan_forever /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -g_spi_lock_main_flash_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -g_sta_connected_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -g_t1_offset_psec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -g_time_msb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) -g_timer_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -g_timer_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -g_tx_cacheq_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_tx_done_cb_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -g_txop_queue_status /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_txop_queue_status_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_waking_sleeping_sem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -g_wdev_csi_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wdev_csi_rx_ctx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wdev_last_desc_reset_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -g_wdev_record_t1t4_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wdev_record_t2t3_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wdev_set_t1t4_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wifi_coex_basic_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_crypto_funcs_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_default_mesh_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -g_wifi_event_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -g_wifi_global_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_wifi_he_type_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_improve_contention_ability /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_menuconfig /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_wifi_menuconfig_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -g_wifi_nvs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -g_wifi_osi_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -g_wifi_osi_funcs_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_supplicant_funcs_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -g_wifi_type_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_types_generic_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wifi_types_native_md5 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -g_wpa3_hostap_auth_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -g_wpa_anonymous_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_anonymous_identity_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_ca_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_client_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_client_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_new_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_pac_file_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_phase1_options esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_pmk_caching_disabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -g_wpa_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_private_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_private_key_passwd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_private_key_passwd_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_suiteb_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) -g_wpa_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -g_wpa_ttls_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_username esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -g_wpa_username_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -gatt_svr_init esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -gatt_svr_register_cb esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -gcmp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -gdma_ahb_hal_append esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_init esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_ahb_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_reset esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_stop esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_append esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_apply_strategy esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_config_transfer esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_default_rx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_default_tx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_get_alignment_constraints esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_get_free_m2m_trig_id_mask esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_get_group_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_hal_append esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_deinit esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_access_encrypt_mem esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_reset esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_burst_size esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_stop esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_new_ahb_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_rx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_tx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_reset esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_set_priority esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_start esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_stop esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gen_rx_gain_table /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) -generate_authenticator_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -generate_authenticator_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) -generate_nt_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -generate_nt_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) -getMillis esp-idf/console/libconsole.a(linenoise.c.obj) -get_asymetric_start_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -get_be16 esp-idf/bt/libbt.a(endian.c.obj) -get_be24 esp-idf/bt/libbt.a(endian.c.obj) -get_be32 esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -get_be64 esp-idf/bt/libbt.a(endian.c.obj) -get_bias_ref_code /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -get_ble_controller_free_heap_size esp-idf/bt/libbt.a(bt.c.obj) -get_chip_version /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -get_dc_value /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -get_fm_sar_dout /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) -get_iav_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -get_iq_value /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -get_le16 esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -get_le24 esp-idf/bt/libbt.a(endian.c.obj) -get_le32 esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) -get_le64 esp-idf/bt/libbt.a(endian.c.obj) -get_master_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -get_max_power /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -get_network_ctrl_handlers esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -get_network_prov_handlers esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -get_network_scan_handlers esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -get_operating_class esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -get_param esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -get_phy_version_str /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -get_pll_ref_code /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -get_power_atten /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -get_power_db /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -get_rc_dout /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -get_rf_freq_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -get_rf_freq_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -get_rfcal_rxiq_data /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -get_rfrx_sat /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -get_rtc_dbias_by_efuse esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -get_sar_sig_ref /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) -get_temp_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -get_tone_sar_dout /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -get_total_scan_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -get_txcap_data /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -get_vendor_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) -get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) -get_wifi_internal_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -get_wpa_sm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) -getentropy esp-idf/newlib/libnewlib.a(getentropy.c.obj) -getenv /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) -getle32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -getopt /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) -getopt_long /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -getopt_long_only /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) -getrandom esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) -gettimeofday /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysgettod.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -global_hapd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -gmtime /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -gmtime_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) -gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_deep_sleep_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_deep_sleep_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_deep_sleep_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_deep_sleep_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_dump_io_configuration esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_force_hold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_force_unhold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_isolate_in_sleep esp-idf/hal/libhal.a(gpio_hal.c.obj) -gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_input_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_install_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_intr_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_intr_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_iomux_in esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_iomux_out esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_isr_handler_add esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_isr_handler_remove esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_isr_register esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_matrix_out /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -gpio_od_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_od_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_output_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_output_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -gpio_reset_pin esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_set_intr_type esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_sleep_sel_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_sel_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_uninstall_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -h4tl_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) -h4tl_msgtype2hdrlen /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) -h_errno esp-idf/lwip/liblwip.a(netdb.c.obj) -hal_agreement_add_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_agreement_clr_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_agreement_del_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_attenna_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_ba_session_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_ba_session_restore_by_hw_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -hal_ba_session_store /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_beacon_ie_crc_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_beacon_ie_crc_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_clear_rx_beacon_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_coex_pti_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_crypto_clr_key_entry /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_crypto_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_crypto_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -hal_crypto_get_key_entry /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_crypto_get_using_key_idx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) -hal_crypto_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_crypto_is_key_valid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_crypto_mgmt_rx_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_crypto_set_key_entry /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_disable_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_disable_softap_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hal_disable_sta_beacon_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_disable_sta_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_disable_sta_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -hal_disable_tsf_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_disable_tsf_timer_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_enable_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_enable_sta_beacon_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_enable_sta_dump_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_enable_sta_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_enable_sta_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -hal_enable_tsf_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_enable_tsf_timer_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_get_sta_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_get_sta_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_get_time_to_sta_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_get_tsf_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hal_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_is_sta_tsf_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_clr_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_clr_txq_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_disable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_enable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_fill_hwtxop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) -hal_mac_ftm_get_t3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_get_txq_pmd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_get_txq_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_interrupt_clr_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_interrupt_clr_watchdog /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_interrupt_get_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_is_dma_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_is_low_rate_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -hal_mac_is_txq_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_is_txq_valid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_rate_autoack_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_rx_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_rx_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_rx_get_end_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) -hal_mac_rx_get_end_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) -hal_mac_rx_get_last_dscr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_rx_is_dscr_reload /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_rx_read_rxdscrlast /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_rx_read_rxdscrnext /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_rx_set_base /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_rx_set_dscr_reload /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_rx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_rx_set_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_set_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_set_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_set_csi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_set_rxq_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_mac_set_txq_invalid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tsf_get_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_mac_tsf_reset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_tsf_set_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_mac_tx_config_edca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tx_config_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tx_get_blockack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tx_is_cbw40 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tx_set_cca /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_tx_set_ppdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_txq_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_mac_txq_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -hal_now /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_pwr_interrupt_clr_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_pwr_interrupt_get_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_random /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_rx_disable_bssid_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_rx_enable_bssid_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_set_rx_ack_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_set_rx_active_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_set_rx_beacon_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_rx_beacon_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_beacon_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_light_sleep_wake_ahead_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_tbtt_ahead_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_tbtt_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_sta_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -hal_set_sta_tsf_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_set_tx_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_set_wifi_default_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -hal_sniffer_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_sniffer_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_sniffer_rx_clr_statistics /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) -hal_sniffer_rx_set_promis /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_sniffer_set_promis_misc_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_sniffer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -hal_timer_update_by_rtc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_tsf_clear_soc_wakeup_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_tsf_get_tbttstart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -hal_tsf_timer_get_target /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -hal_tsf_timer_set_target /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -handle_auth_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -has_ctrl_char esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) -hash_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -hci_acl_data_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -hci_cmd_desc_root_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_ctrl_bb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_info_par /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_le /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_lk_ctrl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_stat_par /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_vs /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_vs_esp_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_cmd_desc_tab_vs_esp_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_command_handler_tab_esp_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_dbg_common_echo_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_disconnect_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) -hci_evt_desc_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_evt_le_desc_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_evt_le_desc_tab_esp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) -hci_ext_host /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) -hci_fc_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) -hci_le_add_dev_to_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_clear_adv_sets_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_clear_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_con_upd_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_con_upd_cmd_pre_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_create_con_cancel_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_create_con_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_enc_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_enh_rx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_enh_tx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_ext_create_con_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_generate_dhkey_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_ltk_req_neg_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_ltk_req_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_per_adv_create_sync_cancel_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_per_adv_create_sync_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_per_adv_term_sync_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_adv_ch_tx_pw_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_chnl_map_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_rd_local_p256_public_key_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_max_adv_data_len_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_nb_supp_adv_sets_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_per_adv_list_size_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rd_phy_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_rd_rem_feats_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_rem_con_param_req_neg_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_rem_con_param_req_reply_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_rmv_adv_set_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rmv_dev_from_per_adv_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_rx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_adv_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_adv_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_adv_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_adv_set_rand_addr_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_data_len_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_set_data_len_cmd_pre_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_set_ext_adv_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_ext_adv_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_ext_adv_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_ext_scan_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_ext_scan_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_ext_scan_rsp_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_per_adv_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_per_adv_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_per_adv_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_phy_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_set_scan_en_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_scan_param_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_set_scan_rsp_data_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_start_enc_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_le_test_end_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_le_tx_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -hci_rd_auth_payl_to_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_rd_rem_ver_info_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_rd_rssi_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_rd_tx_pwr_lvl_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_rsvd_evt_msk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) -hci_tl_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) -hci_unknown_hci_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vendor_ble_clear_adv_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vendor_ble_init_adv_flow_control_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vendor_ble_qa_test_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vendor_ble_update_adv_report_flow_control_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -hci_vs_set_pref_slave_evt_dur_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_vs_set_pref_slave_latency_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -hci_wr_auth_payl_to_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -he_dcm_max_constellation_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) -heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_aligned_alloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -heap_caps_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/bt/libbt.a(bt_osi_mem.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_malloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) -heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_monitor_local_minimum_free_size_start esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_monitor_local_minimum_free_size_stop esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_walk esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_walk_all esp-idf/heap/libheap.a(heap_caps.c.obj) -hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -hmac_hal_clean esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) -hmac_hal_configure esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_next_block_normal esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_next_block_padding esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_read_result_256 esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_start esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_write_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_hal_write_one_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) -hmac_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -hmac_md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -hmac_sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -hmac_sha256 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) -hmac_sha256_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -hmac_sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -hmac_sha384 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -hmac_sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -hostap_add_in_mac_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -hostap_auth_open /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -hostap_del_mac_info_from_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -hostap_delete_ptk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_deliver_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_eapol_resend_process esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -hostap_handle_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_handle_timer_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -hostap_ht_operation_update /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -hostap_input /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -hostap_new_assoc_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -hostap_query_mac_in_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -hostap_recv_ctl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostap_recv_mgmt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -hostapd_cleanup esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -hostapd_config_clear_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_config_defaults esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_config_defaults_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_config_free_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -hostapd_free_stas esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) -hostapd_get_hapd_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -hostapd_get_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -hostapd_mac_comp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_mac_comp_empty esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_maclist_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_rate_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -hostapd_setup_sae_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -hostapd_setup_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -hostapd_wep_key_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) -ht_action_output /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -http_auth_basic esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_auth_digest esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) -http_body_is_final esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_errno_description esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_errno_name esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_header_clean esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_count esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) -http_header_delete esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_destroy esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_generate_string esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_get esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_get_item esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) -http_header_init esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_set esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_set_format esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_header_set_from_string esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) -http_message_needs_eof esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_method_str esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_parser_execute esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_parser_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_parser_parse_url esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -http_parser_pause esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -http_parser_settings_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -http_parser_url_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -http_parser_version esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) -http_should_keep_alive esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_utils_append_string esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_utils_assign_string esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -http_utils_get_string_after esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) -http_utils_get_string_between esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) -http_utils_join_string esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) -http_utils_str_starts_with esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) -http_utils_trim_whitespace esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) -httpd_default_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_default_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_get_client_list esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_get_global_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_get_global_user_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_is_sess_available esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_query_key_value esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_queue_work esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_recv_with_opt esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_register_err_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_register_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_req_async_handler_begin esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_req_async_handler_complete esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_req_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_req_get_cookie_val esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_req_get_hdr_value_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_req_get_hdr_value_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_req_get_url_query_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_req_get_url_query_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_req_handle_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_req_new esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_req_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_req_to_sockfd esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_resp_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_resp_send_chunk esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_resp_send_custom_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_resp_send_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_resp_set_hdr esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_resp_set_status esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_resp_set_type esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_sess_clear_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_close_all esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_close_lru esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_delete_invalid esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_enum esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_free_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_sess_get esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_sess_get_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_get_free esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_get_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_sess_init esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_new esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_pending esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_process esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_set_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_set_descriptors esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_sess_set_pending_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_sess_set_recv_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_sess_set_send_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_sess_set_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_sess_trigger_close esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_trigger_close_ esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_sess_update_lru_counter esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) -httpd_socket_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_socket_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) -httpd_ssl_start esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -httpd_ssl_stop esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -httpd_start esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_stop esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) -httpd_unrecv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_unregister_all_uri_handlers esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -httpd_unregister_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) -httpd_unregister_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -httpd_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -httpd_uri_match_wildcard esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) -httpd_validate_req_ptr esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) -hw_critical_state_status esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -i2c_bbpll_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -ic_add_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ic_ampdu_op /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ic_bb_check_noise_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_beacon_monitor_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_beacon_offset_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_beacon_offset_set_rx_beacon_standard /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_clear_interrupt_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_connectionless_module_set_wake_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_create_wifi_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_csi_set_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_del_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_del_key_all /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_del_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ic_delete_wifi_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_disable_crypto /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_disable_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_disable_sniffer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_ebuf_alloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_ebuf_recycle_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_ebuf_recycle_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_enable_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_enable_sniffer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_get_80211_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_get_80211_tx_rate_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_get_G6M_sched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_get_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_get_default_sched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_get_espnow_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ic_get_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_get_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_get_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_get_pp_hdl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_get_promis_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_get_promis_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_get_ptk_alg /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ic_get_random /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ic_get_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_get_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_interface_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_is_mgmt_hwdecr_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_is_pure_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_is_sta_tsf_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_mac_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -ic_mac_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -ic_obtain_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ic_pp_post /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_register_config_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_register_csi_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_register_ftm_callbacks /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ic_register_michael_mic_failure_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ic_register_net80211_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_register_pm_tx_null_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_register_pp_tx_done_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_register_promis_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_register_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ic_register_timer_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_register_timer_post_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_register_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_reset_rx_ba /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_reset_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_rx_disable_bssid_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ic_rx_enable_bssid_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ic_set_80211_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_80211_tx_rate_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_ac_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) -ic_set_bar_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_beacon_int /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_set_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ic_set_csi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_set_current_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -ic_set_espnow_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_set_interface /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ic_set_interrupt_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_set_keep_alive_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_set_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_set_promis_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_set_promis_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_set_rx_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_set_rx_policy_ubssid_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_set_sleep_min_active_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_sleep_wait_broadcast_data_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_set_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ic_set_sta_auth_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ic_set_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ic_set_vif /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ic_stop_hw_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_stop_sw_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_trc_set_per_pkt_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_trc_update_def_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_trc_update_ifx_phy_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -ic_tx_is_idle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ic_tx_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ic_txq_empty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_update_light_sleep_default_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_update_light_sleep_wake_ahead_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ic_update_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ic_update_sta_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ic_update_tsf_tick_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -icmp6_dest_unreach esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -icmp6_input esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -icmp6_packet_too_big esp-idf/lwip/liblwip.a(icmp6.c.obj) -icmp6_param_problem esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -icmp6_time_exceeded esp-idf/lwip/liblwip.a(icmp6.c.obj) -icmp6_time_exceeded_with_addrs esp-idf/lwip/liblwip.a(icmp6.c.obj) -icmp_dest_unreach esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -icmp_input esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -ieee80211_action_vendor_spec_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_add_action_vendor_spec_esp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_add_assoc_req_ies /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_assoc_resp_ies /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_beacon_app_ies /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_countryie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_csa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_dh_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_dsparams /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_extcap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_htcap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_htcap_vendor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_htinfo /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_htinfo_body /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_add_htinfo_vendor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_ie_esp_mesh_head /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_ie_vendor_esp_freq_annon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) -ieee80211_add_ie_vendor_esp_head /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_add_ie_vendor_esp_manufacturer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_ie_vendor_esp_mesh_group /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) -ieee80211_add_ie_vendor_esp_now /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_add_ie_vendor_esp_now_head /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) -ieee80211_add_ie_vendor_esp_simple_pair /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) -ieee80211_add_ie_vendor_esp_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) -ieee80211_add_mesh_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_mesh_duty_signaling /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_mesh_ext_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_mesh_ps_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_mesh_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_mesh_ssid_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_add_probe_req_ies /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_probe_resp_app_ies /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_rates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_tie_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_wme_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_add_xrates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_adjust_2nd_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_align_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_alloc_action_vendor_spec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_alloc_challenge /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_alloc_deauth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_alloc_proberesp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_alloc_tx_buf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_ampdu_age_all /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_ampdu_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_ampdu_reorder /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ampdu_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_ampdu_start_age_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_ampdu_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_amsdu_adjust_head /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_amsdu_adjust_last_length /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_amsdu_encap_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_amsdu_length_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_amsdu_negotiate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_amsdu_send_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_ap_sa_query_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_ap_try_sa_query /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_assoc_req_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_assoc_resp_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_auth_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_beacon_alloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_beacon_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_better_rsn_pairwise_cipher /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ieee80211_cal_tx_pps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_ccmp_decrypt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ccmp_encrypt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) -ieee80211_classify /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_cnx_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_copy_eb_header /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_crypto_aes_128_cmac_decrypt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_crypto_aes_128_cmac_encrypt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_crypto_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_crypto_available /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) -ieee80211_crypto_decap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_crypto_encap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_crypto_gmac_decrypt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_crypto_setkey /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) -ieee80211_deauth_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_decap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_decap1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_decap_amsdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_decrypt_espnow_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_deliver_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ieee80211_disassoc_construct /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_empty_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_encap_amsdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_encap_esfbuf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_encap_null_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_espnow_get_init_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_espnow_set_init_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_ethbroadcast /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_find_elem /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_find_elem_match /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_find_ext_elem /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_find_ext_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_find_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_find_ie_match /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_free_beacon_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_freedom_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_freedom_inside_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_ftm_attach esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_ftm_detach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_ftm_measurement_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ieee80211_ftm_req_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_ftm_request_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ieee80211_ftm_sess_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_get_chan_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_get_cipher_mic_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_get_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_get_mac_addr_from_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_get_nvs_he_dcm_max_constellation_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_get_ptk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_get_robustmgtframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_get_spp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_get_sta_gtk_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_getbcnframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_getcapinfo /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_getmgtframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_gettid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_gcmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_gpsq_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_has_ht40_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_hostap_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_hostap_send_beacon_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_hostapd_beacon_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -ieee80211_hostapd_data_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -ieee80211_hostapd_ps_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ht_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_ht_deattach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ht_node_cleanup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ht_node_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ht_updatehtcap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_ht_updateparams /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_ifattach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_ifdetach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_init_mesh_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -ieee80211_ioctl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_ioctl_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_ioctl_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_ioctl_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_is_11b_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ieee80211_is_40mhz_valid_bw /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_is_bufferable_mmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_is_ht_cipher /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_is_lr_only /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_is_mesh_roots_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_announce_used /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_valid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_yield /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_mesh_roots_yield_used /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_is_robust_mgmt_frm /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_is_support_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ieee80211_is_tx_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_iserp_rateset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) -ieee80211_mesh_quick_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_mesh_quick_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_mesh_quick_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_mesh_quick_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_mgmt_output /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_mlme_connect_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_mt_key_clear_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_mt_key_is_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_mt_key_is_mask_zero /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_mt_key_set_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_node_pwrsave /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_nvs_set_default_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -ieee80211_opcap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_output /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_output_do /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_output_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_output_pending_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_output_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_output_raw_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_parse_action /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_parse_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_parse_htcap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_parse_obss_scan_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_parse_rsn /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ieee80211_parse_wapi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ieee80211_parse_wmeparams /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_parse_wpa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ieee80211_phy_2nd_chan_is_valid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_phy_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_phy_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_phy_mode_show /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_phy_type_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_pm_tx_null_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_post_hmac_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -ieee80211_process_bar_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) -ieee80211_proto_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_protocol_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_psq_cleanup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_drop_one_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_find_max_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_psq_is_buff_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_send_one_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_take_head /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_psq_take_tail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) -ieee80211_public_action_recv_mesh_awake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -ieee80211_public_action_send_mesh_awake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_pwrsave /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_pwrsave_node_cleanup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_pwrsave_txcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_rate_ref_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_raw_frame_sanity_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_recv_action /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_recv_action_register /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -ieee80211_recv_action_unregister /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) -ieee80211_recv_action_vendor_esp_now /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_recv_action_vendor_spec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_recv_bar /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_recv_mesh_duty_signaling /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_recycle_cache_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_reg_encap_amsdu_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_reg_netstack_buf_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_regdomain_ap_max_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -ieee80211_regdomain_ap_min_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -ieee80211_regdomain_chan_in_range /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -ieee80211_regdomain_chan_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) -ieee80211_regdomain_get_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) -ieee80211_regdomain_is_active_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ieee80211_regdomain_max_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -ieee80211_regdomain_max_tx_power /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) -ieee80211_regdomain_min_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_regdomain_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_regdomain_update /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) -ieee80211_regdomain_update_in_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_regdomain_update_in_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ieee80211_register_ftm_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ieee80211_register_hostap_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_register_wapi_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_rfid_locp_recv /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_rfid_locp_recv_close /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) -ieee80211_rfid_locp_recv_open /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) -ieee80211_rfid_locp_recv_reset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_rsn_cipher_priority /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -ieee80211_scan_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_scan_deattach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_search_node /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_send_action /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_send_action_register /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) -ieee80211_send_action_unregister /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) -ieee80211_send_action_vendor_spec /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -ieee80211_send_deauth_no_bss /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_send_ftmr_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_send_mgmt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_send_nulldata /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_send_probereq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_send_proberesp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_send_setup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -ieee80211_set_appie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_set_gtk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_set_hmac_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_set_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_set_max_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_set_phy_2nd_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_set_phy_bw /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_set_phy_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_set_shortslottime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_set_sta_gtk_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_set_tim /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_set_tx_desc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -ieee80211_set_tx_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -ieee80211_set_user_sup_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -ieee80211_setup_basic_htrates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_setup_htrates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_setup_lr_rates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_setup_phy_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_setup_pmf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_setup_rates /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_setup_rateset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_setup_ratetable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -ieee80211_setup_robust_mgmtframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_sta_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_sta_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_sta_is_connected /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_sta_new_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_sta_scan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_timer_do_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_timer_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_tx_ftm_msmt_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -ieee80211_tx_mgt_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) -ieee80211_unregister_wapi_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ieee80211_update_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211_update_phy_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211_user_ie_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -ieee80211_vnd_ie_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_vnd_ie_size /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_vnd_lora_ie_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_vnd_lora_ie_size /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_vnd_mesh_fully_associated /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_vnd_mesh_quick_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_vnd_mesh_quick_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_vnd_mesh_roots_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_vnd_mesh_roots_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -ieee80211_vnd_mesh_update_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -ieee80211_wapi_alloc_tx_buf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ieee80211_wme_initparams /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) -ieee80211_wme_standard_ac_to_esp_ac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -ieee80211_wme_updateparams /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ieee80211w_get_active_igtk_key_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -ieee80211w_get_igtk_from_keyidx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) -ieee802_11_ext_capab esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -ieee802_11_ie_count esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -ieee802_11_parse_candidate_list esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -ieee802_11_parse_elems esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -ieee802_11_vendor_ie_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -if_ctrl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -if_ctrl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -igmp_init esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -igmp_input esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -igmp_joingroup esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -igmp_joingroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -igmp_leavegroup esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -igmp_leavegroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -igmp_lookfor_group esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -igmp_report_groups esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -igmp_start esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -igmp_stop esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -igmp_tmr esp-idf/lwip/liblwip.a(igmp.c.obj) -in_rssi_adjust /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -inet_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) -inet_chksum_pbuf esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) -inet_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) -inet_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) -int nvs::NVSHandle::get_item(char const*, long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, signed char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, unsigned long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, unsigned long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::get_item(char const*, unsigned short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, signed char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, unsigned long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int nvs::NVSHandle::set_item(char const*, unsigned short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -int_array_len esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -intr_handler_get esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -intr_handler_get_arg esp-idf/riscv/libriscv.a(interrupt.c.obj) -intr_handler_set esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -intr_matrix_route esp-idf/riscv/libriscv.a(interrupt_intc.c.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -intrusive_list::push_back(NVSHandleEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -intrusive_list::push_back(nvs::HashList::HashListBlock*) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::push_back(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::push_back(nvs::NVSPartition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::insert(intrusive_list::iterator, nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::push_back(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::push_front(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::push_back(nvs::Storage::BlobIndexNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::push_back(nvs::Storage::NamespaceEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::push_back(nvs::Storage::UsedPageNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::push_back(nvs::Storage*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -io_cfg2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -iot_button_add_on_press_cb esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) -iot_button_add_on_release_cb esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) -iot_button_create esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/app_reset/libapp_reset.a(app_reset.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -iot_button_delete esp-idf/gpio_button/libgpio_button.a(button.c.obj) -iot_button_rm_cb esp-idf/gpio_button/libgpio_button.a(button.c.obj) -iot_button_set_evt_cb esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -iot_button_set_serial_cb esp-idf/gpio_button/libgpio_button.a(button.c.obj) -ip4_addr_isbroadcast_u32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip4_addr_netmask_valid esp-idf/lwip/liblwip.a(ip4_addr.c.obj) -ip4_frag esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -ip4_input esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) -ip4_netif_exist esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) -ip4_output esp-idf/lwip/liblwip.a(ip4.c.obj) -ip4_output_if esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip4_output_if_opt esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) -ip4_output_if_opt_src esp-idf/lwip/liblwip.a(ip4.c.obj) -ip4_output_if_src esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -ip4_route esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) -ip4_route_src esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip4_route_src_hook esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -ip4_set_default_multicast_netif esp-idf/lwip/liblwip.a(ip4.c.obj) -ip4addr_aton esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -ip4addr_ntoa esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) -ip4addr_ntoa_r esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -ip6_addr_any esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -ip6_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip6_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) -ip6_frag esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -ip6_input esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) -ip6_options_add_hbh_ra esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) -ip6_output esp-idf/lwip/liblwip.a(ip6.c.obj) -ip6_output_if esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip6_output_if_src esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -ip6_route esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip6_select_source_address esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -ip6addr_aton esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -ip6addr_ntoa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) -ip6addr_ntoa_r esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -ip_addr_any esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -ip_addr_any_type esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -ip_addr_broadcast esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -ip_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -ip_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) -ip_data esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -ip_input esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -ipaddr_addr esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -ipaddr_aton esp-idf/lwip/liblwip.a(ip.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -ipaddr_ntoa esp-idf/lwip/liblwip.a(ip.c.obj) -ipaddr_ntoa_r esp-idf/lwip/liblwip.a(ip.c.obj) -is_esp_mesh_assoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -is_esp_mesh_duty_signaling /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -is_esp_mesh_ext_assoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -is_esp_mesh_ps /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -is_fragmented_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -is_lmac_idle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -is_mesh_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -is_mesh_last_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -is_my_ie_encrypted /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -is_off_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -is_self_mac_greater /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -is_wapi_alloc_tx_buf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -is_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -iswspace /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) -iswspace_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace_l.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-iswspace.o) -itoa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-itoa.o) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) -json_arr_get_array esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_bool esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_float esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_int esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_int64 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_object esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_arr_get_string esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_get_strlen esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_leave_array esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_arr_leave_object esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_gen_add_to_long_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -json_gen_arr_set_bool esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -json_gen_arr_set_float esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -json_gen_arr_set_int esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -json_gen_arr_set_null esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -json_gen_arr_set_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_arr_start_long_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -json_gen_end_array esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_gen_end_long_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -json_gen_end_object esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_obj_set_bool esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_obj_set_float esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_obj_set_int esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_obj_set_null esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_obj_set_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_obj_start_long_string esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -json_gen_pop_array esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_pop_object esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_push_array esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_push_array_str esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_push_object esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_push_object_str esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) -json_gen_start_array esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_gen_start_object esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_str_end esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_gen_str_start esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_array esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_obj_get_array_str esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_array_strlen esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_bool esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -json_obj_get_float esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_int esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -json_obj_get_int64 esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_obj_get_object esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_object_str esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_object_strlen esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_string esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_get_strlen esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_obj_leave_array esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -json_obj_leave_object esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_parse_end esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -json_parse_end_static esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -json_parse_start esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -json_parse_start_static esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -ke_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) -ke_event_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) -ke_task_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -labs /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-labs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -le_scan_duplicate_option /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -led_light_cmd_handler esp-idf/main/libmain.a(app_main.c.obj) -led_strip_new_rmt_ws2812 esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -len_dh_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -libcoexist_reversion_git /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -libcoexist_reversion_remote /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) -libcore_reversion_git /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) -libmesh_reversion_git /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -libnet80211_reversion_git /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -libnet80211_reversion_remote /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -libpp_reversion_git /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -light_device esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -linenoise esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseAddCompletion esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) -linenoiseAllowEmpty esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseClearScreen esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditBackspace esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditDelete esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditDeletePrevWord esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditHistoryNext esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditInsert esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditMoveEnd esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditMoveHome esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditMoveLeft esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseEditMoveRight esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseFree esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseHistoryAdd esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseHistoryFree esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseHistoryLoad esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseHistorySave esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseHistorySetMaxLen esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseInsertPastedChar esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseIsDumbMode esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseProbe esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetCompletionCallback esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetDumbMode esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetFreeHintsCallback esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetHintsCallback esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetMaxLineLen esp-idf/console/libconsole.a(linenoise.c.obj) -linenoiseSetMultiLine esp-idf/console/libconsole.a(linenoise.c.obj) -ll_channel_map_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_channel_map_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_param_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_param_req_handler_pre /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_param_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_param_rsp_param_handler_pre /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_update_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_connection_update_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_feature_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_feature_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_length_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_length_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_min_used_channels_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_pause_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_pause_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_phy_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_phy_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_phy_update_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_phy_update_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_ping_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_ping_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_slave_feature_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_start_enc_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_start_enc_rsp_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_terminate_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -ll_version_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -llc_auth_payl_nearly_to_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_auth_payl_real_to_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_enc_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -llc_encrypt_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) -llc_hci_command_handler_wrapper /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_ll_connection_param_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) -llc_ll_connection_param_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) -llc_ll_connection_update_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) -llc_ll_enc_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_enc_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_feature_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) -llc_ll_feature_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) -llc_ll_length_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) -llc_ll_length_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) -llc_ll_pause_enc_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_pause_enc_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_phy_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -llc_ll_phy_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -llc_ll_ping_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -llc_ll_ping_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) -llc_ll_start_enc_req_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_start_enc_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -llc_ll_terminate_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) -llc_ll_unknown_rsp_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -llc_llcp_ch_map_update_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) -llc_llcp_conn_update_ind_ack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -llc_llcp_phy_upd_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -llc_llcp_phy_update_ind_ack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -llc_llcp_version_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) -llc_op_ch_map_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_con_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_disconnect_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_dl_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_encrypt_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_feats_exch_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_le_ping_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_phy_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_op_ver_exch_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llc_stopped_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_acl_rx_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_acl_rx_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_acl_tx_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_adv_aux_offset_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -lld_adv_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_adv_end_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_adv_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -lld_adv_rep_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_adv_rep_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_aux_phy_to_rate /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_aux_ptr_thr_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -lld_ch_idx_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -lld_ch_map_upd_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_con_cntl_pkt_info /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -lld_con_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -lld_con_estab_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_con_estab_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_con_evt_sd_evt_time_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -lld_con_llcp_proc_type_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -lld_con_offset_upd_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_con_param_upd_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_disc_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_dtm_is_ongoing /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -lld_enable_fixed_ch_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -lld_exp_sync_pos_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -lld_fixed_ch_idx_state_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -lld_init_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_init_end_ind_pre_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_init_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) -lld_init_max_aux_dur_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) -lld_le_pkt_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_le_pkt_err_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -lld_le_pkt_err_en /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -lld_le_pkt_err_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -lld_le_pkt_err_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_le_pkt_err_state_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -lld_llcp_rx_ind_handler_wrapper /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_llcp_tx_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_peer_rpa_to_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -lld_per_adv_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_per_adv_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) -lld_per_adv_rep_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_per_adv_rx_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_per_adv_rx_end_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_phy_coded_500k_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -lld_phy_upd_cfm_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_priv_rpa_res /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -lld_ral_valid_count /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -lld_rpa_renew_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_rpa_renew_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -lld_rpa_res_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_rpa_res_list_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_scan_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_scan_end_ind_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_scan_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -lld_scan_map_legacy_pdu_to_evt_type /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -lld_scan_max_aux_dur_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -lld_scan_req_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_scan_sync_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -lld_sync_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) -lld_sync_max_aux_dur_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) -lld_sync_start_req_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_sync_start_req_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -lld_test_end_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -lld_test_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) -lld_update_rxbuf_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -lld_wl_res_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -lld_wl_res_rem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -lld_wl_rpa_res /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -lld_wl_search /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -llm_adv_is_in_duplicate_scan_duplicate_exceptional_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_adv_reports_list_remove /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_cal_duplicate_scan_defer_count /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_ch_map_update_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) -llm_clear_adv /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -llm_csa_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -llm_csa_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -llm_duplicate_list_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_exception_list_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_ext_adv_get_own_addr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -llm_hci_command_handler_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -llm_hci_command_handler_wrapper /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -llm_hci_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_hci_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_hdl_to_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -llm_is_pal_empty /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_le_adv_flow_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_local_le_feats /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_local_le_feats_42 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -llm_local_le_states /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -llm_local_supp_cmds /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -llm_rpa_renew_timer_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -llm_rpa_renew_to_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -llm_scan_check_mesh_adv_data /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_scan_period_to_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) -llm_scan_period_to_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) -llm_util_check_adv_report_list_by_hash /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_util_check_mesh_adv_report_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -llm_util_flush_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -lmacAdjustTimestamp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacConfMib /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacConfMib_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacDisableTransmit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacDiscardAgedMSDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacDiscardFrameExchangeSequence /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacDiscardMSDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacEndFrameExchangeSequence /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacEndRetryAMPDUFail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacGetTxFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacInit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -lmacInitAc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacIsIdle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -lmacIsLongFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacMSDUAged /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacPostTxComplete /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacProcessAckTimeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessAllTxTimeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacProcessCollision /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessCollisions /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacProcessCollisions_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacProcessCtsTimeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessLongFrameSuccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessLongRetryFail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessRxSucData /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacProcessShortFrameSuccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessShortRetryFail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTBSuccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxComplete /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacProcessTxError /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxRtsError /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxSuccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxTimeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacProcessTxopQComplete /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxopSuccess /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacProcessTxseckiderr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacReachLongLimit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacReachShortLimit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacRecycleMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacReleaseTxopQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacRequestTxopQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmacRetryTxFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacRxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacSetAcParam /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -lmacSetTxFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacStopTransmit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -lmacTxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmacTxFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -lmac_record_txtime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -lmac_stop_hw_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -lmac_update_tx_statistic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -local_ctrl_inst_ctx esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -local_ctrl_message__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -local_ctrl_message__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -local_ctrl_message__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -local_ctrl_message__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -local_ctrl_message__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -local_ctrl_message__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -local_ctrl_message__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -local_ctrl_msg_type__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -localeconv /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-localeconv.o) -localtime_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-lcltime_r.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -lwip_bind esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -lwip_close esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_connect esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) -lwip_fcntl esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_freeaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_getaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_gethostbyname esp-idf/lwip/liblwip.a(netdb.c.obj) -lwip_gethostbyname_r esp-idf/lwip/liblwip.a(netdb.c.obj) -lwip_getpeername esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -lwip_getsockname esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -lwip_getsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -lwip_getsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_hook_ip6_input esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -lwip_hook_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -lwip_htonl esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_inet_ntop esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) -lwip_inet_pton esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -lwip_init esp-idf/lwip/liblwip.a(init.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -lwip_init_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -lwip_ioctl esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_itoa esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -lwip_listen esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -lwip_netconn_do_accepted esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_bind esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_bind_if esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_close esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_connect esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_delconn esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_disconnect esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_getaddr esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_gethostbyname esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_join_leave_group esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_join_leave_group_netif esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_listen esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_newconn esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_recv esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_send esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_do_write esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_is_deallocated_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_netconn_is_err_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -lwip_num_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) -lwip_poll esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_read esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_readv esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_recv esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_recvfrom esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) -lwip_recvmsg esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_select esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_send esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_sendmsg esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_sendto esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) -lwip_setsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_setsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_shutdown esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -lwip_socket esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -lwip_socket_dbg_get_socket esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_socket_thread_cleanup esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_socket_thread_init esp-idf/lwip/liblwip.a(sockets.c.obj) -lwip_standard_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) -lwip_stricmp esp-idf/lwip/liblwip.a(def.c.obj) -lwip_strnicmp esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -lwip_strnistr esp-idf/lwip/liblwip.a(def.c.obj) -lwip_strnstr esp-idf/lwip/liblwip.a(def.c.obj) -lwip_write esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -lwip_writev esp-idf/lwip/liblwip.a(sockets.c.obj) -mac_debug /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -mac_last_rxbuf_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_list_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -mac_rxbuf_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_rxbuf_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_htsig /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_plcp0 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_plcp1 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_plcp2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_pti /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_tx_set_txop_q /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mac_txrx_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gmtime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) -malloc_ble_controller_mem esp-idf/bt/libbt.a(bt.c.obj) -malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) -mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) -map_assoc_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -maxSecretKey_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -max_data_tx_time /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -mbedtls_aes_cmac_prf_128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) -mbedtls_aria_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) -mbedtls_aria_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_aria_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_asn1_find_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_asn1_free_named_data_list_shallow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) -mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_asn1_get_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) -mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) -mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) -mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_asn1_write_algorithm_identifier_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) -mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) -mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) -mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) -mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) -mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) -mbedtls_base64_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) -mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ccm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_ccm_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_ccm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) -mbedtls_ccm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_ccm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_ccm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) -mbedtls_ccm_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_ccm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) -mbedtls_ccm_star_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) -mbedtls_ccm_star_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) -mbedtls_ccm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_ccm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_ccm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) -mbedtls_cipher_auth_decrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_cipher_auth_encrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_cipher_base_lookup_table esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_cmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) -mbedtls_cipher_cmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_cmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) -mbedtls_cipher_cmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_cmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) -mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_info_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) -mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) -mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) -mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cipher_values_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) -mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) -mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) -mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ct_memcpy_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ct_memmove_left esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_ct_zeroize_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_set_nonce_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -mbedtls_ecc_group_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_ecc_group_to_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ecdh_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecdh_get_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_der_to_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) -mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecdsa_raw_to_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) -mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_eckey_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_eckeydh_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_ecp_curve_info_from_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecp_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_curve_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_keypair_calc_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_keypair_get_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) -mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) -mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_set_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_ecp_write_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_ecp_write_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_entropy_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_source_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_update_manual esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_entropy_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_free_keypair esp-idf/bt/libbt.a(ble_sm_alg.c.obj) -mbedtls_gcm_auth_decrypt_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_crypt_and_tag_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_finish_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_free_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_init_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) -mbedtls_gcm_setkey_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_starts_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_update_ad_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_gcm_update_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) -mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) -mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) -mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) -mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) -mbedtls_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) -mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_md_error_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_md_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -mbedtls_md_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) -mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_exp_mod_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) -mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_exp_mod_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -mbedtls_mpi_exp_mod_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) -mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_mpi_is_prime_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) -mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) -mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_mpi_read_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) -mbedtls_mpi_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) -mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) -mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) -mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) -mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) -mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) -mbedtls_ms_time esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_net_accept esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_bind esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_connect esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_net_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -mbedtls_net_recv esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_net_recv_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_send esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_net_set_block esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_set_nonblock esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_net_usleep esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) -mbedtls_oid_from_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) -mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_oid_get_certificate_policies esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) -mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_oid_get_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) -mbedtls_oid_get_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_oid_get_oid_by_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_oid_get_oid_by_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_oid_get_pkcs12_pbe_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_oid_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_oid_get_sig_alg_desc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_oid_get_x509_ext_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_pem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pem_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pem_read_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pem_write_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_pk_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_pk_check_pair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_pk_copy_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_copy_public_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_pk_ecc_set_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_ecc_set_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_ecc_set_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_ecc_set_pubkey_from_prv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_pk_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_pk_get_psa_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_import_into_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_load_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_pk_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_parse_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pk_parse_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_pk_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_pk_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_pk_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_pk_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_pk_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_pk_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_pk_write_key_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_pk_write_pubkey_formatted esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) -mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) -mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) -mbedtls_pkcs12_pbe_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pkcs5_pbes2_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) -mbedtls_pkcs5_pbkdf2_hmac_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) -mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) -mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) -mbedtls_psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_crypto_configure_entropy_sources esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_psa_ecp_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) -mbedtls_psa_get_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_psa_get_stats esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) -mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) -mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) -mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_rsa_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_rsa_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_parse_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) -mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) -mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) -mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsassa_pss_sign_no_mode_check esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_auth.c.obj) -mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -mbedtls_rsa_write_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_rsa_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -mbedtls_sha1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_sha1_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_sha1_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) -mbedtls_sha1_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_sha1_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) -mbedtls_sha1_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) -mbedtls_sha1_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) -mbedtls_sha1_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) -mbedtls_sha224_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) -mbedtls_sha256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) -mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha384_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) -mbedtls_sha512 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_sha512_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_sha512_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) -mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_sha512_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) -mbedtls_ssl_add_hs_hdr_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_add_hs_msg_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_check_cert_usage esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_check_curve esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_check_curve_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_check_pending esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_check_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_check_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_ciphersuite_from_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_ciphersuite_from_string esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) -mbedtls_ssl_ciphersuite_get_cipher_key_bitlen esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) -mbedtls_ssl_ciphersuite_uses_ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_close_notify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_conf_alpn_protocols esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_ssl_conf_cert_profile esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_conf_cert_req_ca_list esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_dbg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_dtls_badmac_limit esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_encrypt_then_mac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_endpoint esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_extended_master_secret esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_groups esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_legacy_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_preference_order esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_conf_read_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_renegotiation_enforced esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_renegotiation_period esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_rng esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_conf_session_cache esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_session_tickets esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_session_tickets_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_sig_algs esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_conf_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_transport esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_conf_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) -mbedtls_ssl_config_defaults esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_config_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_config_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_decrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_derive_keys esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_encrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_fetch_input esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_finish_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_flush_output esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_get_alpn_protocol esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_bytes_avail esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_get_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_get_ciphersuite_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) -mbedtls_ssl_get_ciphersuite_id_from_ssl esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_ciphersuite_name esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_ciphersuite_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_get_ciphersuite_sig_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_get_ecp_group_id_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_get_extension_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_extension_mask esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_handshake_transcript esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_hs_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_input_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_key_exchange_md_tls1_2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_get_max_in_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_max_out_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_get_mode_from_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_get_mode_from_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_get_output_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_peer_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_psa_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_record_expansion esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_get_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_get_tls_id_from_ecp_group_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_get_verify_result esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_get_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_handle_message_type esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_handle_pending_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_handshake esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_handshake_client_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -mbedtls_ssl_handshake_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_handshake_server_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_srv.c.obj) -mbedtls_ssl_handshake_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_handshake_wrapup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_handshake_wrapup_free_hs_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_hash_from_md_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_list_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_md_alg_from_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_optimize_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_parse_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_parse_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_parse_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_parse_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_parse_server_name_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_parse_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_pend_fatal_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_pk_alg_from_sig esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_prepare_handshake_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_read esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_read_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_read_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_renegotiate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_reset_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_reset_in_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_send_alert_message esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_send_fatal_handshake_failure esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_session_copy esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_session_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_session_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_session_load esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_session_reset esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_session_reset_int esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_session_reset_msg_layer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_session_save esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_bio esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_set_calc_verify_md esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_set_export_keys_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_set_hostname esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_ssl_set_hs_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_hs_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_hs_dn_hints esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_hs_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_inbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_set_outbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_set_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_timer_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_set_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_setup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_sig_from_pk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_sig_from_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_start_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_start_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_tls12_write_client_hello_exts esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_tls_prf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -mbedtls_ssl_transform_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_transform_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_update_handshake_status esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_update_in_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_update_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_validate_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_verify_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) -mbedtls_ssl_write_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) -mbedtls_ssl_write_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_write_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_write_client_hello esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_cli.c.obj) -mbedtls_ssl_write_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) -mbedtls_ssl_write_handshake_msg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_ssl_write_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) -mbedtls_ssl_write_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_ssl_write_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) -mbedtls_to_psa_error esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) -mbedtls_x509_crt_check_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_check_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_x509_crt_get_ca_istrue esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_x509_crt_is_revoked esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_parse esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -mbedtls_x509_crt_parse_cn_inet_pton esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_parse_der_nocopy esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_parse_der_with_ext_cb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_parse_path esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_profile_default esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_profile_next esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_profile_none esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_profile_suiteb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_verify esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_verify_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_crt_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbedtls_x509_crt_verify_with_profile esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_dn_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_free_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_get_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_get_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_rsassa_pss_params esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_get_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_subject_alt_name_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_get_time esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_info_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_info_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_info_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_key_size_helper esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_parse_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_serial_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_set_extension esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509_sig_alg_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -mbedtls_x509_string_to_names esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509_time_cmp esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_time_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) -mbedtls_x509_write_extensions esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509_write_names esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509_write_set_san_common esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509_write_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_x509write_csr_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_x509write_csr_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_x509write_csr_set_extension esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_set_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_x509write_csr_set_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_set_md_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_x509write_csr_set_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_set_subject_alternative_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) -mbedtls_x509write_csr_set_subject_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) -mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) -mbo_add_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) -mbrtowc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mbrtowc.o) -md4_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) -md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) -mdns_browse_delete esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_browse_new esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_delegate_hostname_add esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_delegate_hostname_remove esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_delegate_hostname_set_address esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_free esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -mdns_hostname_exists esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_hostname_get esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_hostname_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -mdns_init esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -mdns_instance_name_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_is_netif_ready esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_lookup_delegated_service esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_lookup_selfhosted_service esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_calloc esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_free esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_malloc esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_strdup esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_strndup esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_task_free esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_mem_task_malloc esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_netif_action esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_parse_packet esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_preset_if_handle_system_event esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_a esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_aaaa esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_async_delete esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_async_get_results esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_async_new esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_generic esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_ptr esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_results_free esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_srv esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_query_txt esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_register_netif esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_add esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -mdns_service_add_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_exists esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_exists_with_instance esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_instance_name_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -mdns_service_instance_name_set_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_port_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_port_set_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_remove esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -mdns_service_remove_all esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_remove_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_subtype_add_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_subtype_add_multiple_items_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_subtype_remove_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_subtype_update_multiple_items_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_item_remove esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_item_remove_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_item_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) -mdns_service_txt_item_set_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_item_set_for_host_with_explicit_value_len esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_item_set_with_explicit_value_len esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_set esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_service_txt_set_for_host esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -mdns_unregister_netif esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -meas_tone_pwr_db /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) -mem_calloc esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) -mem_free esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -mem_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) -mem_init esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -mem_init_mbuf_pool esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -mem_malloc esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(memp.c.obj) -mem_malloc_mbuf_pool esp-idf/bt/libbt.a(mem.c.obj) -mem_malloc_mbufpkt_pool esp-idf/bt/libbt.a(mem.c.obj) -mem_malloc_mempool esp-idf/bt/libbt.a(mem.c.obj) -mem_malloc_mempool_ext esp-idf/bt/libbt.a(mem.c.obj) -mem_pullup_obj esp-idf/bt/libbt.a(mem.c.obj) -mem_split_frag esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -mem_trim esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) -memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -memchr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memchr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -memcmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_store.c.obj) - esp-idf/bt/libbt.a(ble_hs_id.c.obj) - esp-idf/bt/libbt.a(ble_store_util.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -memcpy /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mprec.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-dtoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fread.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fgets.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - esp-idf/hal/libhal.a(ds_hal.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac_tx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ie_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_mbedtls_dynamic_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp_https_ota/libesp_https_ota.a(esp_https_ota.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/log/liblog.a(log_buffers.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -memmove /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memmove-stub.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fvwrite.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) -memp_ARP_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) -memp_FRAG_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) -memp_IGMP_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) -memp_MLD6_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) -memp_ND6_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) -memp_NETBUF esp-idf/lwip/liblwip.a(memp.c.obj) -memp_NETCONN esp-idf/lwip/liblwip.a(memp.c.obj) -memp_NETDB esp-idf/lwip/liblwip.a(memp.c.obj) -memp_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) -memp_PBUF_POOL esp-idf/lwip/liblwip.a(memp.c.obj) -memp_RAW_PCB esp-idf/lwip/liblwip.a(memp.c.obj) -memp_SYS_TIMEOUT esp-idf/lwip/liblwip.a(memp.c.obj) -memp_TCPIP_MSG_API esp-idf/lwip/liblwip.a(memp.c.obj) -memp_TCPIP_MSG_INPKT esp-idf/lwip/liblwip.a(memp.c.obj) -memp_TCP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) -memp_TCP_PCB_LISTEN esp-idf/lwip/liblwip.a(memp.c.obj) -memp_TCP_SEG esp-idf/lwip/liblwip.a(memp.c.obj) -memp_UDP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) -memp_free esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -memp_free_pool esp-idf/lwip/liblwip.a(memp.c.obj) -memp_init esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -memp_init_pool esp-idf/lwip/liblwip.a(memp.c.obj) -memp_malloc esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) -memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) -memset /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-bzero.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fseeko.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-findfp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_csr.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -mesh_add_invalid_rc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_add_option /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_adjust_passive_scan_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_bcn_change_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_bcn_change_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_bcn_change_timer_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_candidate_monitor_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_candidate_monitor_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_chain_header_add_ttl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_check_conflict_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_check_last_rcandidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_check_rc_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_check_tid_mbox_full /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_child_clr_ps_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_child_set_ps_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_clear_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_coding_ie_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_conn_leave /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_conn_mutex /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_connect_to_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_connect_to_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_construct_rmv_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_create_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) -mesh_csa_set_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_deinit_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_disable_parent_switch_monitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_encrypt_ie_plain_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_fill_rmv_sub_child /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_find_root_competitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_flush_txQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_flush_upstream_packets /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_free /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_get_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_get_parent_monitor_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_get_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_get_sub_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_get_subnet_nodes_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_get_subnet_nodes_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_get_tx_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_get_vnd_roots_len /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_ie_monitor_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ie_monitor_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_ie_type2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_init_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_init_rcandidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ioctl_sem /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_is_better_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_is_ie_ignored /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_is_last_rc_existing /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_is_new_found_conflict_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_is_new_root_found /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_is_new_root_invalid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_is_yield_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_look_for_network /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_malloc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_common.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_malloc_rmv_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_multi_recv_ack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_multi_send_ack /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_mutex_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_mutex_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_myself_mbox /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_node_process_cycle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_node_process_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_node_process_healing /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_add_conflict_roots /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_change_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_check_conflict_roots /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_check_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_check_no_parent_found /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -mesh_nwk_delete_timers /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_duty_check_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_check_duration_expire /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_clr_master_identity /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_clr_remaining /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_master_is_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_post_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_process_remaining /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_set_master_identity /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_duty_set_remaining /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_nwk_find_conflict_roots /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_io_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_manual_networking /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_nwk_process_allow_switch /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_child_event /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_conflict_discnx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_disconnected /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_ie_change /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_leaf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_look_for_network /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_no_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_nvs_settings /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_reselect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_rootless /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_scan_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_scan_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_vote_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_yield_roots_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_process_yield_roots_monitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_remove_conflict_roots /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_nwk_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_pack_rmv_announcement /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_parent_check_root_conflict /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_parent_insert_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_parent_select_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_parse_conflict_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_parse_option /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_parse_ps_entire_rule /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_parse_ps_uplink_rule /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_pm_set_null /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -mesh_pm_tbtt_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -mesh_post_parent_assoc_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_post_parent_switch_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_post_parent_weak_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_print_txQ_waiting /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_process_child_macconnected /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_process_mcast_cover_node /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_process_mgmt_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_process_mgmt_root_switch /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_process_mgmt_root_waive /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_process_mgmt_routing_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_process_parent_organized /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) -mesh_process_root_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_process_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_process_roots_ie_ttl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_process_same_root_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ps_control_get_min_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ps_control_set_awake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ps_control_set_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ps_control_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_ps_control_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_ps_get_duties /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_ps_keep_cnx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -mesh_ps_set_new_duty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_ps_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_recv /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_recv_add_option /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_recv_process_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_register_timer_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_remove_myself_from_forwarding /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -mesh_root_connect_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_root_connect_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_root_connect_timer_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_root_process_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_root_process_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_root_process_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -mesh_route_announce_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_rt_change_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_rt_change_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_rt_change_timer_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_rx_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -mesh_rx_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) -mesh_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -mesh_scan_done_process_weak /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_is_better_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_parent_compute_rank /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_parent_limit_layer2_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_parent_try_layer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_parent_try_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_select_set_ignore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_self_xonseq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_send_block_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_send_block_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_send_process_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_send_process_topo /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_send_roots_fixed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_send_roots_gone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_send_roots_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_send_stop_vote /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_set_default_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_set_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_set_ie_crypto_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_set_ie_crypto_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_set_ie_crypto_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_set_io_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_set_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -mesh_set_parent_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_set_parent_monitor_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_set_root_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_set_root_candidate_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_set_router /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_set_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mesh_set_self_organized /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_set_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_sta_auth_expire_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) -mesh_stop_recv /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_switch_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_tcpip_mbox /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_timer_bcn_change /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_candidate_monitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_do_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_timer_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_mie_monitor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_ps_control /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_root_connect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_route_announce /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_timer_rt_change /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -mesh_topo_get_ttl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_wifi.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_tx_task_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_tx_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_tx_tid_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_update_current_parent /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_update_ie_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_update_rcandidate_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_update_route_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -mesh_vote_root_candidate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_waive_root /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -mesh_wifi_event_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_wifi_event_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_wifi_event_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_xmit_state_mbox /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -mesh_xon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_deliver_packet /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_flush_packets /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_process_disconnected /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_process_expired /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_process_no_wnd /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mesh_xon_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -mgd_probe_send_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -misc_nvs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -misc_nvs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -misc_nvs_load /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) -misc_nvs_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -mktime /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-mktime.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) -mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -mld6_leavegroup esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -mld6_leavegroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -mld6_lookfor_group esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -mld6_report_groups esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -mld6_stop esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -mld6_tmr esp-idf/lwip/liblwip.a(mld6.c.obj) -mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -mpi_hal_calc_hardware_words esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -mpi_hal_clear_interrupt esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -mpi_hal_disable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_enable_constant_time esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_enable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_enable_search esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_interrupt_enable esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -mpi_hal_read_result_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) -mpi_hal_set_mode esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_set_search_position esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_start_op esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_wait_op_complete esp-idf/hal/libhal.a(mpi_hal.c.obj) -mpi_hal_write_at_offset esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_write_m_prime esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_write_rinv esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mpi_hal_write_to_mem_block esp-idf/hal/libhal.a(mpi_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) -mqtt_data esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) -mqtt_get_id esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_get_publish_data esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_get_publish_topic esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_get_suback_data esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_get_total_length esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_has_valid_msg_hdr esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_header_complete esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) -mqtt_msg_buffer_destroy esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_buffer_init esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_connect esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_disconnect esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_pingreq esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_pingresp esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) -mqtt_msg_puback esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_pubcomp esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_publish esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_pubrec esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_pubrel esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_subscribe esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mqtt_msg_unsubscribe esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -mschapv2_derive_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -mschapv2_remove_domain esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -mschapv2_verify_auth_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_reset_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_restore_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_walk esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -nan /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-s_nan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -nan_input esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -nan_sm_handle_event esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -nan_start esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -nan_stop esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -nanf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libm_a-sf_nan.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) -nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ethip6.c.obj) -nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) -nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) -neighbor_cache esp-idf/lwip/liblwip.a(nd6.c.obj) -net80211_data_ptr_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -net80211_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -net80211_funcs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -net80211_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -net80211_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -net80211_softap_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -netbuf_alloc esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netbuf_chain esp-idf/lwip/liblwip.a(netbuf.c.obj) -netbuf_data esp-idf/lwip/liblwip.a(netbuf.c.obj) -netbuf_delete esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netbuf_first esp-idf/lwip/liblwip.a(netbuf.c.obj) -netbuf_free esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netbuf_new esp-idf/lwip/liblwip.a(netbuf.c.obj) -netbuf_next esp-idf/lwip/liblwip.a(netbuf.c.obj) -netbuf_ref esp-idf/lwip/liblwip.a(netbuf.c.obj) -netconn_accept esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_alloc esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_bind esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_bind_if esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_close esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_connect esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_disconnect esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_err esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_free esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_getaddr esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_gethostbyname_addrtype esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) -netconn_join_leave_group esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_join_leave_group_netif esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_listen_with_backlog esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_new_with_proto_and_callback esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_prepare_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_recv esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_recv_tcp_pbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_recv_tcp_pbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_recv_udp_raw_netbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_recv_udp_raw_netbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_send esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_sendto esp-idf/lwip/liblwip.a(api_lib.c.obj) -netconn_shutdown esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_tcp_recvd esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_thread_cleanup esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_thread_init esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_write_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netconn_write_vectors_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netif_add esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_add_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_add_ip6_address esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_add_noaddr esp-idf/lwip/liblwip.a(netif.c.obj) -netif_create_ip6_linklocal_address esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_default esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -netif_find esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netif_get_by_index esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -netif_get_ip6_addr_match esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -netif_index_to_name esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_init esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -netif_input esp-idf/lwip/liblwip.a(netif.c.obj) -netif_invoke_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) -netif_ip6_addr_set esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_ip6_addr_set_parts esp-idf/lwip/liblwip.a(netif.c.obj) -netif_ip6_addr_set_state esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) -netif_list esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -netif_loop_output esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -netif_name_to_index esp-idf/lwip/liblwip.a(netif.c.obj) -netif_poll esp-idf/lwip/liblwip.a(netif.c.obj) -netif_remove esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_remove_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_set_addr esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -netif_set_default esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_set_down esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_set_gw esp-idf/lwip/liblwip.a(netif.c.obj) -netif_set_ipaddr esp-idf/lwip/liblwip.a(netif.c.obj) -netif_set_link_down esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_set_link_up esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -netif_set_netmask esp-idf/lwip/liblwip.a(netif.c.obj) -netif_set_up esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -network_config_msg_type__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -network_config_payload__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -network_config_payload__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -network_config_payload__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -network_config_payload__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -network_config_payload__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -network_config_payload__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -network_config_payload__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -network_ctrl_handler esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_ctrl_msg_type__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -network_ctrl_payload__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -network_ctrl_payload__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -network_ctrl_payload__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -network_ctrl_payload__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -network_ctrl_payload__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -network_ctrl_payload__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -network_ctrl_payload__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -network_prov_config_data_handler esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_configure_wifi_sta esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -network_prov_mgr_deinit esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -network_prov_mgr_disable_auto_stop esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_done esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_endpoint_create esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -network_prov_mgr_endpoint_register esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -network_prov_mgr_endpoint_unregister esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_get_wifi_disconnect_reason esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_get_wifi_state esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_mgr_is_sm_idle esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_is_wifi_provisioned esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) -network_prov_mgr_reset_wifi_provisioning esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_reset_wifi_sm_state_for_reprovision esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_reset_wifi_sm_state_on_failure esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_mgr_set_app_info esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_start_provisioning esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_mgr_stop_provisioning esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -network_prov_mgr_wait esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_mgr_wifi_scan_finished esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_wifi_scan_result esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_wifi_scan_result_count esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_mgr_wifi_scan_start esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) -network_prov_scan_handler esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -network_prov_scheme_ble esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_scheme_ble_event_cb_free_ble esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -network_prov_scheme_ble_event_cb_free_bt esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -network_prov_scheme_ble_event_cb_free_btdm esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_scheme_ble_set_mfg_data esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_prov_scheme_ble_set_service_uuid esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) -network_scan_msg_type__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -network_scan_payload__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -network_scan_payload__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -network_scan_payload__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -network_scan_payload__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -network_scan_payload__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -network_scan_payload__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -network_scan_payload__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -new_password_encrypted_with_old_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -newlib_include_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) -newlib_include_getentropy_impl esp-idf/newlib/libnewlib.a(getentropy.c.obj) -newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) -newlib_include_init_funcs esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -newlib_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) -newlib_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) -nimble_host_task esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_deinit esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_freertos_deinit esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_freertos_init esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_get_dflt_eventq esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -nimble_port_init esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_run esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -nimble_port_stop esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) -noise_check_loop /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -npl_freertos_callout_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_get_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_is_active esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_mem_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_remaining_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_set_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_callout_stop esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_get_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_is_queued esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_reset esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_run esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_event_set_arg esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_is_empty esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_put esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_eventq_remove esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_funcs_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -npl_freertos_funcs_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_funcs_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -npl_freertos_get_current_task_id esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_get_time_forever esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_hw_enter_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_hw_exit_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_hw_is_in_critical esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_mempool_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_mempool_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -npl_freertos_mutex_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_mutex_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_mutex_pend esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_mutex_release esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_os_started esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_sem_deinit esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_sem_get_count esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_sem_init esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_sem_pend esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_sem_release esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_delay esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_get esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_ms_to_ticks esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_ms_to_ticks32 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_ticks_to_ms esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_freertos_time_ticks_to_ms32 esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -npl_funcs esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(ble_hs_stop.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs_mqueue.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -npl_funcs_ro esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -nt_challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) -nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -nt_password_hash_encrypted_with_block esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::erase(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::find(unsigned int, nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::insert(nvs::Item const&, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::calculateCrc32() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::calculateCrc32(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::calculateCrc32WithoutValue() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::Item::checkHeaderConsistency(unsigned char) const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::getKey(char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::init() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::mSemaphore esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::uninit() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) -nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::init(nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) -nvs::NVSEncryptedPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSHandleSimple::calcEntriesInNamespace(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::commit() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::erase_all() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::erase_item(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_partition_name() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::get_storage() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_string(char const*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartition::erase_range(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_address() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_partition_name() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_readonly() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSPartitionManager::deinit_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::get_instance() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::init_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::instance esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::lookup_storage_from_name(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::open_handles_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::secure_init_partition(char const*, nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Page::Header::calculateCrc32() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::SEC_SIZE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::alterPageState(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::calcEntries(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::copyItems(nvs::Page&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::debugDump() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::erase() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::eraseEntryAndSpan(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::getSeqNumber(unsigned long&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::getVarDataTailroom() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::initialize() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::load(nvs::Partition*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::mLoadEntryTable() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::markFreeing() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::markFull() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::pageStateToName(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::readEntry(unsigned int, nvs::Item&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::setSeqNumber(unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::setVersion(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeEntry(nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeEntryData(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::activatePage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::PageManager::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::requestNewPage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::clearNamespaces() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::eraseNamespace(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::fillEntryInfo(nvs::Item&, nvs_entry_info_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::findEntryNs(nvs_opaque_iterator_t*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::init(unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::isValid() const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::populateBlobIndices(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::partition_lookup::lookup_nvs_encrypted_partition(char const*, nvs_sec_cfg_t*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_entry_find_in_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -nvs_find_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) -nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) -nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/main/libmain.a(app_main.c.obj) -nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) -nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_read_security_cfg esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_read_security_cfg_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_register_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -nvs_flash_secure_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_secure_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_get_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -nvs_get_stats esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_get_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -nvs_get_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_op2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_config.o) -nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nvs_sec_provider_deregister esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -nvs_sec_provider_include_impl esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -nvs_sec_provider_register_hmac esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) -nvs_set_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(factory.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -nvs_set_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -nvs_set_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -nvs_set_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) -nwk_event_id2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -offchan_in_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -offchan_recv_action /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -offchan_send_action_tx_status /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -offchan_txop_end /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -offchan_txop_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -old_nt_password_hash_encrypted_with_new_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) -omac1_aes_128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -omac1_aes_128_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -omac1_aes_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) -one_bits /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -open /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysopen.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -opendir esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -operator delete(void*) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) -operator delete(void*, unsigned int) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_ops.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -operator delete[](void*) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(del_opv.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -operator new(unsigned int) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) -operator new[](unsigned int) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opv.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) -operator new[](unsigned int, std::nothrow_t const&) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_opvnt.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -opt_type2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -optarg /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -opterr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -optind /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -optopt /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -optype2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_main.o) -os_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -os_get_time esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -os_gmtime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -os_mbuf_adj esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -os_mbuf_append esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) -os_mbuf_appendfrom esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -os_mbuf_cmpf esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) -os_mbuf_cmpm esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -os_mbuf_concat esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -os_mbuf_copydata esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_util.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_hs_log.c.obj) - esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_att.c.obj) -os_mbuf_copyinto esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -os_mbuf_dup esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mbuf_extend esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) -os_mbuf_free esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mbuf_free_chain esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_sm_sc.c.obj) - esp-idf/bt/libbt.a(ble_sm_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm_lgcy.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig_cmd.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_att_cmd.c.obj) - esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -os_mbuf_get esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mbuf_get_pkthdr esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -os_mbuf_len esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) -os_mbuf_off esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mbuf_pack_chains esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) -os_mbuf_pool_init esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) -os_mbuf_prepend esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) -os_mbuf_prepend_pullup esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) -os_mbuf_pullup esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -os_mbuf_trim_front esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) -os_mbuf_widen esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_memblock_from esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -os_memblock_get esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -os_memblock_put esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -os_memblock_put_from_cb esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) -os_memdup esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -os_mempool_clear esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) -os_mempool_ext_clear esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) -os_mempool_ext_init esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) -os_mempool_info_get_next esp-idf/bt/libbt.a(os_mempool.c.obj) -os_mempool_init esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_sm.c.obj) - esp-idf/bt/libbt.a(ble_hs_conn.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(mem.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_l2cap_sig.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) - esp-idf/bt/libbt.a(ble_hs.c.obj) -os_mempool_is_sane esp-idf/bt/libbt.a(os_mempool.c.obj) -os_mempool_module_init esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -os_mempool_unregister esp-idf/bt/libbt.a(os_mempool.c.obj) -os_mktime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -os_mqueue_get esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mqueue_init esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_mqueue_put esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_msys_buf_alloc esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) -os_msys_buf_free esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(transport.c.obj) -os_msys_count esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_msys_get esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_msys_get_pkthdr esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_mbuf.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -os_msys_init esp-idf/bt/libbt.a(os_msys_init.c.obj) - esp-idf/bt/libbt.a(nimble_port.c.obj) -os_msys_num_free esp-idf/bt/libbt.a(os_mbuf.c.obj) -os_msys_register esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) -os_msys_reset esp-idf/bt/libbt.a(os_mbuf.c.obj) - esp-idf/bt/libbt.a(os_msys_init.c.obj) -os_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -os_reltime_expired esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) -os_reltime_initialized esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) -os_sleep esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -os_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -os_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -os_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -os_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -os_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) -our_controls_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(rate_control.o) -our_instances_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -our_tx_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -our_wait_eb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -outbox_delete esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_delete_all_items esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_delete_expired esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_delete_item esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_delete_single_expired esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -outbox_dequeue esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_destroy esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_enqueue esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_get esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) -outbox_get_size esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_init esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_item_get_data esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_item_get_pending esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_set_pending esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -outbox_set_tick esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -owe_build_assoc_req esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) -owe_build_dhie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) -owe_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -owe_process_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) -pTxRx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -p_ble_util_buf_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) -p_lld_cca /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) -p_lld_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -p_llm_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -pa_i2c_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_prepare_frame_from_ctx esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) -panic_print_backtrace esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_print_char esp-idf/esp_system/libesp_system.a(panic.c.obj) -panic_print_dec esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_print_hex esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_print_registers esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_print_str esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_restart esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -panic_set_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_soc_check_pseudo_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -pbkdf2_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -pbuf_add_header esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -pbuf_add_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) -pbuf_alloc esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -pbuf_alloc_reference esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_alloced_custom esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) -pbuf_cat esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -pbuf_chain esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -pbuf_clen esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -pbuf_clone esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -pbuf_coalesce esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_copy esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -pbuf_copy_partial esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -pbuf_copy_partial_pbuf esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) -pbuf_dechain esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_free esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) - esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(netbuf.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(icmp6.c.obj) - esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -pbuf_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) -pbuf_free_header esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -pbuf_free_ooseq_pending esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -pbuf_get_contiguous esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_header esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) -pbuf_memcmp esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_memfind esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_put_at esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -pbuf_realloc esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -pbuf_ref esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(etharp.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -pbuf_remove_header esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(ethernet.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) - esp-idf/lwip/liblwip.a(icmp.c.obj) - esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(raw.c.obj) -pbuf_skip esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_strstr esp-idf/lwip/liblwip.a(pbuf.c.obj) -pbuf_take esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -pbuf_take_at esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -pbuf_try_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(nd6.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) -pbus_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -pbus_rx_dco_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) -pbus_rx_dco_cal_1step_new /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -pcTimerGetName esp-idf/freertos/libfreertos.a(timers.c.obj) -peap_prfplus esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -pend_flag_periodic_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -periodic_adv_data_need_to_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) -periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) -periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) -periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) -periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -phy_11p_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -phy_analog_delay_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -phy_ant_clr_update_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_ant_need_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_ant_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_bbpll_en_usb /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_bt_power_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_cal_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_chan_dump_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -phy_chan_filt_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -phy_chan_pwr_backoff /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_change_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -phy_close_pa /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -phy_close_rf /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_clr_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_current_level_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_dig_ldo_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_dig_reg_backup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_disable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -phy_eco_version_sel /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_enable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_fft_scale_force /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -phy_force_rx_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_freq_correct /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -phy_freq_mem_backup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_ftm_comp /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_get_adc_rand /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_get_cca /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_get_cca_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_get_fetx_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -phy_get_i2c_data /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_get_lock esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_get_mac_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_get_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_get_most_tpw /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -phy_get_noise_floor /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_get_rf_cal_version /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_get_rfdata_num /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_get_romfunc_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_get_romfuncs /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_get_rssi /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_get_rx_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_get_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_get_txpwr_param /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -phy_get_vdd33 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_i2c_bbtop_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_i2c_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_i2c_init2 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_init_data esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_init_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_init_magic_post esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) -phy_init_magic_pre esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) -phy_init_param_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_internal_delay /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_param /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_param_rom /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) -phy_param_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_param_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_param_track_tot /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -phy_reg_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_rfcal_data_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_rfcal_data_check_value /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_rfcal_data_sub /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_rx11blr_cfg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_rx_band_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_rx_rifs_en /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_rx_sense_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -phy_set_11b_param /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_set_cca_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_set_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -phy_set_mac_data /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_set_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_set_most_tpw /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -phy_set_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_set_rate_xiaomi /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -phy_set_wifi_mode_only /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_tsens_attribute /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) -phy_tx_gain_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_txpwr_backoff /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_txtone_start /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_txtone_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -phy_version_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_version_str /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -phy_wakeup_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phy_wifi_enable_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -phy_xpd_tsens /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -phymode2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -platform_create_id_string esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -platform_get_product_UID esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -platform_get_product_name esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -platform_get_product_version esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -platform_get_silicon_sku_code esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -platform_random esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) -platform_tick_get_ms esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -pll_cap_print /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) -pll_track_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -pll_track_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -pm_active_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_allow_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_beacon_misc_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_beacon_monitor_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_beacon_monitor_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_beacon_monitor_tbtt_allowed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_beacon_monitor_tbtt_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_beacon_monitor_tbtt_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_beacon_monitor_tbtt_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_beacon_monitor_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_beacon_offset_add_loss_counter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_add_total_counter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_funcs_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) -pm_beacon_offset_get_average /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_get_expect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_get_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_get_rx_beacon_success_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_is_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_is_sampling /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_resample_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_reset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_sample /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_sample_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_offset_set_rx_beacon_standard /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -pm_beacon_timestamp_statistic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_check_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_clear_wakeup_signal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_coex_pwr_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_coex_pwr_update /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_coex_reconnect_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_coex_restart_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_coex_schm_overall_period_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_coex_schm_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_coex_schm_process_restart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_coex_separate_connectionless_window /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_coex_set_reconnect_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_coex_slice_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_coex_tbtt_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_connectionless_module_set_wake_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_connectionless_wake_interval_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_connectionless_wake_window_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_deattach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_disable_beacon_monitor_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_disable_disconnected_sleep_delay_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_disable_dream_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_disable_sleep_delay_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_disconnected_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_disconnected_sleep_delay_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_disconnected_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_disconnected_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_disconnected_wake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_dream /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_dream_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_enable_active_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_enable_beacon_monitor_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_enable_disconnected_sleep_delay_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_enable_dream_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_enable_sleep_delay_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_enable_sta_disconnected_power_management /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_force_scan_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_funcs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -pm_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -pm_get_beacon_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_get_connectionless_status /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_get_idle_wait_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_get_null_max_tx_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_get_sleep_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -pm_get_tbtt_count /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_go_to_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -pm_go_to_wake /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_handle_tbtt_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_hmac_rx_data_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -pm_is_dream /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -pm_is_hw_beacon_filter_active /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_is_in_wifi_slice_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_is_open /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -pm_is_sleeping /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -pm_is_waked /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_keep_alive /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_local_tsf_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_mac_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_mac_sleep_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -pm_mac_sleep_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -pm_mac_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_mesh_set_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_noise_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_noise_check_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_noise_check_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_noise_check_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_off_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -pm_on_beacon_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_on_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) -pm_on_coex_schm_process_restart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_on_coex_schm_status_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_on_coex_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_on_data_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_on_data_tx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_on_data_tx_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_on_probe_resp_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -pm_on_sample_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_on_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_on_tsf_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_parse_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_parse_beacon_trace /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_pend_noise_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_process_tim /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_register_connectionless_wake_window /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_register_pm_tx_null_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_rx_beacon_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_rx_data_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_save_tbtt_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_scale_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_scan_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_scan_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_send_nullfunc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -pm_send_probe_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_send_probe_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_send_sleep_null_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_send_wake_null_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_set_beacon_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_set_beacon_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_set_keep_alive_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_set_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_set_sleep_min_active_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_set_sleep_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_set_sleep_wait_broadcast_data_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_sleep_delay_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) -pm_sleep_for /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pm_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -pm_tbtt_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_tbtt_quick_wake_configure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_try_scan_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_tx_data_done_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_tx_data_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_tx_null_data_done_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) -pm_tx_null_data_done_quick_wake_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_unregister_connectionless_wake_window /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -pm_update_at_next_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pm_update_by_connectionless_status /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_update_light_sleep_default_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_update_next_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_update_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pm_update_tsf_tick_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pm_wake_done /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -pm_wake_up /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) -pmksa_cache_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) -pmksa_cache_auth_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -pmksa_cache_auth_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) -pmksa_cache_auth_create_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) -pmksa_cache_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -pmksa_cache_auth_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) -pmksa_cache_auth_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -pmksa_cache_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -pmksa_cache_auth_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) -pmksa_cache_clear_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_free_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -pmksa_cache_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_get_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_get_opportunistic esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) -pmksa_cache_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pmksa_cache_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) -pmksa_cache_set_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -pocket_sar_power /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) -port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) -port_uxInterruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) -port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -ppAMPDU2Normal /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppAdd2AMPDUTail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppAddTimCount /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppAssembleAMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppAssembleMicHdr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppCalFrameTimes /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppCalSubFrameLength /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppCalTkipMic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppCalTxAMPDULength /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppCalTxopDur /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppCheckIsConnTraffic /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppCheckTxAMPDUlength /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppCheckTxConnTrafficIdle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -ppCheckTxIdle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -ppCheckTxQIdle /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -ppClearRxFragment /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -ppClearTxq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppDequeueRxq_Locked /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppDequeueTxDone_Locked /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppDequeueTxQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppDirectRecycleAmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppDisableQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppDiscardMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppEmptyDelimiterLength /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppEnableQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppEnqueueRxq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppEnqueueTxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppFetchTxQFirstAvail /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppFillAMPDUBar /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppGetTaskHdl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppGetTxQFirstAvail_Locked /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppGetTxframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppInitTxq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppInstallKey /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -ppMapTxQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppMapWaitTxq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppMessageInQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppPauseTxAMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppPrepareBarFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppProcTxCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppProcTxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppProcTxSecFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppProcessLifeTime /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppProcessRxPktHdr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppProcessTxQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppProcessWaitQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppProcessWaitingQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -ppReSendBar /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppRecordBarRRC /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppRecycleAmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppRecycleRxPkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppRecycleTxBuf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppRegisterPromisRxCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppRegisterRxCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppRegisterTxCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -ppRegisterTxDoneUserActionCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppRegressAmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppResortTxAMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppResumeTxAMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppRollBackTxQ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -ppRxFragmentProc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppRxPkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppRxProtoProc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppSearchTxQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppSearchTxframe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppSelectNextQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppSetBarRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppSetInterface /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppSubFromAMPDU /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppTask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppTxFragmentProc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppTxPkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -ppTxProtoProc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -ppTxqEmpty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -ppTxqUpdateBitmap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -ppUnregisterTxCallback /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_allow_cut_sevt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_attach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_can_cut_evt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_can_cut_sevt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_coex_tx_release /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_coex_tx_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_create_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_deattach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_default_event_handler /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_delete_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_gettid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_hdrsize /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_need_cut_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_post /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -pp_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_process_hmac_waiting_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_register_config_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_register_michael_mic_failure_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_register_net80211_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_register_timer_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_register_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -pp_set_cut_evt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_set_cut_rx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_sig_cnt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_sig_cnt_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pp_stop_sw_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_task_hdl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_timer_do_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -pp_timer_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -pp_timer_register_post_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -pp_unregister_tx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -pp_wdev_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -pread esp-idf/vfs/libvfs.a(vfs.c.obj) -prefix_list esp-idf/lwip/liblwip.a(nd6.c.obj) -print_rc_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -print_roots_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -print_sta_pmk /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -print_txupQ_pending /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -printf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-printf.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) - esp-idf/protocomm/libprotocomm.a(esp_srp_mpi.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -privacy_en /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -property_info__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_info__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_info__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_info__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -property_info__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_info__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_info__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -property_value__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -protobuf_c_buffer_simple_append esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_empty_string esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_enum_descriptor_get_value esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_enum_descriptor_get_value_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_message_check esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_message_descriptor_get_field esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_message_descriptor_get_field_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_message_free_unpacked esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_message_get_packed_size esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_message_init esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_message_pack esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_message_pack_to_buffer esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_message_unpack esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -protobuf_c_service_descriptor_get_method_by_name esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_service_destroy esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_service_generated_init esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_service_invoke_internal esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_version esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protobuf_c_version_number esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) -protocomm_add_endpoint esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_ble_start esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -protocomm_ble_stop esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -protocomm_close_session esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) -protocomm_delete esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_get_sec_version esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_httpd_start esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -protocomm_httpd_stop esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_transport_httpd.c.obj) -protocomm_new esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_open_session esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) -protocomm_remove_endpoint esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -protocomm_req_handle esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) -protocomm_security0 esp-idf/protocomm/libprotocomm.a(security0.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_security1 esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_security2 esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_set_security esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_set_version esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) -protocomm_unset_security esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -protocomm_unset_version esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) -prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) -prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) -psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_can_do_cipher esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_can_do_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_close_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_crypto_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_crypto_local_input_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_crypto_local_input_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_crypto_local_output_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_crypto_local_output_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_custom_key_parameters_are_default esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_destroy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) -psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_export_public_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) -psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_free_persistent_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_generate_key_custom esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_generate_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_generate_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) -psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_get_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_hash_compare esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) -psa_hash_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_initialize_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_is_valid_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_its_get esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_its_get_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_its_remove esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_its_set esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_input_integer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_output_key_custom esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_output_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_key_derivation_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_load_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_open_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) -psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_purge_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -psa_raw_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_reserve_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_reset_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) -psa_save_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_sign_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) -psa_to_md_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) -psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) -psa_unregister_read esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_unregister_read_under_mutex esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_validate_key_location esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_validate_key_persistence esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_verify_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) -psa_wipe_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) -pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) -pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) -pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) -ptr_beacon_offset_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -put_be16 esp-idf/bt/libbt.a(endian.c.obj) -put_be24 esp-idf/bt/libbt.a(endian.c.obj) -put_be32 esp-idf/bt/libbt.a(endian.c.obj) -put_be64 esp-idf/bt/libbt.a(endian.c.obj) -put_le16 esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_cmd.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/bt/libbt.a(ble_l2cap.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) -put_le24 esp-idf/bt/libbt.a(endian.c.obj) -put_le32 esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_hs_adv.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) -put_le64 esp-idf/bt/libbt.a(endian.c.obj) -putc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putc.o) -putchar /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-putchar.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) -putle32 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -puts /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/lwip/liblwip.a(sockets_ext.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) -pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -pvTimerGetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) -pwdet_code_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -pwdet_ref_code /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -pwdet_tone_start /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) -pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) -pwrsave_flushq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) -qrcodegen_calcSegmentBufferSize esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_encodeBinary esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_encodeSegments esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_encodeSegmentsAdvanced esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_encodeText esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) -qrcodegen_getModule esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) -qrcodegen_getSize esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(esp_qrcode_main.c.obj) -qrcodegen_isAlphanumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_isNumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_makeAlphanumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_makeBytes esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_makeEci esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qrcodegen_makeNumeric esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -qsort /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-qsort.o) - esp-idf/bt/libbt.a(ble_store_config.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -r_Add2SelfBigHex256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_AddBigHex256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_AddBigHexModP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_AddP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_AddPdiv2_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_GF_Jacobian_Point_Addition256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_GF_Jacobian_Point_Double256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_GF_Point_Jacobian_To_Affine256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_MultiplyBigHexByUint32_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_MultiplyBigHexModP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_MultiplyByU16ModP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_SubtractBigHex256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_SubtractBigHexMod256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_SubtractBigHexUint32_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_SubtractFromSelfBigHex256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_SubtractFromSelfBigHexSign256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_ccm_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_ccm_process_e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_ccm_xor_128_lsb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_ccm_xor_128_msb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_cmac_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_cmac_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_k1_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_k2_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_k3_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_k4_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_shift_left_128 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_aes_xor_128 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_assert_err /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_assert_param /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_assert_warn /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bigHexInversion256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ble_isr_error_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_ll_qa_config_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_sw_cca_check_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_acl_tx_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_acl_tx_elt_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_acl_tx_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_acl_tx_free_in_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_adv_tx_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_adv_tx_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_adv_tx_free_in_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_get_rx_buf_nb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_get_rx_buf_size /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_llcp_tx_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_llcp_tx_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_rx_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_rx_alloc_in_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_rx_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_rx_free_in_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_set_rx_buf_nb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_buf_set_rx_buf_size /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_ble_util_data_rx_buf_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_bt_bb_get_intr_mask /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_bb_intr_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_bb_intr_mask_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_bb_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_bb_recorrect_is_dead /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_bb_restart_hw_recorrect /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_bt_rf_coex_cfg_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_conn_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_ext_adv_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_ext_scan_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_legacy_adv_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_per_adv_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_pti_table_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_st_param_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_st_param_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rf_coex_sync_scan_dynamic_pti_en_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_apply_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_apply_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_configure /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_deregister_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_deregister_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_get_ant_by_act /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_register_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rma_register_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_apply_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_apply_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_deregister_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_deregister_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_get_txpwr_idx_by_act /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_register_rule_cs_fmt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_bt_rtp_register_rule_cs_idx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_btdm_config_cca_sw /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_task_post /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_task_post_from_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_task_post_from_isr_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_task_post_impl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_task_recycle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_vnd_offload_post /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - esp-idf/bt/libbt.a(bt.c.obj) -r_btdm_vnd_offload_post_from_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_vnd_offload_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_btdm_vnd_ol_task_env_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_cali_phase_match_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_cca_funcs_ro /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_cca_hw_intr_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_cca_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_cmp_abs_time /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_cmp_dest_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_cmp_timer_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_bdaddr_compare /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_ble_pkt_dur_in_us /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_extract /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_extract_after /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_extract_sublist /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_find /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_insert_after /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_insert_before /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_merge /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_pool_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_pop_front /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_push_back /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_push_back_sublist /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_push_front /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_list_size /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_nb_good_le_channels /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_util_pack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_util_read_array_size /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_co_util_unpack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_dl_upd_proc_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_dump_data /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_ecc_abort_key256_generation /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_gen_new_public_key /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_gen_new_secret_key /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_generate_key256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_get_debug_Keys /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_is_valid_point /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_multiplication_event_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ecc_point_multiplication_win_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_emi_alloc_em_mapping_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_base_reg_lut_show /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_em_base_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_em_base_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_em_base_reg_show /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_free_em_mapping_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_get_em_mapping_idx_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_get_mem_addr_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_emi_overwrite_em_mapping_by_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_esp_vendor_hci_command_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_flash_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_erase /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_identify /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_read /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_unlock /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_unlocksector /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_write /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_flash_writebyte /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_get_stack_usage /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_h4tl_acl_hdr_rx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_cmd_hdr_rx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_cmd_pld_rx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_eif_io_event_post /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_h4tl_eif_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_h4tl_eif_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_h4tl_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_out_of_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_out_of_sync_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_read_hdr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_read_next_out_of_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_read_payl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_read_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_rx_acl_hdr_extract /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_rx_cmd_hdr_extract /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_rx_done /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_tx_done /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_tx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_h4tl_write /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_hci_acl_tx_data_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_acl_tx_data_received /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_basic_cmd_send_2_controller /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_ble_adv_report_filter_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_ble_adv_report_tx_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_ble_conhdl_register /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_ble_conhdl_unregister /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_build_acl_data /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_build_cc_evt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_build_cs_evt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_build_evt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_build_le_evt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_cmd_get_max_param_size /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_cmd_received /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_cmd_reject /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_evt_mask_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_evt_mask_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_acl_buf_size_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_acl_en /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_acl_packet_sent /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_check_host_available_nb_acl_packets /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_host_nb_acl_pkts_complete /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_fc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_look_for_cmd_desc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_look_for_evt_desc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_look_for_le_evt_desc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_look_for_le_evt_desc_esp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_pack_bytes /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_register_vendor_desc_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_send_2_controller /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_send_2_host /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_c2h_data_flow_on /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_cmd_hdr_rx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_cmd_pld_rx_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_get_pkt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_hci_pkt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_hci_tx_done_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_inc_nb_h2c_cmd_pkts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_save_pkt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tl_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tx_done /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tx_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hci_tx_trigger /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_hli_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hl_itf.o) -r_intc_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_intc_disable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_intc_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_intc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_ip_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_ip_funcs_ro /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_isValidSecretKey_256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_check_malloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_callback_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_flush /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_get_all /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_schedule /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_event_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_flush /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_handler_search /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_is_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_malloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_mem_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_mem_is_empty /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_mem_is_in_heap /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_dest_id_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_discard /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_forward /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_forward_new_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_in_queue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_save /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_send_basic /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_msg_src_id_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_queue_extract /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_queue_insert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_queue.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_sleep_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_state_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_create /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_delete /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_handler_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_handler_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_handler_get_overwrite /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_handler_pre /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_msg_flush /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_saved_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_task_schedule /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_time /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_time_cmp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_time_past /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_active /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_adjust_all /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_schedule /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_ke_timer_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_led_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_led_set_all /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(led.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_llc_aes_res_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ch_map_up_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_cleanup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_cmd_cmp_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_cmd_stat_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_con_conflict_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_con_move_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_con_plan_set_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_con_upd_param_in_range /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_disconnect /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_disconnect_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_disconnect_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_disconnect_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_dl_chg_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_dle_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_enc_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_feats_exch_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_cmd_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_command_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_command_handler_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_command_handler_pre /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_command_handler_search /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_con_param_req_evt_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_con_upd_info_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) -r_llc_hci_con_upd_info_send_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_disconnected_dis /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_dl_upd_info_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_enc_evt_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_feats_info_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_le_phy_upd_cmp_evt_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_ltk_request_evt_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_nb_cmp_pkts_evt_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_hci_version_info_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_init_term_proc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_iv_skd_rand_gen /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_le_ping_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_le_ping_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_le_ping_restart /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_le_ping_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_pause_enc_rsp_ack_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_reject_ind_ack_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_reject_ind_pdu_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_start_enc_rsp_ack_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_terminate_ind_ack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ll_unknown_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_channel_map_ind_ack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_pdu_handler_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_pdu_handler_get_overwrite /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_pdu_handler_pre /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) -r_llc_llcp_send_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_state_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_trans_timer_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_llcp_tx_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_ch_map_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_con_upd_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_con_upd_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_dl_upd_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_encrypt_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_encrypt_proc_continue_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_encrypt_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_feats_exch_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_phy_upd_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_phy_upd_proc_continue_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_loc_phy_upd_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_msg_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_pref_param_compute /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) -r_llc_pref_param_compute_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_collision_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_err_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_id_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_reg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_state_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_timer_pause_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_timer_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_proc_unreg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_ch_map_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_con_upd_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_con_upd_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_dl_upd_proc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_encrypt_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) -r_llc_rem_encrypt_proc_continue_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_encrypt_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_phy_upd_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) -r_llc_rem_phy_upd_proc_continue_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_phy_upd_proc_continue_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_rem_phy_upd_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_role_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_sk_gen /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) -r_llc_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ver_exch_loc_proc_continue /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llc_ver_proc_err_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llcp_pdu_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_aa_gen /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_adv_data_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_adv_data_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_adv_data_update_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_aux_ch_idx_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_aux_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_aux_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_aux_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_coex_check_ext_adv_synced /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_coex_env_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_direct_adv_use_rpa_addr_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_direct_adv_use_rpa_addr_state_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_duration_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_end_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_evt_canceled_cbk_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_chain_connectable_construct /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_chain_construct /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_chain_none_construct /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_chain_scannable_construct /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_pkt_prepare /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_ext_pkt_prepare_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_frm_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_frm_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_frm_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_pkt_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_pkt_rx_connect_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_pkt_rx_connect_ind_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_pkt_rx_connect_post /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_pkt_rx_send_scan_req_evt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_rand_addr_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_restart /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_scan_rsp_data_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_scan_rsp_data_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_scan_rsp_data_update_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_init_evt_param /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_init_evt_param_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_schedule_asap /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_adv_start_schedule_asap_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_set_cs /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_start_update_filter_policy /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_sync_info_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_sync_info_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_adv_utils_verify_aa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_lld_calc_aux_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_bb_sync_found_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_busy_mode_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_avl_timeout_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_mam /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_perm /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_prn_e /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_prn_s /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_rev_8 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_rssi_cal /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_sel_1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_sel_2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_sel_remap /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chan_unused_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chm_restore /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_chm_update_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_con_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_con_evt_end_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_con_evt_start_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_con_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_config_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_data_handle_daa /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_data_handle_lbt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_data_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_evt_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_force_tx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_get_cca_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_hw_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_idle_mode_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_lbt_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_scst_timeout_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_send_empty_packet /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_send_packet_header /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_set_thresh /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_short_control_signal_trans /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_sw_alloc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_sw_chan_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_sw_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_sw_handle /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_cca_sw_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ch_assess_data_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ch_idx_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -r_lld_ch_idx_get_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ch_map_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_channel_assess /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_activity_act_offset_compute /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_activity_offset_compute /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_ch_map_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_cleanup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_cntl_pkt_info_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_count_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_current_tx_power_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_data_flow_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_data_len_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_data_tx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_enc_key_load /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_event_counter_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_evt_canceled_cbk_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_canceled_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_duration_min_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_max_eff_time_cal /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_sd_evt_time_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_evt_start_cbk_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_evt_time_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_evt_time_update_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_free_all_tx_buf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_frm_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_frm_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_frm_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_frm_skip_isr_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_llcp_ind_info_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_llcp_tx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_max_lat_calc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_offset_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_param_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_phys_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_pref_slave_evt_dur_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_pref_slave_latency_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rssi_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_channel_assess /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_enc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_link_info_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_llcp_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_rx_sync_time_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_terminate_max_evt_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) -r_lld_con_tx_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_enc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_len_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_len_update_for_intv /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_len_update_for_rate /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_prog /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_prog_new_packet /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_prog_new_packet_coex /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_tx_prog_new_packet_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_update_last_clock /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_con_update_terminte_info_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_conn_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_continue_scan_rx_isr_end_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_core_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_adv_dynamic_aux_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -r_lld_ext_adv_dynamic_aux_pti_process_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_adv_dynamic_pti_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_adv_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_scan_dynamic_pti_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_scan_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_ext_scan_dynamic_pti_process_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ext_scan_dynamic_pti_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_hw_cca_end_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_hw_cca_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_hw_cca_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -r_lld_hw_cca_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_cal_anchor_point /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_compute_winoffset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_connect_req_pack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_end_type_check_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_end_type_check_state_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_end_type_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_end_type_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_frm_eof_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_frm_eof_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_rx_adv_ext_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_rx_adv_ind_or_direct_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_rx_aux_connect_rsp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_tx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_tx_cal_con_timestamp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_process_pkt_tx_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_sched_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) -r_lld_init_start_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_init_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_instant_proc_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_legacy_adv_dynamic_pti_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_legacy_adv_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_llcp_rx_ind_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_ch_map_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_chain_construct /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_cleanup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_coex_env_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_data_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_data_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) -r_lld_per_adv_data_update_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_dynamic_pti_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_evt_start_chm_upd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_ext_pkt_prepare /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_frm_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) -r_lld_per_adv_frm_isr_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_frm_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_init_info_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_list_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_list_rem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_per_adv_sync_info_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_process_cca_data /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_ral_search /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_read_clock /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_is_empty /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_local_rpa_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_peer_rpa_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_peer_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_priv_mode_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_res_list_rem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_reset_reg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rpa_renew /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rpa_renew_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rpa_renew_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rpa_renew_instant_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rxdesc_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -r_lld_rxdesc_check_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_rxdesc_free /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_create_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_create_sync_cancel /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_scan_evt_start_cbk_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_frm_eof_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_scan_frm_eof_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_frm_eof_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_frm_rx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_scan_frm_skip_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_params_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_adv_rep /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_aux_adv_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_aux_chain_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_aux_scan_rsp /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_ext_adv /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_ext_adv_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_ext_adv_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_process_pkt_rx_legacy_adv /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_restart /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_sched_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_scan_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_sync_accept /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_sync_info_unpack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_trunc_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_scan_try_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) -r_lld_scan_try_sched_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sw_cca_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sw_cca_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -r_lld_sw_cca_isr_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_ch_map_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_cleanup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_evt_start_cbk_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_frm_eof_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_frm_eof_isr_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_frm_rx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_frm_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_insert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) -r_lld_sync_insert_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_process_pkt_rx /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_process_pkt_rx_aux_sync_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_process_pkt_rx_pkt_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_process_pkt_rx_pkt_check_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_scan_dynamic_pti_process /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_sched /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) -r_lld_sync_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_start_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_sync_trunc_ind /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_cleanup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_evt_canceled_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_evt_start_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_freq2chnl /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_frm_cbk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_frm_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) -r_lld_test_frm_isr_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_rx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_set_tx_power /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_test_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_update_con_offset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_update_rxbuf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_update_rxbuf_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_white_list_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_lld_white_list_rem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_activity_free_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_activity_free_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_activity_syncing_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_con_len_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_flow_control_event_check_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_hdl_to_id /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_rep_flow_control_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_llm_adv_rep_flow_control_check_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_rep_flow_control_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_llm_adv_rep_flow_control_update_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_reports_list_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_set_all_release /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_set_dft_params /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_adv_set_release /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) -r_llm_adv_set_release_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_aes_res_cb /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_ble_update_adv_flow_control /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_ch_map_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -r_llm_ch_map_update_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_cmd_cmp_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_cmd_stat_send /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_dev_list_empty_entry /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_dev_list_search /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_duplicate_list_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_env_adv_dup_filt_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_llm_env_adv_dup_filt_deinit_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_env_adv_dup_filt_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_llm_env_adv_dup_filt_init_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_env_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_env_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_get_preferred_phys /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_hci_cmd_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_hci_command_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_init_ble_adv_report_flow_contol /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_is_dev_connected /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_is_dev_synced /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_is_non_con_act_ongoing_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_is_wl_accessible /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_le_adv_report_ind_duplicate_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_le_evt_mask_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_le_features_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_le_scan_duplicate_opt_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_link_disc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_master_ch_map_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_msg_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_no_activity /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_per_adv_slot_dur /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_plan_elt_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_rx_path_comp_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_scan_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_llm_scan_start_eco /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_scan_sync_acad_attach /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_scan_sync_acad_detach /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_send_adv_lost_event_to_host /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -r_llm_tx_path_comp_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_update_duplicate_scan_count /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_llm_update_duplicate_scan_exceptional_list /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_misc_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_misc_free_em_buf_in_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_misc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_misc_msg_handler_tab_p_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_modules_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_modules_funcs_ro /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_notEqual256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_browse_tag /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_del /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_erase /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_init_memory /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_is_magic_number_ok /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_lock /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_null_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_purge /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_put /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_read /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_walk_tag /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_nvds_write /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_osi_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist_hook.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(osi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_phy_upd_proc_start /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_platform_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_plf_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_mem.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ke_event.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_msg.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci_fc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(h4tl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(eif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_utils.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(co_list.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_multi_antena.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_coexist.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(misc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_phy_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_llcp.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_le_ping.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_feat_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_encrypt.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_dl_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_con_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_chmap_upd.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(emi.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(coex_schm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ble_util_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_plf_funcs_ro /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -r_readbyte /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_register_esp_vendor_cmd_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_em_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_force_agc_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_pwr_tbl_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_reg_rd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_reg_wr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_rssi_convert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_rw_v9_le_disable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_rw_v9_le_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_rw_v9_le_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_sleep /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) -r_rf_sleep_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_txpwr_cs_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_txpwr_dbm_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rf_util_cs_fmt_convert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_util.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_ccm /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_ccm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_encrypt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_k1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_k2 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k2.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_k3 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k3.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_k4 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_k4.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_rand /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_result_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_crypto_aes_s1 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_s1.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_cryto_aes_cmac /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes_cmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_rf_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rw_v9_init_em_radio_table /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwble_hw_disable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwble_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwble_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwble_isr_hw_fixed /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwble_sleep_enter /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwble_sleep_wakeup_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_rwbtdm_isr_wrapper /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(intc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_rwip_active_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_aes_encrypt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_assert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_crypt_evt_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_crypt_isr_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_driver_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_eif_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_rwip_half_slot_2_lpcycles /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_hus_2_lpcycles /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_lpcycles_2_hus /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_prevent_sleep_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_prevent_sleep_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_schedule /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_sleep /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_sw_int_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_sw_int_req /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_time_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_10ms_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_10ms_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_hs_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_hs_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_hus_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) -r_rwip_timer_hus_handler_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_timer_hus_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_wakeup /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) -r_rwip_wakeup_end /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_wakeup_hack /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_rwip_wlcoex_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_sch_alarm_clear /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_alarm_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_alarm_prog /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_alarm_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_alarm_timer_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_conflict_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_elt_cancel /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_event_start_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_insert /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_insert_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_prog_timer /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_remove /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_arb_sw_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_chk /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_clock_wrap_offset_update /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_conflict_check /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_interval_req /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_offset_max_calc /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_offset_req /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_offset_req_hook /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_position_range_compute /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_rem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_req /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_plan_set /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_ble_push /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_bt_push /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_end_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_end_isr_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_et_state_reset /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_hw_reset_try /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_push /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_rx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_skip_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_state_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_prog_tx_isr /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_bg_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_bg_remove /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_compute /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_fg_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_fg_remove /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_per_add /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sch_slice_per_remove /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ip_funcs.o) -r_sdk_cfg_priv_opts_ext_get /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_get_bt_sleep_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_get_hl_derived_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_get_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_get_opts_ext /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_get_priv_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_set_bt_sleep_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_set_hl_derived_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config_hl.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_sdk_config_set_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_specialModP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_unloaded_area_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_check_packet_allow /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_deinit /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_flow_off /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_flow_on /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_notify_host_send_available /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vhci_send_to_host /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -r_vnd_hci_command_handler /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_vs_funcs /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -r_vs_funcs_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) -r_vshci_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(modules_funcs.o) -r_writebyte /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(plf_funcs.o) -rainmaker__cmd_set_user_mapping__descriptor esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__free_unpacked esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__get_packed_size esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__pack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__pack_to_buffer esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__cmd_set_user_mapping__unpack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__descriptor esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__free_unpacked esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__get_packed_size esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__resp_set_user_mapping__pack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__pack_to_buffer esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__resp_set_user_mapping__unpack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__rmaker_config_msg_type__descriptor esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__rmaker_config_payload__descriptor esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__rmaker_config_payload__free_unpacked esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__rmaker_config_payload__get_packed_size esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__rmaker_config_payload__init esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__rmaker_config_payload__pack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__rmaker_config_payload__pack_to_buffer esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -rainmaker__rmaker_config_payload__unpack esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rainmaker__rmaker_config_status__descriptor esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.pb-c.c.obj) -raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) -ram1_bt_track_pll_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -ram1_fe_i2c_reg_renew /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -ram1_phy_close_rf /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -ram1_phy_dis_hw_set_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -ram1_phy_wakeup_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -ram1_set_pbus_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -ram1_wifi_set_tx_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -ram2_rfpll_cap_correct /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -ram2_rfpll_cap_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -ram_check_noise_floor /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -ram_pbus_force_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -ram_pll_vol_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -ram_tx_pwctrl_background /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -rand /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) -range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) -raw_input esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -raw_new esp-idf/lwip/liblwip.a(raw.c.obj) -raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_send esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) -rc11BSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rc11BSchedTbl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rc11GSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rc11NSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rc11NSchedTbl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rc4_skip esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -rcAmpduLowerRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcAttach /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -rcClearCurAMPDUSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcClearCurSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcClearCurStat /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcGet11BHighestRateIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcGet11GHighestRateIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcGet11NHighestRateIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcGetAmpduSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rcGetDefaultHigestRateIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcGetHighestRateIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcGetRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rcGetSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rcLoRaRate2SchedIdx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcLoRaSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcLoRaSchedTbl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcLowerSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcP2P11GSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcP2P11NSchedTbl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rcReachRetryLimit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -rcSetBarRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rcSetTxAmpduLimit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcTxUpdatePer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcUpSched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcUpdateAMPDUParam /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rcUpdateAckSnr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcUpdatePhyMode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rcUpdateRate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rcUpdateRxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rcUpdateTxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -rcUpdateTxDoneAmpdu2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rc_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rc_disable_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_disable_trc_by_interface /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_enable_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_G6M_sched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_default_sched /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rc_get_sta_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rc_get_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_trc_by_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_get_trc_default /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rc_only_sta_trc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -rc_set_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -rc_set_per_conn_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) -read /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysread.o) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -read_hw_noisefloor /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -readdir esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) -realloc esp-idf/newlib/libnewlib.a(heap.c.obj) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiscanf.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/console/libconsole.a(arg_utils.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/bt/libbt.a(ble_gatts.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) -reattempt_conn esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -reconnect_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -reconnect_type2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) -refreshShowHints esp-idf/console/libconsole.a(linenoise.c.obj) -regi2c_analog_cali_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_analog_cali_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) -regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -register_chipv7_phy /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -register_chipv7_phy_init_param /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -register_commands esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_console.c.obj) -register_ieee80211_action_vendor_get_key_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -register_ieee80211_action_vendor_spec_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -register_ieee80211_rfid_locp_recv_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) -registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -remove /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-remove.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) -rename /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rename.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) -resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -reset_cs_thres /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -resp_apply_thread_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_thread_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_thread_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_thread_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_apply_thread_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_thread_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_thread_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_apply_wifi_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_apply_wifi_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_ctrl_thread_reprov__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reprov__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reprov__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reprov__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -resp_ctrl_thread_reprov__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reprov__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reprov__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -resp_ctrl_thread_reset__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_thread_reset__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -resp_ctrl_wifi_reprov__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reprov__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.c.obj) -resp_ctrl_wifi_reset__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_ctrl_wifi_reset__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) -resp_get_property_count__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_count__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_count__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_count__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -resp_get_property_count__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_count__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_count__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -resp_get_property_values__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_property_values__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_get_thread_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_thread_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_thread_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_thread_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_get_thread_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_thread_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_thread_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_get_wifi_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_get_wifi_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_scan_thread_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_thread_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_thread_start__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_start__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_thread_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_thread_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_wifi_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_wifi_start__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_start__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -resp_scan_wifi_status__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_scan_wifi_status__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -resp_set_property_values__descriptor esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_property_values__free_unpacked esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_property_values__get_packed_size esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_property_values__init esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl_handler.c.obj) -resp_set_property_values__pack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_property_values__pack_to_buffer esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_property_values__unpack esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -resp_set_thread_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_thread_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_thread_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_thread_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_set_thread_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_thread_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_thread_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -resp_set_wifi_config__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -resp_set_wifi_config__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -restart_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) -rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) -rf_2_ble_chan_tab /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) -rf_cal_data_backup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rf_cal_data_recovery /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rf_cal_level_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rf_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rfcal_pwrctrl /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -rfcal_rxiq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rfcal_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rfcal_txcap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -rfcal_txiq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -rfpll_cap_init_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -rfpll_set_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -rfrx_sat_cal_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -rfrx_sat_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rfrx_sat_rst /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -riscv_decode_offset_from_jal_instruction esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) -riscv_excp_names esp-idf/riscv/libriscv.a(interrupt.c.obj) -rmaker_mqtt_server_crt esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) -rmaker_mqtt_server_crt_length esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_mqtt_server.crt.S.obj) -rmaker_ota_server_crt esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) -rmaker_ota_server_crt_length esp-idf/esp_rainmaker/libesp_rainmaker.a(rmaker_ota_server.crt.S.obj) -rmaker_user_mapping_state esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) -rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) -rmt_acquire_group_handle esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_add_channel_to_group esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_config esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -rmt_driver_install esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -rmt_driver_uninstall esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_enable_tx_loop_autostop esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_fill_tx_items esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_channel_status esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_clk_div esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_counter_clock esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) -rmt_get_idle_level esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_mem_block_num esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_mem_pd esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_memory_owner esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_ringbuf_handle esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_rx_idle_thresh esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_source_clk esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_status esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_get_tx_loop_mode esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_hal_deinit esp-idf/hal/libhal.a(rmt_hal.c.obj) -rmt_hal_init esp-idf/hal/libhal.a(rmt_hal.c.obj) -rmt_hal_rx_channel_reset esp-idf/hal/libhal.a(rmt_hal.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_hal_tx_channel_reset esp-idf/hal/libhal.a(rmt_hal.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_isr_deregister esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_isr_register esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_periph_signals esp-idf/soc/libsoc.a(rmt_periph.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_register_tx_end_callback esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_remove_channel_from_group esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_rx_memory_reset esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_rx_start esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_rx_stop esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_clk_div esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_err_intr_en esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_gpio esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_idle_level esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_mem_block_num esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_mem_pd esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_memory_owner esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_rx_filter esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_rx_idle_thresh esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_rx_intr_en esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_rx_thr_intr_en esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_source_clk esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_tx_carrier esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_tx_intr_en esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_tx_loop_count esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_tx_loop_mode esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_set_tx_thr_intr_en esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_translator_get_context esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_translator_init esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) -rmt_translator_set_context esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_tx_memory_reset esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_tx_start esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_tx_stop esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_wait_tx_done esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) -rmt_write_items esp-idf/driver/libdriver.a(rmt_legacy.c.obj) -rmt_write_sample esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/ws2812_led/libws2812_led.a(led_strip_rmt_ws2812.c.obj) -roc_op_end /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -roc_op_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -rom1_bt_get_tx_gain_new /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_bt_set_tx_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom1_chip_i2c_readReg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_chip_i2c_writeReg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_disable_wifi_agc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_enable_wifi_agc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_get_chan_target_power /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -rom1_get_i2c_hostid /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_get_rate_fcc_index /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_i2c_master_reset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_phy_en_hw_set_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_phy_i2c_init1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_read_sar2_code /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_set_noise_floor /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_tsens_temp_read /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom1_tx_paon_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_txpwr_cal_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_wifi_get_tx_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom1_wifi_tx_dig_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom2_get_tx_gain_value1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -rom2_pll_cap_mem_update /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -rom2_read_pll_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -rom2_temp_to_power1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom2_tsens_read_init1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom2_ulp_code_track /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom2_ulp_ext_code_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom2_wait_hw_freq_busy /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom2_write_pll_cap /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -rom_agc_reg_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_bb_reg_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_bt_filter_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_bt_track_tx_power /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom_bt_tx_dig_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -rom_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -rom_i2c_sar2_init_code /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) -rom_index_to_txbbgain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_noise_check_loop /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rom_open_i2c_xpd /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_pbus_xpd_tx_on /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_phy_ant_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_phy_bbpll_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom_phy_dig_reg_backup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -rom_phy_freq_mem_backup /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -rom_phy_param_addr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rom.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_phy_reg_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_phy_xpd_rf /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_phy_xpd_tsens /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -rom_read_hw_noisefloor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -rom_set_chan_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_set_tx_dig_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_set_tx_gain_mem /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) -rom_set_txcap_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_i2c.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -rom_spiflash_legacy_data esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -rom_tsens_code_read /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_txbbgain_to_index /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_wifi_agc_sat_gain /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rom_wifi_track_tx_power /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -rom_write_txrate_power_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -roots_type2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -rotl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -rotr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -roundup2 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -route_announce_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_timer.o) -route_announce_timer_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -route_announce_timer_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -routetype2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_route.o) -rpa_timeout esp-idf/bt/libbt.a(ble_hs_pvcy.c.obj) -rsn_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -rsn_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -rssi_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -rssi_margin /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rssi_saved /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -rssi_to_rcpi esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cal_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_cntl_hal_disable_cpu_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rtc_cntl_hal_dma_link_init esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rtc_cntl_hal_enable_cpu_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_gpio_is_valid_gpio esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) -rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_sleep_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtos_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -rtos_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -rtos_save_fpu_coproc esp-idf/riscv/libriscv.a(vectors.S.obj) -rtp_pwr_tbl_desc_init /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_txpwr.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) -rw_crypto_aes_encrypt_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -rw_em_show /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -rw_pre_main /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -rw_rf_le_enter_test_mode /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) -rw_rf_le_exit_test_mode /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -rw_schedule /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -rw_sleep_enable /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) -rw_stop /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -rwble_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) -rwip_aes_encrypt_sync /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(aes.o) -rwip_coex_cfg /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -rwip_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) -rwip_param /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_task.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) -rwip_priority /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -rwip_prog_delay /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) -rwip_rf /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rf_espressif.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_test.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_hci.o) -rx11NRate2AMPDULimit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -rx_11b_opt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -rx_agc_reg_opt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -rx_blocking_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) -rx_chan_dc_sort /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rxdc_est_min_new /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rxiq_cover_mg_mp /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rxiq_get_mis /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -rxiq_set_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -s0_session_cmd__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_cmd__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -s0_session_resp__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s0_session_resp__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -s2_session_cmd0__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd0__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_cmd1__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -s2_session_resp0__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp0__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -s2_session_resp1__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s2_session_resp1__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) -s_eapol_txdone_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -s_encap_amsdu_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -s_fix_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -s_fix_rate_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -s_fragment /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -s_fragment_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -s_head esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) -s_ioctl_table /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -s_is_6m /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -s_map /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_regdomain.o) -s_mesh_beacon_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -s_mesh_running_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -s_mesh_send_mutex /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -s_mesh_stop_mutex /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -s_michael_mic_failure_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -s_netstack_free /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -s_netstack_ref /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -s_pm_beacon_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -s_pm_beacon_offset_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) -s_pp_task_create_sem /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -s_pp_task_del_sem /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -s_record_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_tbttstart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -s_tx_cacheq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -s_wifi_api_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -s_wifi_nvs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -s_wifi_queue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -s_wifi_stop_in_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -s_wifi_task_hdl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -s_wps_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -s_wps_api_sem esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -s_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -sae_accept_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_check_confirm_pk esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_clear_temp_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -sae_deinit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_derive_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_derive_pwe_from_pt_ecc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_derive_pwe_from_pt_ffc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_ecc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_ffc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_group_allowed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -sae_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_pk_base32_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -sae_pk_base32_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -sae_pk_buf_shift_left_19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -sae_pk_get_be19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) -sae_pk_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_pk_valid_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_prepare_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_prepare_commit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_set_group esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_state_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sae_write_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -save_pbus_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) -sc_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) -scan_add_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_add_probe_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_bitmap_to_channel_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_build_chan_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_cancel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_check_hidden /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_connect_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_enter_oper_channel_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -scan_fill_wps_scan_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_flush_all_tx_buf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -scan_get_apnum /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -scan_get_owe_channel_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_get_scan_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -scan_get_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_hidden_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_inter_channel_timeout_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -scan_parse_beacon /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -scan_parse_ht2040_coex /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_pm_channel_op_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_prefer_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_profile_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_remove_bssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_remove_probe_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_reset_cipher_and_akm /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_reset_default_app_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -scan_result_print /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -scan_set_act_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_set_current_scan_times /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_set_default_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_set_desChan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_set_home_chan_dwell_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_set_pas_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_set_scan_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -scan_stack_enableAdvFlowCtrlVsCmd /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(bt.c.obj) -scan_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -scan_status2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -scan_update_scan_history /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scan_validate_owe_scenarios /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) -scannum /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -sch_alarm_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_alarm.o) -sch_arb_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_arb.o) -sch_plan_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_plan.o) -sch_prog_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) -sch_prog_state /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_prog.o) -sch_slice_env /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) -sch_slice_params /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sch_slice.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) -sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) -sdk_cfg_priv_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwip_driver.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(rwble.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(nvds.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_hci.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_sync.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_per_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_con.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_cca.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(lld_adv.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_ver_exch.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llc_disconnect.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(bt_rw_v9.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -sdk_cfg_priv_opts_extend /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) -sdk_config_extend_set_pll_track /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - esp-idf/bt/libbt.a(bt.c.obj) -sdk_config_get_mask /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(llm.o) -sdk_config_overwrite_priv_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -sdk_config_priv_update_prog_delay /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) -sdk_config_set_derived_opts /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -sdk_config_set_mask /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -sdk_config_set_opts_ext /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(sdk_config.o) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -sec0_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec0_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -sec0_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec0_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec0_payload__init esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -sec0_payload__pack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec0_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec0_payload__unpack esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) -sec1_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec1_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -sec1_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec1_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec1_payload__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -sec1_payload__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec1_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec1_payload__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -sec2_msg_type__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec2_payload__descriptor esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -sec2_payload__free_unpacked esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec2_payload__get_packed_size esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec2_payload__init esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) -sec2_payload__pack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec2_payload__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec2_payload__unpack esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) -sec_scheme_version__descriptor esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) -select esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) -sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -send_ap_probe /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -send_deauth /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -session_cmd0__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd0__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_cmd1__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_data__descriptor esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -session_data__free_unpacked esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -session_data__get_packed_size esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -session_data__init esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -session_data__pack esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -session_data__pack_to_buffer esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) -session_data__unpack esp-idf/protocomm/libprotocomm.a(session.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security2.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) - esp-idf/protocomm/libprotocomm.a(security0.c.obj) -session_resp0__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp0__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp0__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp0__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -session_resp0__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp0__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp0__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__descriptor esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__free_unpacked esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__get_packed_size esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__init esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(security1.c.obj) -session_resp1__pack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__pack_to_buffer esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -session_resp1__unpack esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) -set_adc_rand /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_basic.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -set_ble_rx_sense /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) -set_chan_freq_hw_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -set_chan_freq_sw_start /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a(bt_bb_v2.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -set_chanfreq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -set_channel_rfpll_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -set_client_config esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) -set_pbus_mem /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -set_rf_freq_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -set_rfpll_freq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -set_rx_gain_cal_dc /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) -set_rx_gain_cal_iq /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) -set_rx_gain_param /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) -set_rx_gain_table /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -set_rx_sense /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -setbuf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) -setenv /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -setlocale /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) -settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -setvbuf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setvbuf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setbuf.o) -sha1_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -sha256_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -sha256_prf_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) -sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -sha512_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) -sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_hash_dma esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_write_digest esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) -siscanf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) -slave_conn esp-idf/bt/libbt.a(ble_gap.c.obj) - esp-idf/bt/libbt.a(ble_hs_hci_evt.c.obj) -sleep esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) -sleep_console_usj_pad_backup_and_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_console_usj_pad_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_cpu_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -sleep_disable_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_enable_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -sms4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -sniprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sniprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -snprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-snprintf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_cmd_resp_manager.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -sntp_enabled esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_get_sync_interval esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_get_sync_mode esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_get_sync_status esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_get_system_time esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_getkodreceived esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_getoperatingmode esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_getreachability esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_getserver esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_getservername esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_init esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_restart esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_set_sync_interval esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_set_sync_mode esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_set_sync_status esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_set_system_time esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_set_time_sync_notification_cb esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -sntp_setoperatingmode esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_setserver esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_setservername esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_stop esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sntp_sync_time esp-idf/lwip/liblwip.a(sntp.c.obj) -soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) -soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_deinit_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_dma_memory_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_get_attr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_get_dma_ctx esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_init_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_lock_acquire_end esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_acquire_start esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_bg_check_dev_acq esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_check_dev_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_clear_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_entry esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_exit esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_req_exist esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_request esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_get_acquiring_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_get_by_id esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_get_dev_id esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_register_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_set_bg_control esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_touch esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_unregister_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_wait_bg_done esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_main_set_lock esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_register_destroy_func esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_chip_boya_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) -spi_flash_chip_boya_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) -spi_flash_chip_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_mxic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_mxic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_th_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) -spi_flash_chip_th_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) -spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spicommon_bus_free_io_cfg esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_bus_initialize_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_bus_using_iomux esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_cs_free_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_cs_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_dma_chan_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_dma_chan_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_dma_desc_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_dma_desc_setup_link esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_irqdma_source_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_irqsource_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_periph_in_use esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) -sprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfscanf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -srand /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-rand.o) -sscanf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) -sta_auth_ft /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_auth_open /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_auth_sae /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_auth_shared /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_bip_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -sta_con_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -sta_csa_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -sta_eapol_txdone_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_get_beacon_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -sta_get_owe_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -sta_input /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -sta_is_11r_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -sta_is_wifi_ent_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) -sta_is_wpa3_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -sta_michael_mic_failure /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -sta_recv_assoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_recv_ctl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -sta_recv_mgmt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -sta_reset_beacon_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -sta_retry_assoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -sta_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -sta_rx_csa /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -sta_rx_eapol /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -sta_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -sta_sa_query_process_timeout /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -sta_try_sa_query_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) -sta_update_power_off_reset_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) -start_tx_tone /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) -start_tx_tone_step /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -stat /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sysstat.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) -status__descriptor esp-idf/protocomm/libprotocomm.a(constants.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec2.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec1.pb-c.c.obj) - esp-idf/protocomm/libprotocomm.a(sec0.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_ctrl.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.pb-c.c.obj) -std::bad_alloc::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) -std::bad_exception::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -std::exception::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::exception::~exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::exception::~exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -std::exception::~exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -std::get_new_handler() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) -std::get_terminate() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -std::get_unexpected() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -std::nothrow /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -std::set_new_handler(void (*)()) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -std::set_terminate(void (*)()) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -std::set_unexpected(void (*)()) /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -std::terminate() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_unex_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_globals.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) -std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) -std::type_info::__is_function_p() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -std::type_info::__is_pointer_p() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) -std::type_info::~type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) -std::type_info::~type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) -std::type_info::~type_info() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) -std::uncaught_exception() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -std::uncaught_exceptions() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_catch.o) -std::unexpected() /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -stop_tx_tone /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) -str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -strcasecmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasecmp.o) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -strcasestr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) -strcat /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcat.o) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -strchr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strchr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) -strcmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-locale.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_common_cmds.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_time_service.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/log/liblog.a(log_binary_heap.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/log/liblog.a(tag_log_level.c.obj) -strcpy /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcpy.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) -strcspn /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcspn.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) -strdup /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/esp_local_ctrl/libesp_local_ctrl.a(esp_local_ctrl.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_params.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_client_data.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_device.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node.c.obj) -strerror /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) -strerror_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror.o) -strerror_r /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -strftime /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) -strftime_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) -strlcat /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -strlcpy /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcpy.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(scheme_ble.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -strlen /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlen.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-siscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strlcat.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strerror_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strdup_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-sscanf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-puts.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-fputs.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getopt.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(netdb.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_utils.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(argtable3.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__qrcode/libespressif__qrcode.a(qrcodegen.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/protobuf-c/libprotobuf-c.a(protobuf-c.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) - esp-idf/bt/libbt.a(ble_uuid.c.obj) - esp-idf/bt/libbt.a(ble_svc_gap.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_nimble.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm_httpd.c.obj) - esp-idf/protocomm/libprotocomm.a(protocomm.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__json_generator/libespressif__json_generator.a(json_generator.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_commands.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_local_ctrl.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_node_config.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(cmd_resp.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/log/liblog.a(log_linked_list.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -strncasecmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncasecmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strcasestr.o) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -strncat /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncat.o) - esp-idf/console/libconsole.a(argtable3.c.obj) -strncmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncmp.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-gdtoa-gethex.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-getenv_r.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a(coexist_api.o) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - esp-idf/lwip/liblwip.a(def.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/console/libconsole.a(commands.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/json/libjson.a(cJSON.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_scenes.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) -strncpy /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strncpy.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-svfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/lwip/liblwip.a(netdb.c.obj) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/bt/libbt.a(os_mempool.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -strndup /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strndup.o) - esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(esp-mqtt-glue.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule_nvs.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -strnlen /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strnlen.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_io.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_network.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(handlers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_mem_caps.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -strrchr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strrchr.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -strstr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strstr.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -strtod /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/json/libjson.a(cJSON.c.obj) -strtod_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -strtof /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -strtof_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtod.o) -strtol /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-atoi.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(esp_http_client.c.obj) - esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/console/libconsole.a(arg_int.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -strtol_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtol.o) -strtoll /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) -strtoll_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoll.o) -strtoul /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset_r.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strftime.o) - esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -strtoul_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoul.o) -strtoull /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) - esp-idf/espressif__json_parser/libespressif__json_parser.a(json_parser.c.obj) -strtoull_l /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-strtoull.o) -supplicant_sta_conn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -supplicant_sta_disconn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -swap_buf esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_gattc.c.obj) -swap_in_place esp-idf/bt/libbt.a(endian.c.obj) - esp-idf/bt/libbt.a(ble_sm_alg.c.obj) - esp-idf/bt/libbt.a(ble_att_svr.c.obj) - esp-idf/bt/libbt.a(ble_att_clt.c.obj) -sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -sys_arch_unprotect esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) - esp-idf/lwip/liblwip.a(memp.c.obj) - esp-idf/lwip/liblwip.a(mem.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -sys_check_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_delay_ms esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -sys_jiffies esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_mbox_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -sys_mbox_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_mbox_post esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_mbox_trypost esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_mbox_trypost_fromisr esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_mutex_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_mutex_lock esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_mutex_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_mutex_unlock esp-idf/lwip/liblwip.a(sys_arch.c.obj) -sys_now esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) -sys_restart_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) -sys_sem_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_sem_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_sem_signal esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -sys_sem_signal_isr esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) -sys_thread_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_thread_sem_deinit esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -sys_thread_sem_get esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) - esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -sys_thread_sem_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -sys_thread_tcpip esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_timeout esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -sys_timeouts_deinit esp-idf/lwip/liblwip.a(timeouts.c.obj) -sys_timeouts_init esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -sys_timeouts_sleeptime esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcpip.c.obj) -sys_untimeout esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) - esp-idf/lwip/liblwip.a(mld6.c.obj) - esp-idf/lwip/liblwip.a(igmp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -system esp-idf/newlib/libnewlib.a(syscalls.c.obj) -systimer_hal_connect_alarm_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_counter_can_stall_by_cpu esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_counter_value_advance esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_deinit esp-idf/hal/libhal.a(systimer_hal.c.obj) -systimer_hal_enable_alarm_int esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_enable_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_get_alarm_value esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_get_clock_source esp-idf/hal/libhal.a(systimer_hal.c.obj) -systimer_hal_get_counter_value esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_get_time esp-idf/hal/libhal.a(systimer_hal.c.obj) -systimer_hal_init esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_select_alarm_mode esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_set_alarm_period esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_set_alarm_target esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_set_tick_rate_ops esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_ticks_to_us esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_us_to_ticks esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -target_power_backoff /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -target_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) -task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) -tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) -tcp_abandon esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_abort esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_accept esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_active_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) -tcp_active_pcbs_changed esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_alloc esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_arg esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_backlog_accepted esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_backlog_delayed esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_bind esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_bind_netif esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -tcp_bound_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_close esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_close_ext esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_connect esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_debug_state_str esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_eff_send_mss_netif esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_enqueue_flags esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_err esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_fasttmr esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_free esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_free_ooseq esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) -tcp_init esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -tcp_input esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -tcp_input_pcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_keepalive esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_listen_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_listen_with_backlog esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_listen_with_backlog_and_err esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -tcp_new esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_new_ip_type esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_next_iss esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_output esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_pcb_lists esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_pcb_purge esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_pcb_remove esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_poll esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_process_refused_data esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_recv esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_recv_null esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_recved esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_rexmit esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_rexmit_fast esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_rexmit_rto esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_rexmit_rto_commit esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_rexmit_rto_prepare esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_rst esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_rst_netif esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_seg_copy esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_seg_free esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_segs_free esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_send_empty_ack esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_send_fin esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_sent esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_setprio esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_shutdown esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_slowtmr esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_split_unsent_seg esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_tcp_get_tcp_addrinfo esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_ticks esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_timer_needed esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_tmr esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) -tcp_trigger_input_pcb_close esp-idf/lwip/liblwip.a(tcp_in.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_tw_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(timeouts.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_txnow esp-idf/lwip/liblwip.a(tcp.c.obj) -tcp_update_rcv_ann_wnd esp-idf/lwip/liblwip.a(tcp.c.obj) - esp-idf/lwip/liblwip.a(tcp_in.c.obj) -tcp_write esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -tcp_zero_window_probe esp-idf/lwip/liblwip.a(tcp_out.c.obj) - esp-idf/lwip/liblwip.a(tcp.c.obj) -tcpip_api_call esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -tcpip_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -tcpip_callback_wait esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_callbackmsg_delete esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_callbackmsg_new esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_callbackmsg_trycallback esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_callbackmsg_trycallback_fromisr esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_init esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) -tcpip_inpkt esp-idf/lwip/liblwip.a(tcpip.c.obj) -tcpip_input esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -tcpip_send_msg_wait_sem esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - esp-idf/lwip/liblwip.a(api_lib.c.obj) -tcpip_try_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) - esp-idf/lwip/liblwip.a(pbuf.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) -tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -telldir esp-idf/vfs/libvfs.a(vfs.c.obj) -temp_sensor_get_raw_value esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -temp_sensor_sync_tsens_idx esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -temperature_sensor_attributes esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -temperature_sensor_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -temperature_sensor_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -thread_attach_failed_reason__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -thread_attach_state__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -thread_attach_state__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_attach_state__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_attach_state__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_attach_state__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_attach_state__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_attach_state__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -thread_network_state__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -thread_scan_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -thread_scan_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -time /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-time.o) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_param.c.obj) -timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -tkip /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -tkip_decap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) -tkip_encap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_tkip.o) -tls_connection_client_hello_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_enable_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_established esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -tls_connection_export_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_get_eap_fast_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_get_failed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_get_read_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_get_write_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_resumed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) -tls_connection_server_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_set_cipher_list esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_connection_set_session_ticket_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_connection_shutdown esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -tls_get_cipher esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_get_errors esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_get_version esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -tls_global_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_global_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tls_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -tls_instance_count esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -tlsf_add_pool esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_alloc_overhead esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_block_size esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_check esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_check_hook esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_check_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_create esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_create_with_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_destroy esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_fit_size esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_free esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_get_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_malloc esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_malloc_addr esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_memalign esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_memalign_offs esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_pool_overhead esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_realloc esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_remove_pool esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_size esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_walk_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -transaction clone for std::bad_exception::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -transaction clone for std::bad_exception::~bad_exception() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -transaction clone for std::exception::what() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -transaction clone for std::exception::~exception() const /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -trcAmpduSetState /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -trc_NeedRTS /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -trc_SetTxAmpduState /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -trc_calc_duration /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -trc_ctl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -trc_ctl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -trc_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_get_80211_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_get_80211_tx_rate_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_get_espnow_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_isAmpduOn /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -trc_isTxAmpduOperational /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -trc_onAmpduOp /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_onDisconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -trc_onPPTxDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -trc_onScanDone /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -trc_onScanStart /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -trc_set_80211_tx_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_set_80211_tx_rate_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_set_espnow_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_set_per_pkt_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_tid_isTxAmpduOperational /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -trc_update_def_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -trc_update_ifx_phy_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -tsens_dac_cal1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) -tsens_dac_to_index /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) -tsens_temp_read1 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tsens.o) -tsf_hal_clear_mac_modem_rf_power_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_clear_soc_wakeup_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_get_counter_value /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_get_mac_modem_rf_power_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_get_tbtt_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -tsf_hal_get_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -tsf_hal_get_timer_target /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_is_tsf_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_map_tbtt_target_to_rx_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_select_rx_start_default_tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_counter_value /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_modem_wakeup_early_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_control_timestamp_use_tsf_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_rx_control_timestamp_use_tsf_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_early_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_intr_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_intr_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_modem_wakeup_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_modem_wakeup_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_rf_ctrl_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_rf_ctrl_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_rf_ctrl_wait_cycles /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_soc_wakeup_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_soc_wakeup_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tbtt_start_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_time /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_intr_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_intr_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_modem_wakeup_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_modem_wakeup_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_rf_ctrl_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_rf_ctrl_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_rf_ctrl_wait_cycles /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_soc_wakeup_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_soc_wakeup_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_timer_target /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tsf_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tsf_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tsf_time_deviation /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tsf_time_deviation_sync_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_set_tsf_time_deviation_sync_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tsf_hal_unmap_tbtt_target_to_rx_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_tsf.o) -tx_cap_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -tx_ict_stg0_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -tx_msg_id2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -tx_pwctrl_background /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -tx_pwctrl_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -tx_pwctrl_init_cal /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -tx_state_id2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) -tx_state_set /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_feature.o) -tx_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -tx_wifi_err2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) -txcal_debuge_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -txcal_gain_check /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -txcal_work_mode /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pbus.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -txdc_cal_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) -txdc_cal_v70 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -txiq_cal_init /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -txiq_cover /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -txiq_get_mis_pwr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -txiq_set_reg /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_cal.o) -txopstart_index /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -txpwr_offset /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_track.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -txq_opr2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -txtone_linear_pwr /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_pwdet.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_tx_cal.o) -typeinfo for __gnu_cxx::__concurrence_lock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -typeinfo for __gnu_cxx::__concurrence_unlock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -typeinfo for std::bad_alloc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) -typeinfo for std::exception /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -typeinfo name for __gnu_cxx::__concurrence_lock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -typeinfo name for __gnu_cxx::__concurrence_unlock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -typeinfo name for std::bad_alloc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) -typeinfo name for std::exception /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -tzset /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-tzset.o) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) -uart_clear_intr_status esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_pattern_det_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_driver_delete esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_driver_install esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) -uart_enable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_pattern_det_baud_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_flush esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_flush_input esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_buffered_data_len esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_collision_flag esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_sclk_freq esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_selectlock esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_tx_buffer_free_size esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) -uart_hal_get_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -uart_intr_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_is_driver_installed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_param_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_pattern_get_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_pattern_pop_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_pattern_queue_reset esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_read_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_always_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_dtr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_line_inverse esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_loop_back esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_mode esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_pin esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_rts esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_rx_full_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_select_notif_callback esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_sw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_tx_empty_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_tx_idle_num esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_tx_chars esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_vfs_dev_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_include_dev_init esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_wait_tx_done esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_wait_tx_idle_polling esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_write_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_write_bytes_with_break esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -udp_bind esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_bind_netif esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(sockets.c.obj) -udp_connect esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -udp_disconnect esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_init esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(init.c.obj) -udp_input esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(ip6.c.obj) - esp-idf/lwip/liblwip.a(ip4.c.obj) -udp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(netif.c.obj) -udp_new esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_new_ip_type esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -udp_pcbs esp-idf/lwip/liblwip.a(udp.c.obj) -udp_recv esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_remove esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_send esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) -udp_sendto esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - esp-idf/lwip/liblwip.a(api_msg.c.obj) - esp-idf/lwip/liblwip.a(dns.c.obj) - esp-idf/lwip/liblwip.a(sntp.c.obj) -udp_sendto_if esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns_networking_lwip.c.obj) -udp_sendto_if_src esp-idf/lwip/liblwip.a(udp.c.obj) - esp-idf/lwip/liblwip.a(dhcp.c.obj) -ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) -ungetc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-ungetc.o) -unloaded_area /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(arch_main.o) -unregister_ieee80211_action_vendor_get_key_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -unregister_ieee80211_action_vendor_spec_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) -unregister_ieee80211_rfid_locp_recv_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_rfid.o) -unsetenv /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-setenv.o) -update_cs_thres /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -usb_serial_jtag_connection_monitor_include esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -usb_serial_jtag_driver_install esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -usb_serial_jtag_driver_uninstall esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -usb_serial_jtag_is_connected esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -usb_serial_jtag_is_driver_installed esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_read_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_read_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_set_select_notif_callback esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_include_dev_init esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_wait_tx_done esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_write_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_write_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usleep esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) -utime esp-idf/vfs/libvfs.a(vfs.c.obj) -utoa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-utoa.o) -uuid_gen_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskGetStackHighWaterMark2 esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) -uxTimerGetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) -uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) -vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) -vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vEventGroupClearBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) -vEventGroupDelete esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -vEventGroupSetBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) -vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vPortClearInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) -vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc2_init_cal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) -vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) -vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortYield esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vPortYieldFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) -vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) -vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vSystimerSetup esp-idf/freertos/libfreertos.a(port_systick.c.obj) -vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(time.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/main/libmain.a(app_main.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) -vTaskPriorityDisinheritAfterTimeout esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) -vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -vTimerSetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) -vTimerSetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) -valid_key_length esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -validate_platform_inputs esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -validate_sku_code esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(create_APN3_PPI_string.c.obj) -valloc esp-idf/newlib/libnewlib.a(heap.c.obj) -vasprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vasprintf.o) - esp-idf/esp_http_client/libesp_http_client.a(http_header.c.obj) - esp-idf/esp_http_client/libesp_http_client.a(http_auth.c.obj) -veryBigHexP256 /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(ecc_p256.o) -vfiprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfiprintf.o) -vflash_mem /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(flash.o) -vfprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vfprintf.o) - esp-idf/console/libconsole.a(arg_utils.c.obj) -vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) -vhci_env_p /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vhci.o) -vnd_hci_command_handler_wrapper /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3/libbtdm_app.a(vshci_task.o) -vote_done2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -vote_start2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -vprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vprintf.o) - esp-idf/log/liblog.a(log_write.c.obj) -vsnprintf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-vsnprintf.o) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - esp-idf/esp_coex/libesp_coex.a(lib_printf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/console/libconsole.a(arg_dstr.c.obj) -vtable for __cxxabiv1::__class_type_info /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -vtable for __cxxabiv1::__forced_unwind /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -vtable for __cxxabiv1::__foreign_exception /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -vtable for __cxxabiv1::__si_class_type_info /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(si_class_type_info.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) -vtable for __gnu_cxx::__concurrence_lock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -vtable for __gnu_cxx::__concurrence_unlock_error /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_handler.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_terminate.o) -vtable for nvs::NVSEncryptedPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -vtable for nvs::NVSHandle esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -vtable for nvs::NVSHandleSimple esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -vtable for nvs::NVSPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -vtable for nvs::NVSPartitionManager esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -vtable for nvs::Partition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -vtable for std::bad_alloc /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(bad_alloc.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(new_op.o) -vtable for std::bad_exception /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -vtable for std::exception /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(eh_exception.o) -vtable for std::type_info /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libstdc++.a(tinfo.o) -wDevCheckBlockError /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -wDevCtrl /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wDevCtrl_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDevMacSleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDevMacSleep_ptr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_AppendRxBlocks /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -wDev_Crypto_Disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_DiscardFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_FetchFirstDesc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_GetNoiseFloor /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_Get_Next_TBTT /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_IndicateAmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_IndicateCtrlFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_IndicateFrame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_Insert_KeyEntry /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_Mesh_Disable_Tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -wDev_Mesh_Enable_Tsf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) -wDev_Mesh_Set_TBTT /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) -wDev_ProcessFiq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_ProcessRxSucData /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_Reset_TBTT /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_RxSecError /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_Rxbuf_Deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_Rxbuf_Init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_SetAuthed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_SetCurChannel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_Set_Beacon_Int /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wDev_SnifferRxAmpdu /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_SnifferRxData /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_disable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -wDev_enable_low_rate /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) -wDev_ftm_record_t1t4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -wDev_ftm_record_t2t3 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_ftm_set_t1t4 /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) -wDev_is_low_rate_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_record_ftm_data /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_record_ftm_data_local /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wDev_remove_KeyEntry /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_remove_KeyEntry_all_cnx /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wDev_reset_bcnSendTick /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_mac.o) -wait_freq_set_busy /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_init.o) -wait_rfpll_cal_end /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -wapi_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) -wdevProcessRxSucDataAll /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -wdev_bank_load /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_bank_store /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_csi_hw_bug_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_csi_len_align /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_csi_rx_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_data_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_dump_rx_linked_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_ftm_set_callbacks /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_funcs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wdev_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wdev_get_promis_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_get_promis_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_is_data_in_rxlist /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_is_mgmt_hwdecr_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_mac_reg_load /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_mac_reg_store /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_mac_sleep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wdev_mac_sleep_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wdev_mac_sleep_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wdev_mac_special_reg_load /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_mac_special_reg_store /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_mac_wakeup /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wdev_process_beacon_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_process_tbtt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_process_tsf_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_record_rx_linked_list /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_set_csi_rx_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_set_promis /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_set_promis_ctrl_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_set_promis_ctrl_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_set_promis_filter /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wdev_set_promis_misc_buf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdev_set_promis_misc_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) -wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) -wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -wdt_hal_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wep /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wep_decap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) -wep_encap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_wep.o) -wi_fi_scan_result__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wi_fi_scan_result__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wi_fi_scan_result__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wi_fi_scan_result__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.c.obj) -wi_fi_scan_result__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wi_fi_scan_result__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wi_fi_scan_result__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wifi_action_tx_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_ant_config_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ant_to_ant_type /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ant_update /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ant_update_empty_func /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_ap_pmf_enabled /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_ap_reg_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ap_remove_sta_node_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_ap_sta_sae_auth_done_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_apb80m_release /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wifi_apb80m_request /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wifi_api_lock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_api_unlock /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_auth_mode__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_scan.pb-c.c.obj) -wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) -wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_check_chan_param /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_clear_ap_list_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_coex_pwr_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_configure_wake_window_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_connect_failed_reason__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -wifi_connect_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_connected_state__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -wifi_connected_state__free_unpacked esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -wifi_connected_state__get_packed_size esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -wifi_connected_state__init esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.c.obj) -wifi_connected_state__pack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -wifi_connected_state__pack_to_buffer esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -wifi_connected_state__unpack esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) -wifi_copy_ap_record /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_create_softap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_create_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -wifi_crypto_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_crypto_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_csi_set_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_deauth_sta_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_deinit_in_caller_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_deinit_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_delete_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_destroy_softap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_destroy_sta /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_disable_pmf_config_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_disconnect_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_event_id2str /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_utilities.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_parent.o) -wifi_event_post /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_force_wakeup_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_ftm_start_initiator_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_get_ap_info_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_ap_list_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_ap_record_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_bw_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_channel_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_init_state /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_get_macaddr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action_vendor.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -wifi_get_protocol_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_rand_macaddr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -wifi_get_rand_macaddr_keep_oui /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -wifi_get_scan_params_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_sta_list_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_tsf_time_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_get_user_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_gpio_debug /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -wifi_gpio_debug_max_event_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -wifi_hmac_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_hmac_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ht20 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -wifi_ht40 /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_analog_cal.o) -wifi_hw_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_hw_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_init esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -wifi_init_completed /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_init_in_caller_task /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_init_key /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_init_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_internal_ioctl_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_ioctl_ht2040_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ioctl_ht2040_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_ipc_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_is_started /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_is_stop_in_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_lmac_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_lmac_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_log /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_sleep.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a(misc_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(hal_ampdu.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_coex.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(lmac.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(esf_buf.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm_beacon_offset.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_sms4.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_action.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ht.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_proto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ftm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_timer.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_input.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_offchan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_reg_db.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ets.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_power.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_chm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_phy.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_output.o) -wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_menuconfig_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_act_duty_signaling_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_assoc_expire_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_event_post /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_quick.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_mesh_ie_crypto_funcs_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ie_crypto_key_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ie_deinit_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ie_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ie_init_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ie_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_is_roots_found_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_map_deauth_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_mesh_parent_candidate_clear_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_parent_candidate_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_parent_candidate_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_parent_monitor_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_parent_monitor_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ps_duty_cycle_get_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ps_duty_cycle_set_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_ps_duty_ext_get_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_root_conflicts_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_roots_ie_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_roots_ie_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_router_bssid_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_router_bssid_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_rssi_threshold_get_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_rssi_threshold_set_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_set_beacon_interval_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_sta_disassoc /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_mesh_sta_disassoc_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mesh_switch_channel_progress /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_mode_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_nvs_ap_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_cfg_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_cfg_item_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_commit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_nvs_compare_cfg_diff /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_nvs_deinit /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_nvs_get /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_nvs_get_sta_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) -wifi_nvs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_nvs_reset_current_ap_info /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -wifi_nvs_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_nvs_set /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_nvs_set_sta_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) -wifi_nvs_sta_restore /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_ap_chan /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_ap_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_ap_password /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_ap_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_sta_listen_interval /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_nvs_validate_sta_password /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) -wifi_on_coex_schm_phase_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_on_coex_start_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_osi_funcs_register /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_osi_ready /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) -wifi_recycle_rx_pkt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211.o) -wifi_register_mgmt_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_register_user_ie_manufacturer_recv_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_reset_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_restart_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_restore_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_rf_phy_disable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_rf_phy_enable /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pm.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_rifs_mode_en /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_reg.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_api.o) -wifi_roc_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_sample_beacon_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_scan_start_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_scan_stop_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_send_mgmt_frame /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_ant /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_ant_gpio /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_appie_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_auto_connect_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_band_mode_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_band_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_bw_nvs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_set_bw_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_chan_range /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_set_channel_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_config_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_country /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_csi /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_default_ssid /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_nvs.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_set_dynamic_cs_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_event_mask /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_fix_rate_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_gpio_debug_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp_debug.o) -wifi_set_home_channel_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_log_mod_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_mac_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_max_tpw /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_mode_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_phy_2nd_chan_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_set_promis_ctrl_filter_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_promis_filter_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_promis_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_protocol_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_ps_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_rssi_threshold /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_rx_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(if_hwctrl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_set_rxcb_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_scan_params_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_user_ie /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_vnd_ie_cb_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_vnd_ie_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_set_wps_cb_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_wps_start_flag /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_wps_status_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_set_wps_type_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_softap_cacl_mac /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_cur_max_ap_bss_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_get_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_get_station_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_max_support_num /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) -wifi_softap_set_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_set_obss_overlap_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_staconnected_event_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_softap_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_hostap.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_softap_toomany_deny /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_sta_connect_internal_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_sta_disconnect /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_sta_get_enterprise_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) -wifi_sta_get_prof_password /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_sta_reg_eapol_txdone_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_sta_reg_rxcb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_sta_rx_probe_req /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(wdev.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_sta_set_ap_num_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_sta_set_scan_default_params /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_start esp-idf/app_network/libapp_network.a(app_wifi_internal.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) -wifi_start_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_station_ap_check /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_station_get_config /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_station_get_config_default /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_station_get_current_ap_id /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_station_get_reconnect_policy /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_scan.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_station_save_ap_channel /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_station_start /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_station_state__descriptor esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_constants.pb-c.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(network_config.pb-c.c.obj) -wifi_station_stop /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_station_wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_eapol_start_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wifi_station_wps_eapol_start_handle_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_msg_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_msg_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_success esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_success_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_station_wps_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_stop_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_stop_sw_txq /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_tbtt_quick_wake_configure_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_txq_empty /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wifi_unregister_user_ie_manufacturer_recv_cb /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_update_listen_interval_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_update_tsf_tick_interval_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_api.o) -wifi_wpa2_ent_disable_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_wpa2_ent_enable_process /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_supplicant.o) -wifi_wpa2_is_started /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_wps_disable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_wps_enable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_wps_is_started /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) -wifi_wps_scan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_wps_scan_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wifi_wps_scan_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wl_clear_ap_no_lr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_sta.o) -wl_is_ap_no_lr /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(wl_cnx.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(trc.o) -wlanif_init esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) -wlanif_init_ap esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -wlanif_init_nan esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -wlanif_init_sta esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -wlanif_input esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) - esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) -wpa2_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -wpa2_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) -wpa3_hostap_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa3_hostap_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa3_hostap_post_evt esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -wpa_add_kde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_akm_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) -wpa_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpa_ap_get_peer_spp_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_ap_get_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_ap_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_ap_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_attach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_auth_add_sae_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_auth_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_auth_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_auth_pmksa_add_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) -wpa_auth_pmksa_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_auth_sm_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_auth_sta_associated esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_auth_sta_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_auth_sta_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_auth_sta_no_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_auth_uses_mfp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_auth_uses_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -wpa_cipher_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -wpa_cipher_rsc_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -wpa_cipher_to_alg esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_cipher_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -wpa_cipher_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -wpa_cipher_valid_mgmt_group esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_cipher_valid_pairwise esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_compare_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_config_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_config_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_config_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_config_parse_string esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_config_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_crypto_funcs /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_crypto_ccmp.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wpa_crypto_funcs_init /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a(ieee80211_ioctl.o) -wpa_deattach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) -wpa_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_drv_send_action esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -wpa_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_eapol_key_send esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_ether_send esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpa_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpa_gen_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_get_ntp_timestamp esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_insert_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) -wpa_install_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_is_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -wpa_merge_byte_arrays esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -wpa_mic_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_michael_mic_failure esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_parse_kde_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_parse_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_parse_wpa_ie_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpa_parse_wpa_ie_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) -wpa_parse_wpa_ie_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -wpa_parse_wpa_ie_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_pmk_to_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_receive esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_remove_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_report_ie_mismatch esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_res_to_status_code esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_sendto_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_set_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_set_passphrase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -wpa_set_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sm_disassociate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_drop_sa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_get_auth_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_get_beacon_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) -wpa_sm_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sm_mlme_setprotection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_notify_assoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -wpa_sm_notify_disassoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sm_set_ap_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_set_assoc_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) -wpa_snprintf_hex_uppercase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) -wpa_ssid_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) -wpa_sta_clear_curr_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sta_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sta_cur_pmksa_matches_akm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) -wpa_sta_in_4way_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wpa_sta_is_cur_pmksa_set esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_status_to_reason_code esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_supplicant_clr_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) -wpa_supplicant_gtk_tx_bit_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_key_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_pairwise_gtk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_parse_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_process_1_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_send_2_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_stop_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_supplicant_transition_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpa_use_aes_key_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_use_akm_defined esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) -wpa_validate_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) -wpa_write_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -wpa_write_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) -wpabuf_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) -wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) -wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) -wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpabuf_printf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) -wpabuf_put esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) -wps_add_discard_ap esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_ap_priority_compar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_attr_text esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_ap_channel esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) -wps_build_application_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_build_assoc_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_build_assoc_resp_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_assoc_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_auth_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_config_error esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_config_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_conn_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_dev_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_dev_password_id esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_encr_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_enrollee_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_build_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_manufacturer esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_model_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_msg_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_build_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_primary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_probe_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_build_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_build_registrar_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_build_req_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_req_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_resp_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_rf_bands_attr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_build_secondary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_serial_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_build_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_vendor_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_build_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_wfa_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_build_wsc_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_build_wsc_nack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_check_wifi_mode esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_config_methods_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_decrypt_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_delete_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_derive_keys esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_derive_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_dev_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_dev_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_dev_type_bin2str esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_dev_type_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_device_data_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_enrollee_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_enrollee_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_enrollee_process_msg_frag esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_generate_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_get_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_get_wps_sm_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) -wps_ie_encapsulate esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_init_cfg_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_is_20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_is_addr_authorized esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_is_selected_pbc_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_is_selected_pin_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_parse_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_pbc_active_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_pbc_disable_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_pbc_overlap_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_pbc_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_pin_checksum esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_pin_str_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_pin_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_post_block esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_process_ap_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_process_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_process_cred esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_process_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_process_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_process_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_process_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_process_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) -wps_process_wps_mX_req esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_pwd_auth_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_registrar_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_registrar_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) -wps_selected_registrar_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) -wps_send_eap_identity_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_send_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_send_wps_mX_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_set_default_factory esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_set_factory_info esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_sm_get esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_sm_rx_eapol_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_start_msg_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_start_pending esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_stop_process esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_success_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) -wps_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_task_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_task_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wps_tx_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) -wr_rf_freq_mem /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -wr_rx_gain_mem /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rx_gain.o) - /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -write /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-syswrite.o) - esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - esp-idf/console/libconsole.a(linenoise.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -write_freq_mem_all /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_hw_freq.o) -write_rfpll_sdm /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3/libphy.a(phy_rfpll.o) -ws2812_led_clear esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -ws2812_led_init esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -ws2812_led_set_hsv esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) - esp-idf/main/libmain.a(app_driver.c.obj) -ws2812_led_set_rgb esp-idf/ws2812_led/libws2812_led.a(ws2812_led.c.obj) -x509_crt_bundle esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) -x509_crt_bundle_length esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) -xEventGroupClearBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) -xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) -xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) -xEventGroupGetStaticBuffer esp-idf/freertos/libfreertos.a(event_groups.c.obj) -xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -xEventGroupSync esp-idf/freertos/libfreertos.a(event_groups.c.obj) -xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/app_network/libapp_network.a(app_network.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_core.c.obj) -xIsrStack esp-idf/freertos/libfreertos.a(port.c.obj) -xIsrStackBottom esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xIsrStackTop esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) -xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) -xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) -xPortSetInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortSwitchFlag esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) -xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(log_lock.c.obj) -xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) -xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(log_lock.c.obj) -xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) -xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) -xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/bt/libbt.a(esp_nimble_hci.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a(manager.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_user_mapping.c.obj) - esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(log_lock.c.obj) -xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreateStatic esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreateWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferGetStaticBuffer esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(rmt_legacy.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(rmaker_console.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(work_queue.c.obj) - esp-idf/bt/libbt.a(nimble_port_freertos.c.obj) - esp-idf/bt/libbt.a(bt.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_claim.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) -xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) -xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/bt/libbt.a(npl_os_freertos.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/log/liblog.a(log_lock.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) -xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/lwip/liblwip.a(sys_arch.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__mdns/libespressif__mdns.a(mdns.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) -xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) -xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(event_groups.c.obj) - esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTimerCreate esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -xTimerCreateStatic esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTimerGenericCommand esp-idf/freertos/libfreertos.a(timers.c.obj) - esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a(utils.c.obj) - esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a(esp_schedule.c.obj) - esp-idf/gpio_button/libgpio_button.a(button.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota_using_topics.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_ota.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_mqtt_budget.c.obj) - esp-idf/esp_rainmaker/libesp_rainmaker.a(esp_rmaker_schedule.c.obj) -xTimerGetExpiryTime esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerGetPeriod esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerGetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerGetStaticBuffer esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerGetTimerDaemonTaskHandle esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerIsTimerActive esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerPendFunctionCall esp-idf/freertos/libfreertos.a(timers.c.obj) -xTimerPendFunctionCallFromISR esp-idf/freertos/libfreertos.a(timers.c.obj) -xon_task_main /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a(mesh_schedule.o) -xphyQueue /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -xswap /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a(pp.o) -xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) diff --git a/RainMaker_Table-Lights/build/app-flash_args b/RainMaker_Table-Lights/build/app-flash_args deleted file mode 100644 index d713e98dc..000000000 --- a/RainMaker_Table-Lights/build/app-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x20000 RainMaker_Table-Lights.bin diff --git a/RainMaker_Table-Lights/build/bootloader-flash_args b/RainMaker_Table-Lights/build/bootloader-flash_args deleted file mode 100644 index 0837e622e..000000000 --- a/RainMaker_Table-Lights/build/bootloader-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-done deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt deleted file mode 100644 index 53e1e1e68..000000000 --- a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt +++ /dev/null @@ -1,6 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The update step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command= -work_dir= diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt deleted file mode 100644 index 43cacfa38..000000000 --- a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt +++ /dev/null @@ -1,9 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The download step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -method=source_dir -command= -source_dir=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -work_dir= - diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt b/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt deleted file mode 100644 index 31617d15d..000000000 --- a/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt +++ /dev/null @@ -1,7 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The patch step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command (connected)= -command (disconnected)= -work_dir= diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt deleted file mode 100644 index 8c9844ef8..000000000 --- a/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt +++ /dev/null @@ -1 +0,0 @@ -cmd='/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake;-DSDKCONFIG=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig;-DIDF_PATH=/home/alex/esp/v5.4.1/esp-idf;-DIDF_TARGET=esp32c3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-DEXTRA_COMPONENT_DIRS=/home/alex/esp/v5.4.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;;-B;' diff --git a/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake deleted file mode 100644 index f085f892d..000000000 --- a/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake +++ /dev/null @@ -1,27 +0,0 @@ -# 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 3.5) - -# 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/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject") - file(MAKE_DIRECTORY "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject") -endif() -file(MAKE_DIRECTORY - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader" - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix" - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/tmp" - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp" - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src" - "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp" -) - -set(configSubDirs ) -foreach(subDir IN LISTS configSubDirs) - file(MAKE_DIRECTORY "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/${subDir}") -endforeach() -if(cfgdir) - file(MAKE_DIRECTORY "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash -endif() diff --git a/RainMaker_Table-Lights/build/bootloader/.bin_timestamp b/RainMaker_Table-Lights/build/bootloader/.bin_timestamp deleted file mode 100644 index bffaccd6c..000000000 --- a/RainMaker_Table-Lights/build/bootloader/.bin_timestamp +++ /dev/null @@ -1 +0,0 @@ -b751ad2c8bf983b7a4914e43328122ab /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin diff --git a/RainMaker_Table-Lights/build/bootloader/.ninja_deps b/RainMaker_Table-Lights/build/bootloader/.ninja_deps deleted file mode 100644 index b911bdd37..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/.ninja_deps and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/.ninja_log b/RainMaker_Table-Lights/build/bootloader/.ninja_log deleted file mode 100644 index 368ed8b02..000000000 --- a/RainMaker_Table-Lights/build/bootloader/.ninja_log +++ /dev/null @@ -1,105 +0,0 @@ -# ninja log v6 -15 71 1751100325358214797 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 91931001c820fb1 -6 102 1751100325349214738 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj fd66136b2201e154 -71 180 1751100325415035140 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 4c75a74c0a94cf33 -9 186 1751100325352214758 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 5b751f0b6c07e712 -10 231 1751100325353214764 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 78ceb0949cdfd3ba -186 268 1751100325529215923 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj f52475a0bd218a67 -180 271 1751100325523215883 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 50e7604cb64c32e3 -4 282 1751100325348214731 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 1715bf92a10401ec -102 295 1751100325445215370 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj c6e549b905ed4712 -231 316 1751100325574216219 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 17825f5cbd61c752 -282 320 1751100325625216555 esp-idf/log/liblog.a a46230325cf2acbf -14 338 1751100325357214791 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 44d1a65c132c1c36 -338 379 1751100325681216924 esp-idf/esp_rom/libesp_rom.a f1a9da6157c33234 -320 436 1751100325663216805 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj f81ba5b9de68bb4a -295 446 1751100325638216641 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj 2bd7e73257238031 -268 463 1751100325611216463 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 24fd315fb511f17 -316 463 1751100325659216779 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 898d7fdb6d209fb6 -271 553 1751100325614216483 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj fd623869e84bbdf0 -553 627 1751100325896218339 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj d51a835d79ba2b21 -628 647 1751100325971218833 esp-idf/esp_common/libesp_common.a c2cc5f88f3ff62a6 -647 761 1751100325990218958 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 97e0c2e4531f3026 -436 763 1751100325779217569 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj 2a76adfa5f9b65d4 -379 768 1751100325722217194 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj 74ef755dcb150589 -464 785 1751100325807217753 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj 59a2bdd0acdcd856 -463 799 1751100325806217747 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj 45ea5a7d0c71bea5 -761 858 1751100326104219709 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj 710ca15469e3a612 -446 881 1751100325789217635 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj 62d7d7638bc95e92 -766 914 1751100326109219741 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj ad3545b817465c3a -881 945 1751100326224220499 esp-idf/esp_hw_support/libesp_hw_support.a a0e0b4395ecae99b -768 1011 1751100326111219755 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj 29f41866468d8e56 -1011 1029 1751100326354221354 esp-idf/esp_system/libesp_system.a 5da78730e8cd2577 -858 1038 1751100326201220347 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj be276798ac9fefc6 -785 1049 1751100326129455912 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj 971c2cd38deb3f0e -1049 1183 1751100326392221604 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 3102db277c19c8d2 -800 1191 1751100326143219965 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 7ba4c39f3cbdd539 -1038 1279 1751100326381221532 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj f56973f8dbdb2d36 -1191 1349 1751100326534222539 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj efda468c6b408857 -1279 1381 1751100326622223119 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 52cb1e006568ff16 -1184 1393 1751100326527222493 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 321bed2be9be8814 -1029 1482 1751100326372221473 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 752999f6ee1107d9 -1381 1488 1751100326724974112 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 4888533dd5e3527f -914 1515 1751100326257220716 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 2437a2c75fdb2d4f -1394 1521 1751100326737223876 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj 1cb7bd9bb631baf2 -945 1592 1751100326288220920 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 37dd63d725003008 -1488 1699 1751100326832612147 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj ce53b97b9173d726 -1593 1702 1751100326936225186 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 43184257ea9d4e5a -1349 1762 1751100326692223580 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 92f506b2ed6c7480 -1515 1846 1751100326858224672 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj 5a681ccd7852d39a -1482 1957 1751100326825224455 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj c9df4fff7da6e446 -1762 1969 1751100327105226299 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj d8a51060812ffd2b -1702 1998 1751100327046225910 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj cdf02d575a75a74e -1846 2081 1751100327189226852 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 3cf49093a5729401 -1969 2106 1751100327312227661 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj eae45c57ee1e03c2 -1998 2118 1751100327341227853 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj 1df1ba0fdcc624fd -2118 2162 1751100327461228642 esp-idf/efuse/libefuse.a 28e5e4870efaf79f -2109 2208 1751100327452228583 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 1b2598d305562721 -1957 2235 1751100327300227582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 81422779a69c60b4 -2162 2309 1751100327505228932 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj bf78c0bab1aa713a -2309 2390 1751100327652229900 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj a98ff347809acb17 -2081 2446 1751100327424228399 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj c2937ffc02ae96a7 -2208 2455 1751100327551229235 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 57ca2c126bda942a -2235 2510 1751100327578229413 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj f38b839e32efbeb3 -2446 2666 1751100327790230808 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 22c8581465e0aede -2390 2716 1751100327733230433 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj a02abae20bc011d4 -1521 2753 1751100326864224712 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj e9f88e497746df4f -2455 2800 1751100327798230861 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 753dd6bc7ea02925 -2510 2835 1751100327853231223 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj acc3d8e4ae1d013b -2801 2848 1751100328144233139 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj 11a5dac7ab997ba -2753 2850 1751100328096232823 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj d245b7d1fa1ae7e7 -2716 2868 1751100328059232579 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 83a6b4cb498272a9 -2835 2884 1751100328178233363 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj 56c3427b77cf44ad -2848 2934 1751100328191233448 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj ee17d0e97a6e2b35 -2850 2946 1751100328193233462 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj 4a33be4c4c1e49e6 -2868 2947 1751100328211233580 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj 62db91030f6a695b -2884 2957 1751100328227233685 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj 5d1597b11a7b7861 -2957 2990 1751100328300234166 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj 11d47ef69741e86c -2934 3018 1751100328277234014 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj 3e648b6c2af656b6 -2946 3033 1751100328289234094 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj 40407b285320bf24 -3033 3081 1751100328376234666 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj 58d07c2236f59dc8 -2990 3119 1751100328333234383 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj 25edf52381f0b6f7 -1699 3122 1751100327042225884 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj f37960757eec0ab0 -2947 3137 1751100328290234100 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj 9962da7df9ad338c -3081 3146 1751100328424234982 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj ba3422aaf05f4798 -3119 3199 1751100328462536415 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj 78d2a708f6d6bdc5 -3199 3203 1751100328545235779 project_elf_src_esp32c3.c a573b91c6dbab5cb -3199 3203 1751100328545235779 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c a573b91c6dbab5cb -3146 3228 1751100328489235410 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj 79a9fd59661eecb9 -3018 3236 1751100328361234568 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj 6d7dd733c00e59b -3137 3281 1751100328480413179 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj 13acf3448fde619c -3228 3281 1751100328571235950 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj 8fb3c09c5afe4ab0 -3123 3300 1751100328466235259 esp-idf/bootloader_support/libbootloader_support.a 35fe2efd8995f988 -3300 3322 1751100328643236424 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 55a054d5f62e9af1 -3203 3341 1751100328546235786 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj c5203862d474f8cb -3322 3345 1751100328665236569 esp-idf/spi_flash/libspi_flash.a 39f2a5469f3d92e9 -3346 3383 1751100328689236727 esp-idf/hal/libhal.a 9ca8e64bd9d34e0f -2666 4036 1751100328009232250 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj 221fa4291f1c6406 -4036 4052 1751100329379241270 esp-idf/micro-ecc/libmicro-ecc.a 757079af5ac43eef -4052 4080 1751100329395241375 esp-idf/soc/libsoc.a 39837cbfd9cab9c4 -4080 4094 1751100329423791448 esp-idf/main/libmain.a 7ac3c19bcbd07771 -4095 4152 1751100329438241658 bootloader.elf 37773073a83f64e3 -4152 4329 1751100329670243185 .bin_timestamp 16a3830eb919422d -4152 4329 1751100329670243185 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/.bin_timestamp 16a3830eb919422d -4329 4384 1751100329673223597 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 109e375a0c396cbc -4329 4384 1751100329673223597 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 109e375a0c396cbc diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeCache.txt b/RainMaker_Table-Lights/build/bootloader/CMakeCache.txt deleted file mode 100644 index e4ebfc46a..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeCache.txt +++ /dev/null @@ -1,446 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader -# It was generated by CMake: /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//Flags used by the ASM compiler during all build types. -CMAKE_ASM_FLAGS:STRING= - -//Flags used by the ASM compiler during DEBUG builds. -CMAKE_ASM_FLAGS_DEBUG:STRING=-g - -//Flags used by the ASM compiler during MINSIZEREL builds. -CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the ASM compiler during RELEASE builds. -CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the ASM compiler during RELWITHDEBINFO builds. -CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//C++ Compiler Base Flags -CMAKE_CXX_FLAGS:STRING='-march=rv32imc_zicsr_zifencei ' - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib - -//C Compiler Base Flags -CMAKE_C_FLAGS:STRING='-march=rv32imc_zicsr_zifencei ' - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Linker Base Flags -CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs ' - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/pkgRedirects - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld - -//Program used to build from build.ninja files. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=bootloader - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//The CMake toolchain file -CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//No help, variable specified on the command line. -EXTRA_COMPONENT_DIRS:UNINITIALIZED=/home/alex/esp/v5.4.1/esp-idf/components/bootloader - -//Git command line client -GIT_EXECUTABLE:FILEPATH=/usr/bin/git - -//No help, variable specified on the command line. -IDF_PATH:UNINITIALIZED=/home/alex/esp/v5.4.1/esp-idf - -//IDF Build Target -IDF_TARGET:STRING=esp32c3 - -//IDF Build Toolchain Type -IDF_TOOLCHAIN:STRING=gcc - -//No help, variable specified on the command line. -IGNORE_EXTRA_COMPONENT:UNINITIALIZED= - -//No help, variable specified on the command line. -PROJECT_SOURCE_DIR:UNINITIALIZED=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights - -//No help, variable specified on the command line. -PYTHON:UNINITIALIZED=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python - -//No help, variable specified on the command line. -PYTHON_DEPS_CHECKED:UNINITIALIZED=1 - -//No help, variable specified on the command line. -SDKCONFIG:UNINITIALIZED=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - -//Value Computed by CMake -bootloader_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - -//Value Computed by CMake -bootloader_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -bootloader_SOURCE_DIR:STATIC=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject - -//Value Computed by CMake -esp-idf_BINARY_DIR:STATIC=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf - -//Value Computed by CMake -esp-idf_IS_TOP_LEVEL:STATIC=OFF - -//Value Computed by CMake -esp-idf_SOURCE_DIR:STATIC=/home/alex/esp/v5.4.1/esp-idf - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR -CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB -CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS -CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG -CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL -CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE -CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO -CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Ninja -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=25 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding Git -FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.48.1()] -//ADVANCED property for variable: GIT_EXECUTABLE -GIT_EXECUTABLE-ADVANCED:INTERNAL=1 - diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake deleted file mode 100644 index 274c9c6fa..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake +++ /dev/null @@ -1,29 +0,0 @@ -set(CMAKE_ASM_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") -set(CMAKE_ASM_COMPILER_ARG1 "") -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_ASM_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_ASM_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_ASM_COMPILER_LINKER "") -set(CMAKE_ASM_COMPILER_LINKER_ID "") -set(CMAKE_ASM_COMPILER_LINKER_VERSION ) -set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_ASM_COMPILER_LOADED 1) -set(CMAKE_ASM_COMPILER_ID "GNU") -set(CMAKE_ASM_COMPILER_VERSION "") -set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") - - -set(CMAKE_ASM_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - -set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_ASM_LINKER_PREFERENCE 0) -set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) - - diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake deleted file mode 100644 index 91f5e74e4..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake +++ /dev/null @@ -1,82 +0,0 @@ -set(CMAKE_C_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "14.2.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_STANDARD_LATEST "23") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - -set(CMAKE_C_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_C_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_C_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_C_COMPILER_LINKER "NOTFOUND") -set(CMAKE_C_COMPILER_LINKER_ID "") -set(CMAKE_C_COMPILER_LINKER_VERSION ) -set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "4") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc;gcc;c;nosys") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake deleted file mode 100644 index 8391860d5..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,106 +0,0 @@ -set(CMAKE_CXX_COMPILER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "14.2.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "26") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") - -set(CMAKE_CXX_PLATFORM_ID "") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - -set(CMAKE_CXX_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar") -set(CMAKE_CXX_COMPILER_AR "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar") -set(CMAKE_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib") -set(CMAKE_LINKER "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") -set(CMAKE_CXX_COMPILER_LINKER_ID "") -set(CMAKE_CXX_COMPILER_LINKER_VERSION ) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "4") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - -### Imported target for C++26 standard library -set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - - diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 7b2dcec5b..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 38b4b99f0..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake deleted file mode 100644 index d9e60423b..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.14.0-22-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.14.0-22-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - -include("/home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake") - -set(CMAKE_SYSTEM "Generic") -set(CMAKE_SYSTEM_NAME "Generic") -set(CMAKE_SYSTEM_VERSION "") -set(CMAKE_SYSTEM_PROCESSOR "") - -set(CMAKE_CROSSCOMPILING "TRUE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 8d8bb038b..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,904 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define C_STD_99 199901L -#define C_STD_11 201112L -#define C_STD_17 201710L -#define C_STD_23 202311L - -#ifdef __STDC_VERSION__ -# define C_STD __STDC_VERSION__ -#endif - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif C_STD > C_STD_17 -# define C_VERSION "23" -#elif C_STD > C_STD_11 -# define C_VERSION "17" -#elif C_STD > C_STD_99 -# define C_VERSION "11" -#elif C_STD >= C_STD_99 -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out deleted file mode 100755 index 4c42435a7..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index da6c824af..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,919 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out deleted file mode 100755 index aafe5061a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 1780022bc..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,540 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - The target system is: Generic - - - The host system is: Linux - 6.14.0-22-generic - x86_64 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - Build flags: -march=rv32imc_zicsr_zifencei - Id flags: - - The output was: - 0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - Build flags: -march=rv32imc_zicsr_zifencei - Id flags: - - The output was: - 0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": - riscv32-esp-elf-gcc (crosstool-NG esp-14.2.0_20241119) 14.2.0 - Copyright (C) 2024 Free Software Foundation, Inc. - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-T6rMmu" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-T6rMmu" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imc_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-T6rMmu' - - Run Build Command(s): /usr/bin/ninja -v cmTC_cf62f - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_cf62f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccloljnx.s - GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: 2abae7216a6a1e12430968a738fec0e0 - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj /tmp/ccloljnx.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.' - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -o cmTC_cf62f && : - Using built-in specs. - Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs - rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc - COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_cf62f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_cf62f.' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNW0G07.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_cf62f -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_cf62f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_cf62f.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-T6rMmu'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_cf62f] - ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1 -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_cf62f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccloljnx.s] - ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 2abae7216a6a1e12430968a738fec0e0] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj /tmp/ccloljnx.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.'] - ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -o cmTC_cf62f && :] - ignore line: [Using built-in specs.] - ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] - ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc] - ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_cf62f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_cf62f.'] - link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNW0G07.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_cf62f -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccNW0G07.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_cf62f] ==> ignore - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_cf62f.dir/CMakeCCompilerABI.c.obj] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--start-group] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [--end-group] ==> ignore - ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_cf62f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_cf62f.'] - ignore line: [] - ignore line: [] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [gcc;c;nosys;c;gcc;gcc;c;nosys] - implicit objs: [] - implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nzXy0c" - binary: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nzXy0c" - cmakeVariables: - CMAKE_CXX_FLAGS: "-march=rv32imc_zicsr_zifencei " - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs " - CMAKE_MODULE_PATH: "/home/alex/esp/v5.4.1/esp-idf/tools/cmake;/home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nzXy0c' - - Run Build Command(s): /usr/bin/ninja -v cmTC_47e9f - [1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_47e9f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccdmXNtL.s - GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 4.9.2, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32 - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: c7cd21a23c5c74d612ca7681e3115c94 - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccdmXNtL.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.' - [2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_47e9f && : - Using built-in specs. - Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs - rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence - COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ - COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_47e9f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_47e9f.' - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJdKS8K.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_47e9f -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start; defaulting to 00010094 - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_47e9f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_47e9f.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "/home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake:571 (__project)" - - "CMakeLists.txt:67 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-nzXy0c'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_47e9f] - ignore line: [[1/2] /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -v -o CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus -quiet -v -imultilib rv32imc_zicsr_zifencei/ilp32 -iprefix /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_47e9f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imc_zicsr_zifencei -version -o /tmp/ccdmXNtL.s] - ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 4.9.2 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imc_zicsr_zifencei/ilp32] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: c7cd21a23c5c74d612ca7681e3115c94] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/'] - ignore line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as -v --traditional-format -march=rv32imc_zicsr_zifencei -march=rv32imc_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccdmXNtL.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imc_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [[2/2] : && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -march=rv32imc_zicsr_zifencei -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -v CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_47e9f && :] - ignore line: [Using built-in specs.] - ignore line: [Reading specs from /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/nosys.specs] - ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] - ignore line: [COLLECT_GCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++] - ignore line: [COLLECT_LTO_WRAPPER=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/:/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_47e9f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_47e9f.'] - link line: [ /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2 -plugin /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so -plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJdKS8K.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys --sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_47e9f -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc --start-group -lgcc -lc -lnosys --end-group] - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccJdKS8K.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lnosys] ==> ignore - arg [--sysroot=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_47e9f] ==> ignore - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-L/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_47e9f.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--start-group] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lnosys] ==> lib [nosys] - arg [--end-group] ==> ignore - ignore line: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imc_zicsr_zifencei' '-specs=nosys.specs' '-v' '-o' 'cmTC_47e9f' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imc_zicsr_zifencei' '-dumpdir' 'cmTC_47e9f.'] - ignore line: [] - ignore line: [] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [stdc++;m;gcc;c;nosys;c;gcc;gcc;c;nosys] - implicit objs: [] - implicit dirs: [/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - -... diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/TargetDirectories.txt b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 1a603da8f..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,86 +0,0 @@ -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/menuconfig.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/confserver.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/save-defconfig.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/gen_project_binary.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/app.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/erase_flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/merge-bin.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/monitor.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/_project_elf_src.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/bootloader.elf.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/size.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/size-files.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/size-components.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/uf2.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/uf2-app.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj deleted file mode 100644 index 4d53ae479..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/clean_additional.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/clean_additional.cmake deleted file mode 100644 index 231cb1683..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/clean_additional.cmake +++ /dev/null @@ -1,12 +0,0 @@ -# Additional clean files -cmake_minimum_required(VERSION 3.16) - -if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") - file(REMOVE_RECURSE - "bootloader.bin" - "bootloader.map" - "config/sdkconfig.cmake" - "config/sdkconfig.h" - "project_elf_src_esp32c3.c" - ) -endif() diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/cmake.check_cache b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd7317..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/HEAD b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/HEAD deleted file mode 100644 index b3440b61b..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -4c2820d377d1375e787bcef612f0c32c1427d183 diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index 7a7d4f4ef..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -set(HEAD_HASH) - -file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "/home/alex/esp/v5.4.1/esp-idf/.git") -# handle git-worktree -if(EXISTS "${GIT_DIR}/commondir") - file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) - string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) - if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") - get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) - endif() - if(EXISTS "${GIT_DIR_NEW}") - set(GIT_DIR "${GIT_DIR_NEW}") - endif() -endif() -if(HEAD_CONTENTS MATCHES "ref") - # named branch - string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") - if(EXISTS "${GIT_DIR}/${HEAD_REF}") - configure_file("${GIT_DIR}/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref deleted file mode 100644 index b3440b61b..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -4c2820d377d1375e787bcef612f0c32c1427d183 diff --git a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/rules.ninja b/RainMaker_Table-Lights/build/bootloader/CMakeFiles/rules.ninja deleted file mode 100644 index cf0000ee5..000000000 --- a/RainMaker_Table-Lights/build/bootloader/CMakeFiles/rules.ninja +++ /dev/null @@ -1,319 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the rules used to get the outputs files -# built from the input files. -# It is included in the main 'build.ninja'. - -# ============================================================================= -# Project: bootloader -# Configurations: -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__bootloader.2eelf_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C executable. - -rule C_EXECUTABLE_LINKER__bootloader.2eelf_ - command = $PRE_LINK && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C executable $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_soc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_soc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_micro-ecc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_hal_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_hal_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_spi_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_bootloader_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_bootloader_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_efuse_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_efuse_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_system_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_hw_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_common_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_rom_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_log_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_log_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_main_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_main_ - command = $PRE_LINK && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E rm -f $TARGET_FILE && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib $TARGET_FILE && $POST_BUILD - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for re-running cmake. - -rule RERUN_CMAKE - command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning additional files. - -rule CLEAN_ADDITIONAL - command = /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake - description = Cleaning additional files... - - -############################################# -# Rule for cleaning all built files. - -rule CLEAN - command = /usr/bin/ninja $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = /usr/bin/ninja -t targets - description = All primary targets available: - diff --git a/RainMaker_Table-Lights/build/bootloader/bootloader.bin b/RainMaker_Table-Lights/build/bootloader/bootloader.bin deleted file mode 100644 index a94d6379a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/bootloader.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/bootloader.elf b/RainMaker_Table-Lights/build/bootloader/bootloader.elf deleted file mode 100755 index b65d4658d..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/bootloader.elf and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/bootloader.map b/RainMaker_Table-Lights/build/bootloader/bootloader.map deleted file mode 100644 index 44a809b27..000000000 --- a/RainMaker_Table-Lights/build/bootloader/bootloader.map +++ /dev/null @@ -1,5435 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - (esp_bootloader_desc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - (__assert_func) -esp-idf/main/libmain.a(bootloader_start.c.obj) - (call_start_cpu0) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table) -esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_partition_table_verify) -esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_console_deinit) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_ana_clock_glitch_reset_config) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_clock_configure) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_init_mem) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random) -esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_flash_encryption_enabled) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_mmap_get_free_pages) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_flash_update_id) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_clear_bss_section) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_console_init) -esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_DIS_DIRECT_BOOT) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) -esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_read_field_blob) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) -esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_get_key_dis_read) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_init) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_32k_enable) -esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (esp_rom_install_uart_printf) -esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (esp_log_timestamp) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (efuse_hal_chip_revision) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) -esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init) -esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_unmap_all) -esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (cache_hal_init) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (__udivdi3) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) (__clz_tab) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) (_impure_data) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) -/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) - -Discarded input sections - - .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .note.GNU-stack - 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .riscv.attributes - 0x00000000 0x44 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj - .text 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .text 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .data 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .bss 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .text.__getreent - 0x00000000 0xa esp-idf/main/libmain.a(bootloader_start.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_get_partition_description - 0x00000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_atexit - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_hex_to_str - 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_flash_contents - 0x00000000 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image_no_verify - 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_metadata - 0x00000000 0xbe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader_data - 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader - 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_flash_size - 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_write_protect_crypt_cnt - 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_get_flash_encryption_mode - 0x00000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_set_release_mode.str1.4 - 0x00000000 0xb6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_set_release_mode - 0x00000000 0x124 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 - 0x00000000 0x3c7 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_cfg_verify_release_mode - 0x00000000 0x334 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_range - 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_spi_flash_reset - 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.7 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.8 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text.bootloader_flash_update_size - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.1 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .iram1.3 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SYS_DATA_PART2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_OCODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR_HI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_THRES_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIG_DBIAS_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_V_DIG_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_V_RTC_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_K_DIG_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_K_RTC_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR_LO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D7 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D6 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_DQS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_WP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_HD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_Q - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CLK - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data.ESP_EFUSE_MAC - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ERR_RST_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OCODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_THRES_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_K_DIG_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_K_RTC_LDO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ERR_RST_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SYS_DATA_PART2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA_MAC_CUSTOM - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OCODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR_HI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.THRES_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIG_DBIAS_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_DIG_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_RTC_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_DIG_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_RTC_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR_LO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D7 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D6 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_DQS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_WP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_HD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_Q - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CLK - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ERR_RST_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CUSTOM_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_USR_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OCODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR_HI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_THRES_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIG_DBIAS_HVT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_V_DIG_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_V_RTC_DBIAS20 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_K_DIG_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_K_RTC_LDO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR_LO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D7 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D6 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_DQS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_WP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_HD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_CS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_D - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_Q - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_PAD_CONFIG_CLK - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ERR_RST_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x00000000 0x24cd esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x00000000 0x215 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_str 0x00000000 0x26c6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_get_pkg_ver - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_set_rom_log_scheme - 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_disable_rom_download_mode - 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_enable_rom_secure_download_mode - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x00000000 0x18f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x00000000 0x486 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x00000000 0x5fe esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_blob - 0x00000000 0x6e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_read_field_bit.str1.4 - 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_bit - 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_cnt - 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_blob - 0x00000000 0x74 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_write_field_cnt.str1.4 - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_cnt - 0x00000000 0xae esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_bit - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_get_field_size - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_reg - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_block - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_reg - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_block - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_begin.str1.4 - 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_begin - 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_cancel.str1.4 - 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_cancel - 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_commit.str1.4 - 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_commit - 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_check_errors - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_destroy_block.str1.4 - 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_destroy_block - 0x00000000 0x13c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.0 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.1 - 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.2 - 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_batch_writing_mode - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00000000 0x11bf esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x00000000 0x3cb esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x00000000 0xab2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_aranges - 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x00000000 0x11ab esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_str 0x00000000 0x915 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x00000000 0x220 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.write_reg.str1.4 - 0x00000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.write_reg - 0x00000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_process.str1.4 - 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_process - 0x00000000 0x174 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_reset - 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_efuses - 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_erase_virt_blocks - 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_update_virt_blocks.str1.4 - 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_update_virt_blocks - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 - 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_single_block - 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_pending - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 - 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_blocks - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_number_of_items - 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_read_reg - 0x00000000 0x68 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_fill_buff - 0x00000000 0xde esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_count_once - 0x00000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_write_cnt.str1.4 - 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_cnt - 0x00000000 0xd4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_write_reg.str1.4 - 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_reg - 0x00000000 0x64 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_blob - 0x00000000 0x92 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_get_read_register_address.str1.4 - 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_read_register_address - 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_is_correct_written_data.str1.4 - 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_is_correct_written_data - 0x00000000 0xd6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.0 - 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.1 - 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.2 - 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.3 - 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.4 - 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .sbss.s_burn_counter - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000 0x1392 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00000000 0x42e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000 0x1331 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000 0x2d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x00000000 0x17da esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x00000000 0xa73 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000000 0x2bc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_block_is_empty - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect - 0x00000000 0x6a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_read_protect - 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_coding_scheme - 0x00000000 0x6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_purpose_field - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_key_dis_read.str1.4 - 0x00000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read - 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_read - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_write - 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_purpose - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_purpose - 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_keypurpose_dis_write - 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_keypurpose_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_purpose - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_key_block_unused - 0x00000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_unused_key_block - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_count_unused_key_blocks - 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_key.str1.4 - 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_key - 0x00000000 0x114 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_keys.str1.4 - 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_keys - 0x00000000 0x156 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_digest_revoke.str1.4 - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_digest_revoke - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_write_protect_of_digest_revoke - 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect_of_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_secure_boot_read_key_digests.str1.4 - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_secure_boot_read_key_digests - 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.0 - 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.1 - 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.2 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.3 - 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.4 - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.5 - 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_revoke_table - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_table - 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_info 0x00000000 0x15b3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_abbrev 0x00000000 0x3b8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_loc 0x00000000 0xdf1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_aranges - 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_ranges 0x00000000 0x210 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_line 0x00000000 0x1497 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_str 0x00000000 0x1068 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_frame 0x00000000 0x324 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_clear_program_registers - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_check_errors.str1.4 - 0x00000000 0x79 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_check_errors - 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_burn_chip_opt.str1.4 - 0x00000000 0x1a8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip_opt - 0x00000000 0x2ba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip - 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 - 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_apply_new_coding_scheme - 0x00000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_write_addr_blocks - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss.write_mass_blocks - 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_read_addr_blocks - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000 0x3e8a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00000000 0x37c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000 0x423 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000 0x188 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x00000000 0xc86 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x00000000 0x2bfd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000000 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_add_consumer - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_remove_consumer - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable_external - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_bootstrap - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enabled - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_enabled - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8md256_enabled - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_set_to_default_config - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_xtal - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config_fast - 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_enable - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_disable - 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_8m_enabled - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .text.esp_rom_output_to_channels - 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .text.esp_rom_install_channel_putc - 0x00000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .sbss._putc2 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_mac - 0x00000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_set_timing - 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_read - 0x00000000 0x4c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_clear_program_registers - 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_program - 0x00000000 0x6a esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_rs_calculate - 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_is_coding_error_in_block - 0x00000000 0x6e esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_deinit - 0x00000000 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_disable - 0x00000000 0x20 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_handle_intr - 0x00000000 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_feed - 0x00000000 0x1c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text.wdt_hal_is_enabled - 0x00000000 0x12 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_pages_to_bytes - 0x00000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_bytes_to_pages - 0x00000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_paddr_to_vaddr - 0x00000000 0x64 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_unmap_region - 0x00000000 0x62 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_vaddr_to_paddr - 0x00000000 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_suspend - 0x00000000 0x1a esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_resume - 0x00000000 0x24 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_is_cache_enabled - 0x00000000 0xa esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_vaddr_to_cache_level_id - 0x00000000 0x4c esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_invalidate_addr - 0x00000000 0x54 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_get_cache_line_size - 0x00000000 0x22 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_info 0x00000000 0x1b6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_abbrev 0x00000000 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_loclists - 0x00000000 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_line 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_str 0x00000000 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - .text 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_info 0x00000000 0x1b6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_abbrev 0x00000000 0x10c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_loclists - 0x00000000 0x6b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_line 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_str 0x00000000 0x1e3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - .text 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_info 0x00000000 0xe6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_abbrev 0x00000000 0x65 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_loclists - 0x00000000 0xd6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line 0x00000000 0xe9 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_str 0x00000000 0x1aa /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .text 0x00000000 0x35a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_info 0x00000000 0x776 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_abbrev 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_loclists - 0x00000000 0x6ad /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_rnglists - 0x00000000 0x8f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line 0x00000000 0x97b /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_str 0x00000000 0x259 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .eh_frame 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .rodata 0x00000000 0x100 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_info 0x00000000 0xed /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_abbrev 0x00000000 0x70 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_aranges - 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line 0x00000000 0x3f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_str 0x00000000 0x1a6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line_str - 0x00000000 0x1b0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - .text 0x00000000 0x48 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_info 0x00000000 0x10f /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_abbrev 0x00000000 0x8a /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_loclists - 0x00000000 0x130 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_line 0x00000000 0x157 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_str 0x00000000 0x112 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_line_str - 0x00000000 0x271 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - .text 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .data 0x00000000 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .sdata 0x00000000 0x4 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_info 0x00000000 0x84c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_abbrev 0x00000000 0x174 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_aranges - 0x00000000 0x18 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_line 0x00000000 0x51 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_str 0x00000000 0x4e2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .debug_line_str - 0x00000000 0x279 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - .text 0x00000000 0xa8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_line 0x00000000 0x18e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_line_str - 0x00000000 0xdb /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_info 0x00000000 0x33 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_abbrev 0x00000000 0x28 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .debug_str 0x00000000 0xf0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .riscv.attributes - 0x00000000 0x42 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - .text 0x00000000 0xe8 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .data 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .bss 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_info 0x00000000 0x256 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_abbrev 0x00000000 0x107 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_loclists - 0x00000000 0x1d6 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_aranges - 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_line 0x00000000 0x31c /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_str 0x00000000 0x133 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_line_str - 0x00000000 0x33e /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .comment 0x00000000 0x30 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .note.GNU-stack - 0x00000000 0x0 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .debug_frame 0x00000000 0x20 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - .riscv.attributes - 0x00000000 0x44 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - -Memory Configuration - -Name Origin Length Attributes -iram_seg 0x403cc710 0x00002000 xrw -iram_loader_seg 0x403ce710 0x00007000 xrw -dram_seg 0x3fcd5710 0x00005000 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - - 0x00000000 IDF_TARGET_ESP32C3 = 0x0 -LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/main/libmain.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libnosys.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -START GROUP -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a -LOAD /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libnosys.a -END GROUP - [!provide] PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) - [!provide] PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) - [!provide] PROVIDE (esprv_int_enable = esprv_intc_int_enable) - [!provide] PROVIDE (esprv_int_disable = esprv_intc_int_disable) - [!provide] PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) - 0x40000018 rtc_get_reset_reason = 0x40000018 - 0x4000001c analog_super_wdt_reset_happened = 0x4000001c - 0x40000020 jtag_cpu_reset_happened = 0x40000020 - 0x40000024 rtc_get_wakeup_cause = 0x40000024 - 0x40000028 rtc_boot_control = 0x40000028 - 0x4000002c rtc_select_apb_bridge = 0x4000002c - 0x40000030 rtc_unhold_all_pads = 0x40000030 - 0x40000034 set_rtc_memory_crc = 0x40000034 - 0x40000038 cacl_rtc_memory_crc = 0x40000038 - 0x4000003c ets_is_print_boot = 0x4000003c - 0x40000040 ets_printf = 0x40000040 - 0x40000044 ets_install_putc1 = 0x40000044 - 0x40000048 ets_install_uart_printf = 0x40000048 - 0x4000004c ets_install_putc2 = 0x4000004c - 0x40000050 PROVIDE (ets_delay_us = 0x40000050) - 0x40000054 ets_get_stack_info = 0x40000054 - 0x40000058 ets_install_lock = 0x40000058 - 0x4000005c ets_backup_dma_copy = 0x4000005c - 0x40000060 ets_apb_backup_init_lock_func = 0x40000060 - 0x40000064 UartRxString = 0x40000064 - 0x40000068 uart_tx_one_char = 0x40000068 - 0x4000006c uart_tx_one_char2 = 0x4000006c - 0x40000070 uart_rx_one_char = 0x40000070 - 0x40000074 uart_rx_one_char_block = 0x40000074 - 0x40000078 uart_rx_readbuff = 0x40000078 - 0x4000007c uartAttach = 0x4000007c - 0x40000080 uart_tx_flush = 0x40000080 - 0x40000084 uart_tx_wait_idle = 0x40000084 - 0x40000088 uart_div_modify = 0x40000088 - 0x4000008c multofup = 0x4000008c - 0x40000090 software_reset = 0x40000090 - 0x40000094 software_reset_cpu = 0x40000094 - 0x40000098 assist_debug_clock_enable = 0x40000098 - 0x4000009c assist_debug_record_enable = 0x4000009c - 0x400000a0 clear_super_wdt_reset_flag = 0x400000a0 - 0x400000a4 disable_default_watchdog = 0x400000a4 - 0x400000a8 send_packet = 0x400000a8 - 0x400000ac recv_packet = 0x400000ac - 0x400000b0 GetUartDevice = 0x400000b0 - 0x400000b4 UartDwnLdProc = 0x400000b4 - 0x400000b8 Uart_Init = 0x400000b8 - 0x400000bc ets_set_user_start = 0x400000bc - 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc - 0x3fcdfffc ets_ops_table_ptr = 0x3fcdfffc - 0x400000c0 mz_adler32 = 0x400000c0 - 0x400000c4 mz_crc32 = 0x400000c4 - 0x400000c8 mz_free = 0x400000c8 - 0x400000cc tdefl_compress = 0x400000cc - 0x400000d0 tdefl_compress_buffer = 0x400000d0 - 0x400000d4 tdefl_compress_mem_to_heap = 0x400000d4 - 0x400000d8 tdefl_compress_mem_to_mem = 0x400000d8 - 0x400000dc tdefl_compress_mem_to_output = 0x400000dc - 0x400000e0 tdefl_get_adler32 = 0x400000e0 - 0x400000e4 tdefl_get_prev_return_status = 0x400000e4 - 0x400000e8 tdefl_init = 0x400000e8 - 0x400000ec tdefl_write_image_to_png_file_in_memory = 0x400000ec - 0x400000f0 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f0 - 0x400000f4 tinfl_decompress = 0x400000f4 - 0x400000f8 tinfl_decompress_mem_to_callback = 0x400000f8 - 0x400000fc tinfl_decompress_mem_to_heap = 0x400000fc - 0x40000100 tinfl_decompress_mem_to_mem = 0x40000100 - [!provide] PROVIDE (jd_prepare = 0x40000104) - [!provide] PROVIDE (jd_decomp = 0x40000108) - 0x4000010c PROVIDE (esp_rom_spiflash_wait_idle = 0x4000010c) - 0x40000110 PROVIDE (esp_rom_spiflash_write_encrypted = 0x40000110) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000114) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000118) - [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x4000011c) - [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x40000120) - 0x40000124 PROVIDE (esp_rom_spiflash_erase_block = 0x40000124) - 0x40000128 PROVIDE (esp_rom_spiflash_erase_sector = 0x40000128) - 0x4000012c PROVIDE (esp_rom_spiflash_write = 0x4000012c) - 0x40000130 PROVIDE (esp_rom_spiflash_read = 0x40000130) - 0x40000134 PROVIDE (esp_rom_spiflash_config_param = 0x40000134) - [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000138) - [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x4000013c) - [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000140) - [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000144) - [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000148) - [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x4000014c) - 0x40000150 PROVIDE (esp_rom_spiflash_config_clk = 0x40000150) - [!provide] PROVIDE (esp_rom_spiflash_config_readmode = 0x40000154) - [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000158) - [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x4000015c) - [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000160) - [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40000164) - [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000168) - [!provide] PROVIDE (spi_flash_guard_set = 0x4000016c) - [!provide] PROVIDE (spi_flash_guard_get = 0x40000170) - [!provide] PROVIDE (spi_flash_write_config_set = 0x40000174) - [!provide] PROVIDE (spi_flash_write_config_get = 0x40000178) - [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x4000017c) - [!provide] PROVIDE (spi_flash_unlock = 0x40000180) - [!provide] PROVIDE (spi_flash_erase_range = 0x40000184) - [!provide] PROVIDE (spi_flash_erase_sector = 0x40000188) - [!provide] PROVIDE (spi_flash_write = 0x4000018c) - [!provide] PROVIDE (spi_flash_read = 0x40000190) - [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000194) - [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000198) - [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x4000019c) - [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x400001a0) - [!provide] PROVIDE (spi_flash_mmap = 0x400001a4) - [!provide] PROVIDE (spi_flash_mmap_pages = 0x400001a8) - [!provide] PROVIDE (spi_flash_munmap = 0x400001ac) - [!provide] PROVIDE (spi_flash_mmap_dump = 0x400001b0) - [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x400001b4) - [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x400001b8) - [!provide] PROVIDE (spi_flash_cache2phys = 0x400001bc) - [!provide] PROVIDE (spi_flash_phys2cache = 0x400001c0) - [!provide] PROVIDE (spi_flash_disable_cache = 0x400001c4) - [!provide] PROVIDE (spi_flash_restore_cache = 0x400001c8) - [!provide] PROVIDE (spi_flash_cache_enabled = 0x400001cc) - [!provide] PROVIDE (spi_flash_enable_cache = 0x400001d0) - [!provide] PROVIDE (spi_cache_mode_switch = 0x400001d4) - [!provide] PROVIDE (spi_common_set_dummy_output = 0x400001d8) - [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x400001dc) - [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x400001e0) - [!provide] PROVIDE (SPIEraseArea = 0x400001e4) - [!provide] PROVIDE (SPILock = 0x400001e8) - [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x400001ec) - [!provide] PROVIDE (SPI_Common_Command = 0x400001f0) - [!provide] PROVIDE (SPI_WakeUp = 0x400001f4) - [!provide] PROVIDE (SPI_block_erase = 0x400001f8) - [!provide] PROVIDE (SPI_chip_erase = 0x400001fc) - [!provide] PROVIDE (SPI_init = 0x40000200) - [!provide] PROVIDE (SPI_page_program = 0x40000204) - [!provide] PROVIDE (SPI_read_data = 0x40000208) - [!provide] PROVIDE (SPI_sector_erase = 0x4000020c) - [!provide] PROVIDE (SPI_write_enable = 0x40000210) - [!provide] PROVIDE (SelectSpiFunction = 0x40000214) - [!provide] PROVIDE (SetSpiDrvs = 0x40000218) - [!provide] PROVIDE (Wait_SPI_Idle = 0x4000021c) - [!provide] PROVIDE (spi_dummy_len_fix = 0x40000220) - [!provide] PROVIDE (Disable_QMode = 0x40000224) - [!provide] PROVIDE (Enable_QMode = 0x40000228) - [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fcdfff4) - 0x3fcdfff0 PROVIDE (rom_spiflash_legacy_data = 0x3fcdfff0) - [!provide] PROVIDE (g_flash_guard_ops = 0x3fcdfff8) - [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x4000022c) - [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000230) - [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000234) - [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000238) - [!provide] PROVIDE (spi_flash_hal_read = 0x4000023c) - [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000240) - [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000244) - [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000248) - [!provide] PROVIDE (spi_flash_hal_program_page = 0x4000024c) - [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000250) - [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000254) - [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000258) - [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x4000025c) - [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000260) - [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000264) - [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000268) - [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x4000026c) - [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000270) - [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000274) - [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000278) - [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x4000027c) - [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000280) - [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000284) - [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000288) - [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x4000028c) - [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000290) - [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000294) - [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000298) - [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x4000029c) - [!provide] PROVIDE (spi_flash_chip_generic_read = 0x400002a0) - [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x400002a4) - [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x400002a8) - [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x400002ac) - [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x400002b0) - [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x400002b4) - [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x400002b8) - [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x400002bc) - [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x400002c0) - [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x400002c4) - [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x400002c8) - [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fcdffec) - [!provide] PROVIDE (memspi_host_read_id_hs = 0x400002cc) - [!provide] PROVIDE (memspi_host_read_status_hs = 0x400002d0) - [!provide] PROVIDE (memspi_host_flush_cache = 0x400002d4) - [!provide] PROVIDE (memspi_host_erase_chip = 0x400002d8) - [!provide] PROVIDE (memspi_host_erase_sector = 0x400002dc) - [!provide] PROVIDE (memspi_host_erase_block = 0x400002e0) - [!provide] PROVIDE (memspi_host_program_page = 0x400002e4) - [!provide] PROVIDE (memspi_host_read = 0x400002e8) - [!provide] PROVIDE (memspi_host_set_write_protect = 0x400002ec) - [!provide] PROVIDE (memspi_host_set_max_read_len = 0x400002f0) - [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400002f4) - [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400002f8) - [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400002fc) - [!provide] PROVIDE (esp_flash_read_id = 0x40000300) - [!provide] PROVIDE (esp_flash_get_size = 0x40000304) - [!provide] PROVIDE (esp_flash_erase_chip = 0x40000308) - [!provide] PROVIDE (rom_esp_flash_erase_region = 0x4000030c) - [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x40000310) - [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40000314) - [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40000318) - [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000031c) - [!provide] PROVIDE (esp_flash_set_protected_region = 0x40000320) - [!provide] PROVIDE (esp_flash_read = 0x40000324) - [!provide] PROVIDE (esp_flash_write = 0x40000328) - [!provide] PROVIDE (esp_flash_write_encrypted = 0x4000032c) - [!provide] PROVIDE (esp_flash_read_encrypted = 0x40000330) - [!provide] PROVIDE (esp_flash_get_io_mode = 0x40000334) - [!provide] PROVIDE (esp_flash_set_io_mode = 0x40000338) - [!provide] PROVIDE (spi_flash_boot_attach = 0x4000033c) - [!provide] PROVIDE (spi_flash_dump_counters = 0x40000340) - [!provide] PROVIDE (spi_flash_get_counters = 0x40000344) - [!provide] PROVIDE (spi_flash_op_counters_config = 0x40000348) - [!provide] PROVIDE (spi_flash_reset_counters = 0x4000034c) - [!provide] PROVIDE (esp_flash_default_chip = 0x3fcdffe8) - [!provide] PROVIDE (esp_flash_api_funcs = 0x3fcdffe4) - 0x400004b0 PROVIDE (Cache_Get_ICache_Line_Size = 0x400004b0) - [!provide] PROVIDE (Cache_Get_Mode = 0x400004b4) - [!provide] PROVIDE (Cache_Address_Through_IBus = 0x400004b8) - [!provide] PROVIDE (Cache_Address_Through_DBus = 0x400004bc) - [!provide] PROVIDE (Cache_Set_Default_Mode = 0x400004c0) - [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x400004c4) - 0x400004c8 PROVIDE (ROM_Boot_Cache_Init = 0x400004c8) - [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x400004cc) - [!provide] PROVIDE (Cache_Op_Addr = 0x400004d0) - 0x400004d4 PROVIDE (Cache_Invalidate_Addr = 0x400004d4) - [!provide] PROVIDE (Cache_Invalidate_ICache_All = 0x400004d8) - [!provide] PROVIDE (Cache_Mask_All = 0x400004dc) - [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x400004e0) - [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x400004e4) - [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x400004e8) - [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x400004ec) - [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x400004f0) - [!provide] PROVIDE (Cache_End_ICache_Preload = 0x400004f4) - [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x400004f8) - [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400004fc) - [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x40000500) - [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x40000504) - [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40000508) - [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000050c) - [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40000510) - [!provide] PROVIDE (Cache_Lock_Addr = 0x40000514) - [!provide] PROVIDE (Cache_Unlock_Addr = 0x40000518) - 0x4000051c PROVIDE (Cache_Disable_ICache = 0x4000051c) - 0x40000520 PROVIDE (Cache_Enable_ICache = 0x40000520) - 0x40000524 PROVIDE (Cache_Suspend_ICache = 0x40000524) - 0x40000528 PROVIDE (Cache_Resume_ICache = 0x40000528) - [!provide] PROVIDE (Cache_Freeze_ICache_Enable = 0x4000052c) - [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x40000530) - [!provide] PROVIDE (Cache_Pms_Lock = 0x40000534) - [!provide] PROVIDE (Cache_Ibus_Pms_Set_Addr = 0x40000538) - [!provide] PROVIDE (Cache_Ibus_Pms_Set_Attr = 0x4000053c) - [!provide] PROVIDE (Cache_Dbus_Pms_Set_Addr = 0x40000540) - [!provide] PROVIDE (Cache_Dbus_Pms_Set_Attr = 0x40000544) - [!provide] PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40000548) - [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000054c) - [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40000550) - [!provide] PROVIDE (Cache_Owner_Init = 0x40000554) - [!provide] PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40000558) - [!provide] PROVIDE (Cache_MMU_Init = 0x4000055c) - [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x40000560) - [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x40000564) - [!provide] PROVIDE (Cache_Count_Flash_Pages = 0x40000568) - [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x4000056c) - [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x40000570) - [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x40000574) - [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40000578) - [!provide] PROVIDE (Cache_Get_Memory_value = 0x4000057c) - [!provide] PROVIDE (rom_cache_op_cb = 0x3fcdffd8) - [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fcdffd4) - 0x40000580 ets_get_apb_freq = 0x40000580 - 0x40000584 ets_get_cpu_frequency = 0x40000584 - 0x40000588 ets_update_cpu_frequency = 0x40000588 - 0x4000058c ets_get_printf_channel = 0x4000058c - 0x40000590 ets_get_xtal_div = 0x40000590 - 0x40000594 ets_set_xtal_div = 0x40000594 - 0x40000598 ets_get_xtal_freq = 0x40000598 - 0x4000059c gpio_input_get = 0x4000059c - 0x400005a0 gpio_matrix_in = 0x400005a0 - 0x400005a4 gpio_matrix_out = 0x400005a4 - 0x400005b0 gpio_output_set = 0x400005b0 - 0x400005b4 gpio_pad_hold = 0x400005b4 - 0x400005b8 gpio_pad_input_disable = 0x400005b8 - 0x400005bc gpio_pad_input_enable = 0x400005bc - 0x400005c0 gpio_pad_pulldown = 0x400005c0 - 0x400005c4 gpio_pad_pullup = 0x400005c4 - 0x400005c8 gpio_pad_select_gpio = 0x400005c8 - 0x400005cc gpio_pad_set_drv = 0x400005cc - 0x400005d0 gpio_pad_unhold = 0x400005d0 - 0x400005d4 gpio_pin_wakeup_disable = 0x400005d4 - 0x400005d8 gpio_pin_wakeup_enable = 0x400005d8 - 0x400005dc gpio_bypass_matrix_in = 0x400005dc - 0x400005e0 esprv_intc_int_set_priority = 0x400005e0 - 0x400005e4 esprv_intc_int_set_threshold = 0x400005e4 - 0x400005e8 esprv_intc_int_enable = 0x400005e8 - 0x400005ec esprv_intc_int_disable = 0x400005ec - 0x400005f0 esprv_intc_int_set_type = 0x400005f0 - 0x400005f4 intr_matrix_set = 0x400005f4 - 0x400005f8 ets_intr_lock = 0x400005f8 - 0x400005fc ets_intr_unlock = 0x400005fc - [!provide] PROVIDE (intr_handler_set = 0x40000600) - 0x40000604 ets_isr_attach = 0x40000604 - 0x40000608 ets_isr_mask = 0x40000608 - 0x4000060c ets_isr_unmask = 0x4000060c - 0x40000610 md5_vector = 0x40000610 - 0x40000614 MD5Init = 0x40000614 - 0x40000618 MD5Update = 0x40000618 - 0x4000061c MD5Final = 0x4000061c - 0x40000620 hmac_md5_vector = 0x40000620 - 0x40000624 hmac_md5 = 0x40000624 - 0x40000628 crc32_le = 0x40000628 - 0x4000062c crc32_be = 0x4000062c - 0x40000630 crc16_le = 0x40000630 - 0x40000634 crc16_be = 0x40000634 - 0x40000638 crc8_le = 0x40000638 - 0x4000063c crc8_be = 0x4000063c - 0x40000640 esp_crc8 = 0x40000640 - 0x40000644 ets_sha_enable = 0x40000644 - 0x40000648 ets_sha_disable = 0x40000648 - 0x4000064c ets_sha_get_state = 0x4000064c - 0x40000650 ets_sha_init = 0x40000650 - 0x40000654 ets_sha_process = 0x40000654 - 0x40000658 ets_sha_starts = 0x40000658 - 0x4000065c ets_sha_update = 0x4000065c - 0x40000660 ets_sha_finish = 0x40000660 - 0x40000664 ets_sha_clone = 0x40000664 - 0x40000668 ets_hmac_enable = 0x40000668 - 0x4000066c ets_hmac_disable = 0x4000066c - 0x40000670 ets_hmac_calculate_message = 0x40000670 - 0x40000674 ets_hmac_calculate_downstream = 0x40000674 - 0x40000678 ets_hmac_invalidate_downstream = 0x40000678 - 0x4000067c ets_jtag_enable_temporarily = 0x4000067c - 0x40000680 ets_aes_enable = 0x40000680 - 0x40000684 ets_aes_disable = 0x40000684 - 0x40000688 ets_aes_setkey = 0x40000688 - 0x4000068c ets_aes_block = 0x4000068c - 0x40000690 ets_bigint_enable = 0x40000690 - 0x40000694 ets_bigint_disable = 0x40000694 - 0x40000698 ets_bigint_multiply = 0x40000698 - 0x4000069c ets_bigint_modmult = 0x4000069c - 0x400006a0 ets_bigint_modexp = 0x400006a0 - 0x400006a4 ets_bigint_wait_finish = 0x400006a4 - 0x400006a8 ets_bigint_getz = 0x400006a8 - 0x400006ac ets_ds_enable = 0x400006ac - 0x400006b0 ets_ds_disable = 0x400006b0 - 0x400006b4 ets_ds_start_sign = 0x400006b4 - 0x400006b8 ets_ds_is_busy = 0x400006b8 - 0x400006bc ets_ds_finish_sign = 0x400006bc - 0x400006c0 ets_ds_encrypt_params = 0x400006c0 - 0x400006c4 ets_aes_setkey_dec = 0x400006c4 - 0x400006c8 ets_aes_setkey_enc = 0x400006c8 - 0x400006cc ets_mgf1_sha256 = 0x400006cc - 0x400006d0 ets_efuse_read = 0x400006d0 - 0x400006d4 ets_efuse_program = 0x400006d4 - 0x400006d8 ets_efuse_clear_program_registers = 0x400006d8 - 0x400006dc ets_efuse_write_key = 0x400006dc - 0x400006e0 ets_efuse_get_read_register_address = 0x400006e0 - 0x400006e4 ets_efuse_get_key_purpose = 0x400006e4 - 0x400006e8 ets_efuse_key_block_unused = 0x400006e8 - 0x400006ec ets_efuse_find_unused_key_block = 0x400006ec - 0x400006f0 ets_efuse_rs_calculate = 0x400006f0 - 0x400006f4 ets_efuse_count_unused_key_blocks = 0x400006f4 - 0x400006f8 ets_efuse_secure_boot_enabled = 0x400006f8 - 0x400006fc ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400006fc - 0x40000700 ets_efuse_cache_encryption_enabled = 0x40000700 - 0x40000704 ets_efuse_download_modes_disabled = 0x40000704 - 0x40000708 ets_efuse_find_purpose = 0x40000708 - 0x4000070c ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x4000070c - 0x40000710 ets_efuse_force_send_resume = 0x40000710 - 0x40000714 ets_efuse_get_flash_delay_us = 0x40000714 - 0x40000718 ets_efuse_get_mac = 0x40000718 - 0x4000071c ets_efuse_get_spiconfig = 0x4000071c - 0x40000720 ets_efuse_usb_print_is_disabled = 0x40000720 - 0x40000724 ets_efuse_usb_serial_jtag_print_is_disabled = 0x40000724 - 0x40000728 ets_efuse_get_uart_print_control = 0x40000728 - 0x4000072c ets_efuse_get_wp_pad = 0x4000072c - 0x40000730 ets_efuse_legacy_spi_boot_mode_disabled = 0x40000730 - 0x40000734 ets_efuse_security_download_modes_enabled = 0x40000734 - 0x40000738 ets_efuse_set_timing = 0x40000738 - 0x4000073c ets_efuse_jtag_disabled = 0x4000073c - 0x40000740 ets_efuse_usb_download_mode_disabled = 0x40000740 - 0x40000744 ets_efuse_usb_module_disabled = 0x40000744 - 0x40000748 ets_efuse_usb_device_disabled = 0x40000748 - 0x4000074c ets_emsa_pss_verify = 0x4000074c - 0x40000750 ets_rsa_pss_verify = 0x40000750 - 0x40000754 ets_secure_boot_verify_bootloader_with_keys = 0x40000754 - 0x40000758 ets_secure_boot_verify_signature = 0x40000758 - 0x4000075c ets_secure_boot_read_key_digests = 0x4000075c - 0x40000760 ets_secure_boot_revoke_public_key_digest = 0x40000760 - [!provide] PROVIDE (usb_uart_rx_one_char = 0x400008cc) - [!provide] PROVIDE (usb_uart_rx_one_char_block = 0x400008d0) - [!provide] PROVIDE (usb_uart_tx_flush = 0x400008d4) - [!provide] PROVIDE (usb_uart_tx_one_char = 0x400008d8) - 0x3fcdffd1 PROVIDE (g_uart_print = 0x3fcdffd1) - 0x3fcdffd0 PROVIDE (g_usb_print = 0x3fcdffd0) - 0x3fcdffcc bt_rf_coex_cfg_p = 0x3fcdffcc - 0x3fcdffc8 bt_rf_coex_hooks_p = 0x3fcdffc8 - 0x3fcdffc4 btdm_env_p = 0x3fcdffc4 - 0x3fcdffc0 g_rw_controller_task_handle = 0x3fcdffc0 - 0x3fcdffbc g_rw_init_sem = 0x3fcdffbc - 0x3fcdffb8 g_rw_schd_queue = 0x3fcdffb8 - 0x3fcdffb4 lld_init_env = 0x3fcdffb4 - 0x3fcdffb0 lld_rpa_renew_env = 0x3fcdffb0 - 0x3fcdffac lld_scan_env = 0x3fcdffac - 0x3fcdffa8 lld_scan_sync_env = 0x3fcdffa8 - 0x3fcdffa4 lld_test_env = 0x3fcdffa4 - 0x3fcdffa0 p_ble_util_buf_env = 0x3fcdffa0 - 0x3fcdff9c p_lld_env = 0x3fcdff9c - 0x3fcdff98 p_llm_env = 0x3fcdff98 - 0x3fcdff94 r_h4tl_eif_p = 0x3fcdff94 - 0x3fcdff90 r_hli_funcs_p = 0x3fcdff90 - 0x3fcdff8c r_ip_funcs_p = 0x3fcdff8c - 0x3fcdff88 r_modules_funcs_p = 0x3fcdff88 - 0x3fcdff84 r_osi_funcs_p = 0x3fcdff84 - 0x3fcdff80 r_plf_funcs_p = 0x3fcdff80 - 0x3fcdff7c vhci_env_p = 0x3fcdff7c - 0x3fcdff78 aa_gen = 0x3fcdff78 - 0x3fcdff6c aes_env = 0x3fcdff6c - 0x3fcdff1c bt_rf_coex_cfg_cb = 0x3fcdff1c - 0x3fcdff18 btdm_pwr_state = 0x3fcdff18 - 0x3fcdff14 btdm_slp_err = 0x3fcdff14 - 0x3fcdff0c ecc_env = 0x3fcdff0c - 0x3fcdff04 esp_handler = 0x3fcdff04 - 0x3fcdfefc esp_vendor_cmd = 0x3fcdfefc - 0x3fcdfef8 g_adv_delay_dis = 0x3fcdfef8 - 0x3fcdfef4 g_conflict_elt = 0x3fcdfef4 - 0x3fcdfee4 g_eif_api = 0x3fcdfee4 - 0x3fcdfed8 g_event_empty = 0x3fcdfed8 - 0x3fcdfecc g_llc_state = 0x3fcdfecc - 0x3fcdfec8 g_llm_state = 0x3fcdfec8 - 0x3fcdfec4 g_max_evt_env = 0x3fcdfec4 - 0x3fcdfec0 g_misc_state = 0x3fcdfec0 - 0x3fcdfea4 g_rma_rule_db = 0x3fcdfea4 - 0x3fcdfe88 g_rtp_rule_db = 0x3fcdfe88 - 0x3fcdfe85 g_scan_forever = 0x3fcdfe85 - 0x3fcdfe84 g_time_msb = 0x3fcdfe84 - 0x3fcdfe5c h4tl_env = 0x3fcdfe5c - 0x3fcdfe38 hci_env = 0x3fcdfe38 - 0x3fcdfe34 hci_ext_host = 0x3fcdfe34 - 0x3fcdfe2c hci_fc_env = 0x3fcdfe2c - 0x3fcdfe00 hci_tl_env = 0x3fcdfe00 - 0x3fcdfdd0 ke_env = 0x3fcdfdd0 - 0x3fcdfd90 ke_event_env = 0x3fcdfd90 - 0x3fcdfd14 ke_task_env = 0x3fcdfd14 - 0x3fcdfcec llc_env = 0x3fcdfcec - 0x3fcdfcc4 lld_adv_env = 0x3fcdfcc4 - 0x3fcdfc9c lld_con_env = 0x3fcdfc9c - 0x3fcdfc94 lld_exp_sync_pos_tab = 0x3fcdfc94 - 0x3fcdfc6c lld_per_adv_env = 0x3fcdfc6c - 0x3fcdfc44 lld_sync_env = 0x3fcdfc44 - 0x3fcdfc38 llm_le_adv_flow_env = 0x3fcdfc38 - 0x3fcdfc34 rw_sleep_enable = 0x3fcdfc34 - 0x3fcdfc2c rwble_env = 0x3fcdfc2c - 0x3fcdfc10 rwip_env = 0x3fcdfc10 - 0x3fcdfc04 rwip_param = 0x3fcdfc04 - 0x3fcdfc00 rwip_prog_delay = 0x3fcdfc00 - 0x3fcdfbc8 rwip_rf = 0x3fcdfbc8 - 0x3fcdfbc0 sch_alarm_env = 0x3fcdfbc0 - 0x3fcdfbac sch_arb_env = 0x3fcdfbac - 0x3fcdfba4 sch_plan_env = 0x3fcdfba4 - 0x3fcdfaa0 sch_prog_env = 0x3fcdfaa0 - 0x3fcdfa40 sch_slice_env = 0x3fcdfa40 - 0x3fcdfa38 sch_slice_params = 0x3fcdfa38 - 0x3fcdfa30 timer_env = 0x3fcdfa30 - 0x3fcdfa2c unloaded_area = 0x3fcdfa2c - 0x3fcdfa28 vshci_state = 0x3fcdfa28 - 0x3fcdfa1c TASK_DESC_LLC = 0x3fcdfa1c - 0x3fcdfa10 TASK_DESC_LLM = 0x3fcdfa10 - 0x3fcdfa04 TASK_DESC_VSHCI = 0x3fcdfa04 - 0x3fcdf9fc co_default_bdaddr = 0x3fcdf9fc - 0x3fcdf9f8 dbg_assert_block = 0x3fcdf9f8 - 0x3fcdf9f4 g_bt_plf_log_level = 0x3fcdf9f4 - 0x3fcdf9d0 hci_cmd_desc_tab_vs_esp = 0x3fcdf9d0 - 0x3fcdf9b8 hci_command_handler_tab_esp = 0x3fcdf9b8 - 0x3fcdf9b4 privacy_en = 0x3fcdf9b4 - 0x3fcdf96c sdk_cfg_priv_opts = 0x3fcdf96c - 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc - 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc - 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c - 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c - 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c - 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 - 0x3ff1f79c LLM_AA_CT1 = 0x3ff1f79c - 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 - 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 - 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 - 0x3ff1f768 adv_evt_prop2type = 0x3ff1f768 - 0x3ff1f760 adv_evt_type2prop = 0x3ff1f760 - 0x3ff1f750 aes_cmac_zero = 0x3ff1f750 - 0x3ff1f740 aes_k2_salt = 0x3ff1f740 - 0x3ff1f738 aes_k3_id64 = 0x3ff1f738 - 0x3ff1f728 aes_k3_salt = 0x3ff1f728 - 0x3ff1f724 aes_k4_id6 = 0x3ff1f724 - 0x3ff1f714 aes_k4_salt = 0x3ff1f714 - 0x3ff1f6e8 bigHexP256 = 0x3ff1f6e8 - 0x3ff1f6e0 byte_tx_time = 0x3ff1f6e0 - 0x3ff1f6d8 co_null_bdaddr = 0x3ff1f6d8 - 0x3ff1f6d0 co_phy_mask_to_rate = 0x3ff1f6d0 - 0x3ff1f6c8 co_phy_mask_to_value = 0x3ff1f6c8 - 0x3ff1f6c4 co_phy_to_rate = 0x3ff1f6c4 - 0x3ff1f6c0 co_phy_value_to_mask = 0x3ff1f6c0 - 0x3ff1f6b8 co_rate_to_byte_dur_us = 0x3ff1f6b8 - 0x3ff1f6b0 co_rate_to_phy = 0x3ff1f6b0 - 0x3ff1f6ac co_rate_to_phy_mask = 0x3ff1f6ac - 0x3ff1f69c co_sca2ppm = 0x3ff1f69c - 0x3ff1f670 coef_B = 0x3ff1f670 - 0x3ff1f668 connect_req_dur_tab = 0x3ff1f668 - 0x3ff1f5e4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5e4 - 0x3ff1f518 em_base_reg_lut = 0x3ff1f518 - 0x3ff1f510 fixed_tx_time = 0x3ff1f510 - 0x3ff1f508 h4tl_msgtype2hdrlen = 0x3ff1f508 - 0x3ff1f4d8 hci_cmd_desc_root_tab = 0x3ff1f4d8 - 0x3ff1f46c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f46c - 0x3ff1f43c hci_cmd_desc_tab_info_par = 0x3ff1f43c - 0x3ff1f0a0 hci_cmd_desc_tab_le = 0x3ff1f0a0 - 0x3ff1f088 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f088 - 0x3ff1f07c hci_cmd_desc_tab_stat_par = 0x3ff1f07c - 0x3ff1f040 hci_cmd_desc_tab_vs = 0x3ff1f040 - 0x3ff1eff8 hci_evt_desc_tab = 0x3ff1eff8 - 0x3ff1ef58 hci_evt_le_desc_tab = 0x3ff1ef58 - 0x3ff1ef50 hci_evt_le_desc_tab_esp = 0x3ff1ef50 - 0x3ff1ef48 hci_rsvd_evt_msk = 0x3ff1ef48 - 0x3ff1ef44 lld_aux_phy_to_rate = 0x3ff1ef44 - 0x3ff1ef3c lld_init_max_aux_dur_tab = 0x3ff1ef3c - 0x3ff1ef34 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef34 - 0x3ff1ef2c lld_scan_max_aux_dur_tab = 0x3ff1ef2c - 0x3ff1ef24 lld_sync_max_aux_dur_tab = 0x3ff1ef24 - 0x3ff1ef1c llm_local_le_feats = 0x3ff1ef1c - 0x3ff1ef14 llm_local_le_states = 0x3ff1ef14 - 0x3ff1eeec llm_local_supp_cmds = 0x3ff1eeec - 0x3ff1eecc maxSecretKey_256 = 0x3ff1eecc - 0x3ff1eec4 max_data_tx_time = 0x3ff1eec4 - 0x3ff1eeb4 one_bits = 0x3ff1eeb4 - 0x3ff1eeac rwip_coex_cfg = 0x3ff1eeac - 0x3ff1ee94 rwip_priority = 0x3ff1ee94 - 0x3ff1ee48 veryBigHexP256 = 0x3ff1ee48 - 0x400015b0 esp_pp_rom_version_get = 0x400015b0 - 0x400015b4 RC_GetBlockAckTime = 0x400015b4 - 0x400015b8 ebuf_list_remove = 0x400015b8 - 0x400015c8 GetAccess = 0x400015c8 - 0x400015cc hal_mac_is_low_rate_enabled = 0x400015cc - 0x400015d0 hal_mac_tx_get_blockack = 0x400015d0 - 0x400015d8 ic_get_trc = 0x400015d8 - 0x400015e0 ic_mac_init = 0x400015e0 - 0x400015e4 ic_interface_enabled = 0x400015e4 - 0x400015e8 is_lmac_idle = 0x400015e8 - 0x400015f0 lmacDiscardAgedMSDU = 0x400015f0 - 0x400015fc lmacIsIdle = 0x400015fc - 0x40001600 lmacIsLongFrame = 0x40001600 - 0x40001608 lmacPostTxComplete = 0x40001608 - 0x4000160c lmacProcessAllTxTimeout = 0x4000160c - 0x40001610 lmacProcessCollisions = 0x40001610 - 0x40001614 lmacProcessRxSucData = 0x40001614 - 0x40001618 lmacReachLongLimit = 0x40001618 - 0x4000161c lmacReachShortLimit = 0x4000161c - 0x40001620 lmacRecycleMPDU = 0x40001620 - 0x40001624 lmacRxDone = 0x40001624 - 0x40001634 mac_tx_set_duration = 0x40001634 - 0x4000163c mac_tx_set_plcp0 = 0x4000163c - 0x40001644 mac_tx_set_plcp2 = 0x40001644 - 0x4000164c pm_disable_dream_timer = 0x4000164c - 0x40001650 pm_disable_sleep_delay_timer = 0x40001650 - 0x40001658 pm_mac_wakeup = 0x40001658 - 0x4000165c pm_mac_sleep = 0x4000165c - 0x40001660 pm_enable_active_timer = 0x40001660 - 0x40001664 pm_enable_sleep_delay_timer = 0x40001664 - 0x40001668 pm_local_tsf_process = 0x40001668 - 0x4000166c pm_set_beacon_filter = 0x4000166c - 0x40001670 pm_is_in_wifi_slice_threshold = 0x40001670 - 0x40001674 pm_is_waked = 0x40001674 - 0x40001680 pm_on_data_rx = 0x40001680 - 0x40001684 pm_on_tbtt = 0x40001684 - 0x4000169c pm_sleep_for = 0x4000169c - 0x400016a4 ppAMPDU2Normal = 0x400016a4 - 0x400016ac ppCalFrameTimes = 0x400016ac - 0x400016b0 ppCalSubFrameLength = 0x400016b0 - 0x400016b8 ppCheckTxAMPDUlength = 0x400016b8 - 0x400016bc ppDequeueRxq_Locked = 0x400016bc - 0x400016c0 ppDequeueTxQ = 0x400016c0 - 0x400016c4 ppEmptyDelimiterLength = 0x400016c4 - 0x400016c8 ppEnqueueRxq = 0x400016c8 - 0x400016cc ppEnqueueTxDone = 0x400016cc - 0x400016d0 ppGetTxQFirstAvail_Locked = 0x400016d0 - 0x400016d4 ppGetTxframe = 0x400016d4 - 0x400016e0 ppProcessRxPktHdr = 0x400016e0 - 0x400016e8 ppRecordBarRRC = 0x400016e8 - 0x400016ec lmacRequestTxopQueue = 0x400016ec - 0x400016f0 lmacReleaseTxopQueue = 0x400016f0 - 0x400016f4 ppRecycleAmpdu = 0x400016f4 - 0x400016f8 ppRecycleRxPkt = 0x400016f8 - 0x400016fc ppResortTxAMPDU = 0x400016fc - 0x40001700 ppResumeTxAMPDU = 0x40001700 - 0x4000170c ppRxProtoProc = 0x4000170c - 0x40001710 ppSearchTxQueue = 0x40001710 - 0x40001714 ppSearchTxframe = 0x40001714 - 0x40001718 ppSelectNextQueue = 0x40001718 - 0x4000171c ppSubFromAMPDU = 0x4000171c - 0x40001720 ppTask = 0x40001720 - 0x40001724 ppTxPkt = 0x40001724 - 0x40001728 ppTxProtoProc = 0x40001728 - 0x4000172c ppTxqUpdateBitmap = 0x4000172c - 0x40001734 pp_hdrsize = 0x40001734 - 0x40001738 pp_post = 0x40001738 - 0x4000173c pp_process_hmac_waiting_txq = 0x4000173c - 0x40001740 rcGetAmpduSched = 0x40001740 - 0x40001744 rcUpdateRxDone = 0x40001744 - 0x40001748 rc_get_trc = 0x40001748 - 0x4000174c rc_get_trc_by_index = 0x4000174c - 0x40001750 rcAmpduLowerRate = 0x40001750 - 0x40001754 rcampduuprate = 0x40001754 - 0x40001758 rcClearCurAMPDUSched = 0x40001758 - 0x4000175c rcClearCurSched = 0x4000175c - 0x40001760 rcClearCurStat = 0x40001760 - 0x40001768 rcLowerSched = 0x40001768 - 0x4000176c rcSetTxAmpduLimit = 0x4000176c - 0x40001774 rcUpdateAckSnr = 0x40001774 - 0x40001784 rcUpSched = 0x40001784 - 0x40001788 rssi_margin = 0x40001788 - 0x4000178c rx11NRate2AMPDULimit = 0x4000178c - 0x40001790 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40001790 - 0x40001794 TRC_AMPDU_PER_UP_THRESHOLD = 0x40001794 - 0x40001798 trc_calc_duration = 0x40001798 - 0x4000179c trc_isTxAmpduOperational = 0x4000179c - 0x400017a0 trc_onAmpduOp = 0x400017a0 - 0x400017a4 TRC_PER_IS_GOOD = 0x400017a4 - 0x400017a8 trc_SetTxAmpduState = 0x400017a8 - 0x400017ac trc_tid_isTxAmpduOperational = 0x400017ac - 0x400017b0 trcAmpduSetState = 0x400017b0 - 0x400017bc wDev_DiscardFrame = 0x400017bc - 0x400017c0 wDev_GetNoiseFloor = 0x400017c0 - 0x400017c4 wDev_IndicateAmpdu = 0x400017c4 - 0x400017cc wdev_bank_store = 0x400017cc - 0x400017d0 wdev_bank_load = 0x400017d0 - 0x400017d4 wdev_mac_reg_load = 0x400017d4 - 0x400017d8 wdev_mac_reg_store = 0x400017d8 - 0x400017dc wdev_mac_special_reg_load = 0x400017dc - 0x400017e0 wdev_mac_special_reg_store = 0x400017e0 - 0x400017e4 wdev_mac_wakeup = 0x400017e4 - 0x400017e8 wdev_mac_sleep = 0x400017e8 - 0x400017ec hal_mac_is_dma_enable = 0x400017ec - 0x400017f8 wdevProcessRxSucDataAll = 0x400017f8 - 0x400017fc wdev_csi_len_align = 0x400017fc - 0x40001800 ppDequeueTxDone_Locked = 0x40001800 - 0x4000180c config_is_cache_tx_buf_enabled = 0x4000180c - 0x40001810 //ppMapWaitTxq = 0x40001810 - 0x40001814 ppProcessWaitingQueue = 0x40001814 - 0x40001818 ppDisableQueue = 0x40001818 - 0x4000181c pm_allow_tx = 0x4000181c - 0x3ff1ee44 our_instances_ptr = 0x3ff1ee44 - 0x3fcdf968 pTxRx = 0x3fcdf968 - 0x3fcdf964 lmacConfMib_ptr = 0x3fcdf964 - 0x3fcdf960 our_wait_eb = 0x3fcdf960 - 0x3fcdf95c our_tx_eb = 0x3fcdf95c - 0x3fcdf958 pp_wdev_funcs = 0x3fcdf958 - 0x3fcdf954 g_osi_funcs_p = 0x3fcdf954 - 0x3fcdf950 wDevCtrl_ptr = 0x3fcdf950 - 0x3ff1ee40 g_wdev_last_desc_reset_ptr = 0x3ff1ee40 - 0x3fcdf94c wDevMacSleep_ptr = 0x3fcdf94c - 0x3fcdf948 g_lmac_cnt_ptr = 0x3fcdf948 - 0x3ff1ee3c our_controls_ptr = 0x3ff1ee3c - 0x3fcdf944 pp_sig_cnt_ptr = 0x3fcdf944 - 0x3fcdf940 g_eb_list_desc_ptr = 0x3fcdf940 - 0x3fcdf93c s_fragment_ptr = 0x3fcdf93c - 0x3fcdf938 if_ctrl_ptr = 0x3fcdf938 - 0x3fcdf934 g_intr_lock_mux = 0x3fcdf934 - 0x3fcdf930 g_wifi_global_lock = 0x3fcdf930 - 0x3fcdf92c s_wifi_queue = 0x3fcdf92c - 0x3fcdf928 pp_task_hdl = 0x3fcdf928 - 0x3fcdf924 s_pp_task_create_sem = 0x3fcdf924 - 0x3fcdf920 s_pp_task_del_sem = 0x3fcdf920 - 0x3fcdf91c g_wifi_menuconfig_ptr = 0x3fcdf91c - 0x3fcdf918 xphyQueue = 0x3fcdf918 - 0x3fcdf914 ap_no_lr_ptr = 0x3fcdf914 - 0x3fcdf910 rc11BSchedTbl_ptr = 0x3fcdf910 - 0x3fcdf90c rc11NSchedTbl_ptr = 0x3fcdf90c - 0x3fcdf908 rcLoRaSchedTbl_ptr = 0x3fcdf908 - 0x3fcdf904 BasicOFDMSched_ptr = 0x3fcdf904 - 0x3fcdf900 trc_ctl_ptr = 0x3fcdf900 - 0x3fcdf8fc g_pm_cnt_ptr = 0x3fcdf8fc - 0x3fcdf8f8 g_pm_ptr = 0x3fcdf8f8 - 0x3fcdf8f4 g_pm_cfg_ptr = 0x3fcdf8f4 - 0x3fcdf8f0 g_esp_mesh_quick_funcs_ptr = 0x3fcdf8f0 - 0x3fcdf8ec g_txop_queue_status_ptr = 0x3fcdf8ec - 0x3fcdf8e8 g_mac_sleep_en_ptr = 0x3fcdf8e8 - 0x3fcdf8e4 g_mesh_is_root_ptr = 0x3fcdf8e4 - 0x3fcdf8e0 g_mesh_topology_ptr = 0x3fcdf8e0 - 0x3fcdf8dc g_mesh_init_ps_type_ptr = 0x3fcdf8dc - 0x3fcdf8d8 g_mesh_is_started_ptr = 0x3fcdf8d8 - 0x3fcdf8d4 g_config_func = 0x3fcdf8d4 - 0x3fcdf8d0 g_net80211_tx_func = 0x3fcdf8d0 - 0x3fcdf8cc g_timer_func = 0x3fcdf8cc - 0x3fcdf8c8 s_michael_mic_failure_cb = 0x3fcdf8c8 - 0x3fcdf8c4 wifi_sta_rx_probe_req = 0x3fcdf8c4 - 0x3fcdf8c0 g_tx_done_cb_func = 0x3fcdf8c0 - 0x3fcdf874 g_per_conn_trc = 0x3fcdf874 - 0x3fcdf870 s_encap_amsdu_func = 0x3fcdf870 - 0x40001820 esp_net80211_rom_version_get = 0x40001820 - 0x40001824 ampdu_dispatch = 0x40001824 - 0x40001828 ampdu_dispatch_all = 0x40001828 - 0x4000182c ampdu_dispatch_as_many_as_possible = 0x4000182c - 0x40001830 ampdu_dispatch_movement = 0x40001830 - 0x40001834 ampdu_dispatch_upto = 0x40001834 - 0x40001838 chm_is_at_home_channel = 0x40001838 - 0x4000183c cnx_node_is_existing = 0x4000183c - 0x40001840 cnx_node_search = 0x40001840 - 0x40001844 ic_ebuf_recycle_rx = 0x40001844 - 0x40001848 ic_ebuf_recycle_tx = 0x40001848 - 0x4000184c ic_reset_rx_ba = 0x4000184c - 0x40001850 ieee80211_align_eb = 0x40001850 - 0x40001858 ieee80211_ampdu_start_age_timer = 0x40001858 - 0x40001860 ieee80211_is_tx_allowed = 0x40001860 - 0x40001864 ieee80211_output_pending_eb = 0x40001864 - 0x4000186c ieee80211_set_tx_desc = 0x4000186c - 0x40001870 rom_sta_input = 0x40001870 - 0x40001874 wifi_get_macaddr = 0x40001874 - 0x40001878 wifi_rf_phy_disable = 0x40001878 - 0x4000187c wifi_rf_phy_enable = 0x4000187c - 0x40001880 ic_ebuf_alloc = 0x40001880 - 0x40001888 ieee80211_copy_eb_header = 0x40001888 - 0x4000188c ieee80211_recycle_cache_eb = 0x4000188c - 0x40001890 ieee80211_search_node = 0x40001890 - 0x40001894 roundup2 = 0x40001894 - 0x40001898 ieee80211_crypto_encap = 0x40001898 - 0x400018a4 ieee80211_set_tx_pti = 0x400018a4 - 0x400018a8 wifi_is_started = 0x400018a8 - 0x3fcdf86c net80211_funcs = 0x3fcdf86c - 0x3fcdf868 g_scan = 0x3fcdf868 - 0x3fcdf864 g_chm = 0x3fcdf864 - 0x3fcdf860 g_ic_ptr = 0x3fcdf860 - 0x3fcdf85c g_hmac_cnt_ptr = 0x3fcdf85c - 0x3fcdf858 g_tx_cacheq_ptr = 0x3fcdf858 - 0x3fcdf854 s_netstack_free = 0x3fcdf854 - 0x3fcdf850 mesh_rxcb = 0x3fcdf850 - 0x3fcdf84c sta_rxcb = 0x3fcdf84c - 0x400018ac esp_coex_rom_version_get = 0x400018ac - 0x400018b0 coex_bt_release = 0x400018b0 - 0x400018b4 coex_bt_request = 0x400018b4 - 0x400018b8 coex_core_ble_conn_dyn_prio_get = 0x400018b8 - 0x400018c0 coex_core_pti_get = 0x400018c0 - 0x400018c4 coex_core_release = 0x400018c4 - 0x400018c8 coex_core_request = 0x400018c8 - 0x400018cc coex_core_status_get = 0x400018cc - 0x400018d4 coex_event_duration_get = 0x400018d4 - 0x400018d8 coex_hw_timer_disable = 0x400018d8 - 0x400018dc coex_hw_timer_enable = 0x400018dc - 0x400018e0 coex_hw_timer_set = 0x400018e0 - 0x400018e4 coex_schm_interval_set = 0x400018e4 - 0x400018e8 coex_schm_lock = 0x400018e8 - 0x400018ec coex_schm_unlock = 0x400018ec - 0x400018f4 coex_wifi_release = 0x400018f4 - 0x400018f8 esp_coex_ble_conn_dynamic_prio_get = 0x400018f8 - 0x3fcdf848 coex_env_ptr = 0x3fcdf848 - 0x3fcdf844 coex_pti_tab_ptr = 0x3fcdf844 - 0x3fcdf840 coex_schm_env_ptr = 0x3fcdf840 - 0x3fcdf83c coexist_funcs = 0x3fcdf83c - 0x3fcdf838 g_coa_funcs_p = 0x3fcdf838 - 0x3fcdf834 g_coex_param_ptr = 0x3fcdf834 - 0x400018fc phy_get_romfuncs = 0x400018fc - 0x40001900 rom_abs_temp = 0x40001900 - 0x40001904 rom_bb_bss_cbw40_dig = 0x40001904 - 0x40001908 rom_bb_wdg_test_en = 0x40001908 - 0x4000190c rom_bb_wdt_get_status = 0x4000190c - 0x40001910 rom_bb_wdt_int_enable = 0x40001910 - 0x40001914 rom_bb_wdt_rst_enable = 0x40001914 - 0x40001918 rom_bb_wdt_timeout_clear = 0x40001918 - 0x4000191c rom_cbw2040_cfg = 0x4000191c - 0x40001920 rom_check_noise_floor = 0x40001920 - 0x40001924 rom_chip_i2c_readReg = 0x40001924 - 0x40001928 rom_chip_i2c_writeReg = 0x40001928 - 0x4000192c rom_correct_rf_ana_gain = 0x4000192c - 0x40001930 rom_dc_iq_est = 0x40001930 - 0x40001934 rom_disable_agc = 0x40001934 - 0x40001938 rom_en_pwdet = 0x40001938 - 0x4000193c rom_enable_agc = 0x4000193c - 0x40001940 rom_get_bbgain_db = 0x40001940 - 0x40001944 rom_get_data_sat = 0x40001944 - 0x40001948 rom_get_i2c_read_mask = 0x40001948 - 0x4000194c rom_get_pwctrl_correct = 0x4000194c - 0x40001950 rom_get_rf_gain_qdb = 0x40001950 - 0x40001954 rom_i2c_readReg = 0x40001954 - 0x40001958 rom_i2c_readReg_Mask = 0x40001958 - 0x4000195c rom_i2c_writeReg = 0x4000195c - 0x40001960 rom_i2c_writeReg_Mask = 0x40001960 - 0x40001968 rom_iq_est_disable = 0x40001968 - 0x4000196c rom_iq_est_enable = 0x4000196c - 0x40001970 rom_linear_to_db = 0x40001970 - 0x40001974 rom_loopback_mode_en = 0x40001974 - 0x40001978 rom_mhz2ieee = 0x40001978 - 0x4000197c rom_noise_floor_auto_set = 0x4000197c - 0x40001980 rom_pbus_debugmode = 0x40001980 - 0x40001984 rom_pbus_force_mode = 0x40001984 - 0x40001988 rom_pbus_force_test = 0x40001988 - 0x4000198c rom_pbus_rd = 0x4000198c - 0x40001990 rom_pbus_rd_addr = 0x40001990 - 0x40001994 rom_pbus_rd_shift = 0x40001994 - 0x40001998 rom_pbus_set_dco = 0x40001998 - 0x4000199c rom_pbus_set_rxgain = 0x4000199c - 0x400019a0 rom_pbus_workmode = 0x400019a0 - 0x400019a4 rom_pbus_xpd_rx_off = 0x400019a4 - 0x400019a8 rom_pbus_xpd_rx_on = 0x400019a8 - 0x400019ac rom_pbus_xpd_tx_off = 0x400019ac - 0x400019b4 rom_phy_byte_to_word = 0x400019b4 - 0x400019b8 rom_phy_disable_cca = 0x400019b8 - 0x400019bc rom_phy_enable_cca = 0x400019bc - 0x400019c0 rom_phy_get_noisefloor = 0x400019c0 - 0x400019c4 rom_phy_get_rx_freq = 0x400019c4 - 0x400019c8 rom_phy_set_bbfreq_init = 0x400019c8 - 0x400019cc rom_pow_usr = 0x400019cc - 0x400019d0 rom_pwdet_sar2_init = 0x400019d0 - 0x400019d4 rom_read_hw_noisefloor = 0x400019d4 - 0x400019d8 rom_read_sar_dout = 0x400019d8 - 0x400019dc rom_set_cal_rxdc = 0x400019dc - 0x400019e0 rom_set_chan_cal_interp = 0x400019e0 - 0x400019e4 rom_set_loopback_gain = 0x400019e4 - 0x400019e8 rom_set_noise_floor = 0x400019e8 - 0x400019ec rom_set_rxclk_en = 0x400019ec - 0x400019f8 rom_set_txclk_en = 0x400019f8 - 0x400019fc rom_spur_cal = 0x400019fc - 0x40001a00 rom_spur_reg_write_one_tone = 0x40001a00 - 0x40001a04 rom_target_power_add_backoff = 0x40001a04 - 0x40001a08 rom_tx_pwctrl_bg_init = 0x40001a08 - 0x40001a10 rom_wifi_11g_rate_chg = 0x40001a10 - 0x40001a14 rom_write_gain_mem = 0x40001a14 - 0x40001a18 chip726_phyrom_version = 0x40001a18 - 0x40001a1c rom_disable_wifi_agc = 0x40001a1c - 0x40001a20 rom_enable_wifi_agc = 0x40001a20 - 0x40001a24 rom_set_tx_gain_table = 0x40001a24 - 0x40001a28 rom_bt_index_to_bb = 0x40001a28 - 0x40001a2c rom_bt_bb_to_index = 0x40001a2c - 0x40001a30 rom_wr_bt_tx_atten = 0x40001a30 - 0x40001a34 rom_wr_bt_tx_gain_mem = 0x40001a34 - 0x40001a38 rom_spur_coef_cfg = 0x40001a38 - 0x40001a3c rom_bb_bss_cbw40 = 0x40001a3c - 0x40001a40 rom_set_cca = 0x40001a40 - 0x40001a44 rom_tx_paon_set = 0x40001a44 - 0x40001a48 rom_i2cmst_reg_init = 0x40001a48 - 0x40001a4c rom_iq_corr_enable = 0x40001a4c - 0x40001a50 rom_fe_reg_init = 0x40001a50 - 0x40001a5c rom_mac_enable_bb = 0x40001a5c - 0x40001a60 rom_bb_wdg_cfg = 0x40001a60 - 0x40001a64 rom_force_txon = 0x40001a64 - 0x40001a68 rom_fe_txrx_reset = 0x40001a68 - 0x40001a6c rom_set_rx_comp = 0x40001a6c - 0x40001a74 rom_write_chan_freq = 0x40001a74 - 0x40001a7c rom_set_xpd_sar = 0x40001a7c - 0x40001a80 rom_write_dac_gain2 = 0x40001a80 - 0x40001a84 rom_rtc_sar2_init = 0x40001a84 - 0x40001a88 rom_get_target_power_offset = 0x40001a88 - 0x40001a90 rom_get_rate_fcc_index = 0x40001a90 - 0x40001a94 rom_get_rate_target_power = 0x40001a94 - 0x40001a98 rom_write_wifi_dig_gain = 0x40001a98 - 0x40001a9c rom_bt_correct_rf_ana_gain = 0x40001a9c - 0x40001aa0 rom_pkdet_vol_start = 0x40001aa0 - 0x40001aa4 rom_read_sar2_code = 0x40001aa4 - 0x40001aa8 rom_get_sar2_vol = 0x40001aa8 - 0x40001aac rom_get_pll_vol = 0x40001aac - 0x40001ab0 rom_get_phy_target_power = 0x40001ab0 - 0x40001ab8 rom_phy_track_pll_cap = 0x40001ab8 - 0x40001abc rom_phy_pwdet_always_en = 0x40001abc - 0x40001ac0 rom_phy_pwdet_onetime_en = 0x40001ac0 - 0x40001ac4 rom_get_i2c_mst0_mask = 0x40001ac4 - 0x40001ac8 rom_get_i2c_hostid = 0x40001ac8 - 0x40001acc rom_enter_critical_phy = 0x40001acc - 0x40001ad0 rom_exit_critical_phy = 0x40001ad0 - 0x40001ad4 rom_chip_i2c_readReg_org = 0x40001ad4 - 0x40001ad8 rom_i2c_paral_set_mst0 = 0x40001ad8 - 0x40001adc rom_i2c_paral_set_read = 0x40001adc - 0x40001ae0 rom_i2c_paral_read = 0x40001ae0 - 0x40001ae4 rom_i2c_paral_write = 0x40001ae4 - 0x40001ae8 rom_i2c_paral_write_num = 0x40001ae8 - 0x40001aec rom_i2c_paral_write_mask = 0x40001aec - 0x40001af0 rom_bb_bss_cbw40_ana = 0x40001af0 - 0x40001af4 rom_chan_to_freq = 0x40001af4 - 0x40001afc rom_dac_rate_set = 0x40001afc - 0x40001b08 rom_tsens_index_to_dac = 0x40001b08 - 0x40001b0c rom_tsens_index_to_offset = 0x40001b0c - 0x40001b14 rom_code_to_temp = 0x40001b14 - 0x40001b18 rom_write_pll_cap_mem = 0x40001b18 - 0x40001b1c rom_pll_correct_dcap = 0x40001b1c - 0x40001b20 rom_phy_en_hw_set_freq = 0x40001b20 - 0x40001b24 rom_phy_dis_hw_set_freq = 0x40001b24 - 0x40000628 PROVIDE (esp_rom_crc32_le = crc32_le) - [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) - [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) - [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) - [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) - [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) - [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) - [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) - 0x400005cc PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) - [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) - [!provide] PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) - [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) - [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) - 0x4000071c PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) - [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) - 0x4000072c PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) - [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) - [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) - [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) - 0x40000080 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) - 0x40000068 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) - 0x40000084 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) - 0x40000614 PROVIDE (esp_rom_md5_init = MD5Init) - 0x40000618 PROVIDE (esp_rom_md5_update = MD5Update) - 0x4000061c PROVIDE (esp_rom_md5_final = MD5Final) - 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) - [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) - 0x40000040 PROVIDE (esp_rom_printf = ets_printf) - 0x40000050 PROVIDE (esp_rom_delay_us = ets_delay_us) - 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) - [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) - 0x40000584 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) - 0x40000588 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) - [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) - [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) - [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) - [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) - [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) - [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) - [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) - [!provide] PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) - [!provide] PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) - 0x4000195c PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) - 0x40001960 PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) - 0x400008dc bt_rf_coex_get_dft_cfg = 0x400008dc - 0x400008e0 bt_rf_coex_hooks_p_set = 0x400008e0 - 0x400008e4 btdm_con_maxevtime_cal_impl = 0x400008e4 - 0x400008e8 btdm_controller_get_compile_version_impl = 0x400008e8 - 0x400008ec btdm_controller_rom_data_init = 0x400008ec - 0x400008f0 btdm_dis_privacy_err_report_impl = 0x400008f0 - 0x400008f4 btdm_disable_adv_delay_impl = 0x400008f4 - 0x400008f8 btdm_enable_scan_continue_impl = 0x400008f8 - 0x400008fc btdm_enable_scan_forever_impl = 0x400008fc - 0x40000900 btdm_get_power_state_impl = 0x40000900 - 0x40000904 btdm_get_prevent_sleep_flag_impl = 0x40000904 - 0x40000908 btdm_power_state_active_impl = 0x40000908 - 0x4000090c btdm_switch_phy_coded_impl = 0x4000090c - 0x40000910 hci_acl_data_handler = 0x40000910 - 0x40000914 hci_disconnect_cmd_handler = 0x40000914 - 0x40000918 hci_le_con_upd_cmd_handler = 0x40000918 - 0x4000091c hci_le_ltk_req_neg_reply_cmd_handler = 0x4000091c - 0x40000920 hci_le_ltk_req_reply_cmd_handler = 0x40000920 - 0x40000924 hci_le_rd_chnl_map_cmd_handler = 0x40000924 - 0x40000928 hci_le_rd_phy_cmd_handler = 0x40000928 - 0x4000092c hci_le_rd_rem_feats_cmd_handler = 0x4000092c - 0x40000930 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40000930 - 0x40000934 hci_le_rem_con_param_req_reply_cmd_handler = 0x40000934 - 0x40000938 hci_le_set_data_len_cmd_handler = 0x40000938 - 0x4000093c hci_le_set_phy_cmd_handler = 0x4000093c - 0x40000940 hci_le_start_enc_cmd_handler = 0x40000940 - 0x40000944 hci_rd_auth_payl_to_cmd_handler = 0x40000944 - 0x40000948 hci_rd_rem_ver_info_cmd_handler = 0x40000948 - 0x4000094c hci_rd_rssi_cmd_handler = 0x4000094c - 0x40000950 hci_rd_tx_pwr_lvl_cmd_handler = 0x40000950 - 0x40000954 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40000954 - 0x40000958 hci_vs_set_pref_slave_latency_cmd_handler = 0x40000958 - 0x4000095c hci_wr_auth_payl_to_cmd_handler = 0x4000095c - 0x40000960 ll_channel_map_ind_handler = 0x40000960 - 0x40000964 ll_connection_param_req_handler = 0x40000964 - 0x40000968 ll_connection_param_rsp_handler = 0x40000968 - 0x4000096c ll_connection_update_ind_handler = 0x4000096c - 0x40000970 ll_enc_req_handler = 0x40000970 - 0x40000974 ll_enc_rsp_handler = 0x40000974 - 0x40000978 ll_feature_req_handler = 0x40000978 - 0x4000097c ll_feature_rsp_handler = 0x4000097c - 0x40000980 ll_length_req_handler = 0x40000980 - 0x40000984 ll_length_rsp_handler = 0x40000984 - 0x40000988 ll_min_used_channels_ind_handler = 0x40000988 - 0x4000098c ll_pause_enc_req_handler = 0x4000098c - 0x40000990 ll_pause_enc_rsp_handler = 0x40000990 - 0x40000994 ll_phy_req_handler = 0x40000994 - 0x40000998 ll_phy_rsp_handler = 0x40000998 - 0x4000099c ll_phy_update_ind_handler = 0x4000099c - 0x400009a0 ll_ping_req_handler = 0x400009a0 - 0x400009a4 ll_ping_rsp_handler = 0x400009a4 - 0x400009a8 ll_slave_feature_req_handler = 0x400009a8 - 0x400009ac ll_start_enc_req_handler = 0x400009ac - 0x400009b0 ll_start_enc_rsp_handler = 0x400009b0 - 0x400009b4 ll_terminate_ind_handler = 0x400009b4 - 0x400009b8 ll_version_ind_handler = 0x400009b8 - 0x400009bc llc_auth_payl_nearly_to_handler = 0x400009bc - 0x400009c0 llc_auth_payl_real_to_handler = 0x400009c0 - 0x400009c4 llc_encrypt_ind_handler = 0x400009c4 - 0x400009c8 llc_hci_command_handler_wrapper = 0x400009c8 - 0x400009cc llc_ll_connection_param_req_pdu_send = 0x400009cc - 0x400009d0 llc_ll_connection_param_rsp_pdu_send = 0x400009d0 - 0x400009d4 llc_ll_connection_update_ind_pdu_send = 0x400009d4 - 0x400009d8 llc_ll_enc_req_pdu_send = 0x400009d8 - 0x400009dc llc_ll_enc_rsp_pdu_send = 0x400009dc - 0x400009e0 llc_ll_feature_req_pdu_send = 0x400009e0 - 0x400009e4 llc_ll_feature_rsp_pdu_send = 0x400009e4 - 0x400009e8 llc_ll_length_req_pdu_send = 0x400009e8 - 0x400009ec llc_ll_length_rsp_pdu_send = 0x400009ec - 0x400009f0 llc_ll_pause_enc_req_pdu_send = 0x400009f0 - 0x400009f4 llc_ll_pause_enc_rsp_pdu_send = 0x400009f4 - 0x400009f8 llc_ll_phy_req_pdu_send = 0x400009f8 - 0x400009fc llc_ll_phy_rsp_pdu_send = 0x400009fc - 0x40000a00 llc_ll_ping_req_pdu_send = 0x40000a00 - 0x40000a04 llc_ll_ping_rsp_pdu_send = 0x40000a04 - 0x40000a08 llc_ll_start_enc_req_pdu_send = 0x40000a08 - 0x40000a0c llc_ll_start_enc_rsp_pdu_send = 0x40000a0c - 0x40000a10 llc_ll_terminate_ind_pdu_send = 0x40000a10 - 0x40000a14 llc_ll_unknown_rsp_pdu_send = 0x40000a14 - 0x40000a18 llc_llcp_ch_map_update_ind_pdu_send = 0x40000a18 - 0x40000a1c llc_llcp_phy_upd_ind_pdu_send = 0x40000a1c - 0x40000a20 llc_llcp_version_ind_pdu_send = 0x40000a20 - 0x40000a24 llc_op_ch_map_upd_ind_handler = 0x40000a24 - 0x40000a28 llc_op_con_upd_ind_handler = 0x40000a28 - 0x40000a2c llc_op_disconnect_ind_handler = 0x40000a2c - 0x40000a30 llc_op_dl_upd_ind_handler = 0x40000a30 - 0x40000a34 llc_op_encrypt_ind_handler = 0x40000a34 - 0x40000a38 llc_op_feats_exch_ind_handler = 0x40000a38 - 0x40000a3c llc_op_le_ping_ind_handler = 0x40000a3c - 0x40000a40 llc_op_phy_upd_ind_handler = 0x40000a40 - 0x40000a44 llc_op_ver_exch_ind_handler = 0x40000a44 - 0x40000a48 llc_stopped_ind_handler = 0x40000a48 - 0x40000a4c lld_acl_rx_ind_handler = 0x40000a4c - 0x40000a50 lld_acl_tx_cfm_handler = 0x40000a50 - 0x40000a54 lld_adv_end_ind_handler = 0x40000a54 - 0x40000a58 lld_adv_rep_ind_handler = 0x40000a58 - 0x40000a5c lld_ch_map_upd_cfm_handler = 0x40000a5c - 0x40000a60 lld_con_estab_ind_handler = 0x40000a60 - 0x40000a64 lld_con_evt_sd_evt_time_set = 0x40000a64 - 0x40000a68 lld_con_offset_upd_ind_handler = 0x40000a68 - 0x40000a6c lld_con_param_upd_cfm_handler = 0x40000a6c - 0x40000a70 lld_disc_ind_handler = 0x40000a70 - 0x40000a74 lld_init_end_ind_handler = 0x40000a74 - 0x40000a78 lld_llcp_rx_ind_handler_wrapper = 0x40000a78 - 0x40000a7c lld_llcp_tx_cfm_handler = 0x40000a7c - 0x40000a80 lld_per_adv_end_ind_handler = 0x40000a80 - 0x40000a84 lld_per_adv_rep_ind_handler = 0x40000a84 - 0x40000a88 lld_per_adv_rx_end_ind_handler = 0x40000a88 - 0x40000a8c lld_phy_coded_500k_get = 0x40000a8c - 0x40000a90 lld_phy_upd_cfm_handler = 0x40000a90 - 0x40000a94 lld_scan_end_ind_handler = 0x40000a94 - 0x40000a98 lld_scan_req_ind_handler = 0x40000a98 - 0x40000a9c lld_sync_start_req_handler = 0x40000a9c - 0x40000aa0 lld_test_end_ind_handler = 0x40000aa0 - 0x40000aa4 lld_update_rxbuf_handler = 0x40000aa4 - 0x40000aa8 llm_ch_map_update_ind_handler = 0x40000aa8 - 0x40000aac llm_hci_command_handler_wrapper = 0x40000aac - 0x40000ab0 llm_scan_period_to_handler = 0x40000ab0 - 0x40000ab4 r_Add2SelfBigHex256 = 0x40000ab4 - 0x40000ab8 r_AddBigHex256 = 0x40000ab8 - 0x40000abc r_AddBigHexModP256 = 0x40000abc - 0x40000ac0 r_AddP256 = 0x40000ac0 - 0x40000ac4 r_AddPdiv2_256 = 0x40000ac4 - 0x40000ac8 r_GF_Jacobian_Point_Addition256 = 0x40000ac8 - 0x40000acc r_GF_Jacobian_Point_Double256 = 0x40000acc - 0x40000ad0 r_GF_Point_Jacobian_To_Affine256 = 0x40000ad0 - 0x40000ad4 r_MultiplyBigHexByUint32_256 = 0x40000ad4 - 0x40000ad8 r_MultiplyBigHexModP256 = 0x40000ad8 - 0x40000adc r_MultiplyByU16ModP256 = 0x40000adc - 0x40000ae0 r_SubtractBigHex256 = 0x40000ae0 - 0x40000ae4 r_SubtractBigHexMod256 = 0x40000ae4 - 0x40000ae8 r_SubtractBigHexUint32_256 = 0x40000ae8 - 0x40000aec r_SubtractFromSelfBigHex256 = 0x40000aec - 0x40000af0 r_SubtractFromSelfBigHexSign256 = 0x40000af0 - 0x40000af4 r_aes_alloc = 0x40000af4 - 0x40000af8 r_aes_ccm_continue = 0x40000af8 - 0x40000afc r_aes_ccm_process_e = 0x40000afc - 0x40000b00 r_aes_ccm_xor_128_lsb = 0x40000b00 - 0x40000b04 r_aes_ccm_xor_128_msb = 0x40000b04 - 0x40000b08 r_aes_cmac_continue = 0x40000b08 - 0x40000b0c r_aes_cmac_start = 0x40000b0c - 0x40000b10 r_aes_k1_continue = 0x40000b10 - 0x40000b14 r_aes_k2_continue = 0x40000b14 - 0x40000b18 r_aes_k3_continue = 0x40000b18 - 0x40000b1c r_aes_k4_continue = 0x40000b1c - 0x40000b20 r_aes_shift_left_128 = 0x40000b20 - 0x40000b24 r_aes_start = 0x40000b24 - 0x40000b28 r_aes_xor_128 = 0x40000b28 - 0x40000b2c r_assert_err = 0x40000b2c - 0x40000b30 r_assert_param = 0x40000b30 - 0x40000b34 r_assert_warn = 0x40000b34 - 0x40000b38 r_bigHexInversion256 = 0x40000b38 - 0x40000b3c r_ble_sw_cca_check_isr = 0x40000b3c - 0x40000b40 r_ble_util_buf_acl_tx_alloc = 0x40000b40 - 0x40000b44 r_ble_util_buf_acl_tx_elt_get = 0x40000b44 - 0x40000b48 r_ble_util_buf_acl_tx_free = 0x40000b48 - 0x40000b4c r_ble_util_buf_acl_tx_free_in_isr = 0x40000b4c - 0x40000b50 r_ble_util_buf_adv_tx_alloc = 0x40000b50 - 0x40000b54 r_ble_util_buf_adv_tx_free = 0x40000b54 - 0x40000b58 r_ble_util_buf_adv_tx_free_in_isr = 0x40000b58 - 0x40000b5c r_ble_util_buf_env_deinit = 0x40000b5c - 0x40000b60 r_ble_util_buf_env_init = 0x40000b60 - 0x40000b64 r_ble_util_buf_get_rx_buf_nb = 0x40000b64 - 0x40000b68 r_ble_util_buf_get_rx_buf_size = 0x40000b68 - 0x40000b6c r_ble_util_buf_llcp_tx_alloc = 0x40000b6c - 0x40000b70 r_ble_util_buf_llcp_tx_free = 0x40000b70 - 0x40000b74 r_ble_util_buf_rx_alloc = 0x40000b74 - 0x40000b78 r_ble_util_buf_rx_alloc_in_isr = 0x40000b78 - 0x40000b7c r_ble_util_buf_rx_free = 0x40000b7c - 0x40000b80 r_ble_util_buf_rx_free_in_isr = 0x40000b80 - 0x40000b84 r_ble_util_buf_set_rx_buf_nb = 0x40000b84 - 0x40000b88 r_ble_util_buf_set_rx_buf_size = 0x40000b88 - 0x40000b8c r_ble_util_data_rx_buf_reset = 0x40000b8c - 0x40000b90 r_bt_bb_get_intr_mask = 0x40000b90 - 0x40000b94 r_bt_bb_intr_clear = 0x40000b94 - 0x40000b98 r_bt_bb_intr_mask_set = 0x40000b98 - 0x40000ba0 r_bt_rf_coex_cfg_set = 0x40000ba0 - 0x40000ba4 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x40000ba4 - 0x40000bac r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x40000bac - 0x40000bb0 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x40000bb0 - 0x40000bb4 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40000bb4 - 0x40000bb8 r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x40000bb8 - 0x40000bbc r_bt_rf_coex_pti_table_get = 0x40000bbc - 0x40000bc0 r_bt_rf_coex_st_param_get = 0x40000bc0 - 0x40000bc4 r_bt_rf_coex_st_param_set = 0x40000bc4 - 0x40000bc8 r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x40000bc8 - 0x40000bcc r_bt_rma_apply_rule_cs_fmt = 0x40000bcc - 0x40000bd0 r_bt_rma_apply_rule_cs_idx = 0x40000bd0 - 0x40000bd4 r_bt_rma_configure = 0x40000bd4 - 0x40000bd8 r_bt_rma_deregister_rule_cs_fmt = 0x40000bd8 - 0x40000bdc r_bt_rma_deregister_rule_cs_idx = 0x40000bdc - 0x40000be0 r_bt_rma_get_ant_by_act = 0x40000be0 - 0x40000be4 r_bt_rma_init = 0x40000be4 - 0x40000be8 r_bt_rma_register_rule_cs_fmt = 0x40000be8 - 0x40000bec r_bt_rma_register_rule_cs_idx = 0x40000bec - 0x40000bf0 r_bt_rtp_apply_rule_cs_fmt = 0x40000bf0 - 0x40000bf4 r_bt_rtp_apply_rule_cs_idx = 0x40000bf4 - 0x40000bf8 r_bt_rtp_deregister_rule_cs_fmt = 0x40000bf8 - 0x40000bfc r_bt_rtp_deregister_rule_cs_idx = 0x40000bfc - 0x40000c04 r_bt_rtp_init = 0x40000c04 - 0x40000c08 r_bt_rtp_register_rule_cs_fmt = 0x40000c08 - 0x40000c0c r_bt_rtp_register_rule_cs_idx = 0x40000c0c - 0x40000c10 r_btdm_isr = 0x40000c10 - 0x40000c20 r_cali_phase_match_p = 0x40000c20 - 0x40000c24 r_cmp_abs_time = 0x40000c24 - 0x40000c28 r_cmp_dest_id = 0x40000c28 - 0x40000c2c r_cmp_timer_id = 0x40000c2c - 0x40000c30 r_co_bdaddr_compare = 0x40000c30 - 0x40000c34 r_co_ble_pkt_dur_in_us = 0x40000c34 - 0x40000c38 r_co_list_extract = 0x40000c38 - 0x40000c3c r_co_list_extract_after = 0x40000c3c - 0x40000c40 r_co_list_extract_sublist = 0x40000c40 - 0x40000c44 r_co_list_find = 0x40000c44 - 0x40000c48 r_co_list_init = 0x40000c48 - 0x40000c4c r_co_list_insert_after = 0x40000c4c - 0x40000c50 r_co_list_insert_before = 0x40000c50 - 0x40000c54 r_co_list_merge = 0x40000c54 - 0x40000c58 r_co_list_pool_init = 0x40000c58 - 0x40000c5c r_co_list_pop_front = 0x40000c5c - 0x40000c60 r_co_list_push_back = 0x40000c60 - 0x40000c64 r_co_list_push_back_sublist = 0x40000c64 - 0x40000c68 r_co_list_push_front = 0x40000c68 - 0x40000c6c r_co_list_size = 0x40000c6c - 0x40000c70 r_co_nb_good_le_channels = 0x40000c70 - 0x40000c74 r_co_util_pack = 0x40000c74 - 0x40000c78 r_co_util_read_array_size = 0x40000c78 - 0x40000c7c r_co_util_unpack = 0x40000c7c - 0x40000c80 r_dbg_env_deinit = 0x40000c80 - 0x40000c84 r_dbg_env_init = 0x40000c84 - 0x40000c88 r_dbg_platform_reset_complete = 0x40000c88 - 0x40000c8c r_dl_upd_proc_start = 0x40000c8c - 0x40000c90 r_dump_data = 0x40000c90 - 0x40000c94 r_ecc_abort_key256_generation = 0x40000c94 - 0x40000c98 r_ecc_gen_new_public_key = 0x40000c98 - 0x40000c9c r_ecc_gen_new_secret_key = 0x40000c9c - 0x40000ca0 r_ecc_generate_key256 = 0x40000ca0 - 0x40000ca4 r_ecc_get_debug_Keys = 0x40000ca4 - 0x40000ca8 r_ecc_init = 0x40000ca8 - 0x40000cac r_ecc_is_valid_point = 0x40000cac - 0x40000cb0 r_ecc_multiplication_event_handler = 0x40000cb0 - 0x40000cb4 r_ecc_point_multiplication_win_256 = 0x40000cb4 - 0x40000cb8 r_emi_alloc_em_mapping_by_offset = 0x40000cb8 - 0x40000cbc r_emi_base_reg_lut_show = 0x40000cbc - 0x40000cc0 r_emi_em_base_reg_show = 0x40000cc0 - 0x40000cc4 r_emi_free_em_mapping_by_offset = 0x40000cc4 - 0x40000cc8 r_emi_get_em_mapping_idx_by_offset = 0x40000cc8 - 0x40000ccc r_emi_get_mem_addr_by_offset = 0x40000ccc - 0x40000cd0 r_emi_overwrite_em_mapping_by_offset = 0x40000cd0 - 0x40000cd4 r_esp_vendor_hci_command_handler = 0x40000cd4 - 0x40000cd8 r_get_stack_usage = 0x40000cd8 - 0x40000cdc r_h4tl_acl_hdr_rx_evt_handler = 0x40000cdc - 0x40000ce0 r_h4tl_cmd_hdr_rx_evt_handler = 0x40000ce0 - 0x40000ce4 r_h4tl_cmd_pld_rx_evt_handler = 0x40000ce4 - 0x40000ce8 r_h4tl_eif_io_event_post = 0x40000ce8 - 0x40000cec r_h4tl_eif_register = 0x40000cec - 0x40000cf0 r_h4tl_init = 0x40000cf0 - 0x40000cf4 r_h4tl_out_of_sync = 0x40000cf4 - 0x40000cf8 r_h4tl_out_of_sync_check = 0x40000cf8 - 0x40000cfc r_h4tl_read_hdr = 0x40000cfc - 0x40000d00 r_h4tl_read_next_out_of_sync = 0x40000d00 - 0x40000d04 r_h4tl_read_payl = 0x40000d04 - 0x40000d08 r_h4tl_read_start = 0x40000d08 - 0x40000d0c r_h4tl_rx_acl_hdr_extract = 0x40000d0c - 0x40000d10 r_h4tl_rx_cmd_hdr_extract = 0x40000d10 - 0x40000d14 r_h4tl_rx_done = 0x40000d14 - 0x40000d18 r_h4tl_start = 0x40000d18 - 0x40000d1c r_h4tl_stop = 0x40000d1c - 0x40000d20 r_h4tl_tx_done = 0x40000d20 - 0x40000d24 r_h4tl_tx_evt_handler = 0x40000d24 - 0x40000d28 r_h4tl_write = 0x40000d28 - 0x40000d2c r_hci_acl_tx_data_alloc = 0x40000d2c - 0x40000d30 r_hci_acl_tx_data_received = 0x40000d30 - 0x40000d34 r_hci_basic_cmd_send_2_controller = 0x40000d34 - 0x40000d38 r_hci_ble_adv_report_filter_check = 0x40000d38 - 0x40000d3c r_hci_ble_adv_report_tx_check = 0x40000d3c - 0x40000d40 r_hci_ble_conhdl_register = 0x40000d40 - 0x40000d44 r_hci_ble_conhdl_unregister = 0x40000d44 - 0x40000d48 r_hci_build_acl_data = 0x40000d48 - 0x40000d4c r_hci_build_cc_evt = 0x40000d4c - 0x40000d50 r_hci_build_cs_evt = 0x40000d50 - 0x40000d54 r_hci_build_evt = 0x40000d54 - 0x40000d58 r_hci_build_le_evt = 0x40000d58 - 0x40000d5c r_hci_cmd_get_max_param_size = 0x40000d5c - 0x40000d60 r_hci_cmd_received = 0x40000d60 - 0x40000d64 r_hci_cmd_reject = 0x40000d64 - 0x40000d68 r_hci_evt_mask_check = 0x40000d68 - 0x40000d6c r_hci_evt_mask_set = 0x40000d6c - 0x40000d70 r_hci_fc_acl_buf_size_set = 0x40000d70 - 0x40000d74 r_hci_fc_acl_en = 0x40000d74 - 0x40000d78 r_hci_fc_acl_packet_sent = 0x40000d78 - 0x40000d7c r_hci_fc_check_host_available_nb_acl_packets = 0x40000d7c - 0x40000d80 r_hci_fc_host_nb_acl_pkts_complete = 0x40000d80 - 0x40000d84 r_hci_fc_init = 0x40000d84 - 0x40000d88 r_hci_look_for_cmd_desc = 0x40000d88 - 0x40000d8c r_hci_look_for_evt_desc = 0x40000d8c - 0x40000d90 r_hci_look_for_le_evt_desc = 0x40000d90 - 0x40000d94 r_hci_look_for_le_evt_desc_esp = 0x40000d94 - 0x40000d98 r_hci_pack_bytes = 0x40000d98 - 0x40000da0 r_hci_send_2_controller = 0x40000da0 - 0x40000da4 r_hci_send_2_host = 0x40000da4 - 0x40000da8 r_hci_tl_c2h_data_flow_on = 0x40000da8 - 0x40000dac r_hci_tl_cmd_hdr_rx_evt_handler = 0x40000dac - 0x40000db0 r_hci_tl_cmd_pld_rx_evt_handler = 0x40000db0 - 0x40000db4 r_hci_tl_get_pkt = 0x40000db4 - 0x40000db8 r_hci_tl_hci_pkt_handler = 0x40000db8 - 0x40000dbc r_hci_tl_hci_tx_done_evt_handler = 0x40000dbc - 0x40000dc0 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40000dc0 - 0x40000dc4 r_hci_tl_save_pkt = 0x40000dc4 - 0x40000dc8 r_hci_tl_send = 0x40000dc8 - 0x40000dcc r_hci_tx_done = 0x40000dcc - 0x40000dd0 r_hci_tx_start = 0x40000dd0 - 0x40000dd4 r_hci_tx_trigger = 0x40000dd4 - 0x40000dd8 r_isValidSecretKey_256 = 0x40000dd8 - 0x40000ddc r_ke_check_malloc = 0x40000ddc - 0x40000de0 r_ke_event_callback_set = 0x40000de0 - 0x40000de4 r_ke_event_clear = 0x40000de4 - 0x40000de8 r_ke_event_flush = 0x40000de8 - 0x40000dec r_ke_event_get = 0x40000dec - 0x40000df0 r_ke_event_get_all = 0x40000df0 - 0x40000df4 r_ke_event_init = 0x40000df4 - 0x40000df8 r_ke_event_schedule = 0x40000df8 - 0x40000dfc r_ke_event_set = 0x40000dfc - 0x40000e00 r_ke_flush = 0x40000e00 - 0x40000e04 r_ke_free = 0x40000e04 - 0x40000e08 r_ke_handler_search = 0x40000e08 - 0x40000e0c r_ke_init = 0x40000e0c - 0x40000e10 r_ke_is_free = 0x40000e10 - 0x40000e14 r_ke_malloc = 0x40000e14 - 0x40000e18 r_ke_mem_init = 0x40000e18 - 0x40000e1c r_ke_mem_is_empty = 0x40000e1c - 0x40000e20 r_ke_mem_is_in_heap = 0x40000e20 - 0x40000e24 r_ke_msg_alloc = 0x40000e24 - 0x40000e28 r_ke_msg_dest_id_get = 0x40000e28 - 0x40000e2c r_ke_msg_discard = 0x40000e2c - 0x40000e30 r_ke_msg_forward = 0x40000e30 - 0x40000e34 r_ke_msg_forward_new_id = 0x40000e34 - 0x40000e38 r_ke_msg_free = 0x40000e38 - 0x40000e3c r_ke_msg_in_queue = 0x40000e3c - 0x40000e40 r_ke_msg_save = 0x40000e40 - 0x40000e44 r_ke_msg_send = 0x40000e44 - 0x40000e48 r_ke_msg_send_basic = 0x40000e48 - 0x40000e4c r_ke_msg_src_id_get = 0x40000e4c - 0x40000e50 r_ke_queue_extract = 0x40000e50 - 0x40000e54 r_ke_queue_insert = 0x40000e54 - 0x40000e58 r_ke_sleep_check = 0x40000e58 - 0x40000e5c r_ke_state_get = 0x40000e5c - 0x40000e60 r_ke_state_set = 0x40000e60 - 0x40000e64 r_ke_task_check = 0x40000e64 - 0x40000e68 r_ke_task_create = 0x40000e68 - 0x40000e6c r_ke_task_delete = 0x40000e6c - 0x40000e70 r_ke_task_handler_get = 0x40000e70 - 0x40000e74 r_ke_task_init = 0x40000e74 - 0x40000e78 r_ke_task_msg_flush = 0x40000e78 - 0x40000e7c r_ke_task_saved_update = 0x40000e7c - 0x40000e84 r_ke_time = 0x40000e84 - 0x40000e88 r_ke_time_cmp = 0x40000e88 - 0x40000e8c r_ke_time_past = 0x40000e8c - 0x40000e90 r_ke_timer_active = 0x40000e90 - 0x40000e94 r_ke_timer_adjust_all = 0x40000e94 - 0x40000e98 r_ke_timer_clear = 0x40000e98 - 0x40000e9c r_ke_timer_init = 0x40000e9c - 0x40000ea0 r_ke_timer_schedule = 0x40000ea0 - 0x40000ea4 r_ke_timer_set = 0x40000ea4 - 0x40000ea8 r_led_init = 0x40000ea8 - 0x40000eac r_led_set_all = 0x40000eac - 0x40000eb0 r_llc_aes_res_cb = 0x40000eb0 - 0x40000eb4 r_llc_ch_map_up_proc_err_cb = 0x40000eb4 - 0x40000eb8 r_llc_cleanup = 0x40000eb8 - 0x40000ebc r_llc_cmd_cmp_send = 0x40000ebc - 0x40000ec0 r_llc_cmd_stat_send = 0x40000ec0 - 0x40000ec4 r_llc_con_move_cbk = 0x40000ec4 - 0x40000ec8 r_llc_con_plan_set_update = 0x40000ec8 - 0x40000ecc r_llc_con_upd_param_in_range = 0x40000ecc - 0x40000ed0 r_llc_disconnect = 0x40000ed0 - 0x40000ed4 r_llc_disconnect_end = 0x40000ed4 - 0x40000ed8 r_llc_disconnect_proc_continue = 0x40000ed8 - 0x40000edc r_llc_disconnect_proc_err_cb = 0x40000edc - 0x40000ee0 r_llc_dl_chg_check = 0x40000ee0 - 0x40000ee4 r_llc_dle_proc_err_cb = 0x40000ee4 - 0x40000ee8 r_llc_feats_exch_proc_err_cb = 0x40000ee8 - 0x40000eec r_llc_hci_cmd_handler_tab_p_get = 0x40000eec - 0x40000ef4 r_llc_hci_con_param_req_evt_send = 0x40000ef4 - 0x40000ef8 r_llc_hci_con_upd_info_send = 0x40000ef8 - 0x40000efc r_llc_hci_disconnected_dis = 0x40000efc - 0x40000f00 r_llc_hci_dl_upd_info_send = 0x40000f00 - 0x40000f04 r_llc_hci_enc_evt_send = 0x40000f04 - 0x40000f08 r_llc_hci_feats_info_send = 0x40000f08 - 0x40000f0c r_llc_hci_le_phy_upd_cmp_evt_send = 0x40000f0c - 0x40000f10 r_llc_hci_ltk_request_evt_send = 0x40000f10 - 0x40000f14 r_llc_hci_nb_cmp_pkts_evt_send = 0x40000f14 - 0x40000f18 r_llc_hci_version_info_send = 0x40000f18 - 0x40000f1c r_llc_init_term_proc = 0x40000f1c - 0x40000f20 r_llc_iv_skd_rand_gen = 0x40000f20 - 0x40000f24 r_llc_le_ping_proc_continue = 0x40000f24 - 0x40000f28 r_llc_le_ping_proc_err_cb = 0x40000f28 - 0x40000f30 r_llc_le_ping_set = 0x40000f30 - 0x40000f34 r_llc_ll_pause_enc_rsp_ack_handler = 0x40000f34 - 0x40000f38 r_llc_ll_reject_ind_ack_handler = 0x40000f38 - 0x40000f3c r_llc_ll_reject_ind_pdu_send = 0x40000f3c - 0x40000f40 r_llc_ll_start_enc_rsp_ack_handler = 0x40000f40 - 0x40000f44 r_llc_ll_terminate_ind_ack = 0x40000f44 - 0x40000f48 r_llc_ll_unknown_ind_handler = 0x40000f48 - 0x40000f4c r_llc_llcp_send = 0x40000f4c - 0x40000f50 r_llc_llcp_state_set = 0x40000f50 - 0x40000f54 r_llc_llcp_trans_timer_set = 0x40000f54 - 0x40000f58 r_llc_llcp_tx_check = 0x40000f58 - 0x40000f64 r_llc_loc_con_upd_proc_err_cb = 0x40000f64 - 0x40000f68 r_llc_loc_dl_upd_proc_continue = 0x40000f68 - 0x40000f6c r_llc_loc_encrypt_proc_continue = 0x40000f6c - 0x40000f70 r_llc_loc_encrypt_proc_err_cb = 0x40000f70 - 0x40000f74 r_llc_loc_feats_exch_proc_continue = 0x40000f74 - 0x40000f7c r_llc_loc_phy_upd_proc_err_cb = 0x40000f7c - 0x40000f80 r_llc_msg_handler_tab_p_get = 0x40000f80 - 0x40000f84 r_llc_pref_param_compute = 0x40000f84 - 0x40000f88 r_llc_proc_collision_check = 0x40000f88 - 0x40000f8c r_llc_proc_err_ind = 0x40000f8c - 0x40000f90 r_llc_proc_get = 0x40000f90 - 0x40000f94 r_llc_proc_id_get = 0x40000f94 - 0x40000f98 r_llc_proc_reg = 0x40000f98 - 0x40000f9c r_llc_proc_state_get = 0x40000f9c - 0x40000fa0 r_llc_proc_state_set = 0x40000fa0 - 0x40000fa4 r_llc_proc_timer_pause_set = 0x40000fa4 - 0x40000fa8 r_llc_proc_timer_set = 0x40000fa8 - 0x40000fac r_llc_proc_unreg = 0x40000fac - 0x40000fb0 r_llc_rem_ch_map_proc_continue = 0x40000fb0 - 0x40000fb8 r_llc_rem_con_upd_proc_err_cb = 0x40000fb8 - 0x40000fbc r_llc_rem_dl_upd_proc = 0x40000fbc - 0x40000fc0 r_llc_rem_encrypt_proc_continue = 0x40000fc0 - 0x40000fc4 r_llc_rem_encrypt_proc_err_cb = 0x40000fc4 - 0x40000fc8 r_llc_rem_phy_upd_proc_continue = 0x40000fc8 - 0x40000fcc r_llc_rem_phy_upd_proc_err_cb = 0x40000fcc - 0x40000fd0 r_llc_role_get = 0x40000fd0 - 0x40000fd4 r_llc_sk_gen = 0x40000fd4 - 0x40000fd8 r_llc_start = 0x40000fd8 - 0x40000fdc r_llc_stop = 0x40000fdc - 0x40000fe0 r_llc_ver_exch_loc_proc_continue = 0x40000fe0 - 0x40000fe4 r_llc_ver_proc_err_cb = 0x40000fe4 - 0x40000fe8 r_llcp_pdu_handler_tab_p_get = 0x40000fe8 - 0x40000fec r_lld_aa_gen = 0x40000fec - 0x40000ff0 r_lld_adv_adv_data_set = 0x40000ff0 - 0x40000ff4 r_lld_adv_adv_data_update = 0x40000ff4 - 0x40000ff8 r_lld_adv_aux_ch_idx_set = 0x40000ff8 - 0x40000ffc r_lld_adv_aux_evt_canceled_cbk = 0x40000ffc - 0x40001000 r_lld_adv_aux_evt_start_cbk = 0x40001000 - 0x40001004 r_lld_adv_coex_check_ext_adv_synced = 0x40001004 - 0x40001008 r_lld_adv_coex_env_reset = 0x40001008 - 0x4000100c r_lld_adv_duration_update = 0x4000100c - 0x40001010 r_lld_adv_dynamic_pti_process = 0x40001010 - 0x40001014 r_lld_adv_end = 0x40001014 - 0x40001018 r_lld_adv_evt_canceled_cbk = 0x40001018 - 0x4000101c r_lld_adv_evt_start_cbk = 0x4000101c - 0x40001020 r_lld_adv_ext_chain_construct = 0x40001020 - 0x40001024 r_lld_adv_ext_pkt_prepare = 0x40001024 - 0x40001028 r_lld_adv_frm_cbk = 0x40001028 - 0x4000102c r_lld_adv_frm_isr = 0x4000102c - 0x40001030 r_lld_adv_frm_skip_isr = 0x40001030 - 0x40001034 r_lld_adv_init = 0x40001034 - 0x40001038 r_lld_adv_pkt_rx = 0x40001038 - 0x4000103c r_lld_adv_pkt_rx_connect_ind = 0x4000103c - 0x40001044 r_lld_adv_rand_addr_update = 0x40001044 - 0x40001048 r_lld_adv_restart = 0x40001048 - 0x4000104c r_lld_adv_scan_rsp_data_set = 0x4000104c - 0x40001050 r_lld_adv_scan_rsp_data_update = 0x40001050 - 0x40001054 r_lld_adv_set_tx_power = 0x40001054 - 0x40001058 r_lld_adv_start = 0x40001058 - 0x4000105c r_lld_adv_stop = 0x4000105c - 0x40001060 r_lld_adv_sync_info_set = 0x40001060 - 0x40001064 r_lld_adv_sync_info_update = 0x40001064 - 0x40001068 r_lld_calc_aux_rx = 0x40001068 - 0x4000106c r_lld_cca_alloc = 0x4000106c - 0x40001070 r_lld_cca_data_reset = 0x40001070 - 0x40001074 r_lld_cca_free = 0x40001074 - 0x40001078 r_lld_ch_assess_data_get = 0x40001078 - 0x4000107c r_lld_ch_idx_get = 0x4000107c - 0x40001080 r_lld_ch_map_set = 0x40001080 - 0x40001084 r_lld_channel_assess = 0x40001084 - 0x40001088 r_lld_con_activity_act_offset_compute = 0x40001088 - 0x4000108c r_lld_con_activity_offset_compute = 0x4000108c - 0x40001090 r_lld_con_ch_map_update = 0x40001090 - 0x40001094 r_lld_con_cleanup = 0x40001094 - 0x40001098 r_lld_con_current_tx_power_get = 0x40001098 - 0x4000109c r_lld_con_data_flow_set = 0x4000109c - 0x400010a0 r_lld_con_data_len_update = 0x400010a0 - 0x400010a4 r_lld_con_data_tx = 0x400010a4 - 0x400010a8 r_lld_con_enc_key_load = 0x400010a8 - 0x400010ac r_lld_con_event_counter_get = 0x400010ac - 0x400010b0 r_lld_con_evt_canceled_cbk = 0x400010b0 - 0x400010b4 r_lld_con_evt_duration_min_get = 0x400010b4 - 0x400010b8 r_lld_con_evt_max_eff_time_cal = 0x400010b8 - 0x400010bc r_lld_con_evt_sd_evt_time_get = 0x400010bc - 0x400010c0 r_lld_con_evt_start_cbk = 0x400010c0 - 0x400010c4 r_lld_con_evt_time_update = 0x400010c4 - 0x400010c8 r_lld_con_free_all_tx_buf = 0x400010c8 - 0x400010cc r_lld_con_frm_cbk = 0x400010cc - 0x400010d0 r_lld_con_frm_isr = 0x400010d0 - 0x400010d4 r_lld_con_frm_skip_isr = 0x400010d4 - 0x400010d8 r_lld_con_init = 0x400010d8 - 0x400010dc r_lld_con_llcp_tx = 0x400010dc - 0x400010e0 r_lld_con_max_lat_calc = 0x400010e0 - 0x400010e4 r_lld_con_offset_get = 0x400010e4 - 0x400010e8 r_lld_con_param_update = 0x400010e8 - 0x400010ec r_lld_con_phys_update = 0x400010ec - 0x400010f0 r_lld_con_pref_slave_evt_dur_set = 0x400010f0 - 0x400010f4 r_lld_con_pref_slave_latency_set = 0x400010f4 - 0x400010f8 r_lld_con_rssi_get = 0x400010f8 - 0x400010fc r_lld_con_rx = 0x400010fc - 0x40001104 r_lld_con_rx_enc = 0x40001104 - 0x40001108 r_lld_con_rx_isr = 0x40001108 - 0x4000110c r_lld_con_rx_link_info_check = 0x4000110c - 0x40001110 r_lld_con_rx_llcp_check = 0x40001110 - 0x40001114 r_lld_con_rx_sync_time_update = 0x40001114 - 0x4000111c r_lld_con_set_tx_power = 0x4000111c - 0x40001120 r_lld_con_start = 0x40001120 - 0x40001128 r_lld_con_tx = 0x40001128 - 0x4000112c r_lld_con_tx_enc = 0x4000112c - 0x40001130 r_lld_con_tx_isr = 0x40001130 - 0x40001134 r_lld_con_tx_len_update = 0x40001134 - 0x40001138 r_lld_con_tx_len_update_for_intv = 0x40001138 - 0x4000113c r_lld_con_tx_len_update_for_rate = 0x4000113c - 0x40001140 r_lld_con_tx_prog = 0x40001140 - 0x40001144 r_lld_conn_dynamic_pti_process = 0x40001144 - 0x40001148 r_lld_continue_scan_rx_isr_end_process = 0x40001148 - 0x4000114c r_lld_ext_scan_dynamic_pti_process = 0x4000114c - 0x40001150 r_lld_hw_cca_end_isr = 0x40001150 - 0x40001154 r_lld_hw_cca_evt_handler = 0x40001154 - 0x40001158 r_lld_hw_cca_isr = 0x40001158 - 0x4000115c r_lld_init_cal_anchor_point = 0x4000115c - 0x40001160 r_lld_init_compute_winoffset = 0x40001160 - 0x40001164 r_lld_init_connect_req_pack = 0x40001164 - 0x40001168 r_lld_init_end = 0x40001168 - 0x4000116c r_lld_init_evt_canceled_cbk = 0x4000116c - 0x40001170 r_lld_init_evt_start_cbk = 0x40001170 - 0x40001174 r_lld_init_frm_cbk = 0x40001174 - 0x40001178 r_lld_init_frm_eof_isr = 0x40001178 - 0x4000117c r_lld_init_frm_skip_isr = 0x4000117c - 0x40001180 r_lld_init_init = 0x40001180 - 0x40001184 r_lld_init_process_pkt_rx = 0x40001184 - 0x40001188 r_lld_init_process_pkt_rx_adv_ext_ind = 0x40001188 - 0x4000118c r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x4000118c - 0x40001190 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40001190 - 0x40001194 r_lld_init_process_pkt_tx = 0x40001194 - 0x40001198 r_lld_init_process_pkt_tx_cal_con_timestamp = 0x40001198 - 0x4000119c r_lld_init_sched = 0x4000119c - 0x400011a0 r_lld_init_set_tx_power = 0x400011a0 - 0x400011a4 r_lld_init_start = 0x400011a4 - 0x400011a8 r_lld_init_stop = 0x400011a8 - 0x400011ac r_lld_instant_proc_end = 0x400011ac - 0x400011b4 r_lld_per_adv_ch_map_update = 0x400011b4 - 0x400011b8 r_lld_per_adv_chain_construct = 0x400011b8 - 0x400011bc r_lld_per_adv_cleanup = 0x400011bc - 0x400011c0 r_lld_per_adv_coex_env_reset = 0x400011c0 - 0x400011c4 r_lld_per_adv_data_set = 0x400011c4 - 0x400011c8 r_lld_per_adv_data_update = 0x400011c8 - 0x400011cc r_lld_per_adv_dynamic_pti_process = 0x400011cc - 0x400011d0 r_lld_per_adv_evt_canceled_cbk = 0x400011d0 - 0x400011d4 r_lld_per_adv_evt_start_cbk = 0x400011d4 - 0x400011d8 r_lld_per_adv_ext_pkt_prepare = 0x400011d8 - 0x400011dc r_lld_per_adv_frm_cbk = 0x400011dc - 0x400011e0 r_lld_per_adv_frm_isr = 0x400011e0 - 0x400011e4 r_lld_per_adv_frm_skip_isr = 0x400011e4 - 0x400011e8 r_lld_per_adv_init = 0x400011e8 - 0x400011ec r_lld_per_adv_init_info_get = 0x400011ec - 0x400011f0 r_lld_per_adv_list_add = 0x400011f0 - 0x400011f4 r_lld_per_adv_list_rem = 0x400011f4 - 0x400011fc r_lld_per_adv_set_tx_power = 0x400011fc - 0x40001200 r_lld_per_adv_start = 0x40001200 - 0x40001204 r_lld_per_adv_stop = 0x40001204 - 0x40001208 r_lld_per_adv_sync_info_get = 0x40001208 - 0x4000120c r_lld_process_cca_data = 0x4000120c - 0x40001210 r_lld_ral_search = 0x40001210 - 0x40001214 r_lld_read_clock = 0x40001214 - 0x40001218 r_lld_res_list_add = 0x40001218 - 0x40001220 r_lld_res_list_is_empty = 0x40001220 - 0x40001224 r_lld_res_list_local_rpa_get = 0x40001224 - 0x40001228 r_lld_res_list_peer_rpa_get = 0x40001228 - 0x4000122c r_lld_res_list_peer_update = 0x4000122c - 0x40001238 r_lld_reset_reg = 0x40001238 - 0x4000123c r_lld_rpa_renew = 0x4000123c - 0x40001240 r_lld_rpa_renew_evt_canceled_cbk = 0x40001240 - 0x40001244 r_lld_rpa_renew_evt_start_cbk = 0x40001244 - 0x40001248 r_lld_rpa_renew_instant_cbk = 0x40001248 - 0x4000124c r_lld_rxdesc_check = 0x4000124c - 0x40001250 r_lld_rxdesc_free = 0x40001250 - 0x40001254 r_lld_scan_create_sync = 0x40001254 - 0x40001258 r_lld_scan_create_sync_cancel = 0x40001258 - 0x4000125c r_lld_scan_end = 0x4000125c - 0x40001260 r_lld_scan_evt_canceled_cbk = 0x40001260 - 0x40001264 r_lld_scan_evt_start_cbk = 0x40001264 - 0x40001268 r_lld_scan_frm_cbk = 0x40001268 - 0x4000126c r_lld_scan_frm_eof_isr = 0x4000126c - 0x40001270 r_lld_scan_frm_rx_isr = 0x40001270 - 0x40001274 r_lld_scan_frm_skip_isr = 0x40001274 - 0x40001278 r_lld_scan_init = 0x40001278 - 0x4000127c r_lld_scan_params_update = 0x4000127c - 0x40001288 r_lld_scan_process_pkt_rx_aux_adv_ind = 0x40001288 - 0x4000128c r_lld_scan_process_pkt_rx_aux_chain_ind = 0x4000128c - 0x40001290 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40001290 - 0x40001294 r_lld_scan_process_pkt_rx_ext_adv = 0x40001294 - 0x40001298 r_lld_scan_process_pkt_rx_ext_adv_ind = 0x40001298 - 0x4000129c r_lld_scan_process_pkt_rx_legacy_adv = 0x4000129c - 0x400012a0 r_lld_scan_restart = 0x400012a0 - 0x400012a4 r_lld_scan_sched = 0x400012a4 - 0x400012a8 r_lld_scan_set_tx_power = 0x400012a8 - 0x400012ac r_lld_scan_start = 0x400012ac - 0x400012b0 r_lld_scan_stop = 0x400012b0 - 0x400012b4 r_lld_scan_sync_accept = 0x400012b4 - 0x400012b8 r_lld_scan_sync_info_unpack = 0x400012b8 - 0x400012bc r_lld_scan_trunc_ind = 0x400012bc - 0x400012c0 r_lld_sw_cca_evt_handler = 0x400012c0 - 0x400012c4 r_lld_sw_cca_isr = 0x400012c4 - 0x400012c8 r_lld_sync_ch_map_update = 0x400012c8 - 0x400012cc r_lld_sync_cleanup = 0x400012cc - 0x400012d0 r_lld_sync_evt_canceled_cbk = 0x400012d0 - 0x400012d4 r_lld_sync_evt_start_cbk = 0x400012d4 - 0x400012d8 r_lld_sync_frm_cbk = 0x400012d8 - 0x400012dc r_lld_sync_frm_eof_isr = 0x400012dc - 0x400012e0 r_lld_sync_frm_rx_isr = 0x400012e0 - 0x400012e4 r_lld_sync_frm_skip_isr = 0x400012e4 - 0x400012e8 r_lld_sync_init = 0x400012e8 - 0x400012ec r_lld_sync_process_pkt_rx = 0x400012ec - 0x400012f0 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400012f0 - 0x400012f4 r_lld_sync_process_pkt_rx_pkt_check = 0x400012f4 - 0x400012f8 r_lld_sync_scan_dynamic_pti_process = 0x400012f8 - 0x400012fc r_lld_sync_sched = 0x400012fc - 0x40001300 r_lld_sync_start = 0x40001300 - 0x40001304 r_lld_sync_stop = 0x40001304 - 0x40001308 r_lld_sync_trunc_ind = 0x40001308 - 0x4000130c r_lld_test_cleanup = 0x4000130c - 0x40001310 r_lld_test_evt_canceled_cbk = 0x40001310 - 0x40001314 r_lld_test_evt_start_cbk = 0x40001314 - 0x40001318 r_lld_test_freq2chnl = 0x40001318 - 0x4000131c r_lld_test_frm_cbk = 0x4000131c - 0x40001320 r_lld_test_frm_isr = 0x40001320 - 0x40001324 r_lld_test_init = 0x40001324 - 0x40001328 r_lld_test_rx_isr = 0x40001328 - 0x4000132c r_lld_test_set_tx_power = 0x4000132c - 0x40001330 r_lld_test_start = 0x40001330 - 0x40001338 r_lld_update_rxbuf = 0x40001338 - 0x4000133c r_lld_update_rxbuf_isr = 0x4000133c - 0x40001340 r_lld_white_list_add = 0x40001340 - 0x40001344 r_lld_white_list_rem = 0x40001344 - 0x40001348 r_llm_activity_free_get = 0x40001348 - 0x4000134c r_llm_activity_free_set = 0x4000134c - 0x40001350 r_llm_activity_syncing_get = 0x40001350 - 0x40001354 r_llm_adv_con_len_check = 0x40001354 - 0x40001358 r_llm_adv_hdl_to_id = 0x40001358 - 0x4000135c r_llm_adv_rep_flow_control_check = 0x4000135c - 0x40001360 r_llm_adv_rep_flow_control_update = 0x40001360 - 0x40001364 r_llm_adv_reports_list_check = 0x40001364 - 0x40001368 r_llm_adv_set_all_release = 0x40001368 - 0x4000136c r_llm_adv_set_dft_params = 0x4000136c - 0x40001370 r_llm_adv_set_release = 0x40001370 - 0x40001374 r_llm_aes_res_cb = 0x40001374 - 0x40001378 r_llm_ble_update_adv_flow_control = 0x40001378 - 0x4000137c r_llm_ch_map_update = 0x4000137c - 0x40001380 r_llm_cmd_cmp_send = 0x40001380 - 0x40001384 r_llm_cmd_stat_send = 0x40001384 - 0x40001388 r_llm_dev_list_empty_entry = 0x40001388 - 0x4000138c r_llm_dev_list_search = 0x4000138c - 0x40001390 r_llm_env_adv_dup_filt_deinit = 0x40001390 - 0x40001394 r_llm_env_adv_dup_filt_init = 0x40001394 - 0x40001398 r_llm_init_ble_adv_report_flow_contol = 0x40001398 - 0x4000139c r_llm_is_dev_connected = 0x4000139c - 0x400013a0 r_llm_is_dev_synced = 0x400013a0 - 0x400013a4 r_llm_is_non_con_act_ongoing_check = 0x400013a4 - 0x400013a8 r_llm_is_wl_accessible = 0x400013a8 - 0x400013ac r_llm_le_evt_mask_check = 0x400013ac - 0x400013b4 r_llm_link_disc = 0x400013b4 - 0x400013b8 r_llm_master_ch_map_get = 0x400013b8 - 0x400013bc r_llm_msg_handler_tab_p_get = 0x400013bc - 0x400013c0 r_llm_no_activity = 0x400013c0 - 0x400013c4 r_llm_per_adv_slot_dur = 0x400013c4 - 0x400013c8 r_llm_plan_elt_get = 0x400013c8 - 0x400013cc r_llm_rx_path_comp_get = 0x400013cc - 0x400013d0 r_llm_scan_start = 0x400013d0 - 0x400013d4 r_llm_scan_sync_acad_attach = 0x400013d4 - 0x400013d8 r_llm_scan_sync_acad_detach = 0x400013d8 - 0x400013dc r_llm_send_adv_lost_event_to_host = 0x400013dc - 0x400013e0 r_llm_tx_path_comp_get = 0x400013e0 - 0x400013e4 r_misc_deinit = 0x400013e4 - 0x400013e8 r_misc_free_em_buf_in_isr = 0x400013e8 - 0x400013ec r_misc_init = 0x400013ec - 0x400013f0 r_misc_msg_handler_tab_p_get = 0x400013f0 - 0x400013f4 r_notEqual256 = 0x400013f4 - 0x400013f8 r_phy_upd_proc_start = 0x400013f8 - 0x400013fc r_platform_reset = 0x400013fc - 0x40001404 r_rf_em_init = 0x40001404 - 0x40001408 r_rf_force_agc_enable = 0x40001408 - 0x4000140c r_rf_reg_rd = 0x4000140c - 0x40001410 r_rf_reg_wr = 0x40001410 - 0x40001414 r_rf_reset = 0x40001414 - 0x40001418 r_rf_rssi_convert = 0x40001418 - 0x4000141c r_rf_rw_v9_le_disable = 0x4000141c - 0x40001420 r_rf_rw_v9_le_enable = 0x40001420 - 0x40001424 r_rf_sleep = 0x40001424 - 0x40001430 r_rf_util_cs_fmt_convert = 0x40001430 - 0x40001434 r_rw_crypto_aes_ccm = 0x40001434 - 0x40001438 r_rw_crypto_aes_encrypt = 0x40001438 - 0x4000143c r_rw_crypto_aes_init = 0x4000143c - 0x40001440 r_rw_crypto_aes_k1 = 0x40001440 - 0x40001444 r_rw_crypto_aes_k2 = 0x40001444 - 0x40001448 r_rw_crypto_aes_k3 = 0x40001448 - 0x4000144c r_rw_crypto_aes_k4 = 0x4000144c - 0x40001450 r_rw_crypto_aes_rand = 0x40001450 - 0x40001454 r_rw_crypto_aes_result_handler = 0x40001454 - 0x40001458 r_rw_crypto_aes_s1 = 0x40001458 - 0x4000145c r_rw_cryto_aes_cmac = 0x4000145c - 0x40001460 r_rw_v9_init_em_radio_table = 0x40001460 - 0x40001468 r_rwble_sleep_enter = 0x40001468 - 0x4000146c r_rwble_sleep_wakeup_end = 0x4000146c - 0x40001474 r_rwip_active_check = 0x40001474 - 0x40001478 r_rwip_aes_encrypt = 0x40001478 - 0x40001480 r_rwip_crypt_evt_handler = 0x40001480 - 0x40001484 r_rwip_crypt_isr_handler = 0x40001484 - 0x40001488 r_rwip_eif_get = 0x40001488 - 0x4000148c r_rwip_half_slot_2_lpcycles = 0x4000148c - 0x40001490 r_rwip_hus_2_lpcycles = 0x40001490 - 0x40001494 r_rwip_isr = 0x40001494 - 0x40001498 r_rwip_lpcycles_2_hus = 0x40001498 - 0x4000149c r_rwip_prevent_sleep_clear = 0x4000149c - 0x400014a0 r_rwip_prevent_sleep_set = 0x400014a0 - 0x400014a4 r_rwip_schedule = 0x400014a4 - 0x400014a8 r_rwip_sleep = 0x400014a8 - 0x400014ac r_rwip_sw_int_handler = 0x400014ac - 0x400014b0 r_rwip_sw_int_req = 0x400014b0 - 0x400014b4 r_rwip_time_get = 0x400014b4 - 0x400014b8 r_rwip_timer_10ms_handler = 0x400014b8 - 0x400014bc r_rwip_timer_10ms_set = 0x400014bc - 0x400014c0 r_rwip_timer_hs_handler = 0x400014c0 - 0x400014c4 r_rwip_timer_hs_set = 0x400014c4 - 0x400014c8 r_rwip_timer_hus_handler = 0x400014c8 - 0x400014cc r_rwip_timer_hus_set = 0x400014cc - 0x400014d0 r_rwip_wakeup = 0x400014d0 - 0x400014d8 r_rwip_wlcoex_set = 0x400014d8 - 0x400014dc r_sch_alarm_clear = 0x400014dc - 0x400014e0 r_sch_alarm_init = 0x400014e0 - 0x400014e4 r_sch_alarm_prog = 0x400014e4 - 0x400014e8 r_sch_alarm_set = 0x400014e8 - 0x400014ec r_sch_alarm_timer_isr = 0x400014ec - 0x400014f0 r_sch_arb_conflict_check = 0x400014f0 - 0x400014f4 r_sch_arb_elt_cancel = 0x400014f4 - 0x400014fc r_sch_arb_init = 0x400014fc - 0x40001500 r_sch_arb_insert = 0x40001500 - 0x40001504 r_sch_arb_prog_timer = 0x40001504 - 0x40001508 r_sch_arb_remove = 0x40001508 - 0x4000150c r_sch_arb_sw_isr = 0x4000150c - 0x40001510 r_sch_plan_chk = 0x40001510 - 0x40001514 r_sch_plan_clock_wrap_offset_update = 0x40001514 - 0x40001518 r_sch_plan_init = 0x40001518 - 0x4000151c r_sch_plan_interval_req = 0x4000151c - 0x40001520 r_sch_plan_offset_max_calc = 0x40001520 - 0x40001524 r_sch_plan_offset_req = 0x40001524 - 0x40001528 r_sch_plan_position_range_compute = 0x40001528 - 0x4000152c r_sch_plan_rem = 0x4000152c - 0x40001530 r_sch_plan_req = 0x40001530 - 0x4000153c r_sch_prog_init = 0x4000153c - 0x40001540 r_sch_prog_push = 0x40001540 - 0x40001544 r_sch_prog_rx_isr = 0x40001544 - 0x40001548 r_sch_prog_skip_isr = 0x40001548 - 0x4000154c r_sch_prog_tx_isr = 0x4000154c - 0x40001550 r_sch_slice_bg_add = 0x40001550 - 0x40001554 r_sch_slice_bg_remove = 0x40001554 - 0x40001558 r_sch_slice_compute = 0x40001558 - 0x4000155c r_sch_slice_fg_add = 0x4000155c - 0x40001560 r_sch_slice_fg_remove = 0x40001560 - 0x40001564 r_sch_slice_init = 0x40001564 - 0x40001568 r_sch_slice_per_add = 0x40001568 - 0x4000156c r_sch_slice_per_remove = 0x4000156c - 0x40001570 r_sdk_config_get_bt_sleep_enable = 0x40001570 - 0x40001574 r_sdk_config_get_hl_derived_opts = 0x40001574 - 0x40001578 r_sdk_config_get_opts = 0x40001578 - 0x4000157c r_sdk_config_get_priv_opts = 0x4000157c - 0x40001580 r_sdk_config_set_bt_sleep_enable = 0x40001580 - 0x40001584 r_sdk_config_set_hl_derived_opts = 0x40001584 - 0x40001588 r_sdk_config_set_opts = 0x40001588 - 0x4000158c r_specialModP256 = 0x4000158c - 0x40001590 r_unloaded_area_init = 0x40001590 - 0x40001594 r_vhci_flow_off = 0x40001594 - 0x40001598 r_vhci_flow_on = 0x40001598 - 0x4000159c r_vhci_notify_host_send_available = 0x4000159c - 0x400015a0 r_vhci_send_to_host = 0x400015a0 - 0x400015a4 r_vnd_hci_command_handler = 0x400015a4 - 0x400015a8 r_vshci_init = 0x400015a8 - 0x400015ac vnd_hci_command_handler_wrapper = 0x400015ac - 0x40001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 - 0x40001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 - 0x40001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 - 0x40001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c - 0x40001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 - 0x40001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 - 0x40001c7c r_lld_scan_sched_hook = 0x40001c7c - 0x40001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 - 0x40001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 - 0x40001c8c r_lld_adv_frm_isr_hook = 0x40001c8c - 0x40001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 - 0x40001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 - 0x40001c98 r_lld_con_frm_isr_hook = 0x40001c98 - 0x40001c9c r_lld_con_tx_hook = 0x40001c9c - 0x40001ca0 r_lld_con_rx_hook = 0x40001ca0 - 0x40001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 - 0x40001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac - 0x40001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 - 0x40001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 - 0x40001cbc r_lld_init_sched_hook = 0x40001cbc - 0x40001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 - 0x40001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 - 0x40001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 - 0x40001ccc r_lld_per_adv_start_hook = 0x40001ccc - 0x40001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 - 0x40001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 - 0x40001cd8 r_lld_sync_start_hook = 0x40001cd8 - 0x40001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc - 0x40001ce0 r_sch_arb_insert_hook = 0x40001ce0 - 0x40001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 - 0x40000764 __absvdi2 = 0x40000764 - 0x40000768 __absvsi2 = 0x40000768 - 0x4000076c __adddf3 = 0x4000076c - 0x40000770 __addsf3 = 0x40000770 - 0x40000774 __addvdi3 = 0x40000774 - 0x40000778 __addvsi3 = 0x40000778 - 0x4000077c __ashldi3 = 0x4000077c - 0x40000780 __ashrdi3 = 0x40000780 - 0x40000784 __bswapdi2 = 0x40000784 - 0x40000788 __bswapsi2 = 0x40000788 - 0x4000078c __clear_cache = 0x4000078c - 0x40000790 __clrsbdi2 = 0x40000790 - 0x40000794 __clrsbsi2 = 0x40000794 - 0x40000798 __clzdi2 = 0x40000798 - 0x4000079c __clzsi2 = 0x4000079c - 0x400007a0 __cmpdi2 = 0x400007a0 - 0x400007a4 __ctzdi2 = 0x400007a4 - 0x400007a8 __ctzsi2 = 0x400007a8 - 0x400007ac __divdc3 = 0x400007ac - 0x400007b0 __divdf3 = 0x400007b0 - 0x400007b4 __divdi3 = 0x400007b4 - 0x400007b8 __divsc3 = 0x400007b8 - 0x400007bc __divsf3 = 0x400007bc - 0x400007c0 __divsi3 = 0x400007c0 - 0x400007c4 __eqdf2 = 0x400007c4 - 0x400007c8 __eqsf2 = 0x400007c8 - 0x400007cc __extendsfdf2 = 0x400007cc - 0x400007d0 __ffsdi2 = 0x400007d0 - 0x400007d4 __ffssi2 = 0x400007d4 - 0x400007d8 __fixdfdi = 0x400007d8 - 0x400007dc __fixdfsi = 0x400007dc - 0x400007e0 __fixsfdi = 0x400007e0 - 0x400007e4 __fixsfsi = 0x400007e4 - 0x400007e8 __fixunsdfsi = 0x400007e8 - 0x400007ec __fixunssfdi = 0x400007ec - 0x400007f0 __fixunssfsi = 0x400007f0 - 0x400007f4 __floatdidf = 0x400007f4 - 0x400007f8 __floatdisf = 0x400007f8 - 0x400007fc __floatsidf = 0x400007fc - 0x40000800 __floatsisf = 0x40000800 - 0x40000804 __floatundidf = 0x40000804 - 0x40000808 __floatundisf = 0x40000808 - 0x4000080c __floatunsidf = 0x4000080c - 0x40000810 __floatunsisf = 0x40000810 - 0x40000814 __gcc_bcmp = 0x40000814 - 0x40000818 __gedf2 = 0x40000818 - 0x4000081c __gesf2 = 0x4000081c - 0x40000820 __gtdf2 = 0x40000820 - 0x40000824 __gtsf2 = 0x40000824 - 0x40000828 __ledf2 = 0x40000828 - 0x4000082c __lesf2 = 0x4000082c - 0x40000830 __lshrdi3 = 0x40000830 - 0x40000834 __ltdf2 = 0x40000834 - 0x40000838 __ltsf2 = 0x40000838 - 0x4000083c __moddi3 = 0x4000083c - 0x40000840 __modsi3 = 0x40000840 - 0x40000844 __muldc3 = 0x40000844 - 0x40000848 __muldf3 = 0x40000848 - 0x4000084c __muldi3 = 0x4000084c - 0x40000850 __mulsc3 = 0x40000850 - 0x40000854 __mulsf3 = 0x40000854 - 0x40000858 __mulsi3 = 0x40000858 - 0x4000085c __mulvdi3 = 0x4000085c - 0x40000860 __mulvsi3 = 0x40000860 - 0x40000864 __nedf2 = 0x40000864 - 0x40000868 __negdf2 = 0x40000868 - 0x4000086c __negdi2 = 0x4000086c - 0x40000870 __negsf2 = 0x40000870 - 0x40000874 __negvdi2 = 0x40000874 - 0x40000878 __negvsi2 = 0x40000878 - 0x4000087c __nesf2 = 0x4000087c - 0x40000880 __paritysi2 = 0x40000880 - 0x40000884 __popcountdi2 = 0x40000884 - 0x40000888 __popcountsi2 = 0x40000888 - 0x4000088c __powidf2 = 0x4000088c - 0x40000890 __powisf2 = 0x40000890 - 0x40000894 __subdf3 = 0x40000894 - 0x40000898 __subsf3 = 0x40000898 - 0x4000089c __subvdi3 = 0x4000089c - 0x400008a0 __subvsi3 = 0x400008a0 - 0x400008a4 __truncdfsf2 = 0x400008a4 - 0x400008a8 __ucmpdi2 = 0x400008a8 - 0x400008ac __udivdi3 = 0x400008ac - 0x400008b0 __udivmoddi4 = 0x400008b0 - 0x400008b4 __udivsi3 = 0x400008b4 - 0x400008b8 __udiv_w_sdiv = 0x400008b8 - 0x400008bc __umoddi3 = 0x400008bc - 0x400008c0 __umodsi3 = 0x400008c0 - 0x400008c4 __unorddf2 = 0x400008c4 - 0x400008c8 __unordsf2 = 0x400008c8 - 0x40000010 _rom_chip_id = 0x40000010 - 0x40000014 _rom_eco_version = 0x40000014 - 0x40000350 esp_rom_newlib_init_common_mutexes = 0x40000350 - 0x40000354 memset = 0x40000354 - 0x40000358 memcpy = 0x40000358 - 0x4000035c memmove = 0x4000035c - 0x40000360 memcmp = 0x40000360 - 0x40000364 strcpy = 0x40000364 - 0x40000368 strncpy = 0x40000368 - 0x4000036c strcmp = 0x4000036c - 0x40000370 strncmp = 0x40000370 - 0x40000374 strlen = 0x40000374 - 0x40000378 strstr = 0x40000378 - 0x4000037c bzero = 0x4000037c - 0x40000384 sbrk = 0x40000384 - 0x40000388 isalnum = 0x40000388 - 0x4000038c isalpha = 0x4000038c - 0x40000390 isascii = 0x40000390 - 0x40000394 isblank = 0x40000394 - 0x40000398 iscntrl = 0x40000398 - 0x4000039c isdigit = 0x4000039c - 0x400003a0 islower = 0x400003a0 - 0x400003a4 isgraph = 0x400003a4 - 0x400003a8 isprint = 0x400003a8 - 0x400003ac ispunct = 0x400003ac - 0x400003b0 isspace = 0x400003b0 - 0x400003b4 isupper = 0x400003b4 - 0x400003b8 toupper = 0x400003b8 - 0x400003bc tolower = 0x400003bc - 0x400003c0 toascii = 0x400003c0 - 0x400003c4 memccpy = 0x400003c4 - 0x400003c8 memchr = 0x400003c8 - 0x400003cc memrchr = 0x400003cc - 0x400003d0 strcasecmp = 0x400003d0 - 0x400003d4 strcasestr = 0x400003d4 - 0x400003d8 strcat = 0x400003d8 - 0x400003dc strdup = 0x400003dc - 0x400003e0 strchr = 0x400003e0 - 0x400003e4 strcspn = 0x400003e4 - 0x400003e8 strcoll = 0x400003e8 - 0x400003ec strlcat = 0x400003ec - 0x400003f0 strlcpy = 0x400003f0 - 0x400003f4 strlwr = 0x400003f4 - 0x400003f8 strncasecmp = 0x400003f8 - 0x400003fc strncat = 0x400003fc - 0x40000400 strndup = 0x40000400 - 0x40000404 strnlen = 0x40000404 - 0x40000408 strrchr = 0x40000408 - 0x4000040c strsep = 0x4000040c - 0x40000410 strspn = 0x40000410 - 0x40000414 strtok_r = 0x40000414 - 0x40000418 strupr = 0x40000418 - 0x4000041c longjmp = 0x4000041c - 0x40000420 setjmp = 0x40000420 - 0x40000424 abs = 0x40000424 - 0x40000428 div = 0x40000428 - 0x4000042c labs = 0x4000042c - 0x40000430 ldiv = 0x40000430 - 0x40000434 qsort = 0x40000434 - 0x40000438 rand_r = 0x40000438 - 0x4000043c rand = 0x4000043c - 0x40000440 srand = 0x40000440 - 0x40000444 utoa = 0x40000444 - 0x40000448 itoa = 0x40000448 - 0x4000044c atoi = 0x4000044c - 0x40000450 atol = 0x40000450 - 0x40000454 strtol = 0x40000454 - 0x40000458 strtoul = 0x40000458 - [!provide] PROVIDE (fflush = 0x4000045c) - [!provide] PROVIDE (_fflush_r = 0x40000460) - [!provide] PROVIDE (_fwalk = 0x40000464) - [!provide] PROVIDE (_fwalk_reent = 0x40000468) - [!provide] PROVIDE (__swbuf_r = 0x40000474) - 0x40000478 __swbuf = 0x40000478 - 0x3fcdffe0 syscall_table_ptr = 0x3fcdffe0 - 0x3fcdffdc _global_impure_ptr = 0x3fcdffdc - 0x60000000 PROVIDE (UART0 = 0x60000000) - [!provide] PROVIDE (UART1 = 0x60010000) - 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) - 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) - [!provide] PROVIDE (GPIO = 0x60004000) - [!provide] PROVIDE (SDM = 0x60004f00) - 0x60008000 PROVIDE (RTCCNTL = 0x60008000) - [!provide] PROVIDE (RTCIO = 0x60008400) - 0x60008800 PROVIDE (EFUSE = 0x60008800) - [!provide] PROVIDE (HINF = 0x6000b000) - [!provide] PROVIDE (I2S0 = 0x6002d000) - [!provide] PROVIDE (I2C0 = 0x60013000) - [!provide] PROVIDE (UHCI0 = 0x60014000) - [!provide] PROVIDE (HOST = 0x60015000) - [!provide] PROVIDE (RMT = 0x60016000) - [!provide] PROVIDE (RMTMEM = 0x60016400) - [!provide] PROVIDE (SLC = 0x60018000) - [!provide] PROVIDE (LEDC = 0x60019000) - 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) - 0x60020000 PROVIDE (TIMERG1 = 0x60020000) - [!provide] PROVIDE (SYSTIMER = 0x60023000) - [!provide] PROVIDE (GPSPI2 = 0x60024000) - [!provide] PROVIDE (SYSCON = 0x60026000) - [!provide] PROVIDE (TWAI = 0x6002b000) - [!provide] PROVIDE (APB_SARADC = 0x60040000) - [!provide] PROVIDE (USB_SERIAL_JTAG = 0x60043000) - [!provide] PROVIDE (GDMA = 0x6003f000) - [!provide] PROVIDE (SYSTEM = 0x600c0000) - 0x00700000 iram_dram_offset = 0x700000 - 0x3fcdc710 bootloader_usable_dram_end = 0x3fcdc710 - 0x00002000 bootloader_stack_overhead = 0x2000 - 0x00005000 bootloader_dram_seg_len = 0x5000 - 0x00007000 bootloader_iram_loader_seg_len = 0x7000 - 0x00002000 bootloader_iram_seg_len = 0x2000 - 0x3fcda710 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead) - 0x3fcd5710 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len) - 0x403ce710 bootloader_iram_loader_seg_start = ((bootloader_dram_seg_start - bootloader_iram_loader_seg_len) + iram_dram_offset) - 0x403cc710 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len) - 0x00000001 ASSERT ((bootloader_iram_loader_seg_start == 0x403ce710), bootloader_iram_loader_seg_start inconsistent with SRAM_DRAM_END) - -.iram_loader.text - 0x403ce710 0x2ff0 - 0x403ce710 . = ALIGN (0x10) - 0x403ce710 _loader_text_start = ABSOLUTE (.) - *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) - *(.iram1 .iram1.*) - .iram1.0 0x403ce710 0x2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x403ce710 esp_flash_encryption_enabled - .iram1.5 0x403ce712 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.1 0x403ce762 0x206 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403ce762 bootloader_flash_execute_command_common - .iram1.2 0x403ce968 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403ce968 bootloader_execute_flash_command - .iram1.0 0x403ce976 0x15a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403ce976 bootloader_flash_unlock - .iram1.3 0x403cead0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cead0 bootloader_flash_read_sfdp - .iram1.4 0x403ceb10 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403ceb10 bootloader_read_flash_id - .iram1.6 0x403ceb44 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403ceb44 bootloader_flash_xmc_startup - .iram1.0 0x403cec02 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x403cec02 bootloader_flash_cs_timing_config - .iram1.2 0x403cec44 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x403cec44 bootloader_flash_set_dummy_out - .iram1.4 0x403cec60 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x403cec60 bootloader_configure_spi_pins - .iram1.0 0x403ced2c 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ced2c efuse_hal_chip_revision - .iram1.1 0x403ced4a 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ced4a efuse_hal_blk_version - .iram1.2 0x403ced68 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ced68 efuse_hal_get_disable_wafer_version_major - .iram1.3 0x403ced76 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ced76 efuse_hal_get_disable_blk_version_major - .iram1.4 0x403ced86 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ced86 efuse_hal_flash_encryption_enabled - .iram1.0 0x403ceda4 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403ceda4 efuse_hal_get_major_chip_version - .iram1.1 0x403cedb4 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x403cedb4 efuse_hal_get_minor_chip_version - *liblog.a:(.literal .text .literal.* .text.*) - .text.esp_log_early_timestamp - 0x403cedcc 0x26 esp-idf/log/liblog.a(log_timestamp.c.obj) - 0x403cedcc esp_log_timestamp - 0x403cedcc esp_log_early_timestamp - *libgcc.a:(.literal .text .literal.* .text.*) - *libclang_rt.builtins.a:(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) - .text.bootloader_common_ota_select_crc - 0x403cedf2 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cedf2 bootloader_common_ota_select_crc - .text.bootloader_common_ota_select_invalid - 0x403cee00 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cee00 bootloader_common_ota_select_invalid - .text.bootloader_common_ota_select_valid - 0x403cee16 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cee16 bootloader_common_ota_select_valid - .text.bootloader_common_check_efuse_blk_validity - 0x403cee40 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cee40 bootloader_common_check_efuse_blk_validity - .text.bootloader_common_check_chip_validity - 0x403ceef4 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403ceef4 bootloader_common_check_chip_validity - .text.bootloader_common_select_otadata - 0x403cf00c 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cf00c bootloader_common_select_otadata - .text.bootloader_common_get_active_otadata - 0x403cf04a 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x403cf04a bootloader_common_get_active_otadata - *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) - .text.spi_to_esp_err - 0x403cf078 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_mmap_get_free_pages - 0x403cf09c 0x6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf09c bootloader_mmap_get_free_pages - .text.bootloader_mmap - 0x403cf0a2 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf0a2 bootloader_mmap - .text.bootloader_munmap - 0x403cf16a 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf16a bootloader_munmap - .text.bootloader_flash_read - 0x403cf19c 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf19c bootloader_flash_read - .text.bootloader_flash_erase_sector - 0x403cf2d4 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf2d4 bootloader_flash_erase_sector - .text.bootloader_flash_write - 0x403cf2e6 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf2e6 bootloader_flash_write - .text.bootloader_enable_wp - 0x403cf3b6 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf3b6 bootloader_enable_wp - .text.bootloader_flash_get_spi_mode - 0x403cf3c2 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x403cf3c2 bootloader_flash_get_spi_mode - *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) - .text.bootloader_fill_random - 0x403cf400 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - 0x403cf400 bootloader_fill_random - *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) - .text.bootloader_random_disable - 0x403cf470 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - 0x403cf470 bootloader_random_disable - *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) - .text.log_invalid_app_partition - 0x403cf4e2 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.index_to_partition - 0x403cf566 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.try_load_partition - 0x403cf5ac 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.cache_ll_l1_enable_bus.constprop.0 - 0x403cf5f0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.write_otadata.isra.0 - 0x403cf610 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_actual_ota_seq - 0x403cf672 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.load_image - 0x403cf6ea 0x1b2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_read_otadata - 0x403cf89c 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cf89c bootloader_common_read_otadata - .text.bootloader_utility_load_partition_table - 0x403cf93e 0x270 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cf93e bootloader_utility_load_partition_table - .text.bootloader_utility_get_selected_boot_partition - 0x403cfbae 0x16c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cfbae bootloader_utility_get_selected_boot_partition - .text.bootloader_reset - 0x403cfd1a 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cfd1a bootloader_reset - .text.bootloader_utility_load_boot_image - 0x403cfd36 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cfd36 bootloader_utility_load_boot_image - .text.bootloader_debug_buffer - 0x403cfe52 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x403cfe52 bootloader_debug_buffer - *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) - .text.bootloader_sha256_start - 0x403cfe54 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x403cfe54 bootloader_sha256_start - .text.bootloader_sha256_data - 0x403cfe80 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x403cfe80 bootloader_sha256_data - .text.bootloader_sha256_finish - 0x403cfed2 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x403cfed2 bootloader_sha256_finish - *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) - .text.bootloader_console_deinit - 0x403cff18 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - 0x403cff18 bootloader_console_deinit - *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) - .text.__assert_func - 0x403cff22 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - 0x403cff22 __assert_func - .text.unlikely.abort - 0x403cff42 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - 0x403cff42 abort - *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) - .text.bootloader_ana_super_wdt_reset_config - 0x403cff6a 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - 0x403cff6a bootloader_ana_super_wdt_reset_config - .text.bootloader_ana_clock_glitch_reset_config - 0x403cff96 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - 0x403cff96 bootloader_ana_clock_glitch_reset_config - *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) - .text.bootloader_util_regions_overlap - 0x403cffc4 0x4c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.should_load - 0x403d0010 0x58 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segments - 0x403d0068 0x4c4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.image_load - 0x403d052c 0x3ee esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image - 0x403d091a 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - 0x403d091a bootloader_load_image - *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) - .text.esp_partition_table_verify - 0x403d0922 0x17e esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - 0x403d0922 esp_partition_table_verify - *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) - *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) - *libspi_flash.a:*.*(.literal .text .literal.* .text.*) - *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) - .text.wdt_hal_init - 0x403d0aa0 0x1cc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0aa0 wdt_hal_init - .text.wdt_hal_config_stage - 0x403d0c6c 0x10a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0c6c wdt_hal_config_stage - .text.wdt_hal_write_protect_disable - 0x403d0d76 0x18 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0d76 wdt_hal_write_protect_disable - .text.wdt_hal_write_protect_enable - 0x403d0d8e 0x12 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0d8e wdt_hal_write_protect_enable - .text.wdt_hal_enable - 0x403d0da0 0x28 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0da0 wdt_hal_enable - .text.wdt_hal_set_flashboot_en - 0x403d0dc8 0x36 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x403d0dc8 wdt_hal_set_flashboot_en - *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) - .text.mmu_hal_unmap_all - 0x403d0dfe 0x16 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x403d0dfe mmu_hal_unmap_all - .text.mmu_hal_init - 0x403d0e14 0x12 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x403d0e14 mmu_hal_init - .text.mmu_hal_check_valid_ext_vaddr_region - 0x403d0e26 0x48 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x403d0e26 mmu_hal_check_valid_ext_vaddr_region - .text.mmu_hal_map_region - 0x403d0e6e 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x403d0e6e mmu_hal_map_region - *libhal.a:cache_hal.*(.literal .text .literal.* .text.*) - .text.s_cache_hal_init_ctx - 0x403d0efe 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x403d0efe s_cache_hal_init_ctx - .text.cache_hal_init - 0x403d0f38 0x36 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x403d0f38 cache_hal_init - .text.cache_hal_disable - 0x403d0f6e 0x16 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x403d0f6e cache_hal_disable - .text.cache_hal_enable - 0x403d0f84 0x20 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x403d0f84 cache_hal_enable - *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) - *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) - .text.rtc_clk_bbpll_disable - 0x403d0fa4 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x403d0fba 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable.part.0 - 0x403d101c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable - 0x403d1072 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1072 rtc_clk_32k_enable - .text.rtc_clk_8m_enable - 0x403d108e 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d108e rtc_clk_8m_enable - .text.rtc_clk_slow_src_set - 0x403d1104 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1104 rtc_clk_slow_src_set - .text.rtc_clk_slow_src_get - 0x403d1170 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1170 rtc_clk_slow_src_get - .text.rtc_clk_slow_freq_get_hz - 0x403d118a 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d118a rtc_clk_slow_freq_get_hz - .text.rtc_clk_fast_src_set - 0x403d11be 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d11be rtc_clk_fast_src_set - .text.rtc_clk_fast_src_get - 0x403d11f6 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d11f6 rtc_clk_fast_src_get - .text.rtc_clk_xtal_freq_get - 0x403d1202 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1202 rtc_get_xtal - 0x403d1202 rtc_clk_xtal_freq_get - .text.rtc_clk_cpu_freq_mhz_to_config - 0x403d1258 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1258 rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_get_config - 0x403d12b8 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d12b8 rtc_clk_cpu_freq_get_config - .text.rtc_clk_xtal_freq_update - 0x403d1388 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1388 rtc_clk_xtal_freq_update - .text.rtc_clk_apb_freq_update - 0x403d13b2 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d13b2 rtc_clk_apb_freq_update - .text.rtc_clk_cpu_freq_to_xtal - 0x403d13c8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config - 0x403d1424 0x23c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1424 rtc_clk_cpu_freq_set_config - .text.rtc_clk_apb_freq_get - 0x403d1660 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d1660 rtc_clk_apb_freq_get - .text.rtc_clk_divider_set - 0x403d168c 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d168c rtc_clk_divider_set - .text.rtc_clk_8m_divider_set - 0x403d16cc 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x403d16cc rtc_clk_8m_divider_set - *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) - *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) - *libefuse.a:*.*(.literal .text .literal.* .text.*) - *(.fini.literal) - *(.fini) - *(.gnu.version) - 0x403d1700 _loader_text_end = ABSOLUTE (.) - -.iram.text 0x403cc710 0x0 - 0x403cc710 . = ALIGN (0x10) - *(.entry.text) - *(.init.literal) - *(.init) - -.dram0.bss 0x3fcd5710 0x110 - 0x3fcd5710 . = ALIGN (0x8) - 0x3fcd5710 _dram_start = ABSOLUTE (.) - 0x3fcd5710 _bss_start = ABSOLUTE (.) - *(.dynsbss) - *(.sbss) - *(.sbss.*) - .sbss.ota_has_initial_contents - 0x3fcd5710 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - *fill* 0x3fcd5711 0x3 - .sbss.ram_obfs_value - 0x3fcd5714 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .sbss.mapped 0x3fcd571c 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x3fcd571d 0x3 - .sbss.s_bbpll_digi_consumers_ref_count - 0x3fcd5720 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_cur_pll_freq - 0x3fcd5724 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.ctx 0x3fcd5728 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) - *(.gnu.linkonce.sb.*) - *(.scommon) - *(.sbss2) - *(.sbss2.*) - *(.gnu.linkonce.sb2.*) - *(.dynbss) - *(.bss) - *(.bss.*) - .bss.ctx 0x3fcd572c 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss.bootloader_image_hdr - 0x3fcd5804 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x3fcd5804 bootloader_image_hdr - *(.gnu.linkonce.b.*) - *(COMMON) - 0x3fcd5820 . = ALIGN (0x8) - *fill* 0x3fcd581c 0x4 - 0x3fcd5820 _bss_end = ABSOLUTE (.) - -.dram0.bootdesc - 0x3fcd5820 0x50 - 0x3fcd5820 _data_start = ABSOLUTE (.) - *(.data_bootloader_desc .data_bootloader_desc.*) - .data_bootloader_desc - 0x3fcd5820 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x3fcd5820 esp_bootloader_desc - -.dram0.data 0x3fcd5870 0x8 - *(.dram1 .dram1.*) - *(.data) - *(.data.*) - *(.gnu.linkonce.d.*) - *(.data1) - *(.sdata) - *(.sdata.*) - .sdata.current_read_mapping - 0x3fcd5870 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .sdata._putc1 0x3fcd5874 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - 0x3fcd5874 _putc1 - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - 0x3fcd5878 _data_end = ABSOLUTE (.) - -.dram0.rodata 0x3fcd5878 0x151c - 0x3fcd5878 _rodata_start = ABSOLUTE (.) - *(.rodata) - *(.rodata.*) - .rodata.__assert_func.str1.4 - 0x3fcd5878 0x1441 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - 0x22 (size before relaxing) - .rodata.abort.str1.4 - 0x3fcd6cb9 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .rodata.call_start_cpu0.str1.4 - 0x3fcd6cb9 0x31 esp-idf/main/libmain.a(bootloader_start.c.obj) - .rodata.log_invalid_app_partition.str1.4 - 0x3fcd6cb9 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.try_load_partition.str1.4 - 0x3fcd6cb9 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.write_otadata.isra.0.str1.4 - 0x3fcd6cb9 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.set_actual_ota_seq.str1.4 - 0x3fcd6cb9 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.load_image.str1.4 - 0x3fcd6cb9 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_common_read_otadata.str1.4 - 0x3fcd6cb9 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_partition_table.str1.4 - 0x3fcd6cb9 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_get_selected_boot_partition.str1.4 - 0x3fcd6cb9 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_boot_image.str1.4 - 0x3fcd6cb9 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.esp_partition_table_verify.str1.4 - 0x3fcd6cb9 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .rodata.bootloader_util_regions_overlap.str1.4 - 0x3fcd6cb9 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segments.str1.4 - 0x3fcd6cb9 0x25e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.image_load.str1.4 - 0x3fcd6cb9 0x192 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - *fill* 0x3fcd6cb9 0x3 - .rodata.__func__.0 - 0x3fcd6cbc 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.__func__.1 - 0x3fcd6cdc 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.bootloader_sha256_data.str1.4 - 0x3fcd6cf2 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - *fill* 0x3fcd6cf2 0x2 - .rodata.__func__.0 - 0x3fcd6cf4 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - *fill* 0x3fcd6d0d 0x3 - .rodata.__func__.1 - 0x3fcd6d10 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .rodata.bootloader_init.str1.4 - 0x3fcd6d27 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - *fill* 0x3fcd6d27 0x1 - .rodata.__func__.0 - 0x3fcd6d28 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .rodata.bootloader_common_check_efuse_blk_validity.str1.4 - 0x3fcd6d38 0xa4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_common_check_chip_validity.str1.4 - 0x3fcd6d38 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_fill_random.str1.4 - 0x3fcd6d38 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .rodata.__func__.0 - 0x3fcd6d38 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .rodata.bootloader_mmap.str1.4 - 0x3fcd6d4f 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_flash_read.str1.4 - 0x3fcd6d4f 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.str1.4 - 0x3fcd6d4f 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_flash_write.str1.4 - 0x3fcd6d4f 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x3fcd6d4f 0x1 - .rodata.__func__.0 - 0x3fcd6d50 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x3fcd6d6b 0x1 - .rodata.__func__.1 - 0x3fcd6d6c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_init_spi_flash.str1.4 - 0x3fcd6d94 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .rodata.bootloader_read_bootloader_header.str1.4 - 0x3fcd6d94 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_check_bootloader_validity.str1.4 - 0x3fcd6d94 0x4e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_enable_random.str1.4 - 0x3fcd6d94 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_print_banner.str1.4 - 0x3fcd6d94 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.rtc_clk_init.str1.4 - 0x3fcd6d94 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .rodata.rtc_clk_xtal_freq_get.str1.4 - 0x3fcd6d94 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.rtc_clk_cpu_freq_get_config.str1.4 - 0x3fcd6d94 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.sdata2 .sdata2.* .srodata .srodata.*) - 0x3fcd6d94 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) - *(.xt_except_table) - *(.gcc_except_table) - *(.gnu.linkonce.e.*) - *(.gnu.version_r) - *(.eh_frame_hdr) - *(.eh_frame) - 0x3fcd6e78 . = ((. + 0x3) & 0xfffffffffffffffc) - 0x3fcd6d94 __init_array_start = ABSOLUTE (.) - *crtbegin.*(.ctors) - *(EXCLUDE_FILE(*crtend.*) .ctors) - *(SORT_BY_NAME(.ctors.*)) - *(.ctors) - 0x3fcd6d94 __init_array_end = ABSOLUTE (.) - *crtbegin.*(.dtors) - *(EXCLUDE_FILE(*crtend.*) .dtors) - *(SORT_BY_NAME(.dtors.*)) - *(.dtors) - 0x3fcd6d94 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) - *(.xt_except_desc) - *(.gnu.linkonce.h.*) - 0x3fcd6d94 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) - *(.xt_except_desc_end) - *(.dynamic) - *(.gnu.version_d) - 0x3fcd6d94 _rodata_end = ABSOLUTE (.) - 0x3fcd6d94 _lit4_start = ABSOLUTE (.) - *(*.lit4) - *(.lit4.*) - *(.gnu.linkonce.lit4.*) - 0x3fcd6d94 _lit4_end = ABSOLUTE (.) - 0x3fcd6e78 . = ALIGN (0x4) - 0x3fcd6d94 _dram_end = ABSOLUTE (.) - -.iram.text 0x403cc710 0xc30 - 0x403cc710 _stext = . - 0x403cc710 _text_start = ABSOLUTE (.) - *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) - .text.esp_bootloader_get_description - 0x403cc710 0xa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x403cc710 esp_bootloader_get_description - .text.call_start_cpu0 - 0x403cc71a 0x82 esp-idf/main/libmain.a(bootloader_start.c.obj) - 0x403cc71a call_start_cpu0 - .text.bootloader_init - 0x403cc79c 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - 0x403cc79c bootloader_init - .text.bootloader_clock_configure - 0x403cc984 0xda esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - 0x403cc984 bootloader_clock_configure - .text.bootloader_init_mem - 0x403cca5e 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x403cca5e bootloader_init_mem - .text.bootloader_random_enable - 0x403cca60 0x18e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - 0x403cca60 bootloader_random_enable - .text.bootloader_flash_update_id - 0x403ccbee 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x403ccbee bootloader_flash_update_id - .text.bootloader_init_spi_flash - 0x403ccc0a 0x1f2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x403ccc0a bootloader_init_spi_flash - .text.bootloader_clear_bss_section - 0x403ccdfc 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403ccdfc bootloader_clear_bss_section - .text.bootloader_read_bootloader_header - 0x403cce1e 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403cce1e bootloader_read_bootloader_header - .text.bootloader_check_bootloader_validity - 0x403cce5c 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403cce5c bootloader_check_bootloader_validity - .text.bootloader_config_wdt - 0x403ccee0 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403ccee0 bootloader_config_wdt - .text.bootloader_enable_random - 0x403ccf64 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403ccf64 bootloader_enable_random - .text.bootloader_print_banner - 0x403ccf8c 0x56 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x403ccf8c bootloader_print_banner - .text.bootloader_console_init - 0x403ccfe2 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - 0x403ccfe2 bootloader_console_init - .text.esp_cpu_configure_region_protection - 0x403cd08e 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - 0x403cd08e esp_cpu_configure_region_protection - .text.rtc_clk_init - 0x403cd18e 0x142 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - 0x403cd18e rtc_clk_init - .text.esp_rom_output_putc - 0x403cd2d0 0x36 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - 0x403cd2d0 esp_rom_output_putc - .text.esp_rom_install_uart_printf - 0x403cd306 0x2a esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - 0x403cd306 esp_rom_install_uart_printf - *(.iram .iram.*) - *(.fini.literal) - *(.fini) - *(.gnu.version) - 0x403cd340 . = (. + 0x10) - *fill* 0x403cd330 0x10 - 0x403cd340 _text_end = ABSOLUTE (.) - 0x403cd340 _etext = . - -.riscv.attributes - 0x00000000 0x48 - *(.riscv.attributes) - .riscv.attributes - 0x00000000 0x44 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .riscv.attributes - 0x00000044 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .riscv.attributes - 0x00000088 0x44 esp-idf/main/libmain.a(bootloader_start.c.obj) - .riscv.attributes - 0x000000cc 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .riscv.attributes - 0x00000110 0x44 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .riscv.attributes - 0x00000154 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .riscv.attributes - 0x00000198 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .riscv.attributes - 0x000001dc 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .riscv.attributes - 0x00000220 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .riscv.attributes - 0x00000264 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .riscv.attributes - 0x000002a8 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .riscv.attributes - 0x000002ec 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .riscv.attributes - 0x00000330 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .riscv.attributes - 0x00000374 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .riscv.attributes - 0x000003bc 0x44 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .riscv.attributes - 0x00000400 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .riscv.attributes - 0x00000444 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .riscv.attributes - 0x00000488 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .riscv.attributes - 0x000004cc 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .riscv.attributes - 0x00000510 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .riscv.attributes - 0x00000554 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .riscv.attributes - 0x0000059c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .riscv.attributes - 0x000005e4 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .riscv.attributes - 0x00000628 0x44 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .riscv.attributes - 0x0000066c 0x48 esp-idf/log/liblog.a(log_timestamp.c.obj) - .riscv.attributes - 0x000006b4 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x000006f8 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x0000073c 0x44 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .riscv.attributes - 0x00000780 0x44 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .riscv.attributes - 0x000007c4 0x44 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x858 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_aranges - 0x00000020 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_aranges - 0x00000048 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_aranges - 0x00000070 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_aranges - 0x00000110 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_aranges - 0x00000130 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_aranges - 0x000001a0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_aranges - 0x000001c0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_aranges - 0x000001f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_aranges - 0x00000218 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_aranges - 0x00000238 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_aranges - 0x00000288 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_aranges - 0x000002a8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_aranges - 0x000002c8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_aranges - 0x000002e8 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_aranges - 0x00000328 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_aranges - 0x00000350 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_aranges - 0x00000408 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_aranges - 0x00000460 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_aranges - 0x000004a8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_aranges - 0x000004c8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_aranges - 0x000004e8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_aranges - 0x00000508 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_aranges - 0x00000628 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_aranges - 0x00000660 0x20 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_aranges - 0x00000680 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x000006c8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x00000720 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_aranges - 0x00000790 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_aranges - 0x000007f0 0x68 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_pubnames - *(.debug_pubnames) - -.debug_info 0x00000000 0x28f92 - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x181 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_info 0x00000181 0x217 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_info 0x00000398 0xc9b esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_info 0x00001033 0x1ff6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_info 0x00003029 0x5b4 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_info 0x000035dd 0x26d3 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_info 0x00005cb0 0xc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_info 0x00005d76 0x437 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_info 0x000061ad 0xdf esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_info 0x0000628c 0x36de esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_info 0x0000996a 0xaa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_info 0x0000a412 0x348 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_info 0x0000a75a 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x0000a7f9 0x26b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_info 0x0000aa64 0xa48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_info 0x0000b4ac 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_info 0x0000b684 0x3d61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_info 0x0000f3e5 0xc35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_info 0x0001001a 0x46ce esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_info 0x000146e8 0x1739 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_info 0x00015e21 0x26b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_info 0x0001608c 0x8d6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_info 0x00016962 0x1793 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_info 0x000180f5 0x2ba esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_info 0x000183af 0x12c esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_info 0x000184db 0x378f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x0001bc6a 0x3a05 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x0001f66f 0x8190 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_info 0x000277ff 0xbd2 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_info 0x000283d1 0xbc1 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_abbrev 0x00000000 0x4aa0 - *(.debug_abbrev) - .debug_abbrev 0x00000000 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_abbrev 0x000000aa 0xfb esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_abbrev 0x000001a5 0x309 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_abbrev 0x000004ae 0x4ed esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_abbrev 0x0000099b 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_abbrev 0x00000b98 0x51d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_abbrev 0x000010b5 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_abbrev 0x0000113e 0x1ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_abbrev 0x00001308 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_abbrev 0x00001388 0x351 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_abbrev 0x000016d9 0x298 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_abbrev 0x00001971 0x12e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_abbrev 0x00001a9f 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x00001b04 0x16d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_abbrev 0x00001c71 0x322 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_abbrev 0x00001f93 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_abbrev 0x00002042 0x5c3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_abbrev 0x00002605 0x30e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_abbrev 0x00002913 0x36f esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_abbrev 0x00002c82 0x308 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_abbrev 0x00002f8a 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_abbrev 0x0000301a 0x306 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_abbrev 0x00003320 0x525 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_abbrev 0x00003845 0x19d esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_abbrev 0x000039e2 0xe5 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_abbrev 0x00003ac7 0x216 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00003cdd 0x363 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00004040 0x432 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_abbrev 0x00004472 0x2f8 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_abbrev 0x0000476a 0x336 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_line 0x00000000 0x12b11 - *(.debug_line) - .debug_line 0x00000000 0x202 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_line 0x00000202 0x3e5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_line 0x000005e7 0x62f esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_line 0x00000c16 0x20a7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_line 0x00002cbd 0x6bf esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_line 0x0000337c 0x223e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_line 0x000055ba 0x1e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_line 0x0000579a 0x471 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_line 0x00005c0b 0x263 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_line 0x00005e6e 0x9eb esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_line 0x00006859 0x973 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_line 0x000071cc 0x423 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_line 0x000075ef 0xd9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x000076c8 0x4c1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_line 0x00007b89 0xcd4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_line 0x0000885d 0x689 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_line 0x00008ee6 0x1d03 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_line 0x0000abe9 0xc01 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_line 0x0000b7ea 0xac0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_line 0x0000c2aa 0x540 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_line 0x0000c7ea 0x3bc esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_line 0x0000cba6 0x79b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_line 0x0000d341 0x1c05 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_line 0x0000ef46 0x472 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_line 0x0000f3b8 0x2c2 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_line 0x0000f67a 0x464 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x0000fade 0x76c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x0001024a 0x12f6 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_line 0x00011540 0xbc9 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_line 0x00012109 0xa08 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_frame 0x00000000 0x15e8 - *(.debug_frame) - .debug_frame 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_frame 0x00000020 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_frame 0x00000060 0x38 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_frame 0x00000098 0x2b4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_frame 0x0000034c 0x58 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_frame 0x000003a4 0x198 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_frame 0x0000053c 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_frame 0x0000055c 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_frame 0x000005c4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_frame 0x000005f4 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_frame 0x00000628 0x100 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_frame 0x00000728 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_frame 0x00000758 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x00000778 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_frame 0x000007a4 0xb4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_frame 0x00000858 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_frame 0x000008a8 0x2d0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_frame 0x00000b78 0x100 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_frame 0x00000c78 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_frame 0x00000d3c 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_frame 0x00000d6c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_frame 0x00000d8c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_frame 0x00000dc4 0x33c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_frame 0x00001100 0x88 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_frame 0x00001188 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_frame 0x000011b8 0x80 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x00001238 0xb0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x000012e8 0xec esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_frame 0x000013d4 0x110 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_frame 0x000014e4 0x104 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_str 0x00000000 0xbdf1 - *(.debug_str) - .debug_str 0x00000000 0xbdf1 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x2d4 (size before relaxing) - .debug_str 0x0000bdf1 0x2ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_str 0x0000bdf1 0xa7c esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_str 0x0000bdf1 0x16e1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_str 0x0000bdf1 0x4cf esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_str 0x0000bdf1 0x18a2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_str 0x0000bdf1 0x278 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_str 0x0000bdf1 0x405 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_str 0x0000bdf1 0x2a1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_str 0x0000bdf1 0x2efb esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_str 0x0000bdf1 0xf0c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_str 0x0000bdf1 0x6e1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_str 0x0000bdf1 0x261 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_str 0x0000bdf1 0x2fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_str 0x0000bdf1 0xa39 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_str 0x0000bdf1 0x2a7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_str 0x0000bdf1 0x2999 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_str 0x0000bdf1 0x1395 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_str 0x0000bdf1 0x35c1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_str 0x0000bdf1 0xa78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_str 0x0000bdf1 0x261 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_str 0x0000bdf1 0xcda esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_str 0x0000bdf1 0x1376 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_str 0x0000bdf1 0x428 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_str 0x0000bdf1 0x2b4 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_str 0x0000bdf1 0x2836 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x0000bdf1 0x29f5 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x0000bdf1 0x514a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_str 0x0000bdf1 0x624 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_str 0x0000bdf1 0x627 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_loc 0x00000000 0x9085 - *(.debug_loc) - .debug_loc 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_loc 0x000000c8 0xc7 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_loc 0x0000018f 0x131e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_loc 0x000014ad 0x1d9 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_loc 0x00001686 0x2432 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_loc 0x00003ab8 0x1bb esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_loc 0x00003c73 0xa5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_loc 0x00003d18 0x3ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_loc 0x000040c5 0x105 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_loc 0x000041ca 0x1e5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_loc 0x000043af 0x1578 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_loc 0x00005927 0x2d1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_loc 0x00005bf8 0x141 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_loc 0x00005d39 0x87 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_loc 0x00005dc0 0xdf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_loc 0x00005e9f 0xc67 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_loc 0x00006b06 0x125 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_loc 0x00006c2b 0x13 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x00006c3e 0x1a0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x00006dde 0xb0d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_loc 0x000078eb 0xc81 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_loc 0x0000856c 0xb19 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_macinfo - *(.debug_macinfo) - -.debug_pubtypes - *(.debug_pubtypes) - -.debug_ranges 0x00000000 0x1828 - *(.debug_ranges) - .debug_ranges 0x00000000 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_ranges 0x00000010 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_ranges 0x00000028 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_ranges 0x00000058 0x1f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_ranges 0x00000250 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_ranges 0x000002c0 0x3d0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_ranges 0x00000690 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_ranges 0x000006a0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_ranges 0x000006c0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_ranges 0x000006d8 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .debug_ranges 0x00000730 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_ranges 0x00000788 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_ranges 0x00000798 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x000007a8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_ranges 0x000007d0 0x90 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_ranges 0x00000860 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_ranges 0x00000878 0x2c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_ranges 0x00000b38 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_ranges 0x00000bf0 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_ranges 0x00000c60 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_ranges 0x00000cb0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_ranges 0x00000cc0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_ranges 0x00000d00 0x398 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_ranges 0x00001098 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .debug_ranges 0x000010c0 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_ranges 0x000010e8 0x88 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00001170 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00001208 0x2c8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_ranges 0x000014d0 0x180 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_ranges 0x00001650 0x1d8 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) - -.debug_gnu_pubnames - *(.debug_gnu_pubnames) - -.debug_gnu_pubtypes - *(.debug_gnu_pubtypes) - -.debug_types - *(.debug_types) - -.debug_addr - *(.debug_addr) - -.debug_line_str - *(.debug_line_str) - -.debug_loclists - *(.debug_loclists) - -.debug_macro - *(.debug_macro) - -.debug_names - *(.debug_names) - -.debug_rnglists - *(.debug_rnglists) - -.debug_str_offsets - *(.debug_str_offsets) - -.comment 0x00000000 0x2f - *(.comment) - .comment 0x00000000 0x2f esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x30 (size before relaxing) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .comment 0x0000002f 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .comment 0x0000002f 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.note.GNU-stack - 0x00000000 0x0 - *(.note.GNU-stack) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - -/DISCARD/ - *(.rela.*) -OUTPUT(bootloader.elf elf32-littleriscv) - -Cross Reference Table - -Symbol File -Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -EFUSE esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_ERR_RST_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_USR_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ERR_RST_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) -RTCCNTL esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -SPIMEM0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SPIMEM1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -TIMERG0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -UART0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -__ashldi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_ashldi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__clz_tab /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_clz.o) - /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) -__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) -__lshrdi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_lshrdi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__popcountsi2 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__sf /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) -__udivdi3 /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imc_zicsr_zifencei/ilp32/no-rtti/libgcc.a(_udivdi3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -_dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_impure_data /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) -_impure_ptr /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-impure.o) -_loader_text_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_loader_text_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_after_init esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_ana_super_wdt_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_before_init esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_efuse_blk_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_console_deinit esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_console_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) -call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj) -efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_bootloader_desc esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) -esp_bootloader_get_description esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -esp_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -esp_rom_install_uart_printf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_output_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) -esp_rom_output_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -esp_rom_output_to_channels esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -esp_rom_output_tx_one_char esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -esp_rom_output_tx_wait_idle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) -esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_rom_software_reset_system esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_spiflash_erase_block esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -ets_install_uart_printf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_update esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -g_uart_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -g_usb_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) -memcmp /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcmp.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -memcpy /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memcpy.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -memset /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imc_zicsr_zifencei/ilp32/no-rtti/libc.a(libc_a-memset.o) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) -mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) -range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) -s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) diff --git a/RainMaker_Table-Lights/build/bootloader/build.ninja b/RainMaker_Table-Lights/build/bootloader/build.ninja deleted file mode 100644 index f3e8a13d0..000000000 --- a/RainMaker_Table-Lights/build/bootloader/build.ninja +++ /dev/null @@ -1,2560 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: bootloader -# Configurations: -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/ - -############################################# -# Utility command for menuconfig - -build menuconfig: phony CMakeFiles/menuconfig - - -############################################# -# Utility command for confserver - -build confserver: phony CMakeFiles/confserver - - -############################################# -# Utility command for save-defconfig - -build save-defconfig: phony CMakeFiles/save-defconfig - - -############################################# -# Utility command for gen_project_binary - -build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf - - -############################################# -# Utility command for app - -build app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary - - -############################################# -# Utility command for erase_flash - -build erase_flash: phony CMakeFiles/erase_flash - - -############################################# -# Utility command for merge-bin - -build merge-bin: phony CMakeFiles/merge-bin gen_project_binary - - -############################################# -# Utility command for monitor - -build monitor: phony CMakeFiles/monitor bootloader.elf - - -############################################# -# Utility command for _project_elf_src - -build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32c3.c - -# ============================================================================= -# Object build statements for EXECUTABLE target bootloader.elf - - -############################################# -# Order-only phony target for bootloader.elf - -build cmake_object_order_depends_target_bootloader.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_soc project_elf_src_esp32c3.c - -build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c || cmake_object_order_depends_target_bootloader.elf - DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ - DEP_FILE = CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always - INCLUDES = -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = CMakeFiles/bootloader.elf.dir - OBJECT_FILE_DIR = CMakeFiles/bootloader.elf.dir - TARGET_COMPILE_PDB = CMakeFiles/bootloader.elf.dir/ - TARGET_PDB = bootloader.elf.pdb - - -# ============================================================================= -# Link build statements for EXECUTABLE target bootloader.elf - - -############################################# -# Link the executable bootloader.elf - -build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj | esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a /home/alex/esp/v5.4.1/esp-idf/components/riscv/ld/rom.api.ld /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ld/esp32c3.peripherals.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.bt_funcs.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.libgcc.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.version.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.newlib.ld /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/ld/esp32c3/bootloader.ld /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/ld/esp32c3/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/soc/libsoc.a - FLAGS = -march=rv32imc_zicsr_zifencei - LINK_FLAGS = -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C3=0 -Wl,--Map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T rom.api.ld -T esp32c3.rom.ld -T esp32c3.rom.api.ld -T esp32c3.rom.bt_funcs.ld -T esp32c3.rom.libgcc.ld -T esp32c3.rom.version.ld -T esp32c3.rom.newlib.ld -T esp32c3.peripherals.ld -T bootloader.ld -T bootloader.rom.ld - LINK_LIBRARIES = esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u esp_system_include_startup_funcs -u esp_sleep_gpio_include -u bootloader_hooks_include - LINK_PATH = -L/home/alex/esp/v5.4.1/esp-idf/components/riscv/ld -L/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld -L/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ld -L/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/ld/esp32c3 - OBJECT_DIR = CMakeFiles/bootloader.elf.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = CMakeFiles/bootloader.elf.dir/ - TARGET_FILE = bootloader.elf - TARGET_PDB = bootloader.elf.pdb - - -############################################# -# Utility command for size - -build size: phony CMakeFiles/size - - -############################################# -# Utility command for size-files - -build size-files: phony CMakeFiles/size-files - - -############################################# -# Utility command for size-components - -build size-components: phony CMakeFiles/size-components - - -############################################# -# Utility command for uf2 - -build uf2: phony CMakeFiles/uf2 - - -############################################# -# Utility command for uf2-app - -build uf2-app: phony CMakeFiles/uf2-app - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for CMakeFiles/menuconfig - -build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env --env IDF_TARGET=esp32c3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.1 --dont-write-deprecated --output config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/check_term.py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env COMPONENT_KCONFIGS_SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig IDF_TARGET=esp32c3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.4.1 /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m menuconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env --env IDF_TARGET=esp32c3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.1 --output config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - pool = console - - -############################################# -# Custom command for CMakeFiles/confserver - -build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfserver --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - pool = console - - -############################################# -# Custom command for CMakeFiles/save-defconfig - -build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config.env --dont-write-deprecated --output savedefconfig /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/sdkconfig.defaults - pool = console - - -############################################# -# Phony custom command for CMakeFiles/gen_project_binary - -build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - - -############################################# -# Custom command for .bin_timestamp - -build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32c3 elf2image --flash_mode dio --flash_freq 80m --flash_size 4MB --min-rev 3 --min-rev-full 3 --max-rev-full 199 -o /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Generated /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E md5sum /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin > /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/.bin_timestamp - DESC = Generating binary image from built executable - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles/app - -build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - - -############################################# -# Custom command for CMakeFiles/erase_flash - -build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/merge-bin - -build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=merge_bin;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/merged-binary.bin;@/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader -P run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/monitor - -build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_monitor" -D "SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32c3;;--revision;3;;--decode-panic;backtrace;;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader -P run_serial_tool.cmake - pool = console - - -############################################# -# Phony custom command for CMakeFiles/_project_elf_src - -build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32c3.c - - -############################################# -# Custom command for project_elf_src_esp32c3.c - -build project_elf_src_esp32c3.c | ${cmake_ninja_workdir}project_elf_src_esp32c3.c: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c - DESC = Generating project_elf_src_esp32c3.c - restat = 1 - - -############################################# -# Custom command for CMakeFiles/size - -build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/size-files - -build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D IDF_SIZE_MODE=--files -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/size-components - -build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D IDF_SIZE_MODE=--archives -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/uf2 - -build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "UF2_CMD=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/tools/mkuf2.py;write;--chip;esp32c3" -D "UF2_ARGS=--json;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/flasher_args.json;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/uf2.bin" -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_uf2_cmds.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/uf2-app - -build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "UF2_CMD=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/tools/mkuf2.py;write;--chip;esp32c3" -D "UF2_ARGS=--json;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/flasher_args.json;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/uf2-app.bin;--bin;app" -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_uf2_cmds.cmake - pool = console - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Order-only phony target for __idf_soc - -build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_micro-ecc - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_PDB = esp-idf/soc/libsoc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Link the static library esp-idf/soc/libsoc.a - -build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb - TARGET_FILE = esp-idf/soc/libsoc.a - TARGET_PDB = esp-idf/soc/libsoc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_micro-ecc - - -############################################# -# Order-only phony target for __idf_micro-ecc - -build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_hal - -build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir - OBJECT_FILE_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir - TARGET_COMPILE_PDB = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/__idf_micro-ecc.pdb - TARGET_PDB = esp-idf/micro-ecc/libmicro-ecc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_micro-ecc - - -############################################# -# Link the static library esp-idf/micro-ecc/libmicro-ecc.a - -build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/hal/libhal.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/__idf_micro-ecc.pdb - TARGET_FILE = esp-idf/micro-ecc/libmicro-ecc.a - TARGET_PDB = esp-idf/micro-ecc/libmicro-ecc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Order-only phony target for __idf_hal - -build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_spi_flash - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_PDB = esp-idf/hal/libhal.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Link the static library esp-idf/hal/libhal.a - -build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/spi_flash/libspi_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/hal/CMakeFiles/__idf_hal.dir/__idf_hal.pdb - TARGET_FILE = esp-idf/hal/libhal.a - TARGET_PDB = esp-idf/hal/libhal.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Order-only phony target for __idf_spi_flash - -build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_bootloader_format - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Link the static library esp-idf/spi_flash/libspi_flash.a - -build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb - TARGET_FILE = esp-idf/spi_flash/libspi_flash.a - TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Order-only phony target for __idf_esp_bootloader_format - -build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_bootloader_support - -build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - OBJECT_FILE_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - TARGET_COMPILE_PDB = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/__idf_esp_bootloader_format.pdb - TARGET_PDB = esp-idf/esp_bootloader_format/libesp_bootloader_format.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Link the static library esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/__idf_esp_bootloader_format.pdb - TARGET_FILE = esp-idf/esp_bootloader_format/libesp_bootloader_format.a - TARGET_PDB = esp-idf/esp_bootloader_format/libesp_bootloader_format.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Order-only phony target for __idf_bootloader_support - -build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3 - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3 - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3 - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Link the static library esp-idf/bootloader_support/libbootloader_support.a - -build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb - TARGET_FILE = esp-idf/bootloader_support/libbootloader_support.a - TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Order-only phony target for __idf_efuse - -build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_system - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_PDB = esp-idf/efuse/libefuse.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Link the static library esp-idf/efuse/libefuse.a - -build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb - TARGET_FILE = esp-idf/efuse/libefuse.a - TARGET_PDB = esp-idf/efuse/libefuse.pdb - - -############################################# -# Utility command for efuse-common-table - -build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table - - -############################################# -# Utility command for efuse_common_table - -build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table - - -############################################# -# Utility command for efuse-custom-table - -build esp-idf/efuse/efuse-custom-table: phony - - -############################################# -# Utility command for efuse_custom_table - -build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table - - -############################################# -# Utility command for show-efuse-table - -build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table - - -############################################# -# Utility command for show_efuse_table - -build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table - - -############################################# -# Utility command for efuse_test_table - -build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table - - -############################################# -# Utility command for edit_cache - -build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse-common-table - -build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.csv -t esp32c3 --max_blk_len 256 - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_common_table - -build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_custom_table - -build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/show-efuse-table - -build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.csv -t esp32c3 --max_blk_len 256 --info - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/show_efuse_table - -build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_test_table - -build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32c3 --max_blk_len 256 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Order-only phony target for __idf_esp_system - -build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Link the static library esp-idf/esp_system/libesp_system.a - -build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/__idf_esp_system.pdb - TARGET_FILE = esp-idf/esp_system/libesp_system.a - TARGET_PDB = esp-idf/esp_system/libesp_system.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Order-only phony target for __idf_esp_hw_support - -build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Link the static library esp-idf/esp_hw_support/libesp_hw_support.a - -build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj || esp-idf/esp_common/libesp_common.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/__idf_esp_hw_support.pdb - TARGET_FILE = esp-idf/esp_hw_support/libesp_hw_support.a - TARGET_PDB = esp-idf/esp_hw_support/libesp_hw_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/edit_cache: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Order-only phony target for __idf_esp_common - -build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom - -build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir - OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src - TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb - TARGET_PDB = esp-idf/esp_common/libesp_common.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Link the static library esp-idf/esp_common/libesp_common.a - -build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb - TARGET_FILE = esp-idf/esp_common/libesp_common.a - TARGET_PDB = esp-idf/esp_common/libesp_common.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Order-only phony target for __idf_esp_rom - -build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Link the static library esp-idf/esp_rom/libesp_rom.a - -build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj || esp-idf/log/liblog.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/__idf_esp_rom.pdb - TARGET_FILE = esp-idf/esp_rom/libesp_rom.a - TARGET_PDB = esp-idf/esp_rom/libesp_rom.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Order-only phony target for __idf_log - -build cmake_object_order_depends_target___idf_log: phony || . - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/noos - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/noos - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_PDB = esp-idf/log/liblog.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Link the static library esp-idf/log/liblog.a - -build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb - TARGET_FILE = esp-idf/log/liblog.a - TARGET_PDB = esp-idf/log/liblog.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for bootloader_check_size - -build esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary - - -############################################# -# Utility command for edit_cache - -build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for esp-idf/esptool_py/CMakeFiles/bootloader_check_size - -build esp-idf/esptool_py/CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/check_sizes.py --offset 0xc000 bootloader 0x0 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.bin - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Order-only phony target for __idf_main - -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_soc - -build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include - OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb - TARGET_PDB = esp-idf/main/libmain.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Link the static library esp-idf/main/libmain.a - -build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/soc/libsoc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb - TARGET_FILE = esp-idf/main/libmain.a - TARGET_PDB = esp-idf/main/libmain.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Target aliases. - -build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a - -build __idf_efuse: phony esp-idf/efuse/libefuse.a - -build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a - -build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a - -build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a - -build __idf_hal: phony esp-idf/hal/libhal.a - -build __idf_log: phony esp-idf/log/liblog.a - -build __idf_main: phony esp-idf/main/libmain.a - -build __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a - -build __idf_soc: phony esp-idf/soc/libsoc.a - -build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a - -build bootloader_check_size: phony esp-idf/esptool_py/bootloader_check_size - -build efuse-common-table: phony esp-idf/efuse/efuse-common-table - -build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table - -build efuse_common_table: phony esp-idf/efuse/efuse_common_table - -build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table - -build efuse_test_table: phony esp-idf/efuse/efuse_test_table - -build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a - -build libefuse.a: phony esp-idf/efuse/libefuse.a - -build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build libesp_common.a: phony esp-idf/esp_common/libesp_common.a - -build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a - -build libesp_system.a: phony esp-idf/esp_system/libesp_system.a - -build libhal.a: phony esp-idf/hal/libhal.a - -build liblog.a: phony esp-idf/log/liblog.a - -build libmain.a: phony esp-idf/main/libmain.a - -build libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a - -build libsoc.a: phony esp-idf/soc/libsoc.a - -build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a - -build show-efuse-table: phony esp-idf/efuse/show-efuse-table - -build show_efuse_table: phony esp-idf/efuse/show_efuse_table - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader - -build all: phony app bootloader.elf esp-idf/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf - -build esp-idf/all: phony esp-idf/riscv/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/hal/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader - -build esp-idf/bootloader/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support - -build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse - -build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format - -build esp-idf/esp_app_format/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format - -build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common - -build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support - -build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32c3/all esp-idf/esp_hw_support/lowpower/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower - -build esp-idf/esp_hw_support/lowpower/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3 - -build esp-idf/esp_hw_support/port/esp32c3/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom - -build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security - -build esp-idf/esp_security/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system - -build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py - -build esp-idf/esptool_py/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos - -build esp-idf/freertos/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal - -build esp-idf/hal/all: phony esp-idf/hal/libhal.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log - -build esp-idf/log/all: phony esp-idf/log/liblog.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main - -build esp-idf/main/all: phony esp-idf/main/libmain.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc - -build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib - -build esp-idf/newlib/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table - -build esp-idf/partition_table/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv - -build esp-idf/riscv/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc - -build esp-idf/soc/all: phony esp-idf/soc/libsoc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash - -build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake /home/alex/esp/v5.4.1/esp-idf/.git/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/heap/tlsf/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/json/cJSON/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/unity/unity/HEAD /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/.git /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/.git /home/alex/esp/v5.4.1/esp-idf/components/efuse/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/sources.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_common/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_common/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_security/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/espefuse.cmake /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/freertos/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/hal/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/.git /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/.git /home/alex/esp/v5.4.1/esp-idf/components/log/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/.git /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/.git /home/alex/esp/v5.4.1/esp-idf/components/newlib/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/openthread/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/openthread/openthread/.git /home/alex/esp/v5.4.1/esp-idf/components/partition_table/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/partition_table/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/.git /home/alex/esp/v5.4.1/esp-idf/components/riscv/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/soc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/.git /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/.git /home/alex/esp/v5.4.1/esp-idf/tools/cmake/build.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/component.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/depgraph.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/dfu.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/gdbinit.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/git_submodules.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/idf.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/kconfig.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/ldgen.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/openocd.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/prefix_map.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project_description.json.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/symbols.gdbinit.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/targets.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/tool_version_check.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/utilities.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/version.cmake /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/confgen.py /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/config.env.in /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake /home/alex/esp/v5.4.1/esp-idf/.git/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/heap/tlsf/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/json/cJSON/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/unity/unity/HEAD /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/.git /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/.git /home/alex/esp/v5.4.1/esp-idf/components/efuse/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/sources.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_common/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_common/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_security/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/espefuse.cmake /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/freertos/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/hal/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/.git /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/.git /home/alex/esp/v5.4.1/esp-idf/components/log/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/.git /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/.git /home/alex/esp/v5.4.1/esp-idf/components/newlib/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/openthread/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/openthread/openthread/.git /home/alex/esp/v5.4.1/esp-idf/components/partition_table/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/partition_table/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/.git /home/alex/esp/v5.4.1/esp-idf/components/riscv/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/soc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/.git /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/.git /home/alex/esp/v5.4.1/esp-idf/tools/cmake/build.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/component.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/depgraph.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/dfu.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/gdbinit.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/git_submodules.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/idf.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/kconfig.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/ldgen.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/openocd.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/prefix_map.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project_description.json.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/symbols.gdbinit.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/targets.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/tool_version_check.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/utilities.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/version.cmake /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/confgen.py /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/config.env.in /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h: phony - - -############################################# -# Clean additional files. - -build CMakeFiles/clean.additional: CLEAN_ADDITIONAL - - -############################################# -# Clean all the built files. - -build clean: CLEAN CMakeFiles/clean.additional - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/RainMaker_Table-Lights/build/bootloader/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/cmake_install.cmake deleted file mode 100644 index 39b8207fa..000000000 --- a/RainMaker_Table-Lights/build/bootloader/cmake_install.cmake +++ /dev/null @@ -1,62 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") - file(WRITE "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/RainMaker_Table-Lights/build/bootloader/compile_commands.json b/RainMaker_Table-Lights/build/bootloader/compile_commands.json deleted file mode 100644 index d29457e94..000000000 --- a/RainMaker_Table-Lights/build/bootloader/compile_commands.json +++ /dev/null @@ -1,506 +0,0 @@ -[ -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c", - "output": "CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c", - "output": "esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c", - "output": "esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_init.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_panic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_panic.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c", - "output": "esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_timestamp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_timestamp.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_lock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_lock.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c", - "output": "esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj" -} -] \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/bootloader/config.env b/RainMaker_Table-Lights/build/bootloader/config.env deleted file mode 100644 index 638efece0..000000000 --- a/RainMaker_Table-Lights/build/bootloader/config.env +++ /dev/null @@ -1,12 +0,0 @@ -{ - "COMPONENT_KCONFIGS": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild", - "COMPONENT_SDKCONFIG_RENAMES": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/freertos/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/hal/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/newlib/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/sdkconfig.rename", - "IDF_TARGET": "esp32c3", - "IDF_TOOLCHAIN": "gcc", - "IDF_VERSION": "5.4.1", - "IDF_ENV_FPGA": "", - "IDF_PATH": "/home/alex/esp/v5.4.1/esp-idf", - "COMPONENT_KCONFIGS_SOURCE_FILE": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/kconfigs.in", - "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/kconfigs_projbuild.in" -} diff --git a/RainMaker_Table-Lights/build/bootloader/config/kconfig_menus.json b/RainMaker_Table-Lights/build/bootloader/config/kconfig_menus.json deleted file mode 100644 index c64a93aee..000000000 --- a/RainMaker_Table-Lights/build/bootloader/config/kconfig_menus.json +++ /dev/null @@ -1,9991 +0,0 @@ -[ - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SUPPORTED", - "name": "SOC_ADC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDICATED_GPIO_SUPPORTED", - "name": "SOC_DEDICATED_GPIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORTED", - "name": "SOC_UART_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORTED", - "name": "SOC_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_SUPPORTED", - "name": "SOC_AHB_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPTIMER_SUPPORTED", - "name": "SOC_GPTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTED", - "name": "SOC_TWAI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BT_SUPPORTED", - "name": "SOC_BT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASYNC_MEMCPY_SUPPORTED", - "name": "SOC_ASYNC_MEMCPY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMP_SENSOR_SUPPORTED", - "name": "SOC_TEMP_SENSOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XT_WDT_SUPPORTED", - "name": "SOC_XT_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_SUPPORTED", - "name": "SOC_PHY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_SUPPORTED", - "name": "SOC_WIFI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORTS_SECURE_DL_MODE", - "name": "SOC_SUPPORTS_SECURE_DL_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_HAS_EFUSE_RST_BUG", - "name": "SOC_EFUSE_HAS_EFUSE_RST_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SUPPORTED", - "name": "SOC_EFUSE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_FAST_MEM_SUPPORTED", - "name": "SOC_RTC_FAST_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_MEM_SUPPORTED", - "name": "SOC_RTC_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTED", - "name": "SOC_I2S_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORTED", - "name": "SOC_RMT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_SUPPORTED", - "name": "SOC_SDM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPSPI_SUPPORTED", - "name": "SOC_GPSPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORTED", - "name": "SOC_LEDC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORTED", - "name": "SOC_I2C_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORTED", - "name": "SOC_SYSTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_COEXISTENCE", - "name": "SOC_SUPPORT_COEXISTENCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORTED", - "name": "SOC_AES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_SUPPORTED", - "name": "SOC_MPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORTED", - "name": "SOC_SHA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HMAC_SUPPORTED", - "name": "SOC_HMAC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DIG_SIGN_SUPPORTED", - "name": "SOC_DIG_SIGN_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENC_SUPPORTED", - "name": "SOC_FLASH_ENC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_SUPPORTED", - "name": "SOC_SECURE_BOOT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_SUPPORTED", - "name": "SOC_MEMPROT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BOD_SUPPORTED", - "name": "SOC_BOD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_TREE_SUPPORTED", - "name": "SOC_CLK_TREE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASSIST_DEBUG_SUPPORTED", - "name": "SOC_ASSIST_DEBUG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WDT_SUPPORTED", - "name": "SOC_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_FLASH_SUPPORTED", - "name": "SOC_SPI_FLASH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_SUPPORTED", - "name": "SOC_RNG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LIGHT_SLEEP_SUPPORTED", - "name": "SOC_LIGHT_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEEP_SLEEP_SUPPORTED", - "name": "SOC_DEEP_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", - "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORTED", - "name": "SOC_PM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_SUPPORT_40M", - "name": "SOC_XTAL_SUPPORT_40M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_DMA", - "name": "SOC_AES_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_GDMA", - "name": "SOC_AES_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_128", - "name": "SOC_AES_SUPPORT_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_256", - "name": "SOC_AES_SUPPORT_AES_256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_CTRL_SUPPORTED", - "name": "SOC_ADC_DIG_CTRL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ARBITER_SUPPORTED", - "name": "SOC_ADC_ARBITER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MONITOR_SUPPORTED", - "name": "SOC_ADC_MONITOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DMA_SUPPORTED", - "name": "SOC_ADC_DMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PERIPH_NUM", - "name": "SOC_ADC_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MAX_CHANNEL_NUM", - "name": "SOC_ADC_MAX_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ATTEN_NUM", - "name": "SOC_ADC_ATTEN_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_CONTROLLER_NUM", - "name": "SOC_ADC_DIGI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PATT_LEN_MAX", - "name": "SOC_ADC_PATT_LEN_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MIN_BITWIDTH", - "name": "SOC_ADC_DIGI_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MAX_BITWIDTH", - "name": "SOC_ADC_DIGI_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_RESULT_BYTES", - "name": "SOC_ADC_DIGI_RESULT_BYTES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MONITOR_NUM", - "name": "SOC_ADC_DIGI_MONITOR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MIN_BITWIDTH", - "name": "SOC_ADC_RTC_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MAX_BITWIDTH", - "name": "SOC_ADC_RTC_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SHARED_POWER", - "name": "SOC_ADC_SHARED_POWER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APB_BACKUP_DMA", - "name": "SOC_APB_BACKUP_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BROWNOUT_RESET_SUPPORTED", - "name": "SOC_BROWNOUT_RESET_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHARED_IDCACHE_SUPPORTED", - "name": "SOC_SHARED_IDCACHE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CACHE_MEMORY_IBANK_SIZE", - "name": "SOC_CACHE_MEMORY_IBANK_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_CORES_NUM", - "name": "SOC_CPU_CORES_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_INTR_NUM", - "name": "SOC_CPU_INTR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_FLEXIBLE_INTC", - "name": "SOC_CPU_HAS_FLEXIBLE_INTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_CSR_PC", - "name": "SOC_CPU_HAS_CSR_PC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_BREAKPOINTS_NUM", - "name": "SOC_CPU_BREAKPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINTS_NUM", - "name": "SOC_CPU_WATCHPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_VERSION", - "name": "SOC_AHB_GDMA_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_NUM_GROUPS_MAX", - "name": "SOC_GDMA_NUM_GROUPS_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PORT", - "name": "SOC_GPIO_PORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PIN_COUNT", - "name": "SOC_GPIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", - "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", - "name": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_IN_RANGE_MAX", - "name": "SOC_GPIO_IN_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_OUT_RANGE_MAX", - "name": "SOC_GPIO_OUT_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", - "name": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", - "name": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_NUM", - "name": "SOC_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HP_I2C_NUM", - "name": "SOC_HP_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_FIFO_LEN", - "name": "SOC_I2C_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_CMD_REG_NUM", - "name": "SOC_I2C_CMD_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLAVE", - "name": "SOC_I2C_SUPPORT_SLAVE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_XTAL", - "name": "SOC_I2C_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_RTC", - "name": "SOC_I2C_SUPPORT_RTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_10BIT_ADDR", - "name": "SOC_I2C_SUPPORT_10BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_NUM", - "name": "SOC_I2S_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_HW_VERSION_2", - "name": "SOC_I2S_HW_VERSION_2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_XTAL", - "name": "SOC_I2S_SUPPORTS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F160M", - "name": "SOC_I2S_SUPPORTS_PLL_F160M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM", - "name": "SOC_I2S_SUPPORTS_PCM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM", - "name": "SOC_I2S_SUPPORTS_PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_TX", - "name": "SOC_I2S_SUPPORTS_PDM_TX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_TX_LINES", - "name": "SOC_I2S_PDM_MAX_TX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_TDM", - "name": "SOC_I2S_SUPPORTS_TDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_APB_CLOCK", - "name": "SOC_LEDC_SUPPORT_APB_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_NUM", - "name": "SOC_LEDC_TIMER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_CHANNEL_NUM", - "name": "SOC_LEDC_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_BIT_WIDTH", - "name": "SOC_LEDC_TIMER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_FADE_STOP", - "name": "SOC_LEDC_SUPPORT_FADE_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PERIPH_NUM", - "name": "SOC_MMU_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_MIN_REGION_SIZE", - "name": "SOC_MPU_MIN_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGIONS_MAX_NUM", - "name": "SOC_MPU_REGIONS_MAX_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_RO_SUPPORTED", - "name": "SOC_MPU_REGION_RO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_WO_SUPPORTED", - "name": "SOC_MPU_REGION_WO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_GROUPS", - "name": "SOC_RMT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_CHANNELS_PER_GROUP", - "name": "SOC_RMT_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_PINGPONG", - "name": "SOC_RMT_SUPPORT_RX_PINGPONG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_XTAL", - "name": "SOC_RMT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_APB", - "name": "SOC_RMT_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RC_FAST", - "name": "SOC_RMT_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", - "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", - "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND", - "name": "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SLEEP_TGWDT_STOP_WORKAROUND", - "name": "SOC_SLEEP_TGWDT_STOP_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_PIN_COUNT", - "name": "SOC_RTCIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_MEM_BLOCKS_NUM", - "name": "SOC_MPI_MEM_BLOCKS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_OPERATIONS_NUM", - "name": "SOC_MPI_OPERATIONS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RSA_MAX_BIT_LEN", - "name": "SOC_RSA_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_DMA", - "name": "SOC_SHA_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_RESUME", - "name": "SOC_SHA_SUPPORT_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_GDMA", - "name": "SOC_SHA_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA1", - "name": "SOC_SHA_SUPPORT_SHA1", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA224", - "name": "SOC_SHA_SUPPORT_SHA224", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA256", - "name": "SOC_SHA_SUPPORT_SHA256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_GROUPS", - "name": "SOC_SDM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CHANNELS_PER_GROUP", - "name": "SOC_SDM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_APB", - "name": "SOC_SDM_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_NUM", - "name": "SOC_SPI_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_CS_NUM", - "name": "SOC_SPI_MAX_CS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_DDRCLK", - "name": "SOC_SPI_SUPPORT_DDRCLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CD_SIG", - "name": "SOC_SPI_SUPPORT_CD_SIG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_APB", - "name": "SOC_SPI_SUPPORT_CLK_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_XTAL", - "name": "SOC_SPI_SUPPORT_CLK_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", - "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_SUPPORTED", - "name": "SOC_SPI_SCT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_REG_NUM", - "name": "SOC_SPI_SCT_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_IS_INDEPENDENT", - "name": "SOC_MEMSPI_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_PRE_DIVIDER", - "name": "SOC_SPI_MAX_PRE_DIVIDER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", - "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_WRAP", - "name": "SOC_SPI_MEM_SUPPORT_WRAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_COUNTER_NUM", - "name": "SOC_SYSTIMER_COUNTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_NUM", - "name": "SOC_SYSTIMER_ALARM_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_LO", - "name": "SOC_SYSTIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_HI", - "name": "SOC_SYSTIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_FIXED_DIVIDER", - "name": "SOC_SYSTIMER_FIXED_DIVIDER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_INT_LEVEL", - "name": "SOC_SYSTIMER_INT_LEVEL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUPS", - "name": "SOC_TIMER_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_APB", - "name": "SOC_TIMER_GROUP_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_LO", - "name": "SOC_LP_TIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_HI", - "name": "SOC_LP_TIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_XTAL", - "name": "SOC_MWDT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CONTROLLER_NUM", - "name": "SOC_TWAI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CLK_SUPPORT_APB", - "name": "SOC_TWAI_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MIN", - "name": "SOC_TWAI_BRP_MIN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MAX", - "name": "SOC_TWAI_BRP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTS_RX_STATUS", - "name": "SOC_TWAI_SUPPORTS_RX_STATUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", - "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_PAD_JTAG", - "name": "SOC_EFUSE_DIS_PAD_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_USB_JTAG", - "name": "SOC_EFUSE_DIS_USB_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DIRECT_BOOT", - "name": "SOC_EFUSE_DIS_DIRECT_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SOFT_DIS_JTAG", - "name": "SOC_EFUSE_SOFT_DIS_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_ICACHE", - "name": "SOC_EFUSE_DIS_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_RSA", - "name": "SOC_SECURE_BOOT_V2_RSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", - "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", - "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_NUM", - "name": "SOC_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_HP_NUM", - "name": "SOC_UART_HP_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_FIFO_LEN", - "name": "SOC_UART_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_BITRATE_MAX", - "name": "SOC_UART_BITRATE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_APB_CLK", - "name": "SOC_UART_SUPPORT_APB_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_RTC_CLK", - "name": "SOC_UART_SUPPORT_RTC_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_XTAL_CLK", - "name": "SOC_UART_SUPPORT_XTAL_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_WAKEUP_INT", - "name": "SOC_UART_SUPPORT_WAKEUP_INT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_COEX_HW_PTI", - "name": "SOC_COEX_HW_PTI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_ADVANCE", - "name": "SOC_EXTERNAL_COEX_ADVANCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_DIG_REGS_MEM_SIZE", - "name": "SOC_PHY_DIG_REGS_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MAC_BB_PD_MEM_SIZE", - "name": "SOC_MAC_BB_PD_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", - "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", - "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_WAKEUP", - "name": "SOC_PM_SUPPORT_BT_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_CPU_PD", - "name": "SOC_PM_SUPPORT_CPU_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_WIFI_PD", - "name": "SOC_PM_SUPPORT_WIFI_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_PD", - "name": "SOC_PM_SUPPORT_BT_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC_FAST_PD", - "name": "SOC_PM_SUPPORT_RC_FAST_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_VDDSDIO_PD", - "name": "SOC_PM_SUPPORT_VDDSDIO_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_MAC_BB_PD", - "name": "SOC_PM_SUPPORT_MAC_BB_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", - "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", - "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_PD_BY_SW", - "name": "SOC_PM_MODEM_PD_BY_SW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", - "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", - "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_XTAL32K_SUPPORTED", - "name": "SOC_CLK_XTAL32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_HW_TSF", - "name": "SOC_WIFI_HW_TSF", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_FTM_SUPPORT", - "name": "SOC_WIFI_FTM_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_GCMP_SUPPORT", - "name": "SOC_WIFI_GCMP_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_WAPI_SUPPORT", - "name": "SOC_WIFI_WAPI_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_CSI_SUPPORT", - "name": "SOC_WIFI_CSI_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_MESH_SUPPORT", - "name": "SOC_WIFI_MESH_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", - "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", - "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_SUPPORTED", - "name": "SOC_BLE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MESH_SUPPORTED", - "name": "SOC_BLE_MESH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_50_SUPPORTED", - "name": "SOC_BLE_50_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLUFI_SUPPORTED", - "name": "SOC_BLUFI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_COMBO_MODULE", - "name": "SOC_PHY_COMBO_MODULE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CMAKE", - "name": "IDF_CMAKE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", - "id": "IDF_ENV_FPGA", - "name": "IDF_ENV_FPGA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", - "id": "IDF_ENV_BRINGUP", - "name": "IDF_ENV_BRINGUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CI_BUILD", - "name": "IDF_CI_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_DOC_BUILD", - "name": "IDF_DOC_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN", - "name": "IDF_TOOLCHAIN", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_CLANG", - "name": "IDF_TOOLCHAIN_CLANG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_GCC", - "name": "IDF_TOOLCHAIN_GCC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_RISCV", - "name": "IDF_TARGET_ARCH_RISCV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_XTENSA", - "name": "IDF_TARGET_ARCH_XTENSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH", - "name": "IDF_TARGET_ARCH", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET", - "name": "IDF_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_INIT_VERSION", - "name": "IDF_INIT_VERSION", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32", - "name": "IDF_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S2", - "name": "IDF_TARGET_ESP32S2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S3", - "name": "IDF_TARGET_ESP32S3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C3", - "name": "IDF_TARGET_ESP32C3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C2", - "name": "IDF_TARGET_ESP32C2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C6", - "name": "IDF_TARGET_ESP32C6", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C5", - "name": "IDF_TARGET_ESP32C5", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32P4", - "name": "IDF_TARGET_ESP32P4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H2", - "name": "IDF_TARGET_ESP32H2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C61", - "name": "IDF_TARGET_ESP32C61", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_LINUX", - "name": "IDF_TARGET_LINUX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_FIRMWARE_CHIP_ID", - "name": "IDF_FIRMWARE_CHIP_ID", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "APP_BUILD_TYPE_APP_2NDBOOT", - "name": "APP_BUILD_TYPE_APP_2NDBOOT", - "range": null, - "title": "Default (binary application + 2nd stage bootloader)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APP_BUILD_TYPE_RAM", - "name": "APP_BUILD_TYPE_RAM", - "range": null, - "title": "Build app runs entirely in RAM (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", - "id": "build-type-application-build-type", - "name": "APP_BUILD_TYPE", - "title": "Application build type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_GENERATE_BINARIES", - "name": "APP_BUILD_GENERATE_BINARIES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_BOOTLOADER", - "name": "APP_BUILD_BOOTLOADER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "APP_BUILD_TYPE_RAM", - "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", - "id": "APP_BUILD_TYPE_PURE_RAM_APP", - "name": "APP_BUILD_TYPE_PURE_RAM_APP", - "range": null, - "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_USE_FLASH_SECTIONS", - "name": "APP_BUILD_USE_FLASH_SECTIONS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", - "id": "APP_REPRODUCIBLE_BUILD", - "name": "APP_REPRODUCIBLE_BUILD", - "range": null, - "title": "Enable reproducible build", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", - "id": "APP_NO_BLOBS", - "name": "APP_NO_BLOBS", - "range": null, - "title": "No Binary Blobs", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", - "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloaders before ESP-IDF v2.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", - "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "APP_INIT_CLK", - "name": "APP_INIT_CLK", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "build-type", - "title": "Build type", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "BOOTLOADER_COMPILE_TIME_DATE", - "name": "BOOTLOADER_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", - "id": "BOOTLOADER_PROJECT_VER", - "name": "BOOTLOADER_PROJECT_VER", - "range": [ - 0, - 4294967295 - ], - "title": "Project version", - "type": "int" - } - ], - "depends_on": null, - "id": "bootloader-config-bootloader-manager", - "title": "Bootloader manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", - "id": "BOOTLOADER_OFFSET_IN_FLASH", - "name": "BOOTLOADER_OFFSET_IN_FLASH", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", - "id": "bootloader-config-bootloader-optimization-level", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION", - "title": "Bootloader optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_NONE", - "name": "BOOTLOADER_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_ERROR", - "name": "BOOTLOADER_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_WARN", - "name": "BOOTLOADER_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_INFO", - "name": "BOOTLOADER_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_DEBUG", - "name": "BOOTLOADER_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in bootloader logs.", - "id": "bootloader-config-log-bootloader-log-verbosity", - "name": "BOOTLOADER_LOG_LEVEL", - "title": "Bootloader log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_LEVEL", - "name": "BOOTLOADER_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Use ANSI terminal colors in log output\nEnable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "BOOTLOADER_LOG_COLORS", - "name": "BOOTLOADER_LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", - "id": "bootloader-config-log-format-timestamp", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - } - ], - "depends_on": null, - "id": "bootloader-config-log-format", - "title": "Format", - "type": "menu" - } - ], - "depends_on": null, - "id": "bootloader-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", - "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "range": null, - "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", - "id": "BOOTLOADER_SPI_WP_PIN", - "name": "BOOTLOADER_SPI_WP_PIN", - "range": null, - "title": "Custom SPI Flash WP Pin", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", - "id": "BOOTLOADER_FLASH_DC_AWARE", - "name": "BOOTLOADER_FLASH_DC_AWARE", - "range": null, - "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", - "id": "BOOTLOADER_FLASH_XMC_SUPPORT", - "name": "BOOTLOADER_FLASH_XMC_SUPPORT", - "range": null, - "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_32BIT_ADDR", - "name": "BOOTLOADER_FLASH_32BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address quad flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", - "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", - "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-serial-flash-configurations", - "title": "Serial Flash Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "range": null, - "title": "1.8V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "range": null, - "title": "1.9V", - "type": "bool" - } - ], - "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", - "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", - "id": "bootloader-config-vddsdio-ldo-voltage", - "name": "BOOTLOADER_VDDSDIO_BOOST", - "title": "VDDSDIO LDO voltage", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "range": null, - "title": "Number of the GPIO input for factory reset", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "range": null, - "title": "Reset on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "range": null, - "title": "Reset on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Pin level for factory reset, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", - "title": "Factory reset GPIO level", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", - "id": "BOOTLOADER_OTA_DATA_ERASE", - "name": "BOOTLOADER_OTA_DATA_ERASE", - "range": null, - "title": "Clear OTA data on factory reset (select factory partition)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", - "id": "BOOTLOADER_DATA_FACTORY_RESET", - "name": "BOOTLOADER_DATA_FACTORY_RESET", - "range": null, - "title": "Comma-separated names of partitions to clear on factory reset", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", - "id": "BOOTLOADER_FACTORY_RESET", - "name": "BOOTLOADER_FACTORY_RESET", - "range": null, - "title": "GPIO triggers factory reset", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_APP_TEST", - "name": "BOOTLOADER_NUM_PIN_APP_TEST", - "range": null, - "title": "Number of the GPIO input to boot TEST partition", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_LOW", - "name": "BOOTLOADER_APP_TEST_PIN_LOW", - "range": null, - "title": "Enter test app on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_HIGH", - "name": "BOOTLOADER_APP_TEST_PIN_HIGH", - "range": null, - "title": "Enter test app on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "Pin level for app test, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", - "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", - "title": "App test GPIO level", - "type": "choice" - } - ], - "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", - "id": "BOOTLOADER_APP_TEST", - "name": "BOOTLOADER_APP_TEST", - "range": null, - "title": "GPIO triggers boot from test app partition", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", - "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", - "id": "BOOTLOADER_HOLD_TIME_GPIO", - "name": "BOOTLOADER_HOLD_TIME_GPIO", - "range": null, - "title": "Hold time of GPIO for reset/test mode (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", - "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "range": null, - "title": "Enable protection for unmapped memory regions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", - "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "range": null, - "title": "Allows RTC watchdog disable in user code", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", - "id": "BOOTLOADER_WDT_TIME_MS", - "name": "BOOTLOADER_WDT_TIME_MS", - "range": [ - 0, - 120000 - ], - "title": "Timeout for RTC watchdog (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", - "id": "BOOTLOADER_WDT_ENABLE", - "name": "BOOTLOADER_WDT_ENABLE", - "range": null, - "title": "Use RTC watchdog in start code", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", - "id": "BOOTLOADER_APP_SECURE_VERSION", - "name": "BOOTLOADER_APP_SECURE_VERSION", - "range": null, - "title": "eFuse secure version of app", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", - "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "range": null, - "title": "Size of the efuse secure version field", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", - "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "range": null, - "title": "Emulate operations with efuse secure version(only test)", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "help": "This option prevents rollback to previous firmware/application image with lower security version.", - "id": "BOOTLOADER_APP_ANTI_ROLLBACK", - "name": "BOOTLOADER_APP_ANTI_ROLLBACK", - "range": null, - "title": "Enable app anti-rollback support", - "type": "bool" - } - ], - "depends_on": null, - "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", - "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "range": null, - "title": "Enable app rollback support", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", - "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", - "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "range": null, - "title": "Skip image validation when exiting deep sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", - "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "range": null, - "title": "Skip image validation from power on reset (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", - "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "range": null, - "title": "Skip image validation always (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", - "id": "BOOTLOADER_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_RESERVE_RTC_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "range": null, - "title": "Include custom memory in the CRC calculation", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "range": null, - "title": "Size in bytes for custom purposes", - "type": "hex" - } - ], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "range": null, - "title": "Reserve RTC FAST memory for custom purposes", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", - "id": "BOOTLOADER_RESERVE_RTC_MEM", - "name": "BOOTLOADER_RESERVE_RTC_MEM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config", - "title": "Bootloader config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_BOOT", - "name": "SECURE_SIGNED_ON_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_UPDATE", - "name": "SECURE_SIGNED_ON_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", - "help": null, - "id": "SECURE_SIGNED_APPS", - "name": "SECURE_SIGNED_APPS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", - "help": null, - "id": "SECURE_BOOT_V2_RSA_SUPPORTED", - "name": "SECURE_BOOT_V2_RSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V2_ECC", - "help": null, - "id": "SECURE_BOOT_V2_ECC_SUPPORTED", - "name": "SECURE_BOOT_V2_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V1", - "help": null, - "id": "SECURE_BOOT_V1_SUPPORTED", - "name": "SECURE_BOOT_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_REV_MIN_FULL >= 300", - "help": null, - "id": "SECURE_BOOT_V2_PREFERRED", - "name": "SECURE_BOOT_V2_PREFERRED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_ECDSA_ENABLED", - "name": "SECURE_BOOT_V2_ECDSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_RSA_ENABLED", - "name": "SECURE_BOOT_V2_RSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_BOOT", - "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", - "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "range": null, - "title": "Require signed app images", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", - "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "range": null, - "title": "ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", - "id": "SECURE_SIGNED_APPS_RSA_SCHEME", - "name": "SECURE_SIGNED_APPS_RSA_SCHEME", - "range": null, - "title": "RSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "range": null, - "title": "ECDSA (V2)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", - "id": "security-features-app-signing-scheme", - "name": "SECURE_SIGNED_APPS_SCHEME", - "title": "App Signing Scheme", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "range": null, - "title": "Using ECC curve NISTP192", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "range": null, - "title": "Using ECC curve NISTP256 (Recommended)", - "type": "bool" - } - ], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", - "id": "security-features-ecdsa-key-size", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", - "title": "ECDSA key size", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", - "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", - "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "range": null, - "title": "Bootloader verifies app signatures", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", - "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "range": null, - "title": "Verify app signature on update", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", - "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V1_ENABLED", - "name": "SECURE_BOOT_V1_ENABLED", - "range": null, - "title": "Enable Secure Boot version 1", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", - "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V2_ENABLED", - "name": "SECURE_BOOT_V2_ENABLED", - "range": null, - "title": "Enable Secure Boot version 2", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT", - "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", - "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", - "name": "SECURE_BOOT_VERSION", - "title": "Select secure boot version", - "type": "choice" - } - ], - "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", - "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", - "id": "SECURE_BOOT", - "name": "SECURE_BOOT", - "range": null, - "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", - "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "range": null, - "title": "One-time flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", - "id": "SECURE_BOOTLOADER_REFLASHABLE", - "name": "SECURE_BOOTLOADER_REFLASHABLE", - "range": null, - "title": "Reflashable", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT_V1_ENABLED", - "help": null, - "id": "security-features-secure-bootloader-mode", - "name": "SECURE_BOOTLOADER_MODE", - "title": "Secure bootloader mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", - "id": "SECURE_BOOT_SIGNING_KEY", - "name": "SECURE_BOOT_SIGNING_KEY", - "range": null, - "title": "Secure boot private signing key", - "type": "string" - } - ], - "depends_on": "SECURE_SIGNED_APPS", - "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", - "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "range": null, - "title": "Sign binaries during build", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_VERIFICATION_KEY", - "name": "SECURE_BOOT_VERIFICATION_KEY", - "range": null, - "title": "Secure boot public signature verification key", - "type": "string" - }, - { - "children": [], - "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", - "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "range": null, - "title": "Enable Aggressive key revoke strategy", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", - "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "range": null, - "title": "Do not disable the ability to further read protect eFuses", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED && SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", - "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "range": null, - "title": "Flash bootloader along with other artifacts when using the default flash command", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "range": null, - "title": "No encoding (256 bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "range": null, - "title": "3/4 encoding (192 bit key)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", - "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", - "id": "security-features-hardware-key-encoding", - "name": "SECURE_BOOTLOADER_KEY_ENCODING", - "title": "Hardware Key Encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_BOOT", - "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_INSECURE", - "name": "SECURE_BOOT_INSECURE", - "range": null, - "title": "Allow potentially insecure options", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "range": null, - "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128", - "name": "SECURE_FLASH_ENCRYPTION_AES128", - "range": null, - "title": "AES-128 (256-bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES256", - "name": "SECURE_FLASH_ENCRYPTION_AES256", - "range": null, - "title": "AES-256 (512-bit key)", - "type": "bool" - } - ], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", - "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", - "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", - "title": "Size of generated XTS-AES key", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "range": null, - "title": "Development (NOT SECURE)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "range": null, - "title": "Release", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", - "name": "SECURE_FLASH_ENCRYPTION_MODE", - "title": "Enable usage mode", - "type": "choice" - } - ], - "depends_on": null, - "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", - "id": "SECURE_FLASH_ENC_ENABLED", - "name": "SECURE_FLASH_ENC_ENABLED", - "range": null, - "title": "Enable flash encryption on boot (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", - "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_ROM_BASIC", - "name": "SECURE_BOOT_ALLOW_ROM_BASIC", - "range": null, - "title": "Leave ROM BASIC Interpreter available on reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_JTAG", - "name": "SECURE_BOOT_ALLOW_JTAG", - "range": null, - "title": "Allow JTAG Debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", - "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "range": null, - "title": "Allow app partition length not 64KB aligned", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", - "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "range": null, - "title": "Leave unused digest slots available (not revoke)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "range": null, - "title": "Leave UART bootloader encryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", - "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "range": null, - "title": "Leave UART bootloader decryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", - "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "range": null, - "title": "Leave UART bootloader flash cache enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", - "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "range": null, - "title": "Require flash encryption to be already enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", - "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "range": null, - "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", - "type": "bool" - } - ], - "depends_on": null, - "id": "security-features-potentially-insecure-options", - "title": "Potentially insecure options", - "type": "menu" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", - "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "range": null, - "title": "Encrypt only the app image that is present in the partition of type app", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", - "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "range": null, - "title": "Check Flash Encryption enabled on app startup", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", - "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Permanently enable XTS-AES's pseudo rounds function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_ROM_DL_MODE_ENABLED", - "name": "SECURE_ROM_DL_MODE_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", - "id": "SECURE_DISABLE_ROM_DL_MODE", - "name": "SECURE_DISABLE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently disabled (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", - "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32 (includes revisions till ECO3).", - "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", - "id": "SECURE_INSECURE_ALLOW_DL_MODE", - "name": "SECURE_INSECURE_ALLOW_DL_MODE", - "range": null, - "title": "UART ROM download mode (Enabled (not recommended))", - "type": "bool" - } - ], - "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", - "help": null, - "id": "security-features-uart-rom-download-mode", - "name": "SECURE_UART_ROM_DL_MODE", - "title": "UART ROM download mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "security-features", - "title": "Security features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "APP_COMPILE_TIME_DATE", - "name": "APP_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for app", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_VER_VAR", - "name": "APP_EXCLUDE_PROJECT_VER_VAR", - "range": null, - "title": "Exclude PROJECT_VER from firmware image", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_NAME_VAR", - "name": "APP_EXCLUDE_PROJECT_NAME_VAR", - "range": null, - "title": "Exclude PROJECT_NAME from firmware image", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "APP_PROJECT_VER_FROM_CONFIG", - "help": "Project version", - "id": "APP_PROJECT_VER", - "name": "APP_PROJECT_VER", - "range": null, - "title": "Project version", - "type": "string" - } - ], - "depends_on": null, - "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", - "id": "APP_PROJECT_VER_FROM_CONFIG", - "name": "APP_PROJECT_VER_FROM_CONFIG", - "range": null, - "title": "Get the project version from Kconfig", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", - "id": "APP_RETRIEVE_LEN_ELF_SHA", - "name": "APP_RETRIEVE_LEN_ELF_SHA", - "range": [ - 8, - 64 - ], - "title": "The length of APP ELF SHA is stored in RAM(chars)", - "type": "int" - } - ], - "depends_on": null, - "id": "application-manager", - "title": "Application manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_LE", - "name": "ESP_ROM_HAS_CRC_LE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_BE", - "name": "ESP_ROM_HAS_CRC_BE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_MZ_CRC32", - "name": "ESP_ROM_HAS_MZ_CRC32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_JPEG_DECODE", - "name": "ESP_ROM_HAS_JPEG_DECODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_UART_CLK_IS_XTAL", - "name": "ESP_ROM_UART_CLK_IS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ERASE_0_REGION_BUG", - "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", - "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_GET_CLK_FREQ", - "name": "ESP_ROM_GET_CLK_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", - "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_LAYOUT_TABLE", - "name": "ESP_ROM_HAS_LAYOUT_TABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH", - "name": "ESP_ROM_HAS_SPI_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", - "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB", - "name": "ESP_ROM_HAS_NEWLIB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", - "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SW_FLOAT", - "name": "ESP_ROM_HAS_SW_FLOAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_OTG_NUM", - "name": "ESP_ROM_USB_OTG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_VERSION", - "name": "ESP_ROM_HAS_VERSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Always print ROM logs, this is the default behavior.", - "id": "BOOT_ROM_LOG_ALWAYS_ON", - "name": "BOOT_ROM_LOG_ALWAYS_ON", - "range": null, - "title": "Always Log", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Don't print ROM logs.", - "id": "BOOT_ROM_LOG_ALWAYS_OFF", - "name": "BOOT_ROM_LOG_ALWAYS_OFF", - "range": null, - "title": "Permanently disable logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "range": null, - "title": "Log on GPIO High", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_LOW", - "name": "BOOT_ROM_LOG_ON_GPIO_LOW", - "range": null, - "title": "Log on GPIO Low", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_ESP32", - "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", - "id": "boot-rom-behavior-permanently-change-boot-rom-output", - "name": "BOOT_ROM_LOG_SCHEME", - "title": "Permanently change Boot ROM output", - "type": "choice" - } - ], - "depends_on": null, - "id": "boot-rom-behavior", - "title": "Boot ROM Behavior", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", - "id": "ESPTOOLPY_NO_STUB", - "name": "ESPTOOLPY_NO_STUB", - "range": null, - "title": "Disable download stub", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_OCT_FLASH", - "name": "ESPTOOLPY_OCT_FLASH", - "range": null, - "title": "Enable Octal Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", - "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "range": null, - "title": "Choose flash mode automatically (please read help)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QIO", - "name": "ESPTOOLPY_FLASHMODE_QIO", - "range": null, - "title": "QIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QOUT", - "name": "ESPTOOLPY_FLASHMODE_QOUT", - "range": null, - "title": "QOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DIO", - "name": "ESPTOOLPY_FLASHMODE_DIO", - "range": null, - "title": "DIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DOUT", - "name": "ESPTOOLPY_FLASHMODE_DOUT", - "range": null, - "title": "DOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_OPI", - "name": "ESPTOOLPY_FLASHMODE_OPI", - "range": null, - "title": "OPI", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", - "id": "serial-flasher-config-flash-spi-mode", - "name": "ESPTOOLPY_FLASHMODE", - "title": "Flash SPI mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "range": null, - "title": "STR Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "range": null, - "title": "DTR Mode", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-sampling-mode", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", - "title": "Flash Sampling Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHMODE", - "name": "ESPTOOLPY_FLASHMODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_80M", - "name": "ESPTOOLPY_FLASHFREQ_80M", - "range": null, - "title": "80 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_40M", - "name": "ESPTOOLPY_FLASHFREQ_40M", - "range": null, - "title": "40 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_26M", - "name": "ESPTOOLPY_FLASHFREQ_26M", - "range": null, - "title": "26 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_20M", - "name": "ESPTOOLPY_FLASHFREQ_20M", - "range": null, - "title": "20 MHz", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-spi-speed", - "name": "ESPTOOLPY_FLASHFREQ", - "title": "Flash SPI speed", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ", - "name": "ESPTOOLPY_FLASHFREQ", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_1MB", - "name": "ESPTOOLPY_FLASHSIZE_1MB", - "range": null, - "title": "1 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_2MB", - "name": "ESPTOOLPY_FLASHSIZE_2MB", - "range": null, - "title": "2 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_4MB", - "name": "ESPTOOLPY_FLASHSIZE_4MB", - "range": null, - "title": "4 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_8MB", - "name": "ESPTOOLPY_FLASHSIZE_8MB", - "range": null, - "title": "8 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_16MB", - "name": "ESPTOOLPY_FLASHSIZE_16MB", - "range": null, - "title": "16 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_32MB", - "name": "ESPTOOLPY_FLASHSIZE_32MB", - "range": null, - "title": "32 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_64MB", - "name": "ESPTOOLPY_FLASHSIZE_64MB", - "range": null, - "title": "64 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_128MB", - "name": "ESPTOOLPY_FLASHSIZE_128MB", - "range": null, - "title": "128 MB", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash size, in megabytes", - "id": "serial-flasher-config-flash-size", - "name": "ESPTOOLPY_FLASHSIZE", - "title": "Flash size", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE", - "name": "ESPTOOLPY_FLASHSIZE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", - "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "range": null, - "title": "Detect flash size when flashing bootloader", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_RESET", - "name": "ESPTOOLPY_BEFORE_RESET", - "range": null, - "title": "Reset to bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_NORESET", - "name": "ESPTOOLPY_BEFORE_NORESET", - "range": null, - "title": "No reset", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-before-flashing", - "name": "ESPTOOLPY_BEFORE", - "title": "Before flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_BEFORE", - "name": "ESPTOOLPY_BEFORE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_RESET", - "name": "ESPTOOLPY_AFTER_RESET", - "range": null, - "title": "Reset after flashing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_NORESET", - "name": "ESPTOOLPY_AFTER_NORESET", - "range": null, - "title": "Stay in bootloader", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-after-flashing", - "name": "ESPTOOLPY_AFTER", - "title": "After flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_AFTER", - "name": "ESPTOOLPY_AFTER", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_MONITOR_BAUD", - "name": "ESPTOOLPY_MONITOR_BAUD", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "serial-flasher-config", - "title": "Serial flasher config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP", - "name": "PARTITION_TABLE_SINGLE_APP", - "range": null, - "title": "Single factory app, no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE", - "range": null, - "title": "Single factory app (large), no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", - "id": "PARTITION_TABLE_TWO_OTA", - "name": "PARTITION_TABLE_TWO_OTA", - "range": null, - "title": "Factory app, two OTA definitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", - "id": "PARTITION_TABLE_TWO_OTA_LARGE", - "name": "PARTITION_TABLE_TWO_OTA_LARGE", - "range": null, - "title": "Two large size OTA partitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", - "id": "PARTITION_TABLE_CUSTOM", - "name": "PARTITION_TABLE_CUSTOM", - "range": null, - "title": "Custom partition table CSV", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "range": null, - "title": "Single factory app, no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "range": null, - "title": "Single factory app (large), no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", - "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "range": null, - "title": "Factory app, two OTA definitions, encrypted NVS", - "type": "bool" - } - ], - "depends_on": null, - "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", - "id": "partition-table-partition-table", - "name": "PARTITION_TABLE_TYPE", - "title": "Partition Table", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", - "id": "PARTITION_TABLE_CUSTOM_FILENAME", - "name": "PARTITION_TABLE_CUSTOM_FILENAME", - "range": null, - "title": "Custom partition CSV file", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PARTITION_TABLE_FILENAME", - "name": "PARTITION_TABLE_FILENAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", - "id": "PARTITION_TABLE_OFFSET", - "name": "PARTITION_TABLE_OFFSET", - "range": null, - "title": "Offset of partition table", - "type": "hex" - }, - { - "children": [], - "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", - "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", - "id": "PARTITION_TABLE_MD5", - "name": "PARTITION_TABLE_MD5", - "range": null, - "title": "Generate an MD5 checksum for the partition table", - "type": "bool" - } - ], - "depends_on": null, - "id": "partition-table", - "title": "Partition Table", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_DEBUG", - "name": "COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_SIZE", - "name": "COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Optimize for size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_PERF", - "name": "COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_NONE", - "name": "COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", - "id": "compiler-options-optimization-level", - "name": "COMPILER_OPTIMIZATION", - "title": "Optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enable assertions. Assertion content and line number will be printed on failure.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "range": null, - "title": "Silent (saves code size)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "range": null, - "title": "Disabled (sets -DNDEBUG)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", - "id": "compiler-options-assertion-level", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "title": "Assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", - "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "range": null, - "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_RVFPLIB && ", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "range": null, - "title": "librvfp", - "type": "bool" - } - ], - "depends_on": null, - "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", - "id": "compiler-options-compiler-float-lib-source", - "name": "COMPILER_FLOAT_LIB_FROM", - "title": "Compiler float lib source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", - "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "range": null, - "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", - "id": "COMPILER_HIDE_PATHS_MACROS", - "is_menuconfig": true, - "name": "COMPILER_HIDE_PATHS_MACROS", - "range": null, - "title": "Replace ESP-IDF and project paths in binaries", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_CXX_EXCEPTIONS", - "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", - "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "range": null, - "title": "Emergency Pool Size", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", - "id": "COMPILER_CXX_EXCEPTIONS", - "is_menuconfig": true, - "name": "COMPILER_CXX_EXCEPTIONS", - "range": null, - "title": "Enable C++ exceptions", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", - "id": "COMPILER_CXX_RTTI", - "name": "COMPILER_CXX_RTTI", - "range": null, - "title": "Enable C++ run-time type info (RTTI)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NONE", - "name": "COMPILER_STACK_CHECK_MODE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NORM", - "name": "COMPILER_STACK_CHECK_MODE_NORM", - "range": null, - "title": "Normal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_STRONG", - "name": "COMPILER_STACK_CHECK_MODE_STRONG", - "range": null, - "title": "Strong", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_ALL", - "name": "COMPILER_STACK_CHECK_MODE_ALL", - "range": null, - "title": "Overall", - "type": "bool" - } - ], - "depends_on": null, - "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", - "id": "compiler-options-stack-smashing-protection-mode", - "name": "COMPILER_STACK_CHECK_MODE", - "title": "Stack smashing protection mode", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Stack smashing protection.", - "id": "COMPILER_STACK_CHECK", - "name": "COMPILER_STACK_CHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", - "id": "COMPILER_NO_MERGE_CONSTANTS", - "name": "COMPILER_NO_MERGE_CONSTANTS", - "range": null, - "title": "Disable merging const sections", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", - "id": "COMPILER_WARN_WRITE_STRINGS", - "name": "COMPILER_WARN_WRITE_STRINGS", - "range": null, - "title": "Enable -Wwrite-strings warning flag", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", - "id": "COMPILER_SAVE_RESTORE_LIBCALLS", - "name": "COMPILER_SAVE_RESTORE_LIBCALLS", - "range": null, - "title": "Enable -msave-restore flag to reduce code size", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", - "id": "COMPILER_DISABLE_DEFAULT_ERRORS", - "name": "COMPILER_DISABLE_DEFAULT_ERRORS", - "range": null, - "title": "Disable errors for default warnings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", - "id": "COMPILER_DISABLE_GCC12_WARNINGS", - "name": "COMPILER_DISABLE_GCC12_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 12", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", - "id": "COMPILER_DISABLE_GCC13_WARNINGS", - "name": "COMPILER_DISABLE_GCC13_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 13", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", - "id": "COMPILER_DISABLE_GCC14_WARNINGS", - "name": "COMPILER_DISABLE_GCC14_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 14", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", - "id": "COMPILER_DUMP_RTL_FILES", - "name": "COMPILER_DUMP_RTL_FILES", - "range": null, - "title": "Dump RTL files during compilation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_GCCLIB", - "name": "COMPILER_RT_LIB_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_CLANGRT", - "name": "COMPILER_RT_LIB_CLANGRT", - "range": null, - "title": "libclang_rt", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_HOST", - "name": "COMPILER_RT_LIB_HOST", - "range": null, - "title": "Host", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", - "id": "compiler-options-compiler-runtime-library", - "name": "COMPILER_RT_LIB", - "title": "Compiler runtime library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_RT_LIB_NAME", - "name": "COMPILER_RT_LIB_NAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Places orphan sections with a warning message.", - "id": "COMPILER_ORPHAN_SECTIONS_WARNING", - "name": "COMPILER_ORPHAN_SECTIONS_WARNING", - "range": null, - "title": "Place with warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places orphan sections without a warning/error message.", - "id": "COMPILER_ORPHAN_SECTIONS_PLACE", - "name": "COMPILER_ORPHAN_SECTIONS_PLACE", - "range": null, - "title": "Place silently", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX", - "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", - "id": "compiler-options-orphan-sections-handling", - "name": "COMPILER_ORPHAN_SECTIONS", - "title": "Orphan sections handling", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", - "id": "COMPILER_STATIC_ANALYZER", - "name": "COMPILER_STATIC_ANALYZER", - "range": null, - "title": "Enable compiler static analyzer", - "type": "bool" - } - ], - "depends_on": null, - "id": "compiler-options", - "title": "Compiler options", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_CUSTOM_TABLE", - "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", - "id": "EFUSE_CUSTOM_TABLE_FILENAME", - "name": "EFUSE_CUSTOM_TABLE_FILENAME", - "range": null, - "title": "Custom eFuse CSV file", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to generate a structure for eFuse from the CSV file.", - "id": "EFUSE_CUSTOM_TABLE", - "name": "EFUSE_CUSTOM_TABLE", - "range": null, - "title": "Use custom eFuse table", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", - "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", - "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "range": null, - "title": "Keep eFuses in flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "EFUSE_VIRTUAL", - "help": "If enabled, log efuse burns. This shows changes that would be made.", - "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "range": null, - "title": "Log all virtual writes", - "type": "bool" - } - ], - "depends_on": null, - "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", - "id": "EFUSE_VIRTUAL", - "name": "EFUSE_VIRTUAL", - "range": null, - "title": "Simulate eFuse operations in RAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "range": null, - "title": "None Only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "range": null, - "title": "3/4 and None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "range": null, - "title": "Repeat, 3/4 and None (common table does not support it)", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32", - "help": "Selector eFuse code scheme.", - "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", - "name": "EFUSE_CODE_SCHEME_SELECTOR", - "title": "Coding Scheme Compatibility", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "EFUSE_MAX_BLK_LEN", - "name": "EFUSE_MAX_BLK_LEN", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-efuse-bit-manager", - "title": "eFuse Bit Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", - "id": "ESP_ERR_TO_NAME_LOOKUP", - "name": "ESP_ERR_TO_NAME_LOOKUP", - "range": null, - "title": "Enable lookup of error code strings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-common-esp-related", - "title": "Common ESP-related", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_0", - "name": "ESP32C3_REV_MIN_0", - "range": null, - "title": "Rev v0.0 (ECO0)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_1", - "name": "ESP32C3_REV_MIN_1", - "range": null, - "title": "Rev v0.1 (ECO1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_2", - "name": "ESP32C3_REV_MIN_2", - "range": null, - "title": "Rev v0.2 (ECO2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_3", - "name": "ESP32C3_REV_MIN_3", - "range": null, - "title": "Rev v0.3 (ECO3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_4", - "name": "ESP32C3_REV_MIN_4", - "range": null, - "title": "Rev v0.4 (ECO4)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_101", - "name": "ESP32C3_REV_MIN_101", - "range": null, - "title": "Rev v1.1", - "type": "bool" - } - ], - "depends_on": null, - "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", - "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-c3-revision", - "name": "ESP32C3_REV_MIN", - "title": "Minimum Supported ESP32-C3 Revision", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_REV_MIN_FULL", - "name": "ESP32C3_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MIN_FULL", - "name": "ESP_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_REV_MAX_FULL", - "name": "ESP32C3_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MAX_FULL", - "name": "ESP_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", - "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "range": null, - "title": "Minimum Supported ESP32-C3 eFuse Block Revision", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_CI_BUILD", - "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", - "id": "ESP_REV_NEW_CHIP_TEST", - "name": "ESP_REV_NEW_CHIP_TEST", - "range": null, - "title": "Internal test mode", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-chip-revision", - "title": "Chip revision", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_BT", - "name": "ESP_MAC_ADDR_UNIVERSE_BT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_ETH", - "name": "ESP_MAC_ADDR_UNIVERSE_ETH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": "Two", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": "Four", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the number of universally administered (by IEEE) MAC addresses.\n\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\n\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\n\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\n\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)\n\nNote that ESP32-C3 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()\nAPI to return a MAC for Ethernet, this can only be used with an external MAC peripheral.", - "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "title": "Number of universally administered (by IEEE) MAC address", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", - "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "range": null, - "title": "Ignore MAC CRC error (not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", - "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "range": null, - "title": "Enable using custom mac as base mac", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-mac-config", - "title": "MAC Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", - "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", - "id": "ESP_SLEEP_POWER_DOWN_FLASH", - "name": "ESP_SLEEP_POWER_DOWN_FLASH", - "range": null, - "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", - "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up Flash CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", - "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up PSRAM CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", - "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "range": null, - "title": "Pull-up all SPI pins in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", - "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "range": null, - "title": "light sleep GPIO reset workaround", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS activeare) usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", - "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "range": [ - 0, - 5000 - ], - "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", - "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "range": null, - "title": "Check the cache safety of the sleep wakeup code in sleep process", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable esp sleep debug.", - "id": "ESP_SLEEP_DEBUG", - "name": "ESP_SLEEP_DEBUG", - "range": null, - "title": "esp sleep debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", - "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "range": null, - "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", - "id": "ESP_SLEEP_EVENT_CALLBACKS", - "name": "ESP_SLEEP_EVENT_CALLBACKS", - "range": null, - "title": "Enable registration of sleep event callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-sleep-config", - "title": "Sleep Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_RC", - "name": "RTC_CLK_SRC_INT_RC", - "range": null, - "title": "Internal 136 kHz RC oscillator", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_CRYS", - "name": "RTC_CLK_SRC_EXT_CRYS", - "range": null, - "title": "External 32 kHz crystal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_OSC", - "name": "RTC_CLK_SRC_EXT_OSC", - "range": null, - "title": "External 32 kHz oscillator at 32K_XP pin", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_8MD256", - "name": "RTC_CLK_SRC_INT_8MD256", - "range": null, - "title": "Internal 17.5 MHz oscillator, divided by 256", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose which clock is used as RTC clock source.", - "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", - "name": "RTC_CLK_SRC", - "title": "RTC clock source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", - "id": "RTC_CLK_CAL_CYCLES", - "name": "RTC_CLK_CAL_CYCLES", - "range": [ - 0, - 32766 - ], - "title": "Number of cycles for RTC_SLOW_CLK calibration", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-rtc-clock-config", - "title": "RTC Clock Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "PERIPH_CTRL_FUNC_IN_IRAM", - "name": "PERIPH_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place peripheral control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-peripheral-control", - "title": "Peripheral Control", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ETM_SUPPORTED", - "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", - "id": "ETM_ENABLE_DEBUG_LOG", - "name": "ETM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ETM_SUPPORTED", - "id": "component-config-hardware-settings-etm-configuration", - "title": "ETM Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GDMA_CTRL_FUNC_IN_IRAM", - "name": "GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GDMA control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "GDMA_ISR_IRAM_SAFE", - "name": "GDMA_ISR_IRAM_SAFE", - "range": null, - "title": "GDMA ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for GDMA driver.\nNote that, this option only controls the GDMA driver log, won't affect other drivers.", - "id": "GDMA_ENABLE_DEBUG_LOG", - "name": "GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-gdma-configurations", - "title": "GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DW_GDMA_ISR_IRAM_SAFE", - "name": "DW_GDMA_ISR_IRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "DW_GDMA_OBJ_DRAM_SAFE", - "name": "DW_GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", - "id": "DW_GDMA_ENABLE_DEBUG_LOG", - "name": "DW_GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-dw_gdma-configurations", - "title": "DW_GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", - "id": "DMA2D_OPERATION_FUNC_IN_IRAM", - "name": "DMA2D_OPERATION_FUNC_IN_IRAM", - "range": null, - "title": "Place 2D-DMA operation functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DMA2D_ISR_IRAM_SAFE", - "name": "DMA2D_ISR_IRAM_SAFE", - "range": null, - "title": "2D-DMA ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_DMA2D_SUPPORTED", - "id": "component-config-hardware-settings-2d-dma-configurations", - "title": "2D-DMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "XTAL_FREQ_40", - "name": "XTAL_FREQ_40", - "range": null, - "title": "40 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", - "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", - "name": "XTAL_FREQ", - "title": "Main XTAL frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "XTAL_FREQ", - "name": "XTAL_FREQ", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-main-xtal-config", - "title": "Main XTAL Config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", - "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", - "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", - "id": "ESP_CLK_RC32K_NOT_TO_USE", - "name": "ESP_CLK_RC32K_NOT_TO_USE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings", - "title": "Hardware Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "range": null, - "title": "Security level low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "range": null, - "title": "Security level medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "range": null, - "title": "Security level high", - "type": "bool" - } - ], - "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "Configure the DPA protection security level", - "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "title": "DPA protection level", - "type": "choice" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", - "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "range": null, - "title": "Enable crypto DPA protection at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "id": "component-config-esp-security-specific-crypto-dpa-protection", - "title": "Crypto DPA Protection", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", - "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": "Forcefully enable ECC constant time point multiplication operations", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-security-specific", - "title": "ESP Security Specific", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", - "range": null, - "title": "40 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", - "range": null, - "title": "80 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", - "range": null, - "title": "160 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "CPU frequency to be set on application startup.", - "id": "component-config-esp-system-settings-cpu-frequency", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "title": "CPU frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", - "id": "ESP_SYSTEM_PANIC_PRINT_HALT", - "name": "ESP_SYSTEM_PANIC_PRINT_HALT", - "range": null, - "title": "Print registers and halt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", - "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "range": null, - "title": "Print registers and reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Just resets the processor without outputting anything", - "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "range": null, - "title": "Silent reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_GDBSTUB_ENABLED && ", - "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", - "id": "ESP_SYSTEM_PANIC_GDBSTUB", - "name": "ESP_SYSTEM_PANIC_GDBSTUB", - "range": null, - "title": "GDBStub on panic", - "type": "bool" - } - ], - "depends_on": null, - "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", - "id": "component-config-esp-system-settings-panic-handler-behaviour", - "name": "ESP_SYSTEM_PANIC", - "title": "Panic handler behaviour", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", - "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "range": [ - 0, - 99 - ], - "title": "Panic reboot delay (Seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Only initialize and use the main core.", - "id": "ESP_SYSTEM_SINGLE_CORE_MODE", - "name": "ESP_SYSTEM_SINGLE_CORE_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_XTAL", - "name": "ESP_SYSTEM_RTC_EXT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_OSC", - "name": "ESP_SYSTEM_RTC_EXT_OSC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", - "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", - "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "range": null, - "title": "Bootstrap cycles for external 32kHz crystal", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": null, - "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", - "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "range": null, - "title": "Enable RTC fast memory for dynamic allocations", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT be used for production.", - "id": "ESP_SYSTEM_USE_EH_FRAME", - "name": "ESP_SYSTEM_USE_EH_FRAME", - "range": null, - "title": "Generate and use eh_frame for backtracing", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", - "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", - "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "range": null, - "title": "Make LP core reserved memory executable from HP core", - "type": "bool" - } - ], - "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "range": null, - "title": "Enable IRAM/DRAM split protection", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", - "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "range": null, - "title": "Lock memory protection settings", - "type": "bool" - } - ], - "depends_on": "SOC_MEMPROT_SUPPORTED", - "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE", - "range": null, - "title": "Enable memory protection", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-memory-protection", - "title": "Memory protection", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event queue size in different application.", - "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "range": null, - "title": "System event queue size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event task stack size in different application.", - "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "range": null, - "title": "Event loop task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", - "id": "ESP_MAIN_TASK_STACK_SIZE", - "name": "ESP_MAIN_TASK_STACK_SIZE", - "range": null, - "title": "Main task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU0", - "name": "ESP_MAIN_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU1", - "name": "ESP_MAIN_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", - "id": "component-config-esp-system-settings-main-task-core-affinity", - "name": "ESP_MAIN_TASK_AFFINITY", - "title": "Main task core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", - "id": "ESP_MINIMAL_SHARED_STACK_SIZE", - "name": "ESP_MINIMAL_SHARED_STACK_SIZE", - "range": null, - "title": "Minimal allowed size for shared stack", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_DEFAULT", - "name": "ESP_CONSOLE_UART_DEFAULT", - "range": null, - "title": "Default: UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", - "help": null, - "id": "ESP_CONSOLE_USB_CDC", - "name": "ESP_CONSOLE_USB_CDC", - "range": null, - "title": "USB CDC", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG", - "range": null, - "title": "USB Serial/JTAG Controller", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM", - "name": "ESP_CONSOLE_UART_CUSTOM", - "range": null, - "title": "Custom UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_NONE", - "name": "ESP_CONSOLE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", - "id": "component-config-esp-system-settings-channel-for-console-output", - "name": "ESP_CONSOLE_UART", - "title": "Channel for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_SECONDARY_NONE", - "name": "ESP_CONSOLE_SECONDARY_NONE", - "range": null, - "title": "No secondary console", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", - "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", - "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "range": null, - "title": "USB_SERIAL_JTAG PORT", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", - "id": "component-config-esp-system-settings-channel-for-console-secondary-output", - "name": "ESP_CONSOLE_SECONDARY", - "title": "Channel for console secondary output", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART", - "name": "ESP_CONSOLE_UART", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "range": null, - "title": "UART1", - "type": "bool" - } - ], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", - "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", - "name": "ESP_CONSOLE_UART_NUM", - "title": "UART peripheral to use for console output (0-1)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART_NUM", - "name": "ESP_CONSOLE_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_TX_GPIO", - "name": "ESP_CONSOLE_UART_TX_GPIO", - "range": null, - "title": "UART TX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_RX_GPIO", - "name": "ESP_CONSOLE_UART_RX_GPIO", - "range": null, - "title": "UART RX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART", - "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_BAUDRATE", - "name": "ESP_CONSOLE_UART_BAUDRATE", - "range": [ - 1200, - 4000000 - ], - "title": "UART console baud rate", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", - "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "range": null, - "title": "Size of USB CDC RX buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", - "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "range": null, - "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_INT_WDT", - "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", - "id": "ESP_INT_WDT_TIMEOUT_MS", - "name": "ESP_INT_WDT_TIMEOUT_MS", - "range": [ - 10, - 10000 - ], - "title": "Interrupt watchdog timeout (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", - "help": "Also detect if interrupts on CPU 1 are disabled for too long.", - "id": "ESP_INT_WDT_CHECK_CPU1", - "name": "ESP_INT_WDT_CHECK_CPU1", - "range": null, - "title": "Also watch CPU1 tick interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", - "id": "ESP_INT_WDT", - "name": "ESP_INT_WDT", - "range": null, - "title": "Interrupt watchdog", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_EN", - "help": null, - "id": "ESP_TASK_WDT_USE_ESP_TIMER", - "name": "ESP_TASK_WDT_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_PANIC", - "name": "ESP_TASK_WDT_PANIC", - "range": null, - "title": "Invoke panic handler on Task Watchdog timeout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_TIMEOUT_S", - "name": "ESP_TASK_WDT_TIMEOUT_S", - "range": [ - 1, - 60 - ], - "title": "Task Watchdog timeout period (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "range": null, - "title": "Watch CPU0 Idle Task", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", - "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "range": null, - "title": "Watch CPU1 Idle Task", - "type": "bool" - } - ], - "depends_on": "ESP_TASK_WDT_EN", - "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", - "id": "ESP_TASK_WDT_INIT", - "name": "ESP_TASK_WDT_INIT", - "range": null, - "title": "Initialize Task Watchdog Timer on startup", - "type": "bool" - } - ], - "depends_on": null, - "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_EN", - "name": "ESP_TASK_WDT_EN", - "range": null, - "title": "Enable Task Watchdog Timer", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", - "id": "ESP_XT_WDT_TIMEOUT", - "name": "ESP_XT_WDT_TIMEOUT", - "range": null, - "title": "XTAL32K watchdog timeout period", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", - "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "range": null, - "title": "Automatically switch to BACKUP32K_CLK when timer expires", - "type": "bool" - } - ], - "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", - "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", - "id": "ESP_XT_WDT", - "name": "ESP_XT_WDT", - "range": null, - "title": "Initialize XTAL32K watchdog timer on startup", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", - "id": "ESP_PANIC_HANDLER_IRAM", - "name": "ESP_PANIC_HANDLER_IRAM", - "range": null, - "title": "Place panic handler code in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", - "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", - "id": "ESP_DEBUG_STUBS_ENABLE", - "name": "ESP_DEBUG_STUBS_ENABLE", - "range": null, - "title": "OpenOCD debug stubs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", - "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "range": null, - "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", - "id": "ESP_DEBUG_OCDAWARE", - "name": "ESP_DEBUG_OCDAWARE", - "range": null, - "title": "Make exception and panic handlers JTAG/OCD aware", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ", - "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "range": null, - "title": "Level 5 interrupt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!BTDM_CTRL_HLI && ", - "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "range": null, - "title": "Level 4 interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL", - "title": "Interrupt level to use for Interrupt Watchdog and other system checks", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.51V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.64V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.76V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.92V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "3.10V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "3.27V", - "type": "bool" - } - ], - "depends_on": "ESP_BROWNOUT_DET", - "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", - "id": "component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", - "name": "ESP_BROWNOUT_DET_LVL_SEL", - "title": "Brownout voltage level", - "type": "choice" - } - ], - "depends_on": "!IDF_ENV_FPGA", - "help": "The ESP32-C3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", - "id": "ESP_BROWNOUT_DET", - "name": "ESP_BROWNOUT_DET", - "range": null, - "title": "Hardware brownout detect & reset", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_BROWNOUT_DET_LVL", - "name": "ESP_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-brownout-detector", - "title": "Brownout Detector", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", - "id": "ESP_SYSTEM_BROWNOUT_INTR", - "name": "ESP_SYSTEM_BROWNOUT_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", - "id": "ESP_SYSTEM_HW_STACK_GUARD", - "name": "ESP_SYSTEM_HW_STACK_GUARD", - "range": null, - "title": "Hardware stack guard", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", - "id": "ESP_SYSTEM_BBPLL_RECALIB", - "name": "ESP_SYSTEM_BBPLL_RECALIB", - "range": null, - "title": "Re-calibration BBPLL at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", - "id": "ESP_SYSTEM_HW_PC_RECORD", - "name": "ESP_SYSTEM_HW_PC_RECORD", - "range": null, - "title": "Hardware PC recording", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings", - "title": "ESP System Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", - "id": "ESP_IPC_TASK_STACK_SIZE", - "name": "ESP_IPC_TASK_STACK_SIZE", - "range": [ - 512, - 65536 - ], - "title": "Inter-Processor Call (IPC) task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE", - "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", - "id": "ESP_IPC_USES_CALLERS_PRIORITY", - "name": "ESP_IPC_USES_CALLERS_PRIORITY", - "range": null, - "title": "IPC runs at caller's priority", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", - "id": "ESP_IPC_ISR_ENABLE", - "name": "ESP_IPC_ISR_ENABLE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ipc-inter-processor-call-", - "title": "IPC (Inter-Processor Call)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32P4", - "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", - "id": "FREERTOS_SMP", - "name": "FREERTOS_SMP", - "range": null, - "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", - "id": "FREERTOS_UNICORE", - "name": "FREERTOS_UNICORE", - "range": null, - "title": "Run FreeRTOS only on first core", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", - "id": "FREERTOS_HZ", - "name": "FREERTOS_HZ", - "range": [ - 1, - 1000 - ], - "title": "configTICK_RATE_HZ", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", - "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", - "id": "FREERTOS_OPTIMIZED_SCHEDULER", - "name": "FREERTOS_OPTIMIZED_SCHEDULER", - "range": null, - "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "range": null, - "title": "No checking", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "range": null, - "title": "Check by stack pointer value (Method 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "range": null, - "title": "Check using canary bytes (Method 2)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", - "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", - "name": "FREERTOS_CHECK_STACKOVERFLOW", - "title": "configCHECK_FOR_STACK_OVERFLOW", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", - "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "range": [ - 1, - 256 - ], - "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", - "id": "FREERTOS_IDLE_TASK_STACKSIZE", - "name": "FREERTOS_IDLE_TASK_STACKSIZE", - "range": [ - 768, - 32768 - ], - "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_IDLE_HOOK", - "name": "FREERTOS_USE_IDLE_HOOK", - "range": null, - "title": "configUSE_IDLE_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SMP", - "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", - "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "range": null, - "title": "Use FreeRTOS minimal idle hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_TICK_HOOK", - "name": "FREERTOS_USE_TICK_HOOK", - "range": null, - "title": "configUSE_TICK_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", - "id": "FREERTOS_MAX_TASK_NAME_LEN", - "name": "FREERTOS_MAX_TASK_NAME_LEN", - "range": [ - 1, - 256 - ], - "title": "configMAX_TASK_NAME_LEN", - "type": "int" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX", - "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", - "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "range": null, - "title": "configENABLE_BACKWARD_COMPATIBILITY", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", - "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "range": null, - "title": "configTIMER_SERVICE_TASK_NAME", - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", - "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", - "type": "choice" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": null, - "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", - "id": "FREERTOS_TIMER_TASK_PRIORITY", - "name": "FREERTOS_TIMER_TASK_PRIORITY", - "range": [ - 1, - 25 - ], - "title": "configTIMER_TASK_PRIORITY", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", - "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "range": [ - 1536, - 32768 - ], - "title": "configTIMER_TASK_STACK_DEPTH", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", - "id": "FREERTOS_TIMER_QUEUE_LENGTH", - "name": "FREERTOS_TIMER_QUEUE_LENGTH", - "range": [ - 5, - 20 - ], - "title": "configTIMER_QUEUE_LENGTH", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", - "id": "FREERTOS_USE_TIMERS", - "name": "FREERTOS_USE_TIMERS", - "range": null, - "title": "configUSE_TIMERS", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", - "id": "FREERTOS_QUEUE_REGISTRY_SIZE", - "name": "FREERTOS_QUEUE_REGISTRY_SIZE", - "range": [ - 0, - 20 - ], - "title": "configQUEUE_REGISTRY_SIZE", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", - "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "range": [ - 1, - 32 - ], - "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TRACE_FACILITY", - "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", - "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "range": null, - "title": "configUSE_STATS_FORMATTING_FUNCTIONS", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", - "id": "FREERTOS_USE_TRACE_FACILITY", - "name": "FREERTOS_USE_TRACE_FACILITY", - "range": null, - "title": "configUSE_TRACE_FACILITY", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", - "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "range": null, - "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", - "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "range": null, - "title": "Enable display of xCoreID in vTaskList", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "range": null, - "title": "uint32_t", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "range": null, - "title": "uint64_t", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", - "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", - "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", - "title": "configRUN_TIME_COUNTER_TYPE", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", - "id": "FREERTOS_GENERATE_RUN_TIME_STATS", - "name": "FREERTOS_GENERATE_RUN_TIME_STATS", - "range": null, - "title": "configGENERATE_RUN_TIME_STATS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", - "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "range": null, - "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "type": "int" - } - ], - "depends_on": "PM_ENABLE", - "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", - "id": "FREERTOS_USE_TICKLESS_IDLE", - "name": "FREERTOS_USE_TICKLESS_IDLE", - "range": null, - "title": "configUSE_TICKLESS_IDLE", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", - "id": "FREERTOS_USE_APPLICATION_TASK_TAG", - "name": "FREERTOS_USE_APPLICATION_TASK_TAG", - "range": null, - "title": "configUSE_APPLICATION_TASK_TAG", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-kernel", - "title": "Kernel", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", - "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", - "id": "FREERTOS_TASK_FUNCTION_WRAPPER", - "name": "FREERTOS_TASK_FUNCTION_WRAPPER", - "range": null, - "title": "Wrap task functions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", - "id": "FREERTOS_WATCHPOINT_END_OF_STACK", - "name": "FREERTOS_WATCHPOINT_END_OF_STACK", - "range": null, - "title": "Enable stack overflow debug watchpoint", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", - "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", - "id": "FREERTOS_TLSP_DELETION_CALLBACKS", - "name": "FREERTOS_TLSP_DELETION_CALLBACKS", - "range": null, - "title": "Enable thread local storage pointers deletion callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", - "id": "FREERTOS_TASK_PRE_DELETION_HOOK", - "name": "FREERTOS_TASK_PRE_DELETION_HOOK", - "range": null, - "title": "Enable task pre-deletion hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", - "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "range": null, - "title": "Enable static task clean up hook (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP", - "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", - "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "range": null, - "title": "Check that mutex semaphore is given by owner task", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", - "id": "FREERTOS_ISR_STACKSIZE", - "name": "FREERTOS_ISR_STACKSIZE", - "range": [ - 1536, - 32768 - ], - "title": "ISR stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", - "id": "FREERTOS_INTERRUPT_BACKTRACE", - "name": "FREERTOS_INTERRUPT_BACKTRACE", - "range": null, - "title": "Enable backtrace from interrupt to task context", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", - "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", - "id": "FREERTOS_FPU_IN_ISR", - "name": "FREERTOS_FPU_IN_ISR", - "range": null, - "title": "Use float in Level 1 ISR", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_CORETIMER", - "name": "FREERTOS_TICK_SUPPORT_CORETIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 0", - "id": "FREERTOS_CORETIMER_0", - "name": "FREERTOS_CORETIMER_0", - "range": null, - "title": "Timer 0 (int 6, level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 1", - "id": "FREERTOS_CORETIMER_1", - "name": "FREERTOS_CORETIMER_1", - "range": null, - "title": "Timer 1 (int 15, level 3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 1 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "range": null, - "title": "SYSTIMER 0 (level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 3 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "range": null, - "title": "SYSTIMER 0 (level 3)", - "type": "bool" - } - ], - "depends_on": null, - "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", - "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", - "name": "FREERTOS_CORETIMER", - "title": "Tick timer source (Xtensa Only)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_SYSTIMER", - "name": "FREERTOS_SYSTICK_USES_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_CCOUNT", - "name": "FREERTOS_SYSTICK_USES_CCOUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "range": null, - "title": "Use ESP TIMER for run time stats", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", - "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "range": null, - "title": "Use CPU Clock for run time stats", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", - "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", - "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", - "name": "FREERTOS_RUN_TIME_STATS_CLK", - "title": "Choose the clock source for run time stats", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", - "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions into Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", - "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "range": null, - "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-port", - "title": "Port", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", - "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", - "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "range": null, - "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-extra", - "title": "Extra", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_PORT", - "name": "FREERTOS_PORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NO_AFFINITY", - "name": "FREERTOS_NO_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", - "id": "FREERTOS_DEBUG_OCDAWARE", - "name": "FREERTOS_DEBUG_OCDAWARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_PANIC_HANDLER_IRAM", - "help": null, - "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NUMBER_OF_CORES", - "name": "FREERTOS_NUMBER_OF_CORES", - "range": [ - 1, - 2 - ], - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-freertos", - "title": "FreeRTOS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_ASSERTION_EQUALS_SYSTEM", - "name": "HAL_ASSERTION_EQUALS_SYSTEM", - "range": null, - "title": "Same as system assertion level", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", - "help": null, - "id": "HAL_ASSERTION_DISABLE", - "name": "HAL_ASSERTION_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", - "help": null, - "id": "HAL_ASSERTION_SILENT", - "name": "HAL_ASSERTION_SILENT", - "range": null, - "title": "Silent", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", - "help": null, - "id": "HAL_ASSERTION_ENABLE", - "name": "HAL_ASSERTION_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "title": "Default HAL assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_DEFAULT_ASSERTION_LEVEL", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_NONE", - "name": "HAL_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_ERROR", - "name": "HAL_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_WARN", - "name": "HAL_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_INFO", - "name": "HAL_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_DEBUG", - "name": "HAL_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_VERBOSE", - "name": "HAL_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", - "help": "Specify how much output to see in HAL logs.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", - "name": "HAL_LOG_LEVEL", - "title": "HAL layer log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_LOG_LEVEL", - "name": "HAL_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_SYSTIMER_USE_ROM_IMPL", - "name": "HAL_SYSTIMER_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of SysTimer HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_WDT", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_WDT_USE_ROM_IMPL", - "name": "HAL_WDT_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of WDT HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_MASTER_ISR_IN_IRAM", - "help": "Enable this option to place SPI master hal layer functions into IRAM.", - "id": "HAL_SPI_MASTER_FUNC_IN_IRAM", - "name": "HAL_SPI_MASTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_SLAVE_ISR_IN_IRAM", - "help": "Enable this option to place SPI slave hal layer functions into IRAM.", - "id": "HAL_SPI_SLAVE_FUNC_IN_IRAM", - "name": "HAL_SPI_SLAVE_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32H2", - "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", - "id": "HAL_ECDSA_GEN_SIG_CM", - "name": "HAL_ECDSA_GEN_SIG_CM", - "range": null, - "title": "Enable countermeasure for ECDSA signature generation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", - "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_NONE", - "name": "LOG_DEFAULT_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_ERROR", - "name": "LOG_DEFAULT_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_WARN", - "name": "LOG_DEFAULT_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_INFO", - "name": "LOG_DEFAULT_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_DEBUG", - "name": "LOG_DEFAULT_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_VERBOSE", - "name": "LOG_DEFAULT_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", - "id": "component-config-log-log-level-default-log-verbosity", - "name": "LOG_DEFAULT_LEVEL", - "title": "Default log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_DEFAULT_LEVEL", - "name": "LOG_DEFAULT_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_MAXIMUM_EQUALS_DEFAULT", - "name": "LOG_MAXIMUM_EQUALS_DEFAULT", - "range": null, - "title": "Same as default", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_ERROR", - "name": "LOG_MAXIMUM_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_WARN", - "name": "LOG_MAXIMUM_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_INFO", - "name": "LOG_MAXIMUM_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_DEBUG", - "name": "LOG_MAXIMUM_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_VERBOSE", - "name": "LOG_MAXIMUM_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", - "id": "component-config-log-log-level-maximum-log-verbosity", - "name": "LOG_MAXIMUM_LEVEL", - "title": "Maximum log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MAXIMUM_LEVEL", - "name": "LOG_MAXIMUM_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", - "id": "LOG_MASTER_LEVEL", - "name": "LOG_MASTER_LEVEL", - "range": null, - "title": "Enable global master log level", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", - "id": "LOG_DYNAMIC_LEVEL_CONTROL", - "name": "LOG_DYNAMIC_LEVEL_CONTROL", - "range": null, - "title": "Enable dynamic log level changes at runtime", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", - "id": "LOG_TAG_LEVEL_IMPL_NONE", - "name": "LOG_TAG_LEVEL_IMPL_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", - "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "range": null, - "title": "Linked List", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "range": null, - "title": "Cache + Linked List", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", - "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", - "name": "LOG_TAG_LEVEL_IMPL", - "title": "Method of tag level checks", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", - "id": "LOG_TAG_LEVEL_CACHE_ARRAY", - "name": "LOG_TAG_LEVEL_CACHE_ARRAY", - "range": null, - "title": "Array", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", - "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "range": null, - "title": "Binary Min-Heap", - "type": "bool" - } - ], - "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", - "id": "component-config-log-log-level-level-settings-cache-implementation", - "name": "LOG_TAG_LEVEL_CACHE_IMPL", - "title": "Cache implementation", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "range": null, - "title": "Log Tag Cache Size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-log-log-level-level-settings", - "title": "Level Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log-log-level", - "title": "Log Level", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "LOG_COLORS", - "name": "LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_NONE", - "name": "LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_RTOS", - "name": "LOG_TIMESTAMP_SOURCE_RTOS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "range": null, - "title": "System Time (HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "range": null, - "title": "System Time (YY-MM-DD HH:MM:SS.sss)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", - "id": "component-config-log-format-timestamp", - "name": "LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-log-format", - "title": "Format", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", - "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_LF", - "name": "NEWLIB_STDOUT_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_CR", - "name": "NEWLIB_STDOUT_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option allows configuring the desired line endings sent to UART\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-newlib-line-ending-for-uart-output", - "name": "NEWLIB_STDOUT_LINE_ENDING", - "title": "Line ending for UART output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", - "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_LF", - "name": "NEWLIB_STDIN_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_CR", - "name": "NEWLIB_STDIN_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option allows configuring which input sequence on UART produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-newlib-line-ending-for-uart-input", - "name": "NEWLIB_STDIN_LINE_ENDING", - "title": "Line ending for UART input", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", - "id": "NEWLIB_NANO_FORMAT", - "name": "NEWLIB_NANO_FORMAT", - "range": null, - "title": "Enable 'nano' formatting options for printf/scanf family", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", - "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", - "range": null, - "title": "RTC and high-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_RTC", - "name": "NEWLIB_TIME_SYSCALL_USE_RTC", - "range": null, - "title": "RTC", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_HRT", - "name": "NEWLIB_TIME_SYSCALL_USE_HRT", - "range": null, - "title": "High-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_NONE", - "name": "NEWLIB_TIME_SYSCALL_USE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", - "id": "component-config-newlib-timers-used-for-gettimeofday-function", - "name": "NEWLIB_TIME_SYSCALL", - "title": "Timers used for gettimeofday function", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-newlib", - "title": "Newlib", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "help": null, - "id": "MMU_PAGE_SIZE_8KB", - "name": "MMU_PAGE_SIZE_8KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_16KB", - "name": "MMU_PAGE_SIZE_16KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_32KB", - "name": "MMU_PAGE_SIZE_32KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_64KB", - "name": "MMU_PAGE_SIZE_64KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_MODE", - "name": "MMU_PAGE_MODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE", - "name": "MMU_PAGE_SIZE", - "range": null, - "title": null, - "type": "hex" - } - ], - "depends_on": null, - "id": "component-config-soc-settings-mmu-config", - "title": "MMU Config", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-soc-settings", - "title": "SoC Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", - "id": "SPI_FLASH_BROWNOUT_RESET_XMC", - "name": "SPI_FLASH_BROWNOUT_RESET_XMC", - "range": null, - "title": "Enable sending reset when brownout for XMC flash chips", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", - "id": "SPI_FLASH_BROWNOUT_RESET", - "name": "SPI_FLASH_BROWNOUT_RESET", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", - "title": "SPI Flash behavior when brownout", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Invisible for users.", - "id": "SPI_FLASH_UNDER_HIGH_FREQ", - "name": "SPI_FLASH_UNDER_HIGH_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_ENA", - "name": "SPI_FLASH_HPM_ENA", - "range": null, - "title": "Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_AUTO", - "name": "SPI_FLASH_HPM_AUTO", - "range": null, - "title": "Auto (Not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DIS", - "name": "SPI_FLASH_HPM_DIS", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32S3 && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", - "name": "SPI_FLASH_HPM", - "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", - "id": "SPI_FLASH_HPM_ON", - "name": "SPI_FLASH_HPM_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_AUTO", - "name": "SPI_FLASH_HPM_DC_AUTO", - "range": null, - "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_DISABLE", - "name": "SPI_FLASH_HPM_DC_DISABLE", - "range": null, - "title": "Disable (READ DOCS FIRST)", - "type": "bool" - } - ], - "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", - "name": "SPI_FLASH_HPM_DC", - "title": "Support HPM using DC (READ DOCS FIRST)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", - "id": "SPI_FLASH_HPM_DC_ON", - "name": "SPI_FLASH_HPM_DC_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", - "id": "SPI_FLASH_AUTO_SUSPEND", - "name": "SPI_FLASH_AUTO_SUSPEND", - "range": null, - "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", - "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "range": [ - 20, - 100 - ], - "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", - "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "range": null, - "title": "Enable XMC-C series flash chip suspend feature anyway", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", - "id": "SPI_FLASH_SOFTWARE_RESUME", - "name": "SPI_FLASH_SOFTWARE_RESUME", - "range": null, - "title": "Resume flash program/erase form suspend state by software control", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", - "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "range": null, - "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", - "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "range": null, - "title": "Check flash status automatically after flash suspend", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", - "title": "Optional and Experimental Features (READ DOCS FIRST)", - "type": "menu" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration", - "title": "Main Flash configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", - "id": "SPI_FLASH_LOG_FAILED_WRITE", - "name": "SPI_FLASH_LOG_FAILED_WRITE", - "range": null, - "title": "Log errors if verification fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", - "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "range": null, - "title": "Log warning if writing zero bits to ones", - "type": "bool" - } - ], - "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.", - "id": "SPI_FLASH_VERIFY_WRITE", - "name": "SPI_FLASH_VERIFY_WRITE", - "range": null, - "title": "Verify SPI flash writes", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", - "id": "SPI_FLASH_ENABLE_COUNTERS", - "name": "SPI_FLASH_ENABLE_COUNTERS", - "range": null, - "title": "Enable operation counters", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", - "id": "SPI_FLASH_ROM_DRIVER_PATCH", - "name": "SPI_FLASH_ROM_DRIVER_PATCH", - "range": null, - "title": "Enable SPI flash ROM driver patched functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SPI_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", - "id": "SPI_FLASH_ROM_IMPL", - "name": "SPI_FLASH_ROM_IMPL", - "range": null, - "title": "Use esp_flash implementation in ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "range": null, - "title": "Aborts", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "range": null, - "title": "Fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "range": null, - "title": "Allowed", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", - "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", - "name": "SPI_FLASH_DANGEROUS_WRITE", - "title": "Writing to dangerous flash regions", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", - "id": "SPI_FLASH_SHARE_SPI1_BUS", - "name": "SPI_FLASH_SHARE_SPI1_BUS", - "range": null, - "title": "Support other devices attached to SPI1 bus", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", - "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "range": null, - "title": "Bypass a block erase and always do sector erase", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", - "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "range": null, - "title": "Duration of erasing to yield CPUs (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Defines how many ticks will be before returning to continue a erasing.", - "id": "SPI_FLASH_ERASE_YIELD_TICKS", - "name": "SPI_FLASH_ERASE_YIELD_TICKS", - "range": null, - "title": "CPU release time (tick) for an erase operation", - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", - "id": "SPI_FLASH_YIELD_DURING_ERASE", - "name": "SPI_FLASH_YIELD_DURING_ERASE", - "range": null, - "title": "Enables yield operation during flash erase", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", - "id": "SPI_FLASH_WRITE_CHUNK_SIZE", - "name": "SPI_FLASH_WRITE_CHUNK_SIZE", - "range": [ - 256, - 8192 - ], - "title": "Flash write chunk size", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", - "id": "SPI_FLASH_SIZE_OVERRIDE", - "name": "SPI_FLASH_SIZE_OVERRIDE", - "range": null, - "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", - "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "range": null, - "title": "Flash timeout checkout disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", - "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "range": null, - "title": "Override default chip driver list", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_XMC_SUPPORTED", - "name": "SPI_FLASH_VENDOR_XMC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_GD_SUPPORTED", - "name": "SPI_FLASH_VENDOR_GD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", - "name": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", - "name": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", - "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_BOYA_SUPPORTED", - "name": "SPI_FLASH_VENDOR_BOYA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_TH_SUPPORTED", - "name": "SPI_FLASH_VENDOR_TH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "range": null, - "title": "ISSI", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "range": null, - "title": "MXIC", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", - "id": "SPI_FLASH_SUPPORT_GD_CHIP", - "name": "SPI_FLASH_SUPPORT_GD_CHIP", - "range": null, - "title": "GigaDevice", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "range": null, - "title": "Winbond", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "range": null, - "title": "BOYA", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_TH_CHIP", - "name": "SPI_FLASH_SUPPORT_TH_CHIP", - "range": null, - "title": "TH", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "range": null, - "title": "mxic (opi)", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver-auto-detect-flash-chips", - "title": "Auto-detect flash chips", - "type": "menu" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", - "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "range": null, - "title": "Enable encrypted partition read/write operations", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver", - "title": "SPI Flash driver", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config", - "title": "Component config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_SUPPORT_LS\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS", - "id": "IDF_EXPERIMENTAL_FEATURES", - "name": "IDF_EXPERIMENTAL_FEATURES", - "range": null, - "title": "Make experimental features visible", - "type": "bool" - } -] \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.cmake b/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.cmake deleted file mode 100644 index eb40710f5..000000000 --- a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.cmake +++ /dev/null @@ -1,756 +0,0 @@ -# - # Automatically generated file. DO NOT EDIT. - # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file - # -set(CONFIG_SOC_ADC_SUPPORTED "y") -set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") -set(CONFIG_SOC_UART_SUPPORTED "y") -set(CONFIG_SOC_GDMA_SUPPORTED "y") -set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") -set(CONFIG_SOC_GPTIMER_SUPPORTED "y") -set(CONFIG_SOC_TWAI_SUPPORTED "y") -set(CONFIG_SOC_BT_SUPPORTED "y") -set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") -set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") -set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") -set(CONFIG_SOC_XT_WDT_SUPPORTED "y") -set(CONFIG_SOC_PHY_SUPPORTED "y") -set(CONFIG_SOC_WIFI_SUPPORTED "y") -set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") -set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") -set(CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG "y") -set(CONFIG_SOC_EFUSE_SUPPORTED "y") -set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") -set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") -set(CONFIG_SOC_I2S_SUPPORTED "y") -set(CONFIG_SOC_RMT_SUPPORTED "y") -set(CONFIG_SOC_SDM_SUPPORTED "y") -set(CONFIG_SOC_GPSPI_SUPPORTED "y") -set(CONFIG_SOC_LEDC_SUPPORTED "y") -set(CONFIG_SOC_I2C_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") -set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") -set(CONFIG_SOC_AES_SUPPORTED "y") -set(CONFIG_SOC_MPI_SUPPORTED "y") -set(CONFIG_SOC_SHA_SUPPORTED "y") -set(CONFIG_SOC_HMAC_SUPPORTED "y") -set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") -set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") -set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") -set(CONFIG_SOC_MEMPROT_SUPPORTED "y") -set(CONFIG_SOC_BOD_SUPPORTED "y") -set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") -set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") -set(CONFIG_SOC_WDT_SUPPORTED "y") -set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") -set(CONFIG_SOC_RNG_SUPPORTED "y") -set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") -set(CONFIG_SOC_PM_SUPPORTED "y") -set(CONFIG_SOC_XTAL_SUPPORT_40M "y") -set(CONFIG_SOC_AES_SUPPORT_DMA "y") -set(CONFIG_SOC_AES_GDMA "y") -set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") -set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") -set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") -set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") -set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") -set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") -set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") -set(CONFIG_SOC_ADC_PERIPH_NUM "2") -set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "5") -set(CONFIG_SOC_ADC_ATTEN_NUM "4") -set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") -set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") -set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") -set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") -set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") -set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") -set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") -set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") -set(CONFIG_SOC_ADC_SHARED_POWER "y") -set(CONFIG_SOC_APB_BACKUP_DMA "y") -set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") -set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") -set(CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE "0x4000") -set(CONFIG_SOC_CPU_CORES_NUM "1") -set(CONFIG_SOC_CPU_INTR_NUM "32") -set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") -set(CONFIG_SOC_CPU_HAS_CSR_PC "y") -set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "8") -set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "8") -set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") -set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") -set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") -set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") -set(CONFIG_SOC_AHB_GDMA_VERSION "1") -set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") -set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") -set(CONFIG_SOC_GPIO_PORT "1") -set(CONFIG_SOC_GPIO_PIN_COUNT "22") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") -set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") -set(CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP "y") -set(CONFIG_SOC_GPIO_IN_RANGE_MAX "21") -set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "21") -set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK "0") -set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT "6") -set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x3fffc0") -set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") -set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") -set(CONFIG_SOC_I2C_NUM "1") -set(CONFIG_SOC_HP_I2C_NUM "1") -set(CONFIG_SOC_I2C_FIFO_LEN "32") -set(CONFIG_SOC_I2C_CMD_REG_NUM "8") -set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") -set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") -set(CONFIG_SOC_I2C_SUPPORT_RTC "y") -set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") -set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") -set(CONFIG_SOC_I2S_NUM "1") -set(CONFIG_SOC_I2S_HW_VERSION_2 "y") -set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") -set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") -set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") -set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") -set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") -set(CONFIG_SOC_LEDC_TIMER_NUM "4") -set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") -set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") -set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") -set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") -set(CONFIG_SOC_MMU_PERIPH_NUM "1") -set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") -set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") -set(CONFIG_SOC_RMT_GROUPS "1") -set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") -set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") -set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") -set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") -set(CONFIG_SOC_RMT_SUPPORT_APB "y") -set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") -set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "108") -set(CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND "y") -set(CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND "y") -set(CONFIG_SOC_RTCIO_PIN_COUNT "0") -set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") -set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") -set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") -set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") -set(CONFIG_SOC_SHA_SUPPORT_DMA "y") -set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") -set(CONFIG_SOC_SHA_GDMA "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") -set(CONFIG_SOC_SDM_GROUPS "1") -set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_SPI_PERIPH_NUM "2") -set(CONFIG_SOC_SPI_MAX_CS_NUM "6") -set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") -set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") -set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") -set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") -set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") -set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") -set(CONFIG_SOC_SPI_SCT_REG_NUM "14") -set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") -set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") -set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") -set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") -set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") -set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") -set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") -set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") -set(CONFIG_SOC_TIMER_GROUPS "2") -set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") -set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") -set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") -set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") -set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") -set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_TWAI_BRP_MIN "2") -set(CONFIG_SOC_TWAI_BRP_MAX "16384") -set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") -set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") -set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") -set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") -set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") -set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") -set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") -set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") -set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") -set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") -set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") -set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "512") -set(CONFIG_SOC_UART_NUM "2") -set(CONFIG_SOC_UART_HP_NUM "2") -set(CONFIG_SOC_UART_FIFO_LEN "128") -set(CONFIG_SOC_UART_BITRATE_MAX "5000000") -set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") -set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") -set(CONFIG_SOC_COEX_HW_PTI "y") -set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") -set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") -set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") -set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") -set(CONFIG_SOC_PM_SUPPORT_WIFI_PD "y") -set(CONFIG_SOC_PM_SUPPORT_BT_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") -set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") -set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") -set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") -set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") -set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") -set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") -set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") -set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") -set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") -set(CONFIG_SOC_WIFI_HW_TSF "y") -set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") -set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") -set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") -set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") -set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") -set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") -set(CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND "y") -set(CONFIG_SOC_BLE_SUPPORTED "y") -set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") -set(CONFIG_SOC_BLE_50_SUPPORTED "y") -set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") -set(CONFIG_SOC_BLUFI_SUPPORTED "y") -set(CONFIG_SOC_PHY_COMBO_MODULE "y") -set(CONFIG_IDF_CMAKE "y") -set(CONFIG_IDF_TOOLCHAIN "gcc") -set(CONFIG_IDF_TOOLCHAIN_GCC "y") -set(CONFIG_IDF_TARGET_ARCH_RISCV "y") -set(CONFIG_IDF_TARGET_ARCH "riscv") -set(CONFIG_IDF_TARGET "esp32c3") -set(CONFIG_IDF_INIT_VERSION "5.4.1") -set(CONFIG_IDF_TARGET_ESP32C3 "y") -set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x5") -set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") -set(CONFIG_APP_BUILD_TYPE_RAM "") -set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") -set(CONFIG_APP_BUILD_BOOTLOADER "y") -set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") -set(CONFIG_APP_REPRODUCIBLE_BUILD "") -set(CONFIG_APP_NO_BLOBS "") -set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") -set(CONFIG_BOOTLOADER_PROJECT_VER "1") -set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") -set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL "3") -set(CONFIG_BOOTLOADER_LOG_COLORS "") -set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") -set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") -set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") -set(CONFIG_BOOTLOADER_FACTORY_RESET "") -set(CONFIG_BOOTLOADER_APP_TEST "") -set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") -set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") -set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "y") -set(CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") -set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") -set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") -set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") -set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") -set(CONFIG_SECURE_BOOT "") -set(CONFIG_SECURE_FLASH_ENC_ENABLED "") -set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") -set(CONFIG_APP_COMPILE_TIME_DATE "y") -set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") -set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") -set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") -set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") -set(CONFIG_ESP_ROM_HAS_CRC_LE "y") -set(CONFIG_ESP_ROM_HAS_CRC_BE "y") -set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") -set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") -set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") -set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") -set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") -set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") -set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") -set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") -set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") -set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") -set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") -set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") -set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") -set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") -set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") -set(CONFIG_ESP_ROM_HAS_VERSION "y") -set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") -set(CONFIG_ESPTOOLPY_NO_STUB "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") -set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") -set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") -set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") -set(CONFIG_ESPTOOLPY_FLASHMODE "dio") -set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") -set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") -set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") -set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE "4MB") -set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") -set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") -set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") -set(CONFIG_ESPTOOLPY_BEFORE "default_reset") -set(CONFIG_ESPTOOLPY_AFTER_RESET "y") -set(CONFIG_ESPTOOLPY_AFTER_NORESET "") -set(CONFIG_ESPTOOLPY_AFTER "hard_reset") -set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") -set(CONFIG_PARTITION_TABLE_SINGLE_APP "") -set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") -set(CONFIG_PARTITION_TABLE_TWO_OTA "") -set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") -set(CONFIG_PARTITION_TABLE_CUSTOM "y") -set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_4mb_optimised.csv") -set(CONFIG_PARTITION_TABLE_FILENAME "partitions_4mb_optimised.csv") -set(CONFIG_PARTITION_TABLE_OFFSET "0xc000") -set(CONFIG_PARTITION_TABLE_MD5 "y") -set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") -set(CONFIG_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") -set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") -set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") -set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") -set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") -set(CONFIG_COMPILER_CXX_EXCEPTIONS "") -set(CONFIG_COMPILER_CXX_RTTI "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") -set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") -set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") -set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "") -set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") -set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") -set(CONFIG_COMPILER_DUMP_RTL_FILES "") -set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") -set(CONFIG_COMPILER_RT_LIB_NAME "gcc") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") -set(CONFIG_COMPILER_STATIC_ANALYZER "") -set(CONFIG_EFUSE_CUSTOM_TABLE "") -set(CONFIG_EFUSE_VIRTUAL "") -set(CONFIG_EFUSE_MAX_BLK_LEN "256") -set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") -set(CONFIG_ESP32C3_REV_MIN_0 "") -set(CONFIG_ESP32C3_REV_MIN_1 "") -set(CONFIG_ESP32C3_REV_MIN_2 "") -set(CONFIG_ESP32C3_REV_MIN_3 "y") -set(CONFIG_ESP32C3_REV_MIN_4 "") -set(CONFIG_ESP32C3_REV_MIN_101 "") -set(CONFIG_ESP32C3_REV_MIN_FULL "3") -set(CONFIG_ESP_REV_MIN_FULL "3") -set(CONFIG_ESP32C3_REV_MAX_FULL "199") -set(CONFIG_ESP_REV_MAX_FULL "199") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO "") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES "4") -set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") -set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") -set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") -set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") -set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") -set(CONFIG_ESP_SLEEP_DEBUG "") -set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") -set(CONFIG_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") -set(CONFIG_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_ISR_IRAM_SAFE "") -set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") -set(CONFIG_XTAL_FREQ_40 "y") -set(CONFIG_XTAL_FREQ "40") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") -set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") -set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") -set(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE "y") -set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") -set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") -set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") -set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") -set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") -set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") -set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") -set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") -set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") -set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") -set(CONFIG_ESP_CONSOLE_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") -set(CONFIG_ESP_CONSOLE_UART "y") -set(CONFIG_ESP_CONSOLE_UART_NUM "0") -set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") -set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_ESP_INT_WDT "y") -set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_ESP_TASK_WDT_EN "y") -set(CONFIG_ESP_TASK_WDT_INIT "y") -set(CONFIG_ESP_TASK_WDT_PANIC "") -set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP_PANIC_HANDLER_IRAM "") -set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP_DEBUG_OCDAWARE "y") -set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") -set(CONFIG_ESP_BROWNOUT_DET "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL "7") -set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") -set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") -set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") -set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_FREERTOS_SMP "") -set(CONFIG_FREERTOS_UNICORE "y") -set(CONFIG_FREERTOS_HZ "100") -set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") -set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") -set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") -set(CONFIG_FREERTOS_USE_IDLE_HOOK "") -set(CONFIG_FREERTOS_USE_TICK_HOOK "") -set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") -set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") -set(CONFIG_FREERTOS_USE_TIMERS "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") -set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") -set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") -set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "3120") -set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") -set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") -set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") -set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") -set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") -set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") -set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") -set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") -set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") -set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") -set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") -set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") -set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") -set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") -set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") -set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") -set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") -set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") -set(CONFIG_FREERTOS_PORT "y") -set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") -set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") -set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") -set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") -set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") -set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") -set(CONFIG_HAL_ASSERTION_DISABLE "") -set(CONFIG_HAL_ASSERTION_SILENT "") -set(CONFIG_HAL_ASSERTION_ENABLE "") -set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") -set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") -set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") -set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") -set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") -set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") -set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") -set(CONFIG_LOG_DEFAULT_LEVEL "3") -set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") -set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") -set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") -set(CONFIG_LOG_MAXIMUM_LEVEL "3") -set(CONFIG_LOG_MASTER_LEVEL "") -set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") -set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") -set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") -set(CONFIG_LOG_COLORS "") -set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") -set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") -set(CONFIG_NEWLIB_NANO_FORMAT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") -set(CONFIG_MMU_PAGE_SIZE_64KB "y") -set(CONFIG_MMU_PAGE_MODE "64KB") -set(CONFIG_MMU_PAGE_SIZE "0x10000") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") -set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") -set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") -set(CONFIG_SPI_FLASH_VERIFY_WRITE "") -set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") -set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") -set(CONFIG_SPI_FLASH_ROM_IMPL "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") -set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") -set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") -set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") -set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") -set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") -set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") -set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") -set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") -set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED "y") -set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") -set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") -set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") -set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND;CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_WIFI_PD;CONFIG_SOC_PM_SUPPORT_BT_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32C3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK;CONFIG_APP_ANTI_ROLLBACK;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32C3_REV_MIN_0;CONFIG_ESP32C3_REV_MIN_1;CONFIG_ESP32C3_REV_MIN_2;CONFIG_ESP32C3_REV_MIN_3;CONFIG_ESP32C3_REV_MIN_4;CONFIG_ESP32C3_REV_MIN_101;CONFIG_ESP32C3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32C3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32C3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32C3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32C3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP32C3_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32C3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32C3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32C3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32C3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32C3_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES) -# List of deprecated options for backward compatibility -set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") -set(CONFIG_NO_BLOBS "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") -set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL "3") -set(CONFIG_APP_ROLLBACK_ENABLE "y") -set(CONFIG_APP_ANTI_ROLLBACK "") -set(CONFIG_FLASH_ENCRYPTION_ENABLED "") -set(CONFIG_FLASHMODE_QIO "") -set(CONFIG_FLASHMODE_QOUT "") -set(CONFIG_FLASHMODE_DIO "y") -set(CONFIG_FLASHMODE_DOUT "") -set(CONFIG_MONITOR_BAUD "115200") -set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") -set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") -set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") -set(CONFIG_CXX_EXCEPTIONS "") -set(CONFIG_STACK_CHECK_NONE "y") -set(CONFIG_STACK_CHECK_NORM "") -set(CONFIG_STACK_CHECK_STRONG "") -set(CONFIG_STACK_CHECK_ALL "") -set(CONFIG_WARN_WRITE_STRINGS "") -set(CONFIG_ESP_SYSTEM_PD_FLASH "") -set(CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_ESP32C3_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_ESP32C3_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_ESP32C3_RTC_CLK_SRC_INT_8MD256 "") -set(CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_80 "") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160 "y") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ "160") -set(CONFIG_ESP32C3_MEMPROT_FEATURE "y") -set(CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK "y") -set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_CONSOLE_UART_DEFAULT "y") -set(CONFIG_CONSOLE_UART_CUSTOM "") -set(CONFIG_CONSOLE_UART_NONE "") -set(CONFIG_ESP_CONSOLE_UART_NONE "") -set(CONFIG_CONSOLE_UART "y") -set(CONFIG_CONSOLE_UART_NUM "0") -set(CONFIG_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_INT_WDT "y") -set(CONFIG_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_TASK_WDT "y") -set(CONFIG_ESP_TASK_WDT "y") -set(CONFIG_TASK_WDT_PANIC "") -set(CONFIG_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP32C3_DEBUG_OCDAWARE "y") -set(CONFIG_BROWNOUT_DET "y") -set(CONFIG_ESP32C3_BROWNOUT_DET "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_BROWNOUT_DET_LVL "7") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL "7") -set(CONFIG_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_TIMER_TASK_PRIORITY "1") -set(CONFIG_TIMER_TASK_STACK_DEPTH "3120") -set(CONFIG_TIMER_QUEUE_LENGTH "10") -set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") -set(CONFIG_HAL_ASSERTION_SILIENT "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_SYSTIMER "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_NONE "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.h b/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.h deleted file mode 100644 index 14cf0ade8..000000000 --- a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.h +++ /dev/null @@ -1,550 +0,0 @@ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header - */ -#pragma once -#define CONFIG_SOC_ADC_SUPPORTED 1 -#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 -#define CONFIG_SOC_UART_SUPPORTED 1 -#define CONFIG_SOC_GDMA_SUPPORTED 1 -#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 -#define CONFIG_SOC_GPTIMER_SUPPORTED 1 -#define CONFIG_SOC_TWAI_SUPPORTED 1 -#define CONFIG_SOC_BT_SUPPORTED 1 -#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 -#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 -#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 -#define CONFIG_SOC_XT_WDT_SUPPORTED 1 -#define CONFIG_SOC_PHY_SUPPORTED 1 -#define CONFIG_SOC_WIFI_SUPPORTED 1 -#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 -#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 -#define CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG 1 -#define CONFIG_SOC_EFUSE_SUPPORTED 1 -#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 -#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 -#define CONFIG_SOC_I2S_SUPPORTED 1 -#define CONFIG_SOC_RMT_SUPPORTED 1 -#define CONFIG_SOC_SDM_SUPPORTED 1 -#define CONFIG_SOC_GPSPI_SUPPORTED 1 -#define CONFIG_SOC_LEDC_SUPPORTED 1 -#define CONFIG_SOC_I2C_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_SUPPORTED 1 -#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 -#define CONFIG_SOC_AES_SUPPORTED 1 -#define CONFIG_SOC_MPI_SUPPORTED 1 -#define CONFIG_SOC_SHA_SUPPORTED 1 -#define CONFIG_SOC_HMAC_SUPPORTED 1 -#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 -#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 -#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 -#define CONFIG_SOC_MEMPROT_SUPPORTED 1 -#define CONFIG_SOC_BOD_SUPPORTED 1 -#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 -#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 -#define CONFIG_SOC_WDT_SUPPORTED 1 -#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 -#define CONFIG_SOC_RNG_SUPPORTED 1 -#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1 -#define CONFIG_SOC_PM_SUPPORTED 1 -#define CONFIG_SOC_XTAL_SUPPORT_40M 1 -#define CONFIG_SOC_AES_SUPPORT_DMA 1 -#define CONFIG_SOC_AES_GDMA 1 -#define CONFIG_SOC_AES_SUPPORT_AES_128 1 -#define CONFIG_SOC_AES_SUPPORT_AES_256 1 -#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 -#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1 -#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 -#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 -#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 -#define CONFIG_SOC_ADC_PERIPH_NUM 2 -#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 5 -#define CONFIG_SOC_ADC_ATTEN_NUM 4 -#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 -#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 -#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 -#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 -#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 -#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 -#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 -#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 -#define CONFIG_SOC_ADC_SHARED_POWER 1 -#define CONFIG_SOC_APB_BACKUP_DMA 1 -#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 -#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 -#define CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE 0x4000 -#define CONFIG_SOC_CPU_CORES_NUM 1 -#define CONFIG_SOC_CPU_INTR_NUM 32 -#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 -#define CONFIG_SOC_CPU_HAS_CSR_PC 1 -#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 8 -#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 8 -#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 -#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 -#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 -#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 -#define CONFIG_SOC_AHB_GDMA_VERSION 1 -#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 -#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 -#define CONFIG_SOC_GPIO_PORT 1 -#define CONFIG_SOC_GPIO_PIN_COUNT 22 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 -#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 -#define CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP 1 -#define CONFIG_SOC_GPIO_IN_RANGE_MAX 21 -#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 21 -#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK 0 -#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT 6 -#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x00000000003FFFC0 -#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 -#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 -#define CONFIG_SOC_I2C_NUM 1 -#define CONFIG_SOC_HP_I2C_NUM 1 -#define CONFIG_SOC_I2C_FIFO_LEN 32 -#define CONFIG_SOC_I2C_CMD_REG_NUM 8 -#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 -#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 -#define CONFIG_SOC_I2C_SUPPORT_RTC 1 -#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 -#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 -#define CONFIG_SOC_I2S_NUM 1 -#define CONFIG_SOC_I2S_HW_VERSION_2 1 -#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 -#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 -#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 -#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 -#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 -#define CONFIG_SOC_LEDC_TIMER_NUM 4 -#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 -#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14 -#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 -#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 -#define CONFIG_SOC_MMU_PERIPH_NUM 1 -#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 -#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 -#define CONFIG_SOC_RMT_GROUPS 1 -#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 -#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 -#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 -#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 -#define CONFIG_SOC_RMT_SUPPORT_APB 1 -#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128 -#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 108 -#define CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND 1 -#define CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND 1 -#define CONFIG_SOC_RTCIO_PIN_COUNT 0 -#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 -#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 -#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 -#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 -#define CONFIG_SOC_SHA_SUPPORT_DMA 1 -#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 -#define CONFIG_SOC_SHA_GDMA 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 -#define CONFIG_SOC_SDM_GROUPS 1 -#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_SPI_PERIPH_NUM 2 -#define CONFIG_SOC_SPI_MAX_CS_NUM 6 -#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 -#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 -#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 -#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 -#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 -#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 -#define CONFIG_SOC_SPI_SCT_REG_NUM 14 -#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 -#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA -#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 -#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 -#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 -#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 -#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 -#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 -#define CONFIG_SOC_TIMER_GROUPS 2 -#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 -#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 -#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 -#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 -#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 -#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_TWAI_BRP_MIN 2 -#define CONFIG_SOC_TWAI_BRP_MAX 16384 -#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 -#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 -#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 -#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 -#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 -#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 -#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 -#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 -#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 -#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 -#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16 -#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 512 -#define CONFIG_SOC_UART_NUM 2 -#define CONFIG_SOC_UART_HP_NUM 2 -#define CONFIG_SOC_UART_FIFO_LEN 128 -#define CONFIG_SOC_UART_BITRATE_MAX 5000000 -#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 -#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 -#define CONFIG_SOC_COEX_HW_PTI 1 -#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 -#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 -#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 -#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 -#define CONFIG_SOC_PM_SUPPORT_WIFI_PD 1 -#define CONFIG_SOC_PM_SUPPORT_BT_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 -#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 -#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 -#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1 -#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1 -#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1 -#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 -#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 -#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 -#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 -#define CONFIG_SOC_WIFI_HW_TSF 1 -#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 -#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 -#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 -#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 -#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 -#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1 -#define CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND 1 -#define CONFIG_SOC_BLE_SUPPORTED 1 -#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 -#define CONFIG_SOC_BLE_50_SUPPORTED 1 -#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 -#define CONFIG_SOC_BLUFI_SUPPORTED 1 -#define CONFIG_SOC_PHY_COMBO_MODULE 1 -#define CONFIG_IDF_CMAKE 1 -#define CONFIG_IDF_TOOLCHAIN "gcc" -#define CONFIG_IDF_TOOLCHAIN_GCC 1 -#define CONFIG_IDF_TARGET_ARCH_RISCV 1 -#define CONFIG_IDF_TARGET_ARCH "riscv" -#define CONFIG_IDF_TARGET "esp32c3" -#define CONFIG_IDF_INIT_VERSION "5.4.1" -#define CONFIG_IDF_TARGET_ESP32C3 1 -#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0005 -#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 -#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 -#define CONFIG_APP_BUILD_BOOTLOADER 1 -#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 -#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 -#define CONFIG_BOOTLOADER_PROJECT_VER 1 -#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 -#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL 3 -#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 -#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 -#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 -#define CONFIG_BOOTLOADER_WDT_ENABLE 1 -#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 -#define CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE 1 -#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 -#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 -#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 -#define CONFIG_APP_COMPILE_TIME_DATE 1 -#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 -#define CONFIG_ESP_ROM_HAS_CRC_LE 1 -#define CONFIG_ESP_ROM_HAS_CRC_BE 1 -#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 -#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 -#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 -#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 -#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 -#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 -#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 -#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 -#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 -#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 -#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 -#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 -#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 -#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 -#define CONFIG_ESP_ROM_USB_OTG_NUM -1 -#define CONFIG_ESP_ROM_HAS_VERSION 1 -#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 -#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 -#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 -#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 -#define CONFIG_ESPTOOLPY_FLASHMODE "dio" -#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 -#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" -#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 -#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" -#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 -#define CONFIG_ESPTOOLPY_BEFORE "default_reset" -#define CONFIG_ESPTOOLPY_AFTER_RESET 1 -#define CONFIG_ESPTOOLPY_AFTER "hard_reset" -#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 -#define CONFIG_PARTITION_TABLE_CUSTOM 1 -#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_4mb_optimised.csv" -#define CONFIG_PARTITION_TABLE_FILENAME "partitions_4mb_optimised.csv" -#define CONFIG_PARTITION_TABLE_OFFSET 0xc000 -#define CONFIG_PARTITION_TABLE_MD5 1 -#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 -#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 -#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 -#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 -#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 -#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 -#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 -#define CONFIG_COMPILER_RT_LIB_NAME "gcc" -#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 -#define CONFIG_EFUSE_MAX_BLK_LEN 256 -#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 -#define CONFIG_ESP32C3_REV_MIN_3 1 -#define CONFIG_ESP32C3_REV_MIN_FULL 3 -#define CONFIG_ESP_REV_MIN_FULL 3 -#define CONFIG_ESP32C3_REV_MAX_FULL 199 -#define CONFIG_ESP_REV_MAX_FULL 199 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 -#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 -#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES 4 -#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 -#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 -#define CONFIG_RTC_CLK_SRC_INT_RC 1 -#define CONFIG_RTC_CLK_CAL_CYCLES 1024 -#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_XTAL_FREQ_40 1 -#define CONFIG_XTAL_FREQ 40 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 -#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 -#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 -#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 -#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 -#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 -#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 -#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 -#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 -#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 -#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 -#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 -#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 -#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 -#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 -#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 -#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 -#define CONFIG_ESP_CONSOLE_UART 1 -#define CONFIG_ESP_CONSOLE_UART_NUM 0 -#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 -#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 -#define CONFIG_ESP_INT_WDT 1 -#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 -#define CONFIG_ESP_TASK_WDT_EN 1 -#define CONFIG_ESP_TASK_WDT_INIT 1 -#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 -#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 -#define CONFIG_ESP_DEBUG_OCDAWARE 1 -#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 -#define CONFIG_ESP_BROWNOUT_DET 1 -#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 -#define CONFIG_ESP_BROWNOUT_DET_LVL 7 -#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 -#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 -#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 -#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 -#define CONFIG_FREERTOS_UNICORE 1 -#define CONFIG_FREERTOS_HZ 100 -#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 -#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 -#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 -#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 -#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 -#define CONFIG_FREERTOS_USE_TIMERS 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" -#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 -#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 3120 -#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 -#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 -#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 -#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 -#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 -#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 -#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 -#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 -#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 -#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 -#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 -#define CONFIG_FREERTOS_PORT 1 -#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 -#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 -#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 -#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 -#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 -#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 -#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 -#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 -#define CONFIG_LOG_DEFAULT_LEVEL 3 -#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 -#define CONFIG_LOG_MAXIMUM_LEVEL 3 -#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 -#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 -#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 -#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 -#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 -#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1 -#define CONFIG_MMU_PAGE_SIZE_64KB 1 -#define CONFIG_MMU_PAGE_MODE "64KB" -#define CONFIG_MMU_PAGE_SIZE 0x10000 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 -#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 -#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 -#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 -#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 -#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 -#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 -#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 -#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED 1 -#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1 -#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 - -/* List of deprecated options */ -#define CONFIG_APP_ROLLBACK_ENABLE CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE -#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET -#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL -#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 -#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART -#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE -#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT -#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM -#define CONFIG_ESP32C3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET -#define CONFIG_ESP32C3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL -#define CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 -#define CONFIG_ESP32C3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE -#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 -#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ -#define CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND -#define CONFIG_ESP32C3_MEMPROT_FEATURE CONFIG_ESP_SYSTEM_MEMPROT_FEATURE -#define CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK -#define CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES -#define CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC -#define CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT -#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO -#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT -#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS -#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE -#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL -#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO -#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE -#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD -#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE -#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL -#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS -#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE -#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE -#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE -#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 -#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S -#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH -#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY -#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH diff --git a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.json b/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.json deleted file mode 100644 index c4f12d8f3..000000000 --- a/RainMaker_Table-Lights/build/bootloader/config/sdkconfig.json +++ /dev/null @@ -1,660 +0,0 @@ -{ - "APP_BUILD_BOOTLOADER": true, - "APP_BUILD_GENERATE_BINARIES": true, - "APP_BUILD_TYPE_APP_2NDBOOT": true, - "APP_BUILD_TYPE_RAM": false, - "APP_BUILD_USE_FLASH_SECTIONS": true, - "APP_COMPILE_TIME_DATE": true, - "APP_EXCLUDE_PROJECT_NAME_VAR": false, - "APP_EXCLUDE_PROJECT_VER_VAR": false, - "APP_NO_BLOBS": false, - "APP_PROJECT_VER_FROM_CONFIG": false, - "APP_REPRODUCIBLE_BUILD": false, - "APP_RETRIEVE_LEN_ELF_SHA": 9, - "BOOTLOADER_APP_ANTI_ROLLBACK": false, - "BOOTLOADER_APP_ROLLBACK_ENABLE": true, - "BOOTLOADER_APP_TEST": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, - "BOOTLOADER_COMPILE_TIME_DATE": true, - "BOOTLOADER_CUSTOM_RESERVE_RTC": false, - "BOOTLOADER_FACTORY_RESET": false, - "BOOTLOADER_FLASH_DC_AWARE": false, - "BOOTLOADER_FLASH_XMC_SUPPORT": true, - "BOOTLOADER_LOG_COLORS": false, - "BOOTLOADER_LOG_LEVEL": 3, - "BOOTLOADER_LOG_LEVEL_DEBUG": false, - "BOOTLOADER_LOG_LEVEL_ERROR": false, - "BOOTLOADER_LOG_LEVEL_INFO": true, - "BOOTLOADER_LOG_LEVEL_NONE": false, - "BOOTLOADER_LOG_LEVEL_VERBOSE": false, - "BOOTLOADER_LOG_LEVEL_WARN": false, - "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, - "BOOTLOADER_OFFSET_IN_FLASH": 0, - "BOOTLOADER_PROJECT_VER": 1, - "BOOTLOADER_REGION_PROTECTION_ENABLE": true, - "BOOTLOADER_RESERVE_RTC_SIZE": 0, - "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, - "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, - "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, - "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, - "BOOTLOADER_WDT_ENABLE": true, - "BOOTLOADER_WDT_TIME_MS": 9000, - "BOOT_ROM_LOG_ALWAYS_OFF": false, - "BOOT_ROM_LOG_ALWAYS_ON": true, - "BOOT_ROM_LOG_ON_GPIO_HIGH": false, - "BOOT_ROM_LOG_ON_GPIO_LOW": false, - "COMPILER_ASSERT_NDEBUG_EVALUATE": true, - "COMPILER_CXX_EXCEPTIONS": false, - "COMPILER_CXX_RTTI": false, - "COMPILER_DISABLE_DEFAULT_ERRORS": true, - "COMPILER_DISABLE_GCC12_WARNINGS": false, - "COMPILER_DISABLE_GCC13_WARNINGS": false, - "COMPILER_DISABLE_GCC14_WARNINGS": false, - "COMPILER_DUMP_RTL_FILES": false, - "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, - "COMPILER_HIDE_PATHS_MACROS": true, - "COMPILER_NO_MERGE_CONSTANTS": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, - "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, - "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, - "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, - "COMPILER_OPTIMIZATION_DEBUG": true, - "COMPILER_OPTIMIZATION_NONE": false, - "COMPILER_OPTIMIZATION_PERF": false, - "COMPILER_OPTIMIZATION_SIZE": false, - "COMPILER_ORPHAN_SECTIONS_PLACE": false, - "COMPILER_ORPHAN_SECTIONS_WARNING": true, - "COMPILER_RT_LIB_GCCLIB": true, - "COMPILER_RT_LIB_NAME": "gcc", - "COMPILER_SAVE_RESTORE_LIBCALLS": false, - "COMPILER_STACK_CHECK_MODE_ALL": false, - "COMPILER_STACK_CHECK_MODE_NONE": true, - "COMPILER_STACK_CHECK_MODE_NORM": false, - "COMPILER_STACK_CHECK_MODE_STRONG": false, - "COMPILER_STATIC_ANALYZER": false, - "COMPILER_WARN_WRITE_STRINGS": false, - "EFUSE_CUSTOM_TABLE": false, - "EFUSE_MAX_BLK_LEN": 256, - "EFUSE_VIRTUAL": false, - "ESP32C3_REV_MAX_FULL": 199, - "ESP32C3_REV_MIN_0": false, - "ESP32C3_REV_MIN_1": false, - "ESP32C3_REV_MIN_101": false, - "ESP32C3_REV_MIN_2": false, - "ESP32C3_REV_MIN_3": true, - "ESP32C3_REV_MIN_4": false, - "ESP32C3_REV_MIN_FULL": 3, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES": 4, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO": false, - "ESPTOOLPY_AFTER": "hard_reset", - "ESPTOOLPY_AFTER_NORESET": false, - "ESPTOOLPY_AFTER_RESET": true, - "ESPTOOLPY_BEFORE": "default_reset", - "ESPTOOLPY_BEFORE_NORESET": false, - "ESPTOOLPY_BEFORE_RESET": true, - "ESPTOOLPY_FLASHFREQ": "80m", - "ESPTOOLPY_FLASHFREQ_20M": false, - "ESPTOOLPY_FLASHFREQ_26M": false, - "ESPTOOLPY_FLASHFREQ_40M": false, - "ESPTOOLPY_FLASHFREQ_80M": true, - "ESPTOOLPY_FLASHMODE": "dio", - "ESPTOOLPY_FLASHMODE_DIO": true, - "ESPTOOLPY_FLASHMODE_DOUT": false, - "ESPTOOLPY_FLASHMODE_QIO": false, - "ESPTOOLPY_FLASHMODE_QOUT": false, - "ESPTOOLPY_FLASHSIZE": "4MB", - "ESPTOOLPY_FLASHSIZE_128MB": false, - "ESPTOOLPY_FLASHSIZE_16MB": false, - "ESPTOOLPY_FLASHSIZE_1MB": false, - "ESPTOOLPY_FLASHSIZE_2MB": false, - "ESPTOOLPY_FLASHSIZE_32MB": false, - "ESPTOOLPY_FLASHSIZE_4MB": true, - "ESPTOOLPY_FLASHSIZE_64MB": false, - "ESPTOOLPY_FLASHSIZE_8MB": false, - "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, - "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, - "ESPTOOLPY_MONITOR_BAUD": 115200, - "ESPTOOLPY_NO_STUB": false, - "ESP_BROWNOUT_DET": true, - "ESP_BROWNOUT_DET_LVL": 7, - "ESP_BROWNOUT_DET_LVL_SEL_2": false, - "ESP_BROWNOUT_DET_LVL_SEL_3": false, - "ESP_BROWNOUT_DET_LVL_SEL_4": false, - "ESP_BROWNOUT_DET_LVL_SEL_5": false, - "ESP_BROWNOUT_DET_LVL_SEL_6": false, - "ESP_BROWNOUT_DET_LVL_SEL_7": true, - "ESP_CONSOLE_NONE": false, - "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, - "ESP_CONSOLE_SECONDARY_NONE": false, - "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, - "ESP_CONSOLE_UART": true, - "ESP_CONSOLE_UART_BAUDRATE": 115200, - "ESP_CONSOLE_UART_CUSTOM": false, - "ESP_CONSOLE_UART_DEFAULT": true, - "ESP_CONSOLE_UART_NUM": 0, - "ESP_CONSOLE_USB_SERIAL_JTAG": false, - "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, - "ESP_DEBUG_OCDAWARE": true, - "ESP_DEBUG_STUBS_ENABLE": false, - "ESP_DEFAULT_CPU_FREQ_MHZ": 160, - "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, - "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, - "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, - "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, - "ESP_ERR_TO_NAME_LOOKUP": true, - "ESP_INT_WDT": true, - "ESP_INT_WDT_TIMEOUT_MS": 300, - "ESP_IPC_TASK_STACK_SIZE": 1024, - "ESP_MAC_ADDR_UNIVERSE_BT": true, - "ESP_MAC_ADDR_UNIVERSE_ETH": true, - "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, - "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, - "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, - "ESP_MAIN_TASK_AFFINITY": 0, - "ESP_MAIN_TASK_AFFINITY_CPU0": true, - "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, - "ESP_MAIN_TASK_STACK_SIZE": 3584, - "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, - "ESP_PANIC_HANDLER_IRAM": false, - "ESP_REV_MAX_FULL": 199, - "ESP_REV_MIN_FULL": 3, - "ESP_ROM_GET_CLK_FREQ": true, - "ESP_ROM_HAS_CRC_BE": true, - "ESP_ROM_HAS_CRC_LE": true, - "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, - "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, - "ESP_ROM_HAS_ETS_PRINTF_BUG": true, - "ESP_ROM_HAS_JPEG_DECODE": true, - "ESP_ROM_HAS_LAYOUT_TABLE": true, - "ESP_ROM_HAS_MZ_CRC32": true, - "ESP_ROM_HAS_NEWLIB": true, - "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, - "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, - "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, - "ESP_ROM_HAS_SPI_FLASH": true, - "ESP_ROM_HAS_SW_FLOAT": true, - "ESP_ROM_HAS_VERSION": true, - "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, - "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, - "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, - "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, - "ESP_ROM_UART_CLK_IS_XTAL": true, - "ESP_ROM_USB_OTG_NUM": -1, - "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, - "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, - "ESP_SLEEP_DEBUG": false, - "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, - "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, - "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, - "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, - "ESP_SLEEP_POWER_DOWN_FLASH": false, - "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, - "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, - "ESP_SYSTEM_BROWNOUT_INTR": true, - "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, - "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, - "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, - "ESP_SYSTEM_HW_PC_RECORD": true, - "ESP_SYSTEM_HW_STACK_GUARD": true, - "ESP_SYSTEM_MEMPROT_FEATURE": true, - "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, - "ESP_SYSTEM_PANIC_PRINT_HALT": false, - "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, - "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, - "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, - "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, - "ESP_SYSTEM_SINGLE_CORE_MODE": true, - "ESP_SYSTEM_USE_EH_FRAME": false, - "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, - "ESP_TASK_WDT_EN": true, - "ESP_TASK_WDT_INIT": true, - "ESP_TASK_WDT_PANIC": false, - "ESP_TASK_WDT_TIMEOUT_S": 5, - "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, - "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, - "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, - "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, - "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, - "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, - "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, - "FREERTOS_DEBUG_OCDAWARE": true, - "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, - "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, - "FREERTOS_ENABLE_TASK_SNAPSHOT": true, - "FREERTOS_GENERATE_RUN_TIME_STATS": false, - "FREERTOS_HZ": 100, - "FREERTOS_IDLE_TASK_STACKSIZE": 1536, - "FREERTOS_INTERRUPT_BACKTRACE": true, - "FREERTOS_ISR_STACKSIZE": 1536, - "FREERTOS_MAX_TASK_NAME_LEN": 16, - "FREERTOS_NO_AFFINITY": 2147483647, - "FREERTOS_NUMBER_OF_CORES": 1, - "FREERTOS_OPTIMIZED_SCHEDULER": true, - "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, - "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, - "FREERTOS_PORT": true, - "FREERTOS_QUEUE_REGISTRY_SIZE": 0, - "FREERTOS_SMP": false, - "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, - "FREERTOS_SYSTICK_USES_SYSTIMER": true, - "FREERTOS_TASK_FUNCTION_WRAPPER": true, - "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, - "FREERTOS_TASK_PRE_DELETION_HOOK": false, - "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, - "FREERTOS_TICK_SUPPORT_SYSTIMER": true, - "FREERTOS_TIMER_QUEUE_LENGTH": 10, - "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, - "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", - "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, - "FREERTOS_TIMER_TASK_NO_AFFINITY": true, - "FREERTOS_TIMER_TASK_PRIORITY": 1, - "FREERTOS_TIMER_TASK_STACK_DEPTH": 3120, - "FREERTOS_TLSP_DELETION_CALLBACKS": true, - "FREERTOS_UNICORE": true, - "FREERTOS_USE_APPLICATION_TASK_TAG": false, - "FREERTOS_USE_IDLE_HOOK": false, - "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, - "FREERTOS_USE_TICK_HOOK": false, - "FREERTOS_USE_TIMERS": true, - "FREERTOS_USE_TRACE_FACILITY": false, - "FREERTOS_WATCHPOINT_END_OF_STACK": false, - "GDMA_CTRL_FUNC_IN_IRAM": true, - "GDMA_ENABLE_DEBUG_LOG": false, - "GDMA_ISR_IRAM_SAFE": false, - "HAL_ASSERTION_DISABLE": false, - "HAL_ASSERTION_ENABLE": false, - "HAL_ASSERTION_EQUALS_SYSTEM": true, - "HAL_ASSERTION_SILENT": false, - "HAL_DEFAULT_ASSERTION_LEVEL": 2, - "IDF_CMAKE": true, - "IDF_EXPERIMENTAL_FEATURES": false, - "IDF_FIRMWARE_CHIP_ID": 5, - "IDF_INIT_VERSION": "5.4.1", - "IDF_TARGET": "esp32c3", - "IDF_TARGET_ARCH": "riscv", - "IDF_TARGET_ARCH_RISCV": true, - "IDF_TARGET_ESP32C3": true, - "IDF_TOOLCHAIN": "gcc", - "IDF_TOOLCHAIN_GCC": true, - "LOG_COLORS": false, - "LOG_DEFAULT_LEVEL": 3, - "LOG_DEFAULT_LEVEL_DEBUG": false, - "LOG_DEFAULT_LEVEL_ERROR": false, - "LOG_DEFAULT_LEVEL_INFO": true, - "LOG_DEFAULT_LEVEL_NONE": false, - "LOG_DEFAULT_LEVEL_VERBOSE": false, - "LOG_DEFAULT_LEVEL_WARN": false, - "LOG_DYNAMIC_LEVEL_CONTROL": true, - "LOG_MASTER_LEVEL": false, - "LOG_MAXIMUM_EQUALS_DEFAULT": true, - "LOG_MAXIMUM_LEVEL": 3, - "LOG_MAXIMUM_LEVEL_DEBUG": false, - "LOG_MAXIMUM_LEVEL_VERBOSE": false, - "LOG_TAG_LEVEL_CACHE_ARRAY": false, - "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, - "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, - "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, - "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, - "LOG_TAG_LEVEL_IMPL_NONE": false, - "LOG_TIMESTAMP_SOURCE_RTOS": true, - "LOG_TIMESTAMP_SOURCE_SYSTEM": false, - "MMU_PAGE_MODE": "64KB", - "MMU_PAGE_SIZE": 65536, - "MMU_PAGE_SIZE_64KB": true, - "NEWLIB_NANO_FORMAT": false, - "NEWLIB_STDIN_LINE_ENDING_CR": true, - "NEWLIB_STDIN_LINE_ENDING_CRLF": false, - "NEWLIB_STDIN_LINE_ENDING_LF": false, - "NEWLIB_STDOUT_LINE_ENDING_CR": false, - "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, - "NEWLIB_STDOUT_LINE_ENDING_LF": false, - "NEWLIB_TIME_SYSCALL_USE_HRT": false, - "NEWLIB_TIME_SYSCALL_USE_NONE": false, - "NEWLIB_TIME_SYSCALL_USE_RTC": false, - "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, - "PARTITION_TABLE_CUSTOM": true, - "PARTITION_TABLE_CUSTOM_FILENAME": "partitions_4mb_optimised.csv", - "PARTITION_TABLE_FILENAME": "partitions_4mb_optimised.csv", - "PARTITION_TABLE_MD5": true, - "PARTITION_TABLE_OFFSET": 49152, - "PARTITION_TABLE_SINGLE_APP": false, - "PARTITION_TABLE_SINGLE_APP_LARGE": false, - "PARTITION_TABLE_TWO_OTA": false, - "PARTITION_TABLE_TWO_OTA_LARGE": false, - "PERIPH_CTRL_FUNC_IN_IRAM": true, - "RTC_CLK_CAL_CYCLES": 1024, - "RTC_CLK_SRC_EXT_CRYS": false, - "RTC_CLK_SRC_EXT_OSC": false, - "RTC_CLK_SRC_INT_8MD256": false, - "RTC_CLK_SRC_INT_RC": true, - "SECURE_BOOT": false, - "SECURE_BOOT_V2_PREFERRED": true, - "SECURE_BOOT_V2_RSA_SUPPORTED": true, - "SECURE_FLASH_ENC_ENABLED": false, - "SECURE_ROM_DL_MODE_ENABLED": true, - "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, - "SOC_ADC_ARBITER_SUPPORTED": true, - "SOC_ADC_ATTEN_NUM": 4, - "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, - "SOC_ADC_DIGI_CONTROLLER_NUM": 1, - "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, - "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, - "SOC_ADC_DIGI_MAX_BITWIDTH": 12, - "SOC_ADC_DIGI_MIN_BITWIDTH": 12, - "SOC_ADC_DIGI_MONITOR_NUM": 2, - "SOC_ADC_DIGI_RESULT_BYTES": 4, - "SOC_ADC_DIG_CTRL_SUPPORTED": true, - "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, - "SOC_ADC_DMA_SUPPORTED": true, - "SOC_ADC_MAX_CHANNEL_NUM": 5, - "SOC_ADC_MONITOR_SUPPORTED": true, - "SOC_ADC_PATT_LEN_MAX": 8, - "SOC_ADC_PERIPH_NUM": 2, - "SOC_ADC_RTC_MAX_BITWIDTH": 12, - "SOC_ADC_RTC_MIN_BITWIDTH": 12, - "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, - "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, - "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, - "SOC_ADC_SHARED_POWER": true, - "SOC_ADC_SUPPORTED": true, - "SOC_AES_GDMA": true, - "SOC_AES_SUPPORTED": true, - "SOC_AES_SUPPORT_AES_128": true, - "SOC_AES_SUPPORT_AES_256": true, - "SOC_AES_SUPPORT_DMA": true, - "SOC_AHB_GDMA_SUPPORTED": true, - "SOC_AHB_GDMA_VERSION": 1, - "SOC_APB_BACKUP_DMA": true, - "SOC_ASSIST_DEBUG_SUPPORTED": true, - "SOC_ASYNC_MEMCPY_SUPPORTED": true, - "SOC_BLE_50_SUPPORTED": true, - "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, - "SOC_BLE_MESH_SUPPORTED": true, - "SOC_BLE_SUPPORTED": true, - "SOC_BLUFI_SUPPORTED": true, - "SOC_BOD_SUPPORTED": true, - "SOC_BROWNOUT_RESET_SUPPORTED": true, - "SOC_BT_SUPPORTED": true, - "SOC_CACHE_MEMORY_IBANK_SIZE": 16384, - "SOC_CLK_RC_FAST_D256_SUPPORTED": true, - "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, - "SOC_CLK_TREE_SUPPORTED": true, - "SOC_CLK_XTAL32K_SUPPORTED": true, - "SOC_COEX_HW_PTI": true, - "SOC_CPU_BREAKPOINTS_NUM": 8, - "SOC_CPU_CORES_NUM": 1, - "SOC_CPU_HAS_CSR_PC": true, - "SOC_CPU_HAS_FLEXIBLE_INTC": true, - "SOC_CPU_INTR_NUM": 32, - "SOC_CPU_WATCHPOINTS_NUM": 8, - "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, - "SOC_DEDICATED_GPIO_SUPPORTED": true, - "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, - "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, - "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, - "SOC_DEEP_SLEEP_SUPPORTED": true, - "SOC_DIG_SIGN_SUPPORTED": true, - "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, - "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, - "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, - "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, - "SOC_EFUSE_DIS_DIRECT_BOOT": true, - "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, - "SOC_EFUSE_DIS_ICACHE": true, - "SOC_EFUSE_DIS_PAD_JTAG": true, - "SOC_EFUSE_DIS_USB_JTAG": true, - "SOC_EFUSE_HAS_EFUSE_RST_BUG": true, - "SOC_EFUSE_KEY_PURPOSE_FIELD": true, - "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, - "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, - "SOC_EFUSE_SOFT_DIS_JTAG": true, - "SOC_EFUSE_SUPPORTED": true, - "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, - "SOC_FLASH_ENCRYPTION_XTS_AES": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, - "SOC_FLASH_ENC_SUPPORTED": true, - "SOC_GDMA_NUM_GROUPS_MAX": 1, - "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, - "SOC_GDMA_SUPPORTED": true, - "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, - "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, - "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 6, - "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, - "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, - "SOC_GPIO_IN_RANGE_MAX": 21, - "SOC_GPIO_OUT_RANGE_MAX": 21, - "SOC_GPIO_PIN_COUNT": 22, - "SOC_GPIO_PORT": 1, - "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, - "SOC_GPIO_SUPPORT_FORCE_HOLD": true, - "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, - "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 4194240, - "SOC_GPSPI_SUPPORTED": true, - "SOC_GPTIMER_SUPPORTED": true, - "SOC_HMAC_SUPPORTED": true, - "SOC_HP_I2C_NUM": 1, - "SOC_I2C_CMD_REG_NUM": 8, - "SOC_I2C_FIFO_LEN": 32, - "SOC_I2C_NUM": 1, - "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, - "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, - "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, - "SOC_I2C_SUPPORTED": true, - "SOC_I2C_SUPPORT_10BIT_ADDR": true, - "SOC_I2C_SUPPORT_HW_CLR_BUS": true, - "SOC_I2C_SUPPORT_RTC": true, - "SOC_I2C_SUPPORT_SLAVE": true, - "SOC_I2C_SUPPORT_XTAL": true, - "SOC_I2S_HW_VERSION_2": true, - "SOC_I2S_NUM": 1, - "SOC_I2S_PDM_MAX_TX_LINES": 2, - "SOC_I2S_SUPPORTED": true, - "SOC_I2S_SUPPORTS_PCM": true, - "SOC_I2S_SUPPORTS_PDM": true, - "SOC_I2S_SUPPORTS_PDM_TX": true, - "SOC_I2S_SUPPORTS_PLL_F160M": true, - "SOC_I2S_SUPPORTS_TDM": true, - "SOC_I2S_SUPPORTS_XTAL": true, - "SOC_LEDC_CHANNEL_NUM": 6, - "SOC_LEDC_SUPPORTED": true, - "SOC_LEDC_SUPPORT_APB_CLOCK": true, - "SOC_LEDC_SUPPORT_FADE_STOP": true, - "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, - "SOC_LEDC_TIMER_BIT_WIDTH": 14, - "SOC_LEDC_TIMER_NUM": 4, - "SOC_LIGHT_SLEEP_SUPPORTED": true, - "SOC_LP_PERIPH_SHARE_INTERRUPT": true, - "SOC_LP_TIMER_BIT_WIDTH_HI": 16, - "SOC_LP_TIMER_BIT_WIDTH_LO": 32, - "SOC_MAC_BB_PD_MEM_SIZE": 192, - "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, - "SOC_MEMPROT_MEM_ALIGN_SIZE": 512, - "SOC_MEMPROT_SUPPORTED": true, - "SOC_MEMSPI_IS_INDEPENDENT": true, - "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, - "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, - "SOC_MMU_PERIPH_NUM": 1, - "SOC_MPI_MEM_BLOCKS_NUM": 4, - "SOC_MPI_OPERATIONS_NUM": 3, - "SOC_MPI_SUPPORTED": true, - "SOC_MPU_MIN_REGION_SIZE": 536870912, - "SOC_MPU_REGIONS_MAX_NUM": 8, - "SOC_MWDT_SUPPORT_XTAL": true, - "SOC_PHY_COMBO_MODULE": true, - "SOC_PHY_DIG_REGS_MEM_SIZE": 21, - "SOC_PHY_SUPPORTED": true, - "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, - "SOC_PM_MODEM_PD_BY_SW": true, - "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, - "SOC_PM_SUPPORTED": true, - "SOC_PM_SUPPORT_BT_PD": true, - "SOC_PM_SUPPORT_BT_WAKEUP": true, - "SOC_PM_SUPPORT_CPU_PD": true, - "SOC_PM_SUPPORT_MAC_BB_PD": true, - "SOC_PM_SUPPORT_RC_FAST_PD": true, - "SOC_PM_SUPPORT_VDDSDIO_PD": true, - "SOC_PM_SUPPORT_WIFI_PD": true, - "SOC_PM_SUPPORT_WIFI_WAKEUP": true, - "SOC_RMT_CHANNELS_PER_GROUP": 4, - "SOC_RMT_GROUPS": 1, - "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, - "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, - "SOC_RMT_SUPPORTED": true, - "SOC_RMT_SUPPORT_APB": true, - "SOC_RMT_SUPPORT_RC_FAST": true, - "SOC_RMT_SUPPORT_RX_DEMODULATION": true, - "SOC_RMT_SUPPORT_RX_PINGPONG": true, - "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, - "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, - "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, - "SOC_RMT_SUPPORT_TX_SYNCHRO": true, - "SOC_RMT_SUPPORT_XTAL": true, - "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, - "SOC_RNG_SUPPORTED": true, - "SOC_RSA_MAX_BIT_LEN": 3072, - "SOC_RTCIO_PIN_COUNT": 0, - "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, - "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 108, - "SOC_RTC_FAST_MEM_SUPPORTED": true, - "SOC_RTC_MEM_SUPPORTED": true, - "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, - "SOC_SDM_CHANNELS_PER_GROUP": 4, - "SOC_SDM_CLK_SUPPORT_APB": true, - "SOC_SDM_GROUPS": 1, - "SOC_SDM_SUPPORTED": true, - "SOC_SECURE_BOOT_SUPPORTED": true, - "SOC_SECURE_BOOT_V2_RSA": true, - "SOC_SHARED_IDCACHE_SUPPORTED": true, - "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, - "SOC_SHA_GDMA": true, - "SOC_SHA_SUPPORTED": true, - "SOC_SHA_SUPPORT_DMA": true, - "SOC_SHA_SUPPORT_RESUME": true, - "SOC_SHA_SUPPORT_SHA1": true, - "SOC_SHA_SUPPORT_SHA224": true, - "SOC_SHA_SUPPORT_SHA256": true, - "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND": true, - "SOC_SLEEP_TGWDT_STOP_WORKAROUND": true, - "SOC_SPI_FLASH_SUPPORTED": true, - "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, - "SOC_SPI_MAX_CS_NUM": 6, - "SOC_SPI_MAX_PRE_DIVIDER": 16, - "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, - "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, - "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, - "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, - "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, - "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_WRAP": true, - "SOC_SPI_PERIPH_NUM": 2, - "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, - "SOC_SPI_SCT_BUFFER_NUM_MAX": true, - "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, - "SOC_SPI_SCT_REG_NUM": 14, - "SOC_SPI_SCT_SUPPORTED": true, - "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, - "SOC_SPI_SUPPORT_CD_SIG": true, - "SOC_SPI_SUPPORT_CLK_APB": true, - "SOC_SPI_SUPPORT_CLK_XTAL": true, - "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, - "SOC_SPI_SUPPORT_DDRCLK": true, - "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, - "SOC_SUPPORTS_SECURE_DL_MODE": true, - "SOC_SUPPORT_COEXISTENCE": true, - "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, - "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, - "SOC_SYSTIMER_ALARM_NUM": 3, - "SOC_SYSTIMER_BIT_WIDTH_HI": 20, - "SOC_SYSTIMER_BIT_WIDTH_LO": 32, - "SOC_SYSTIMER_COUNTER_NUM": 2, - "SOC_SYSTIMER_FIXED_DIVIDER": true, - "SOC_SYSTIMER_INT_LEVEL": true, - "SOC_SYSTIMER_SUPPORTED": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, - "SOC_TEMP_SENSOR_SUPPORTED": true, - "SOC_TIMER_GROUPS": 2, - "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, - "SOC_TIMER_GROUP_SUPPORT_APB": true, - "SOC_TIMER_GROUP_SUPPORT_XTAL": true, - "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, - "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, - "SOC_TWAI_BRP_MAX": 16384, - "SOC_TWAI_BRP_MIN": 2, - "SOC_TWAI_CLK_SUPPORT_APB": true, - "SOC_TWAI_CONTROLLER_NUM": 1, - "SOC_TWAI_SUPPORTED": true, - "SOC_TWAI_SUPPORTS_RX_STATUS": true, - "SOC_UART_BITRATE_MAX": 5000000, - "SOC_UART_FIFO_LEN": 128, - "SOC_UART_HP_NUM": 2, - "SOC_UART_NUM": 2, - "SOC_UART_SUPPORTED": true, - "SOC_UART_SUPPORT_APB_CLK": true, - "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, - "SOC_UART_SUPPORT_RTC_CLK": true, - "SOC_UART_SUPPORT_WAKEUP_INT": true, - "SOC_UART_SUPPORT_XTAL_CLK": true, - "SOC_USB_SERIAL_JTAG_SUPPORTED": true, - "SOC_WDT_SUPPORTED": true, - "SOC_WIFI_CSI_SUPPORT": true, - "SOC_WIFI_FTM_SUPPORT": true, - "SOC_WIFI_GCMP_SUPPORT": true, - "SOC_WIFI_HW_TSF": true, - "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, - "SOC_WIFI_MESH_SUPPORT": true, - "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, - "SOC_WIFI_SUPPORTED": true, - "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, - "SOC_WIFI_WAPI_SUPPORT": true, - "SOC_XTAL_SUPPORT_40M": true, - "SOC_XT_WDT_SUPPORTED": true, - "SPI_FLASH_AUTO_SUSPEND": false, - "SPI_FLASH_BROWNOUT_RESET": true, - "SPI_FLASH_BROWNOUT_RESET_XMC": true, - "SPI_FLASH_BYPASS_BLOCK_ERASE": false, - "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, - "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, - "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, - "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, - "SPI_FLASH_ENABLE_COUNTERS": false, - "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, - "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, - "SPI_FLASH_ERASE_YIELD_TICKS": 1, - "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, - "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, - "SPI_FLASH_ROM_DRIVER_PATCH": true, - "SPI_FLASH_ROM_IMPL": false, - "SPI_FLASH_SIZE_OVERRIDE": false, - "SPI_FLASH_SUPPORT_BOYA_CHIP": true, - "SPI_FLASH_SUPPORT_GD_CHIP": true, - "SPI_FLASH_SUPPORT_ISSI_CHIP": true, - "SPI_FLASH_SUPPORT_MXIC_CHIP": true, - "SPI_FLASH_SUPPORT_TH_CHIP": true, - "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, - "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, - "SPI_FLASH_VENDOR_BOYA_SUPPORTED": true, - "SPI_FLASH_VENDOR_GD_SUPPORTED": true, - "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, - "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, - "SPI_FLASH_VENDOR_TH_SUPPORTED": true, - "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, - "SPI_FLASH_VENDOR_XMC_SUPPORTED": true, - "SPI_FLASH_VERIFY_WRITE": false, - "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, - "SPI_FLASH_YIELD_DURING_ERASE": true, - "XTAL_FREQ": 40, - "XTAL_FREQ_40": true -} \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/cmake_install.cmake deleted file mode 100644 index a804e3657..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj deleted file mode 100644 index 36e753a3e..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj deleted file mode 100644 index 340c0a64a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj deleted file mode 100644 index e3854aeca..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj deleted file mode 100644 index 489fa103d..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj deleted file mode 100644 index b5c71d04b..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj deleted file mode 100644 index c45a7813f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj deleted file mode 100644 index ff92522f5..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj deleted file mode 100644 index 9fd612a61..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj deleted file mode 100644 index e03ade21a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj deleted file mode 100644 index 44fa89bc0..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj deleted file mode 100644 index 5d4aafbc7..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj deleted file mode 100644 index 45d3a3549..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj deleted file mode 100644 index eb78f3bdd..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj deleted file mode 100644 index 3ec28d4d2..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj deleted file mode 100644 index 3c19ee82e..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj deleted file mode 100644 index f3fe8ba72..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj deleted file mode 100644 index 47fd02089..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj deleted file mode 100644 index 2619900fb..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_sha.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj deleted file mode 100644 index d5e265c16..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/bootloader_soc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj deleted file mode 100644 index 696109d6d..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj deleted file mode 100644 index a2e38ee03..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj deleted file mode 100644 index c6ce21a4f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj deleted file mode 100644 index de7fc551a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake deleted file mode 100644 index 304a3ca88..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/cmake_install.cmake deleted file mode 100644 index 46f7e7d39..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/cmake_install.cmake +++ /dev/null @@ -1,144 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj deleted file mode 100644 index b726e6265..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj deleted file mode 100644 index 05151222f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj deleted file mode 100644 index 0058d44ed..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj deleted file mode 100644 index a9e9ec9fb..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj deleted file mode 100644 index 481d4633a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj deleted file mode 100644 index a4b481443..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj deleted file mode 100644 index 4341efeca..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj deleted file mode 100644 index 689ce9611..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/cmake_install.cmake deleted file mode 100644 index 1aaf790d4..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/efuse - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake deleted file mode 100644 index dd8faa0db..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj deleted file mode 100644 index f1522d8d9..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake deleted file mode 100644 index 53d95e552..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj deleted file mode 100644 index 1ee1cda8e..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/cmake_install.cmake deleted file mode 100644 index 6381bb6c4..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_common - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj deleted file mode 100644 index 32a342e03..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj deleted file mode 100644 index adb680865..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj deleted file mode 100644 index 8760a83f2..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj deleted file mode 100644 index c6cc9994c..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj deleted file mode 100644 index 51812cd1a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj deleted file mode 100644 index 97c329e41..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj deleted file mode 100644 index 9466a777c..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj deleted file mode 100644 index 785e2ccc9..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj deleted file mode 100644 index 441fece92..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj deleted file mode 100644 index d07997124..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake deleted file mode 100644 index 376c6e92e..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake deleted file mode 100644 index 3fc33c335..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake deleted file mode 100644 index ec39bbd7f..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3 - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj deleted file mode 100644 index 8bec5f643..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj deleted file mode 100644 index f02f3b25b..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj deleted file mode 100644 index bd98d5023..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj deleted file mode 100644 index fa2f366aa..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj deleted file mode 100644 index 4f11de186..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj deleted file mode 100644 index f7799458f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj deleted file mode 100644 index 0cd13f08a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj deleted file mode 100644 index 44078a137..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/cmake_install.cmake deleted file mode 100644 index dee487f24..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_rom - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/cmake_install.cmake deleted file mode 100644 index 0cedbfb28..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_security/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_security - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj deleted file mode 100644 index a2bf646ce..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/cmake_install.cmake deleted file mode 100644 index 476ab3410..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_system - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/cmake_install.cmake deleted file mode 100644 index 1dd1b5945..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/esptool_py/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esptool_py - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/cmake_install.cmake deleted file mode 100644 index 641f637f8..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/freertos/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/freertos - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj deleted file mode 100644 index 7f0fa5ddd..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj deleted file mode 100644 index 94d46cf15..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj deleted file mode 100644 index 6c3a710de..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj deleted file mode 100644 index 3c908e5cd..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj deleted file mode 100644 index dedbc427a..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj deleted file mode 100644 index ce56139b1..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/cmake_install.cmake deleted file mode 100644 index 747c17f1f..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/hal - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj deleted file mode 100644 index 95e70a38f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj deleted file mode 100644 index a35f0b466..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj deleted file mode 100644 index 4ebf024f6..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/log/cmake_install.cmake deleted file mode 100644 index 21018aeee..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/log/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/log - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj deleted file mode 100644 index dc75990bb..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/main/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/main/cmake_install.cmake deleted file mode 100644 index b61b298b5..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/main/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj deleted file mode 100644 index 25f4616b6..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake deleted file mode 100644 index 8e3207583..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/cmake_install.cmake deleted file mode 100644 index 35b0a905d..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/newlib/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/newlib - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/cmake_install.cmake deleted file mode 100644 index 9276472d3..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/partition_table/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/partition_table - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/cmake_install.cmake deleted file mode 100644 index cf822d495..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/riscv/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/riscv - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj deleted file mode 100644 index d817a4b65..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj deleted file mode 100644 index 4d45c815f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj deleted file mode 100644 index 14ef9071b..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj deleted file mode 100644 index 355226bc6..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj deleted file mode 100644 index 98c8ed94d..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj deleted file mode 100644 index 00e3d25a2..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj deleted file mode 100644 index 2e874b5d3..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj deleted file mode 100644 index 4bf5b8221..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj deleted file mode 100644 index 77e140639..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj deleted file mode 100644 index a493121e6..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj deleted file mode 100644 index aaf7075a1..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj deleted file mode 100644 index bdaf7af24..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj deleted file mode 100644 index 22acc2f5f..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj deleted file mode 100644 index d30fbf902..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj deleted file mode 100644 index 026dafe02..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj deleted file mode 100644 index e100199ed..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj deleted file mode 100644 index 811893467..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj deleted file mode 100644 index 39b33b9d6..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj deleted file mode 100644 index 4bf2dcdd7..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/cmake_install.cmake deleted file mode 100644 index cb5505be6..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/soc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj deleted file mode 100644 index 9f11d85dc..000000000 Binary files a/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/cmake_install.cmake deleted file mode 100644 index ef9d811e5..000000000 --- a/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/spi_flash - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/bootloader/gdbinit/connect b/RainMaker_Table-Lights/build/bootloader/gdbinit/connect deleted file mode 100644 index faa385731..000000000 --- a/RainMaker_Table-Lights/build/bootloader/gdbinit/connect +++ /dev/null @@ -1,7 +0,0 @@ -# Connect to the default openocd-esp port and stop on app_main() -set remotetimeout 10 -target remote :3333 -monitor reset halt -maintenance flush register-cache -thbreak app_main -continue diff --git a/RainMaker_Table-Lights/build/bootloader/gdbinit/gdbinit b/RainMaker_Table-Lights/build/bootloader/gdbinit/gdbinit deleted file mode 100644 index fd09e86a1..000000000 --- a/RainMaker_Table-Lights/build/bootloader/gdbinit/gdbinit +++ /dev/null @@ -1,2 +0,0 @@ -source /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/symbols -source /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/connect diff --git a/RainMaker_Table-Lights/build/bootloader/gdbinit/prefix_map b/RainMaker_Table-Lights/build/bootloader/gdbinit/prefix_map deleted file mode 100644 index c7842ec17..000000000 --- a/RainMaker_Table-Lights/build/bootloader/gdbinit/prefix_map +++ /dev/null @@ -1 +0,0 @@ -# There is no prefix map defined for the project. diff --git a/RainMaker_Table-Lights/build/bootloader/gdbinit/py_extensions b/RainMaker_Table-Lights/build/bootloader/gdbinit/py_extensions deleted file mode 100644 index 336f99571..000000000 --- a/RainMaker_Table-Lights/build/bootloader/gdbinit/py_extensions +++ /dev/null @@ -1,7 +0,0 @@ -# Add Python GDB extensions -python -try: - import freertos_gdb -except ModuleNotFoundError: - print('warning: python extension "freertos_gdb" not found.') -end diff --git a/RainMaker_Table-Lights/build/bootloader/gdbinit/symbols b/RainMaker_Table-Lights/build/bootloader/gdbinit/symbols deleted file mode 100644 index 8d1ab1012..000000000 --- a/RainMaker_Table-Lights/build/bootloader/gdbinit/symbols +++ /dev/null @@ -1,25 +0,0 @@ -# Load esp32c3 ROM ELF symbols -define target hookpost-remote -set confirm off - # if $_streq((char *) 0x3ff1b878, "Sep 18 2020") - if (*(int*) 0x3ff1b878) == 0x20706553 && (*(int*) 0x3ff1b87c) == 0x32203831 && (*(int*) 0x3ff1b880) == 0x303230 - add-symbol-file /home/alex/.espressif/tools/esp-rom-elfs/20241011/esp32c3_rev0_rom.elf - else - # if $_streq((char *) 0x3ff1a374, "Feb 7 2021") - if (*(int*) 0x3ff1a374) == 0x20626546 && (*(int*) 0x3ff1a378) == 0x32203720 && (*(int*) 0x3ff1a37c) == 0x313230 - add-symbol-file /home/alex/.espressif/tools/esp-rom-elfs/20241011/esp32c3_rev3_rom.elf - else - echo Warning: Unknown esp32c3 ROM revision.\n - end - end -set confirm on -end - - -# Load bootloader symbols -set confirm off - # Bootloader elf was not found -set confirm on - -# Load application symbols -file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf diff --git a/RainMaker_Table-Lights/build/bootloader/kconfigs.in b/RainMaker_Table-Lights/build/bootloader/kconfigs.in deleted file mode 100644 index f83fa25f2..000000000 --- a/RainMaker_Table-Lights/build/bootloader/kconfigs.in +++ /dev/null @@ -1,11 +0,0 @@ -source "/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/bootloader/kconfigs_projbuild.in b/RainMaker_Table-Lights/build/bootloader/kconfigs_projbuild.in deleted file mode 100644 index ee8e2bd73..000000000 --- a/RainMaker_Table-Lights/build/bootloader/kconfigs_projbuild.in +++ /dev/null @@ -1,5 +0,0 @@ -source "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/bootloader/project_description.json b/RainMaker_Table-Lights/build/bootloader/project_description.json deleted file mode 100644 index 151c68a2c..000000000 --- a/RainMaker_Table-Lights/build/bootloader/project_description.json +++ /dev/null @@ -1,1641 +0,0 @@ -{ - "version": "1.2", - "project_name": "bootloader", - "project_version": "v5.4.1", - "project_path": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject", - "idf_path": "/home/alex/esp/v5.4.1/esp-idf", - "build_dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", - "config_file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig", - "config_defaults": "", - "bootloader_elf": "", - "app_elf": "bootloader.elf", - "app_bin": "bootloader.bin", - "build_type": "flash_app", - "git_revision": "v5.4.1", - "target": "esp32c3", - "rev": "", - "min_rev": "3", - "max_rev": "199", - "phy_data_partition": "", - "monitor_baud" : "115200", - "monitor_toolprefix": "riscv32-esp-elf-", - "c_compiler": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc", - "config_environment" : { - "COMPONENT_KCONFIGS" : "/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD" : "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild" - }, - "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "newlib", "riscv" ], - "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_hw_support", "esp_rom", "esp_security", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "riscv", "soc", "spi_flash", "" ], - "build_component_paths" : [ "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", "/home/alex/esp/v5.4.1/esp-idf/components/efuse", "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", "/home/alex/esp/v5.4.1/esp-idf/components/freertos", "/home/alex/esp/v5.4.1/esp-idf/components/hal", "/home/alex/esp/v5.4.1/esp-idf/components/log", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc", "/home/alex/esp/v5.4.1/esp-idf/components/newlib", "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", "/home/alex/esp/v5.4.1/esp-idf/components/riscv", "/home/alex/esp/v5.4.1/esp-idf/components/soc", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", "" ], - "build_component_info" : { - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", - "type": "CONFIG_ONLY", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", - "type": "LIBRARY", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_sha.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_soc.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/bootloader_esp32c3.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_panic.c" ], - "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/efuse", - "type": "LIBRARY", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/efuse/libefuse.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", - "type": "LIBRARY", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", - "type": "LIBRARY", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_common/libesp_common.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", - "type": "LIBRARY", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c" ], - "include_dirs": [ "include", "include/soc", "include/soc/esp32c3", "dma/include", "ldo/include", "debug_probe/include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", - "type": "LIBRARY", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_rom/libesp_rom.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c" ], - "include_dirs": [ "include", "esp32c3/include", "esp32c3/include/esp32c3", "esp32c3" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", - "type": "LIBRARY", - "lib": "__idf_esp_system", - "reqs": [ "spi_flash" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/esp_system/libesp_system.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c" ], - "include_dirs": [] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", - "type": "CONFIG_ONLY", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/freertos", - "type": "CONFIG_ONLY", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/hal", - "type": "LIBRARY", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/hal/libhal.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c" ], - "include_dirs": [ "platform_port/include", "esp32c3/include", "include" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/log", - "type": "LIBRARY", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/log/liblog.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_timestamp.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/noos/log_lock.c" ], - "include_dirs": [ "include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main", - "type": "LIBRARY", - "lib": "__idf_main", - "reqs": [ "bootloader", "bootloader_support" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/main/libmain.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c" ], - "include_dirs": [] - }, - "micro-ecc": { - "alias": "idf::micro-ecc", - "target": "___idf_micro-ecc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc", - "type": "LIBRARY", - "lib": "__idf_micro-ecc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], - "include_dirs": [ ".", "micro-ecc" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/newlib", - "type": "CONFIG_ONLY", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "platform_include" ] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", - "type": "CONFIG_ONLY", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/riscv", - "type": "CONFIG_ONLY", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/soc", - "type": "LIBRARY", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/soc/libsoc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c" ], - "include_dirs": [ "include", "esp32c3", "esp32c3/include", "esp32c3/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", - "type": "LIBRARY", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/esp-idf/spi_flash/libspi_flash.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c" ], - "include_dirs": [ "include" ] - } - }, - "all_component_info" : { - "app_trace": { - "alias": "idf::app_trace", - "target": "___idf_app_trace", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace", - "lib": "__idf_app_trace", - "reqs": [ "esp_timer" ], - "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_update", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] - }, - "bt": { - "alias": "idf::bt", - "target": "___idf_bt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bt", - "lib": "__idf_bt", - "reqs": [ "esp_timer", "esp_wifi" ], - "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "cmock": { - "alias": "idf::cmock", - "target": "___idf_cmock", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cmock", - "lib": "__idf_cmock", - "reqs": [ "unity" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "CMock/src" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/console", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cxx", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "pthread", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/driver", - "lib": "__idf_driver", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/efuse", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp-tls": { - "alias": "idf::esp-tls", - "target": "___idf_esp-tls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", - "lib": "__idf_esp-tls", - "reqs": [ "mbedtls" ], - "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader", "esp-tls-crypto" ] - }, - "esp_adc": { - "alias": "idf::esp_adc", - "target": "___idf_esp_adc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc", - "lib": "__idf_esp_adc", - "reqs": [], - "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface", "esp32c3/include", "deprecated/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "driver", "esp_event" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_cam": { - "alias": "idf::esp_driver_cam", - "target": "___idf_esp_driver_cam", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam", - "lib": "__idf_esp_driver_cam", - "reqs": [ "esp_driver_isp", "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_isp": { - "alias": "idf::esp_driver_isp", - "target": "___idf_esp_driver_isp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp", - "lib": "__idf_esp_driver_isp", - "reqs": [ "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_jpeg": { - "alias": "idf::esp_driver_jpeg", - "target": "___idf_esp_driver_jpeg", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg", - "lib": "__idf_esp_driver_jpeg", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc", - "lib": "__idf_esp_driver_ledc", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ppa": { - "alias": "idf::esp_driver_ppa", - "target": "___idf_esp_driver_ppa", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa", - "lib": "__idf_esp_driver_ppa", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_touch_sens": { - "alias": "idf::esp_driver_touch_sens", - "target": "___idf_esp_driver_touch_sens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens", - "lib": "__idf_esp_driver_touch_sens", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_eth": { - "alias": "idf::esp_eth", - "target": "___idf_esp_eth", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth", - "lib": "__idf_esp_eth", - "reqs": [ "esp_event" ], - "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_gdbstub": { - "alias": "idf::esp_gdbstub", - "target": "___idf_esp_gdbstub", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub", - "lib": "__idf_esp_gdbstub", - "reqs": [ "freertos" ], - "priv_reqs": [ "soc", "esp_rom", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hid": { - "alias": "idf::esp_hid", - "target": "___idf_esp_hid", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid", - "lib": "__idf_esp_hid", - "reqs": [ "esp_event", "bt" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_client": { - "alias": "idf::esp_http_client", - "target": "___idf_esp_http_client", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client", - "lib": "__idf_esp_http_client", - "reqs": [ "lwip", "esp_event" ], - "priv_reqs": [ "tcp_transport", "http_parser" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_server": { - "alias": "idf::esp_http_server", - "target": "___idf_esp_http_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server", - "lib": "__idf_esp_http_server", - "reqs": [ "http_parser", "esp_event" ], - "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_ota": { - "alias": "idf::esp_https_ota", - "target": "___idf_esp_https_ota", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota", - "lib": "__idf_esp_https_ota", - "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], - "priv_reqs": [ "log", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_server": { - "alias": "idf::esp_https_server", - "target": "___idf_esp_https_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server", - "lib": "__idf_esp_https_server", - "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], - "priv_reqs": [ "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/soc", "include/soc/esp32c3", "dma/include", "ldo/include", "debug_probe/include" ] - }, - "esp_lcd": { - "alias": "idf::esp_lcd", - "target": "___idf_esp_lcd", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd", - "lib": "__idf_esp_lcd", - "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], - "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_local_ctrl": { - "alias": "idf::esp_local_ctrl", - "target": "___idf_esp_local_ctrl", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl", - "lib": "__idf_esp_local_ctrl", - "reqs": [ "protocomm", "esp_https_server" ], - "priv_reqs": [ "protobuf-c" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition", - "lib": "__idf_esp_partition", - "reqs": [ "spi_flash" ], - "priv_reqs": [ "bootloader_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_psram": { - "alias": "idf::esp_psram", - "target": "___idf_esp_psram", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram", - "lib": "__idf_esp_psram", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include", "esp32c3/include/esp32c3", "esp32c3" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", - "lib": "__idf_esp_system", - "reqs": [ "spi_flash" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] - }, - "espcoredump": { - "alias": "idf::espcoredump", - "target": "___idf_espcoredump", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump", - "lib": "__idf_espcoredump", - "reqs": [], - "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "fatfs": { - "alias": "idf::fatfs", - "target": "___idf_fatfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs", - "lib": "__idf_fatfs", - "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], - "priv_reqs": [ "vfs", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "diskio", "src", "vfs" ] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/freertos", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/hal", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_port/include", "esp32c3/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/heap", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "tlsf" ] - }, - "http_parser": { - "alias": "idf::http_parser", - "target": "___idf_http_parser", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/http_parser", - "lib": "__idf_http_parser", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "idf_test": { - "alias": "idf::idf_test", - "target": "___idf_idf_test", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/idf_test", - "lib": "__idf_idf_test", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/esp32c3" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "driver", "esp_timer", "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "json": { - "alias": "idf::json", - "target": "___idf_json", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/json", - "lib": "__idf_json", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "linux": { - "alias": "idf::linux", - "target": "___idf_linux", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/linux", - "lib": "__idf_linux", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/log", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/lwip", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "soc", "esp_hw_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library" ] - }, - "mqtt": { - "alias": "idf::mqtt", - "target": "___idf_mqtt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt", - "lib": "__idf_mqtt", - "reqs": [ "esp_event", "tcp_transport" ], - "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/newlib", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "nvs_sec_provider": { - "alias": "idf::nvs_sec_provider", - "target": "___idf_nvs_sec_provider", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider", - "lib": "__idf_nvs_sec_provider", - "reqs": [], - "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/openthread", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "perfmon": { - "alias": "idf::perfmon", - "target": "___idf_perfmon", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/perfmon", - "lib": "__idf_perfmon", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "protobuf-c": { - "alias": "idf::protobuf-c", - "target": "___idf_protobuf-c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c", - "lib": "__idf_protobuf-c", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "protobuf-c" ] - }, - "protocomm": { - "alias": "idf::protocomm", - "target": "___idf_protocomm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm", - "lib": "__idf_protocomm", - "reqs": [ "bt" ], - "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/pthread", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/riscv", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "rt": { - "alias": "idf::rt", - "target": "___idf_rt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/rt", - "lib": "__idf_rt", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/soc", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3", "esp32c3/include", "esp32c3/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "spiffs": { - "alias": "idf::spiffs", - "target": "___idf_spiffs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs", - "lib": "__idf_spiffs", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "tcp_transport": { - "alias": "idf::tcp_transport", - "target": "___idf_tcp_transport", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport", - "lib": "__idf_tcp_transport", - "reqs": [ "esp-tls", "lwip", "esp_timer" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "touch_element": { - "alias": "idf::touch_element", - "target": "___idf_touch_element", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/touch_element", - "lib": "__idf_touch_element", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "ulp": { - "alias": "idf::ulp", - "target": "___idf_ulp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ulp", - "lib": "__idf_ulp", - "reqs": [ "driver", "esp_adc" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "unity": { - "alias": "idf::unity", - "target": "___idf_unity", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/unity", - "lib": "__idf_unity", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "unity/src" ] - }, - "usb": { - "alias": "idf::usb", - "target": "___idf_usb", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/usb", - "lib": "__idf_usb", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/vfs", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wear_levelling": { - "alias": "idf::wear_levelling", - "target": "___idf_wear_levelling", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling", - "lib": "__idf_wear_levelling", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wifi_provisioning": { - "alias": "idf::wifi_provisioning", - "target": "___idf_wifi_provisioning", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning", - "lib": "__idf_wifi_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "xtensa": { - "alias": "idf::xtensa", - "target": "___idf_xtensa", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/xtensa", - "lib": "__idf_xtensa", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/main", - "lib": "__idf_main", - "reqs": [ "bootloader", "bootloader_support" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "micro-ecc": { - "alias": "idf::micro-ecc", - "target": "___idf_micro-ecc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc", - "lib": "__idf_micro-ecc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ ".", "micro-ecc" ] - } - }, - "debug_prefix_map_gdbinit": "", - "gdbinit_files": { - "01_symbols": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/symbols", - "02_prefix_map": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/prefix_map", - "03_py_extensions": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/py_extensions", - "04_connect": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/gdbinit/connect" - }, - "debug_arguments_openocd": "-f board/esp32c3-builtin.cfg" -} diff --git a/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c b/RainMaker_Table-Lights/build/bootloader/project_elf_src_esp32c3.c deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/build.ninja b/RainMaker_Table-Lights/build/build.ninja deleted file mode 100644 index 82bdb496b..000000000 --- a/RainMaker_Table-Lights/build/build.ninja +++ /dev/null @@ -1,23589 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: RainMaker_Table-Lights -# Configurations: -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/ - -############################################# -# Utility command for menuconfig - -build menuconfig: phony CMakeFiles/menuconfig - - -############################################# -# Utility command for confserver - -build confserver: phony CMakeFiles/confserver - - -############################################# -# Utility command for save-defconfig - -build save-defconfig: phony CMakeFiles/save-defconfig - - -############################################# -# Utility command for bootloader - -build bootloader: phony CMakeFiles/bootloader CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-update esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for gen_project_binary - -build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp RainMaker_Table-Lights.elf - - -############################################# -# Utility command for app - -build app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary - - -############################################# -# Utility command for erase_flash - -build erase_flash: phony CMakeFiles/erase_flash - - -############################################# -# Utility command for merge-bin - -build merge-bin: phony CMakeFiles/merge-bin bootloader gen_project_binary - - -############################################# -# Utility command for monitor - -build monitor: phony CMakeFiles/monitor RainMaker_Table-Lights.elf - - -############################################# -# Utility command for flash - -build flash: phony CMakeFiles/flash app bootloader esp-idf/app_update/blank_ota_data esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for encrypted-flash - -build encrypted-flash: phony CMakeFiles/encrypted-flash esp-idf/app_update/blank_ota_data - - -############################################# -# Utility command for _project_elf_src - -build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32c3.c - -# ============================================================================= -# Object build statements for EXECUTABLE target RainMaker_Table-Lights.elf - - -############################################# -# Order-only phony target for RainMaker_Table-Lights.elf - -build cmake_object_order_depends_target_RainMaker_Table-Lights.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_app_insights cmake_object_order_depends_target___idf_app_network cmake_object_order_depends_target___idf_app_reset cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_rainmaker cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__cbor cmake_object_order_depends_target___idf_espressif__esp-serial-flasher cmake_object_order_depends_target___idf_espressif__esp_diag_data_store cmake_object_order_depends_target___idf_espressif__esp_diagnostics cmake_object_order_depends_target___idf_espressif__esp_insights cmake_object_order_depends_target___idf_espressif__esp_rcp_update cmake_object_order_depends_target___idf_espressif__esp_schedule cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr cmake_object_order_depends_target___idf_espressif__json_generator cmake_object_order_depends_target___idf_espressif__json_parser cmake_object_order_depends_target___idf_espressif__mdns cmake_object_order_depends_target___idf_espressif__network_provisioning cmake_object_order_depends_target___idf_espressif__qrcode cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_gpio_button cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_ledc_driver cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_nvs_sec_provider cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_rt cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_ws2812_led esp-idf/esp_system/__ldgen_output_sections.ld project_elf_src_esp32c3.c - -build CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj: C_COMPILER__RainMaker_Table-Lights.2eelf_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c || cmake_object_order_depends_target_RainMaker_Table-Lights.elf - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H - DEP_FILE = CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always - INCLUDES = -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led - OBJECT_DIR = CMakeFiles/RainMaker_Table-Lights.elf.dir - OBJECT_FILE_DIR = CMakeFiles/RainMaker_Table-Lights.elf.dir - - -# ============================================================================= -# Link build statements for EXECUTABLE target RainMaker_Table-Lights.elf - - -############################################# -# Link the executable RainMaker_Table-Lights.elf - -build RainMaker_Table-Lights.elf: CXX_EXECUTABLE_LINKER__RainMaker_Table-Lights.2eelf_ CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj | esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/bt/libbt.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/app_insights/libapp_insights.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/app_network/libapp_network.a esp-idf/gpio_button/libgpio_button.a esp-idf/app_reset/libapp_reset.a esp-idf/ledc_driver/libledc_driver.a esp-idf/ws2812_led/libws2812_led.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/esp_eth/libesp_eth.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/bt/libbt.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/console/libconsole.a esp-idf/mqtt/libmqtt.a esp-idf/gpio_button/libgpio_button.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a /home/alex/esp/v5.4.1/esp-idf/components/riscv/ld/rom.api.ld esp-idf/esp_system/ld/memory.ld esp-idf/esp_system/ld/sections.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.bt_funcs.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.libgcc.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.version.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.eco3.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.eco3_bt_funcs.ld /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.newlib.ld /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ld/esp32c3.peripherals.ld || _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/gpio_button/libgpio_button.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/ws2812_led/libws2812_led.a - FLAGS = -march=rv32imc_zicsr_zifencei - LINK_FLAGS = -nostartfiles -march=rv32imc_zicsr_zifencei --specs=nosys.specs -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C3=0 -Wl,--Map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T rom.api.ld -T esp32c3.peripherals.ld -T esp32c3.rom.ld -T esp32c3.rom.api.ld -T esp32c3.rom.bt_funcs.ld -T esp32c3.rom.libgcc.ld -T esp32c3.rom.version.ld -T esp32c3.rom.eco3.ld -T esp32c3.rom.eco3_bt_funcs.ld -T esp32c3.rom.newlib.ld -T memory.ld -T sections.ld - LINK_LIBRARIES = esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/bt/libbt.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/app_insights/libapp_insights.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/app_network/libapp_network.a esp-idf/gpio_button/libgpio_button.a esp-idf/app_reset/libapp_reset.a esp-idf/ledc_driver/libledc_driver.a esp-idf/ws2812_led/libws2812_led.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a -u nvs_sec_provider_include_impl esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espcoredump/libespcoredump.a -u esp_system_include_coredump_init esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/esp_eth/libesp_eth.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/bt/libbt.a -lbtdm_app esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/console/libconsole.a esp-idf/mqtt/libmqtt.a esp-idf/gpio_button/libgpio_button.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3/libcoexist.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -Wl,--wrap=mbedtls_ssl_write_client_hello -Wl,--wrap=mbedtls_ssl_handshake_client_step -Wl,--wrap=mbedtls_ssl_handshake_server_step -Wl,--wrap=mbedtls_ssl_read -Wl,--wrap=mbedtls_ssl_write -Wl,--wrap=mbedtls_ssl_session_reset -Wl,--wrap=mbedtls_ssl_free -Wl,--wrap=mbedtls_ssl_setup -Wl,--wrap=mbedtls_ssl_send_alert_message -Wl,--wrap=mbedtls_ssl_close_notify -u esp_app_desc -u esp_efuse_startup_include_func -u start_app -u __ubsan_include -u esp_system_include_startup_funcs -u __assert_func -u esp_security_init_include_impl -u esp_sleep_gpio_include -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -u newlib_include_assert_impl -u newlib_include_getentropy_impl -u newlib_include_init_funcs -u pthread_include_pthread_impl -u pthread_include_pthread_cond_var_impl -u pthread_include_pthread_local_storage_impl -u pthread_include_pthread_rwlock_impl -u pthread_include_pthread_semaphore_impl -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--wrap=__gxx_personality_v0 -Wl,--wrap=__cxa_throw -Wl,--wrap=__cxa_allocate_exception -u __cxa_guard_dummy -u __cxx_init_dummy -lstdc++ esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -u esp_timer_init_include_func -u uart_vfs_include_dev_init -u usb_serial_jtag_vfs_include_dev_init -u usb_serial_jtag_connection_monitor_include -u include_esp_phy_override -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb -u esp_vfs_include_console_register -u vfs_include_syscalls_impl -u esp_vfs_include_nullfs_register - LINK_PATH = -L/home/alex/esp/v5.4.1/esp-idf/components/riscv/ld -L/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ld -L/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld -L/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld -L/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/esp32c3 -L/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/esp32c3 -L/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/esp32c3 -L/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/esp32c3 - OBJECT_DIR = CMakeFiles/RainMaker_Table-Lights.elf.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = RainMaker_Table-Lights.elf - TARGET_PDB = RainMaker_Table-Lights.elf.dbg - - -############################################# -# Utility command for size - -build size: phony CMakeFiles/size - - -############################################# -# Utility command for size-files - -build size-files: phony CMakeFiles/size-files - - -############################################# -# Utility command for size-components - -build size-components: phony CMakeFiles/size-components - - -############################################# -# Utility command for uf2 - -build uf2: phony CMakeFiles/uf2 - - -############################################# -# Utility command for uf2-app - -build uf2-app: phony CMakeFiles/uf2-app - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build list_install_components: phony - - -############################################# -# Utility command for install - -build CMakeFiles/install.util: CUSTOM_COMMAND all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build install: phony CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build CMakeFiles/install/local.util: CUSTOM_COMMAND all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build install/local: phony CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build CMakeFiles/install/strip.util: CUSTOM_COMMAND all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build install/strip: phony CMakeFiles/install/strip.util - - -############################################# -# Custom command for CMakeFiles/menuconfig - -build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --defaults /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --env IDF_TARGET=esp32c3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.1 --dont-write-deprecated --output config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/check_term.py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env COMPONENT_KCONFIGS_SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/kconfigs_projbuild.in KCONFIG_CONFIG=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig IDF_TARGET=esp32c3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.4.1 /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m menuconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --defaults /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --env IDF_TARGET=esp32c3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.4.1 --output config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - pool = console - - -############################################# -# Custom command for CMakeFiles/confserver - -build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfserver --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig - pool = console - - -############################################# -# Custom command for CMakeFiles/save-defconfig - -build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfgen --list-separator=semicolon --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --defaults /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --dont-write-deprecated --output savedefconfig /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults - pool = console - - -############################################# -# Phony custom command for CMakeFiles/bootloader - -build CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin - - -############################################# -# Custom command for CMakeFiles/bootloader-complete - -build CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done | ${cmake_ninja_workdir}CMakeFiles/bootloader-complete ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E make_directory /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/CMakeFiles/bootloader-complete && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-done - DESC = Completed 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-build - -build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-build ${cmake_ninja_workdir}bootloader/bootloader.elf ${cmake_ninja_workdir}bootloader/bootloader.bin ${cmake_ninja_workdir}bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --build . - DESC = Performing build step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-configure - -build bootloader-prefix/src/bootloader-stamp/bootloader-configure | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DSDKCONFIG=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig -DIDF_PATH=/home/alex/esp/v5.4.1/esp-idf -DIDF_TARGET=esp32c3 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -DEXTRA_COMPONENT_DIRS=/home/alex/esp/v5.4.1/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -DIGNORE_EXTRA_COMPONENT= -GNinja -S /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject -B /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure - DESC = Performing configure step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-download - -build bootloader-prefix/src/bootloader-stamp/bootloader-download | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo_append && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-download - DESC = No download step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-install - -build bootloader-prefix/src/bootloader-stamp/bootloader-install | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo_append - DESC = No install step for 'bootloader' - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-mkdir - -build bootloader-prefix/src/bootloader-stamp/bootloader-mkdir | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -Dcfgdir= -P /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir - DESC = Creating directories for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-patch - -build bootloader-prefix/src/bootloader-stamp/bootloader-patch | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo_append && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch - DESC = No patch step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-update - -build bootloader-prefix/src/bootloader-stamp/bootloader-update | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo_append && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader-prefix/src/bootloader-stamp/bootloader-update - DESC = No update step for 'bootloader' - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles/gen_project_binary - -build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || RainMaker_Table-Lights.elf _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a - - -############################################# -# Custom command for .bin_timestamp - -build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND RainMaker_Table-Lights.elf || RainMaker_Table-Lights.elf _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32c3 elf2image --flash_mode dio --flash_freq 80m --flash_size 4MB --elf-sha256-offset 0xb0 --min-rev 3 --min-rev-full 3 --max-rev-full 199 -o /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Generated /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E md5sum /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin > /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/.bin_timestamp - DESC = Generating binary image from built executable - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles/app - -build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || RainMaker_Table-Lights.elf _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a gen_project_binary - - -############################################# -# Custom command for CMakeFiles/erase_flash - -build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/merge-bin - -build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || RainMaker_Table-Lights.elf _project_elf_src bootloader esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a gen_project_binary - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=merge_bin;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/merged-binary.bin;@/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/monitor - -build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || RainMaker_Table-Lights.elf _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_monitor" -D "SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32c3;;--revision;3;;--decode-panic;backtrace;;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/flash - -build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || RainMaker_Table-Lights.elf _project_elf_src app bootloader esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/blank_ota_data esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a gen_project_binary - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/encrypted-flash - -build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND || esp-idf/app_update/blank_ota_data - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Error: The target encrypted-flash requires" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/fail.cmake - - -############################################# -# Phony custom command for CMakeFiles/_project_elf_src - -build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32c3.c - - -############################################# -# Custom command for project_elf_src_esp32c3.c - -build project_elf_src_esp32c3.c | ${cmake_ninja_workdir}project_elf_src_esp32c3.c: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E touch /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c - DESC = Generating project_elf_src_esp32c3.c - restat = 1 - - -############################################# -# Custom command for CMakeFiles/size - -build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND RainMaker_Table-Lights.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/size-files - -build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND RainMaker_Table-Lights.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D IDF_SIZE_MODE=--files -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/size-components - -build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND RainMaker_Table-Lights.map - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D "IDF_SIZE_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;-m;esp_idf_size" -D IDF_SIZE_MODE=--archives -D MAP_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.map -D OUTPUT_JSON= -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_size_tool.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/uf2 - -build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "UF2_CMD=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/tools/mkuf2.py;write;--chip;esp32c3" -D "UF2_ARGS=--json;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/flasher_args.json;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/uf2.bin" -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_uf2_cmds.cmake - pool = console - - -############################################# -# Custom command for CMakeFiles/uf2-app - -build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "UF2_CMD=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/tools/mkuf2.py;write;--chip;esp32c3" -D "UF2_ARGS=--json;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/flasher_args.json;-o;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/uf2-app.bin;--bin;app" -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/run_uf2_cmds.cmake - pool = console - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/install: phony esp-idf/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Order-only phony target for __idf_riscv - -build cmake_object_order_depends_target___idf_riscv: phony || cmake_object_order_depends_target___idf_esp_driver_gpio - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj: C_COMPILER____idf_riscv_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/riscv/instruction_decode.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj: C_COMPILER____idf_riscv_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj: ASM_COMPILER____idf_riscv_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors.S || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj: C_COMPILER____idf_riscv_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt_intc.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj: ASM_COMPILER____idf_riscv_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors_intc.S || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Link the static library esp-idf/riscv/libriscv.a - -build esp-idf/riscv/libriscv.a: C_STATIC_LIBRARY_LINKER____idf_riscv_ esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj || esp-idf/esp_driver_gpio/libesp_driver_gpio.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/riscv/CMakeFiles/__idf_riscv.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/riscv/libriscv.a - TARGET_PDB = riscv.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/riscv/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/riscv/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/riscv/install: phony esp-idf/riscv/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/riscv/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/riscv/install/local: phony esp-idf/riscv/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/riscv/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/riscv/install/strip: phony esp-idf/riscv/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gpio - - -############################################# -# Order-only phony target for __idf_esp_driver_gpio - -build cmake_object_order_depends_target___idf_esp_driver_gpio: phony || cmake_object_order_depends_target___idf_esp_pm - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gpio - - -############################################# -# Link the static library esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -build esp-idf/esp_driver_gpio/libesp_driver_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj || esp-idf/esp_pm/libesp_pm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_gpio/libesp_driver_gpio.a - TARGET_PDB = esp_driver_gpio.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/edit_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/rebuild_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_gpio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install: phony esp-idf/esp_driver_gpio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install/local: phony esp-idf/esp_driver_gpio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install/strip: phony esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_pm - - -############################################# -# Order-only phony target for __idf_esp_pm - -build cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_mbedtls - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_pm - - -############################################# -# Link the static library esp-idf/esp_pm/libesp_pm.a - -build esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj || esp-idf/mbedtls/libmbedtls.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_pm/libesp_pm.a - TARGET_PDB = esp_pm.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_pm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_mbedtls - - -############################################# -# Order-only phony target for __idf_mbedtls - -build cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S - -build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle - -build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__ - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_mbedtls - - -############################################# -# Link the static library esp-idf/mbedtls/libmbedtls.a - -build esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj || esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/libmbedtls.a - TARGET_PDB = mbedtls.a.dbg - - -############################################# -# Utility command for custom_bundle - -build esp-idf/mbedtls/custom_bundle: phony - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util - - -############################################# -# Custom command for x509_crt_bundle.S - -build x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D DATA_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake - DESC = Generating ../../x509_crt_bundle.S - restat = 1 - - -############################################# -# Custom command for esp-idf/mbedtls/x509_crt_bundle - -build esp-idf/mbedtls/x509_crt_bundle | ${cmake_ninja_workdir}esp-idf/mbedtls/x509_crt_bundle: CUSTOM_COMMAND || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --filter /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/cmn_crt_authorities.csv --input /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q --max-certs 200 - DESC = Generating x509_crt_bundle - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for apidoc - -build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc - -build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/doxygen && doxygen mbedtls.doxyfile - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/include/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target everest - - -############################################# -# Order-only phony target for everest - -build cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target everest - - -############################################# -# Link the static library esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - TARGET_PDB = everest.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target p256m - - -############################################# -# Order-only phony target for p256m - -build cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_mbedcrypto - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target p256m - - -############################################# -# Link the static library esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - TARGET_PDB = p256m.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedcrypto - - -############################################# -# Order-only phony target for mbedcrypto - -build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509 - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedcrypto - - -############################################# -# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - -build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - TARGET_PDB = mbedcrypto.a.dbg - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedx509 - - -############################################# -# Order-only phony target for mbedx509 - -build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedx509 - - -############################################# -# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedx509.a - -build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedx509.a - TARGET_PDB = mbedx509.a.dbg - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedtls - - -############################################# -# Order-only phony target for mbedtls - -build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_esp_app_format - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedtls - - -############################################# -# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedtls.a - -build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedtls.a - TARGET_PDB = mbedtls.a.dbg - - -############################################# -# Utility command for lib - -build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/riscv/libriscv.a - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/library/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/pkgconfig/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for bootloader-flash - -build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader - - -############################################# -# Utility command for encrypted-bootloader-flash - -build esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/bootloader/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf/bootloader/CMakeFiles/bootloader-flash - -build esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash - -build esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Error: The target encrypted-bootloader-flash requires" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/fail.cmake - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for app-flash - -build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app - - -############################################# -# Utility command for encrypted-app-flash - -build esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash - - -############################################# -# Utility command for app_check_size - -build esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary - - -############################################# -# Utility command for edit_cache - -build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esptool_py/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf/esptool_py/CMakeFiles/app-flash - -build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || RainMaker_Table-Lights.elf _project_elf_src app esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a gen_project_binary - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/esptool_py/CMakeFiles/encrypted-app-flash - -build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Error: The target encrypted-app-flash requires" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/fail.cmake - - -############################################# -# Custom command for esp-idf/esptool_py/CMakeFiles/app_check_size - -build esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || RainMaker_Table-Lights.elf _project_elf_src esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a gen_project_binary - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/check_sizes.py --offset 0xc000 partition --type app /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/partition_table/partition-table.bin /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.bin - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for partition_table_bin - -build esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin - - -############################################# -# Utility command for partition-table - -build esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for partition_table - -build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table - - -############################################# -# Utility command for partition-table-flash - -build esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash - - -############################################# -# Utility command for encrypted-partition-table-flash - -build esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash - - -############################################# -# Utility command for partition_table-flash - -build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash - - -############################################# -# Utility command for edit_cache - -build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/partition_table/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf/partition_table/CMakeFiles/partition_table_bin - -build esp-idf/partition_table/CMakeFiles/partition_table_bin | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table_bin: phony partition_table/partition-table.bin partition_table/partition-table.bin - - -############################################# -# Custom command for partition_table/partition-table.bin - -build partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv /home/alex/esp/v5.4.1/esp-idf/components/partition_table/gen_esp32part.py - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0xc000 --flash-size 4MB -- /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/partition_table/partition-table.bin && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Partition table binary generated. Contents:" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "*******************************************************************************" && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0xc000 --flash-size 4MB -- /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/partition_table/partition-table.bin && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "*******************************************************************************" - DESC = Generating ../../partition_table/partition-table.bin - restat = 1 - - -############################################# -# Custom command for esp-idf/partition_table/CMakeFiles/partition-table - -build esp-idf/partition_table/CMakeFiles/partition-table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Partition table binary generated. Contents:" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "*******************************************************************************" && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0xc000 --flash-size 4MB -- /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/partition_table/partition-table.bin && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "*******************************************************************************" - - -############################################# -# Custom command for esp-idf/partition_table/CMakeFiles/partition_table - -build esp-idf/partition_table/CMakeFiles/partition_table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table: CUSTOM_COMMAND || esp-idf/partition_table/partition-table esp-idf/partition_table/partition_table_bin - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "partition_table" is deprecated. Have you wanted to run "partition-table" instead? - - -############################################# -# Custom command for esp-idf/partition_table/CMakeFiles/partition-table-flash - -build esp-idf/partition_table/CMakeFiles/partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash - -build esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Error: The target encrypted-partition-table-flash requires" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/fail.cmake - - -############################################# -# Custom command for esp-idf/partition_table/CMakeFiles/partition_table-flash - -build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND || esp-idf/partition_table/partition-table-flash - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "partition_table-flash" is deprecated. Have you wanted to run "partition-table-flash" instead? - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_app_format - - -############################################# -# Order-only phony target for __idf_esp_app_format - -build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format - -build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"RainMaker_Table-Lights\" -DPROJECT_VER=\"1.0\" - DEP_FILE = esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir - OBJECT_FILE_DIR = esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_app_format - - -############################################# -# Link the static library esp-idf/esp_app_format/libesp_app_format.a - -build esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_app_format/libesp_app_format.a - TARGET_PDB = esp_app_format.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_app_format/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Order-only phony target for __idf_esp_bootloader_format - -build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_app_update - -build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - OBJECT_FILE_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Link the static library esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/app_update/libapp_update.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_bootloader_format/libesp_bootloader_format.a - TARGET_PDB = esp_bootloader_format.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_bootloader_format/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_bootloader_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install: phony esp-idf/esp_bootloader_format/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_bootloader_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install/local: phony esp-idf/esp_bootloader_format/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install/strip: phony esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_update - - -############################################# -# Order-only phony target for __idf_app_update - -build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_partition - -build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - -build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_update - - -############################################# -# Link the static library esp-idf/app_update/libapp_update.a - -build esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_update_ esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_partition/libesp_partition.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/app_update/libapp_update.a - TARGET_PDB = app_update.a.dbg - - -############################################# -# Utility command for blank_ota_data - -build esp-idf/app_update/blank_ota_data: phony esp-idf/app_update/CMakeFiles/blank_ota_data ota_data_initial.bin - - -############################################# -# Utility command for read-otadata - -build esp-idf/app_update/read-otadata: phony esp-idf/app_update/CMakeFiles/read-otadata - - -############################################# -# Utility command for read_otadata - -build esp-idf/app_update/read_otadata: phony esp-idf/app_update/CMakeFiles/read_otadata esp-idf/app_update/read-otadata - - -############################################# -# Utility command for erase-otadata - -build esp-idf/app_update/erase-otadata: phony esp-idf/app_update/CMakeFiles/erase-otadata - - -############################################# -# Utility command for erase_otadata - -build esp-idf/app_update/erase_otadata: phony esp-idf/app_update/CMakeFiles/erase_otadata esp-idf/app_update/erase-otadata - - -############################################# -# Utility command for otadata-flash - -build esp-idf/app_update/otadata-flash: phony esp-idf/app_update/CMakeFiles/otadata-flash - - -############################################# -# Utility command for encrypted-otadata-flash - -build esp-idf/app_update/encrypted-otadata-flash: phony esp-idf/app_update/CMakeFiles/encrypted-otadata-flash - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_update/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf/app_update/CMakeFiles/blank_ota_data - -build esp-idf/app_update/CMakeFiles/blank_ota_data | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/blank_ota_data: phony ota_data_initial.bin - - -############################################# -# Custom command for ota_data_initial.bin - -build ota_data_initial.bin | ${cmake_ninja_workdir}ota_data_initial.bin: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/partition_table/gen_empty_partition.py 0x2000 /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/ota_data_initial.bin - DESC = Generating ../../ota_data_initial.bin - restat = 1 - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/read-otadata - -build esp-idf/app_update/CMakeFiles/read-otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/read-otadata: CUSTOM_COMMAND /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/components/app_update/otatool.py" -D "SERIAL_TOOL_ARGS=--esptool-args;before=default_reset;after=hard_reset;--partition-table-file;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv;--partition-table-offset;0xc000;read_otadata" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/read_otadata - -build esp-idf/app_update/CMakeFiles/read_otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/read_otadata: CUSTOM_COMMAND || esp-idf/app_update/read-otadata - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "read_otadata" is deprecated. Have you wanted to run "read-otadata" instead? - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/erase-otadata - -build esp-idf/app_update/CMakeFiles/erase-otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/erase-otadata: CUSTOM_COMMAND /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;/home/alex/esp/v5.4.1/esp-idf/components/app_update/otatool.py" -D "SERIAL_TOOL_ARGS=--esptool-args;before=default_reset;after=hard_reset;--partition-table-file;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv;--partition-table-offset;0xc000;erase_otadata" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/erase_otadata - -build esp-idf/app_update/CMakeFiles/erase_otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/erase_otadata: CUSTOM_COMMAND || esp-idf/app_update/erase-otadata - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "erase_otadata" is deprecated. Have you wanted to run "erase-otadata" instead? - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/otadata-flash - -build esp-idf/app_update/CMakeFiles/otadata-flash | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/otadata-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/esp/v5.4.1/esp-idf/components/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D IDF_PATH=/home/alex/esp/v5.4.1/esp-idf -D "SERIAL_TOOL=/home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python;;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32c3" -D "SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@otadata-flash_args" -D WORKING_DIRECTORY=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build -P /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/run_serial_tool.cmake - pool = console - - -############################################# -# Custom command for esp-idf/app_update/CMakeFiles/encrypted-otadata-flash - -build esp-idf/app_update/CMakeFiles/encrypted-otadata-flash | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/encrypted-otadata-flash: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "Error: The target encrypted-otadata-flash requires" && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/fail.cmake - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_partition - - -############################################# -# Order-only phony target for __idf_esp_partition - -build cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_efuse - -build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir - OBJECT_FILE_DIR = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir - -build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir - OBJECT_FILE_DIR = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_partition - - -############################################# -# Link the static library esp-idf/esp_partition/libesp_partition.a - -build esp-idf/esp_partition/libesp_partition.a: C_STATIC_LIBRARY_LINKER____idf_esp_partition_ esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj || esp-idf/efuse/libefuse.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_partition/libesp_partition.a - TARGET_PDB = esp_partition.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_partition/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Order-only phony target for __idf_efuse - -build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3 - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj: C_COMPILER____idf_efuse_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Link the static library esp-idf/efuse/libefuse.a - -build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/bootloader_support/libbootloader_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/efuse/libefuse.a - TARGET_PDB = efuse.a.dbg - - -############################################# -# Utility command for efuse-common-table - -build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table - - -############################################# -# Utility command for efuse_common_table - -build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table - - -############################################# -# Utility command for efuse-custom-table - -build esp-idf/efuse/efuse-custom-table: phony - - -############################################# -# Utility command for efuse_custom_table - -build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table - - -############################################# -# Utility command for show-efuse-table - -build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table - - -############################################# -# Utility command for show_efuse_table - -build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table - - -############################################# -# Utility command for efuse_test_table - -build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table - - -############################################# -# Utility command for edit_cache - -build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/efuse/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse-common-table - -build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.csv -t esp32c3 --max_blk_len 256 - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_common_table - -build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_custom_table - -build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/show-efuse-table - -build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.csv -t esp32c3 --max_blk_len 256 --info - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/show_efuse_table - -build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -E echo - DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? - - -############################################# -# Custom command for esp-idf/efuse/CMakeFiles/efuse_test_table - -build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/components/efuse/efuse_table_gen.py /home/alex/esp/v5.4.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32c3 --max_blk_len 256 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Order-only phony target for __idf_bootloader_support - -build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_esp_mm - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Link the static library esp-idf/bootloader_support/libbootloader_support.a - -build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj || esp-idf/esp_mm/libesp_mm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/bootloader_support/libbootloader_support.a - TARGET_PDB = bootloader_support.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/bootloader_support/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_mm - - -############################################# -# Order-only phony target for __idf_esp_mm - -build cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_spi_flash - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/port/esp32c3/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3 - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj: C_COMPILER____idf_esp_mm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_cache.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj: C_COMPILER____idf_esp_mm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_mm - - -############################################# -# Link the static library esp-idf/esp_mm/libesp_mm.a - -build esp-idf/esp_mm/libesp_mm.a: C_STATIC_LIBRARY_LINKER____idf_esp_mm_ esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj || esp-idf/spi_flash/libspi_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_mm/libesp_mm.a - TARGET_PDB = esp_mm.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_mm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Order-only phony target for __idf_spi_flash - -build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_system - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Link the static library esp-idf/spi_flash/libspi_flash.a - -build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/esp_system/libesp_system.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/spi_flash/libspi_flash.a - TARGET_PDB = spi_flash.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/spi_flash/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Order-only phony target for __idf_esp_system - -build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_common - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/hw_stack_guard.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/clk.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3 - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/reset_reason.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3 - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/system_internal.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3 - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3 - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj: C_COMPILER____idf_esp_system_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/apb_backup_dma.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Link the static library esp-idf/esp_system/libesp_system.a - -build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj || esp-idf/esp_common/libesp_common.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_system/libesp_system.a - TARGET_PDB = esp_system.a.dbg - - -############################################# -# Utility command for memory.ld - -build esp-idf/esp_system/memory.ld: phony esp-idf/esp_system/CMakeFiles/memory.ld esp-idf/esp_system/ld/memory.ld - - -############################################# -# Utility command for sections.ld.in - -build esp-idf/esp_system/sections.ld.in: phony esp-idf/esp_system/CMakeFiles/sections.ld.in esp-idf/esp_system/ld/sections.ld.in - - -############################################# -# Utility command for __ldgen_output_sections.ld - -build esp-idf/esp_system/__ldgen_output_sections.ld: phony esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/esp_system/ld/sections.ld.in esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/gpio_button/libgpio_button.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/ws2812_led/libws2812_led.a - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf/esp_system/CMakeFiles/memory.ld - -build esp-idf/esp_system/CMakeFiles/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory.ld: phony esp-idf/esp_system/ld/memory.ld - - -############################################# -# Custom command for esp-idf/esp_system/ld/memory.ld - -build esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/esp32c3/memory.ld.in config/sdkconfig.h - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DSOURCE=/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/esp32c3/memory.ld.in -DTARGET=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -DLD_DIR=/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld -P /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/linker_script_generator.cmake - DESC = Generating /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld linker script... - restat = 1 - - -############################################# -# Phony custom command for esp-idf/esp_system/CMakeFiles/sections.ld.in - -build esp-idf/esp_system/CMakeFiles/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/sections.ld.in: phony esp-idf/esp_system/ld/sections.ld.in - - -############################################# -# Custom command for esp-idf/esp_system/ld/sections.ld.in - -build esp-idf/esp_system/ld/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld.in: CUSTOM_COMMAND /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/esp32c3/sections.ld.in config/sdkconfig.h - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCC=/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DSOURCE=/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/esp32c3/sections.ld.in -DTARGET=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -DLD_DIR=/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld -P /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/linker_script_generator.cmake - DESC = Generating /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in linker script... - restat = 1 - - -############################################# -# Phony custom command for esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld - -build esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a - - -############################################# -# Custom command for esp-idf/esp_system/ld/sections.ld - -build esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND esp-idf/esp_system/ld/sections.ld.in /home/alex/esp/v5.4.1/esp-idf/components/riscv/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_system/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_system/app.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_common/common.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_common/soc.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/hal/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/log/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/heap/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/soc/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/freertos/linker_common.lf /home/alex/esp/v5.4.1/esp-idf/components/freertos/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib.lf /home/alex/esp/v5.4.1/esp-idf/components/newlib/system_libs.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/app_trace/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_event/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/driver/twai/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/vfs/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/lwip/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/bt/linker_common.lf /home/alex/esp/v5.4.1/esp-idf/components/bt/linker_rw_bt_controller.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_psram/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/ieee802154/linker.lf /home/alex/esp/v5.4.1/esp-idf/components/openthread/linker.lf esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/driver/libdriver.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/bt/libbt.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/app_insights/libapp_insights.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/app_network/libapp_network.a esp-idf/gpio_button/libgpio_button.a esp-idf/app_reset/libapp_reset.a esp-idf/ledc_driver/libledc_driver.a esp-idf/ws2812_led/libws2812_led.a /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig || esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/gpio_button/libgpio_button.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/ws2812_led/libws2812_led.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/ldgen/ldgen.py --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig --fragments-list "/home/alex/esp/v5.4.1/esp-idf/components/riscv/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/app.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/common.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/soc.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/hal/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/log/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/heap/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/soc/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/freertos/linker_common.lf;/home/alex/esp/v5.4.1/esp-idf/components/freertos/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib.lf;/home/alex/esp/v5.4.1/esp-idf/components/newlib/system_libs.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/app_trace/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_event/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/vfs/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/lwip/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/bt/linker_common.lf;/home/alex/esp/v5.4.1/esp-idf/components/bt/linker_rw_bt_controller.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/linker.lf;/home/alex/esp/v5.4.1/esp-idf/components/openthread/linker.lf" --input /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in --output /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --libraries-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/ldgen_libraries --objdump /home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump - DESC = Generating ld/sections.ld - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_system/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/port/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32c3/edit_cache: phony esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32c3/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/port/soc/esp32c3/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32c3/install: phony esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32c3/install/local: phony esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32c3/install/strip: phony esp-idf/esp_system/port/soc/esp32c3/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Order-only phony target for __idf_esp_common - -build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom - -build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include - OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir - OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Link the static library esp-idf/esp_common/libesp_common.a - -build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_common/libesp_common.a - TARGET_PDB = esp_common.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_common/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Order-only phony target for __idf_esp_rom - -build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Link the static library esp-idf/esp_rom/libesp_rom.a - -build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj || esp-idf/hal/libhal.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_rom/libesp_rom.a - TARGET_PDB = esp_rom.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_rom/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Order-only phony target for __idf_hal - -build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3 - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3 - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/systimer_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_top.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_ahb_v1.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/usb_serial_jtag_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/xt_wdt_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj: C_COMPILER____idf_hal_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/rtc_cntl_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - OBJECT_FILE_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Link the static library esp-idf/hal/libhal.a - -build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj || esp-idf/log/liblog.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/hal/CMakeFiles/__idf_hal.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/hal/libhal.a - TARGET_PDB = hal.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/hal/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Order-only phony target for __idf_log - -build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/os - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/os - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/os - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj: C_COMPILER____idf_log_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Link the static library esp-idf/log/liblog.a - -build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj || esp-idf/heap/libheap.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/log/liblog.a - TARGET_PDB = log.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/log/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_heap - - -############################################# -# Order-only phony target for __idf_heap - -build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir/port - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/heap/port/esp32c3/memory_layout.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_heap - - -############################################# -# Link the static library esp-idf/heap/libheap.a - -build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj || esp-idf/soc/libsoc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/heap/libheap.a - TARGET_PDB = heap.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/heap/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Order-only phony target for __idf_soc - -build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_security - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Link the static library esp-idf/soc/libsoc.a - -build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj || esp-idf/esp_security/libesp_security.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/soc/libsoc.a - TARGET_PDB = soc.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/soc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_security - - -############################################# -# Order-only phony target for __idf_esp_security - -build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_esp_hw_support - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj: C_COMPILER____idf_esp_security_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_hmac.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj: C_COMPILER____idf_esp_security_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_ds.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_security - - -############################################# -# Link the static library esp-idf/esp_security/libesp_security.a - -build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_security/libesp_security.a - TARGET_PDB = esp_security.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_security/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_security/install: phony esp-idf/esp_security/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_security/install/local: phony esp-idf/esp_security/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_security/install/strip: phony esp-idf/esp_security/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Order-only phony target for __idf_esp_hw_support - -build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_usb.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clock_output.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/adc2_init_cal.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_memprot.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3 - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/port/esp32c3/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Link the static library esp-idf/esp_hw_support/libesp_hw_support.a - -build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj || esp-idf/freertos/libfreertos.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_hw_support/libesp_hw_support.a - TARGET_PDB = esp_hw_support.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/edit_cache: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/port/esp32c3/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/install: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/install/local: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32c3/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32c3/install/strip: phony esp-idf/esp_hw_support/port/esp32c3/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/lowpower/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install/local: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install/strip: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_freertos - - -############################################# -# Order-only phony target for __idf_freertos - -build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_newlib - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_freertos - - -############################################# -# Link the static library esp-idf/freertos/libfreertos.a - -build esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj || esp-idf/newlib/libnewlib.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/freertos/libfreertos.a - TARGET_PDB = freertos.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/freertos/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_newlib - - -############################################# -# Order-only phony target for __idf_newlib - -build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_pthread - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/abort.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-builtin - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/flockfile.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/getentropy.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/scandir.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_newlib - - -############################################# -# Link the static library esp-idf/newlib/libnewlib.a - -build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj || esp-idf/pthread/libpthread.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/newlib/libnewlib.a - TARGET_PDB = newlib.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/newlib/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/components/newlib/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/port/edit_cache: phony esp-idf/newlib/port/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/port/rebuild_cache: phony esp-idf/newlib/port/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/newlib/port/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/newlib/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/newlib/port/install: phony esp-idf/newlib/port/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/newlib/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/newlib/port/install/local: phony esp-idf/newlib/port/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/newlib/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/port/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/newlib/port/install/strip: phony esp-idf/newlib/port/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_pthread - - -############################################# -# Order-only phony target for __idf_pthread - -build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_cxx - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_pthread - - -############################################# -# Link the static library esp-idf/pthread/libpthread.a - -build esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj || esp-idf/cxx/libcxx.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/pthread/libpthread.a - TARGET_PDB = pthread.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/pthread/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_cxx - - -############################################# -# Order-only phony target for __idf_cxx - -build cmake_object_order_depends_target___idf_cxx: phony || cmake_object_order_depends_target___idf_esp_timer - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_cxx - - -############################################# -# Link the static library esp-idf/cxx/libcxx.a - -build esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj || esp-idf/esp_timer/libesp_timer.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/cxx/libcxx.a - TARGET_PDB = cxx.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/cxx/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_timer - - -############################################# -# Order-only phony target for __idf_esp_timer - -build cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_esp_driver_gptimer - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_timer - - -############################################# -# Link the static library esp-idf/esp_timer/libesp_timer.a - -build esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer_ esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj || esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_timer/libesp_timer.a - TARGET_PDB = esp_timer.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_timer/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer - - -############################################# -# Order-only phony target for __idf_esp_driver_gptimer - -build cmake_object_order_depends_target___idf_esp_driver_gptimer: phony || cmake_object_order_depends_target___idf_esp_ringbuf - -build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src - -build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer - - -############################################# -# Link the static library esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -build esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - TARGET_PDB = esp_driver_gptimer.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/edit_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/rebuild_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_gptimer/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_gptimer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install: phony esp-idf/esp_driver_gptimer/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install/local: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install/strip: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf - - -############################################# -# Order-only phony target for __idf_esp_ringbuf - -build cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_esp_driver_uart - -build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir - OBJECT_FILE_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf - - -############################################# -# Link the static library esp-idf/esp_ringbuf/libesp_ringbuf.a - -build esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/esp_driver_uart/libesp_driver_uart.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_ringbuf/libesp_ringbuf.a - TARGET_PDB = esp_ringbuf.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_ringbuf/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_uart - - -############################################# -# Order-only phony target for __idf_esp_driver_uart - -build cmake_object_order_depends_target___idf_esp_driver_uart: phony || cmake_object_order_depends_target___idf_esp_event - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_uart - - -############################################# -# Link the static library esp-idf/esp_driver_uart/libesp_driver_uart.a - -build esp-idf/esp_driver_uart/libesp_driver_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj || esp-idf/esp_event/libesp_event.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_uart/libesp_driver_uart.a - TARGET_PDB = esp_driver_uart.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/edit_cache: phony esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/rebuild_cache: phony esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_uart/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install: phony esp-idf/esp_driver_uart/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install/local: phony esp-idf/esp_driver_uart/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install/strip: phony esp-idf/esp_driver_uart/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_trace - - -############################################# -# Order-only phony target for __idf_app_trace - -build cmake_object_order_depends_target___idf_app_trace: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - -build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - -build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - -build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_trace - - -############################################# -# Link the static library esp-idf/app_trace/libapp_trace.a - -build esp-idf/app_trace/libapp_trace.a: C_STATIC_LIBRARY_LINKER____idf_app_trace_ esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/app_trace/libapp_trace.a - TARGET_PDB = app_trace.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_trace/edit_cache: phony esp-idf/app_trace/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_trace/rebuild_cache: phony esp-idf/app_trace/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_trace/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_trace/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_trace/install: phony esp-idf/app_trace/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_trace/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_trace/install/local: phony esp-idf/app_trace/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_trace/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_event - - -############################################# -# Order-only phony target for __idf_esp_event - -build cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target___idf_nvs_flash - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_event - - -############################################# -# Link the static library esp-idf/esp_event/libesp_event.a - -build esp-idf/esp_event/libesp_event.a: C_STATIC_LIBRARY_LINKER____idf_esp_event_ esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj || esp-idf/nvs_flash/libnvs_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_event/libesp_event.a - TARGET_PDB = esp_event.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_event/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_nvs_flash - - -############################################# -# Order-only phony target for __idf_nvs_flash - -build cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_driver_spi - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_nvs_flash - - -############################################# -# Link the static library esp-idf/nvs_flash/libnvs_flash.a - -build esp-idf/nvs_flash/libnvs_flash.a: C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/nvs_flash/libnvs_flash.a - TARGET_PDB = nvs_flash.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/nvs_flash/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/edit_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/rebuild_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_pcnt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install: phony esp-idf/esp_driver_pcnt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install/local: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install/strip: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_spi - - -############################################# -# Order-only phony target for __idf_esp_driver_spi - -build cmake_object_order_depends_target___idf_esp_driver_spi: phony || cmake_object_order_depends_target___idf_esp_driver_i2s - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_spi - - -############################################# -# Link the static library esp-idf/esp_driver_spi/libesp_driver_spi.a - -build esp-idf/esp_driver_spi/libesp_driver_spi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj || esp-idf/esp_driver_i2s/libesp_driver_i2s.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_spi/libesp_driver_spi.a - TARGET_PDB = esp_driver_spi.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/edit_cache: phony esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/rebuild_cache: phony esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_spi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_spi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install: phony esp-idf/esp_driver_spi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_spi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install/local: phony esp-idf/esp_driver_spi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_spi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install/strip: phony esp-idf/esp_driver_spi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/edit_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/rebuild_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_mcpwm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install/local: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install/strip: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/edit_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/rebuild_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_ana_cmpr/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install/local: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install/strip: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2s - - -############################################# -# Order-only phony target for __idf_esp_driver_i2s - -build cmake_object_order_depends_target___idf_esp_driver_i2s: phony || cmake_object_order_depends_target___idf_sdmmc - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2s - - -############################################# -# Link the static library esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -build esp-idf/esp_driver_i2s/libesp_driver_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/sdmmc/libsdmmc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_i2s/libesp_driver_i2s.a - TARGET_PDB = esp_driver_i2s.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/edit_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/rebuild_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_i2s/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install: phony esp-idf/esp_driver_i2s/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install/local: phony esp-idf/esp_driver_i2s/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install/strip: phony esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_sdmmc - - -############################################# -# Order-only phony target for __idf_sdmmc - -build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_esp_driver_sdspi - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj: C_COMPILER____idf_sdmmc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_sdmmc - - -############################################# -# Link the static library esp-idf/sdmmc/libsdmmc.a - -build esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj || esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/sdmmc/libsdmmc.a - TARGET_PDB = sdmmc.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/sdmmc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/edit_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/rebuild_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdmmc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install/local: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install/strip: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi - - -############################################# -# Order-only phony target for __idf_esp_driver_sdspi - -build cmake_object_order_depends_target___idf_esp_driver_sdspi: phony || cmake_object_order_depends_target___idf_esp_driver_rmt - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi - - -############################################# -# Link the static library esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -build esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj || esp-idf/esp_driver_rmt/libesp_driver_rmt.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - TARGET_PDB = esp_driver_sdspi.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/edit_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/rebuild_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdspi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install: phony esp-idf/esp_driver_sdspi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install/local: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install/strip: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/edit_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/rebuild_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install: phony esp-idf/esp_driver_sdio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install/local: phony esp-idf/esp_driver_sdio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install/strip: phony esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/edit_cache: phony esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/rebuild_cache: phony esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_dac/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_dac/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install: phony esp-idf/esp_driver_dac/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_dac/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install/local: phony esp-idf/esp_driver_dac/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_dac/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install/strip: phony esp-idf/esp_driver_dac/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_rmt - - -############################################# -# Order-only phony target for __idf_esp_driver_rmt - -build cmake_object_order_depends_target___idf_esp_driver_rmt: phony || cmake_object_order_depends_target___idf_esp_driver_tsens - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_rmt - - -############################################# -# Link the static library esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -build esp-idf/esp_driver_rmt/libesp_driver_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj || esp-idf/esp_driver_tsens/libesp_driver_tsens.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_rmt/libesp_driver_rmt.a - TARGET_PDB = esp_driver_rmt.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/edit_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/rebuild_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_rmt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install: phony esp-idf/esp_driver_rmt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install/local: phony esp-idf/esp_driver_rmt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install/strip: phony esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_tsens - - -############################################# -# Order-only phony target for __idf_esp_driver_tsens - -build cmake_object_order_depends_target___idf_esp_driver_tsens: phony || cmake_object_order_depends_target___idf_esp_driver_sdm - -build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c || cmake_object_order_depends_target___idf_esp_driver_tsens - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include - OBJECT_DIR = esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_tsens - - -############################################# -# Link the static library esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -build esp-idf/esp_driver_tsens/libesp_driver_tsens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj || esp-idf/esp_driver_sdm/libesp_driver_sdm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_tsens/libesp_driver_tsens.a - TARGET_PDB = esp_driver_tsens.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/edit_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/rebuild_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_tsens/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_tsens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install: phony esp-idf/esp_driver_tsens/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_tsens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install/local: phony esp-idf/esp_driver_tsens/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install/strip: phony esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdm - - -############################################# -# Order-only phony target for __idf_esp_driver_sdm - -build cmake_object_order_depends_target___idf_esp_driver_sdm: phony || cmake_object_order_depends_target___idf_esp_driver_i2c - -build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdm - - -############################################# -# Link the static library esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -build esp-idf/esp_driver_sdm/libesp_driver_sdm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj || esp-idf/esp_driver_i2c/libesp_driver_i2c.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_sdm/libesp_driver_sdm.a - TARGET_PDB = esp_driver_sdm.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/edit_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/rebuild_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install: phony esp-idf/esp_driver_sdm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install/local: phony esp-idf/esp_driver_sdm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install/strip: phony esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2c - - -############################################# -# Order-only phony target for __idf_esp_driver_i2c - -build cmake_object_order_depends_target___idf_esp_driver_i2c: phony || cmake_object_order_depends_target___idf_esp_driver_ledc - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2c - - -############################################# -# Link the static library esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -build esp-idf/esp_driver_i2c/libesp_driver_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj || esp-idf/esp_driver_ledc/libesp_driver_ledc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_i2c/libesp_driver_i2c.a - TARGET_PDB = esp_driver_i2c.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/edit_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/rebuild_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_i2c/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install: phony esp-idf/esp_driver_i2c/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install/local: phony esp-idf/esp_driver_i2c/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install/strip: phony esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ledc - - -############################################# -# Order-only phony target for __idf_esp_driver_ledc - -build cmake_object_order_depends_target___idf_esp_driver_ledc: phony || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - -build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ledc - - -############################################# -# Link the static library esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -build esp-idf/esp_driver_ledc/libesp_driver_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj || esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_ledc/libesp_driver_ledc.a - TARGET_PDB = esp_driver_ledc.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/edit_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/rebuild_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_ledc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install: phony esp-idf/esp_driver_ledc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install/local: phony esp-idf/esp_driver_ledc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install/strip: phony esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/edit_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/rebuild_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_parlio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install: phony esp-idf/esp_driver_parlio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install/local: phony esp-idf/esp_driver_parlio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install/strip: phony esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag - - -############################################# -# Order-only phony target for __idf_esp_driver_usb_serial_jtag - -build cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag: phony || cmake_object_order_depends_target___idf_driver - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag - - -############################################# -# Link the static library esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -build esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj || esp-idf/driver/libdriver.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - TARGET_PDB = esp_driver_usb_serial_jtag.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/edit_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/rebuild_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_usb_serial_jtag/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install/local: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install/strip: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_driver - - -############################################# -# Order-only phony target for __idf_driver - -build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_esp_phy - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/twai - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_driver - - -############################################# -# Link the static library esp-idf/driver/libdriver.a - -build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/esp_phy/libesp_phy.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/driver/libdriver.a - TARGET_PDB = driver.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/driver/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_phy - - -############################################# -# Order-only phony target for __idf_esp_phy - -build cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_esp_vfs_console - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/phy_init_data.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3 - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_phy - - -############################################# -# Link the static library esp-idf/esp_phy/libesp_phy.a - -build esp-idf/esp_phy/libesp_phy.a: C_STATIC_LIBRARY_LINKER____idf_esp_phy_ esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/esp_vfs_console/libesp_vfs_console.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_phy/libesp_phy.a - TARGET_PDB = esp_phy.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_phy/edit_cache: phony esp-idf/esp_phy/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_phy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_phy/rebuild_cache: phony esp-idf/esp_phy/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_phy/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_phy/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_phy/install: phony esp-idf/esp_phy/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_phy/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_phy/install/local: phony esp-idf/esp_phy/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_phy/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_vfs_console - - -############################################# -# Order-only phony target for __idf_esp_vfs_console - -build cmake_object_order_depends_target___idf_esp_vfs_console: phony || cmake_object_order_depends_target___idf_vfs - -build esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj: C_COMPILER____idf_esp_vfs_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/vfs_console.c || cmake_object_order_depends_target___idf_esp_vfs_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir - OBJECT_FILE_DIR = esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_vfs_console - - -############################################# -# Link the static library esp-idf/esp_vfs_console/libesp_vfs_console.a - -build esp-idf/esp_vfs_console/libesp_vfs_console.a: C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_ esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj || esp-idf/vfs/libvfs.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_vfs_console/libesp_vfs_console.a - TARGET_PDB = esp_vfs_console.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/edit_cache: phony esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/rebuild_cache: phony esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_vfs_console/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_vfs_console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install: phony esp-idf/esp_vfs_console/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_vfs_console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install/local: phony esp-idf/esp_vfs_console/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_vfs_console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install/strip: phony esp-idf/esp_vfs_console/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_vfs - - -############################################# -# Order-only phony target for __idf_vfs - -build cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_lwip - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj: C_COMPILER____idf_vfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/vfs/nullfs.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_vfs - - -############################################# -# Link the static library esp-idf/vfs/libvfs.a - -build esp-idf/vfs/libvfs.a: C_STATIC_LIBRARY_LINKER____idf_vfs_ esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj || esp-idf/lwip/liblwip.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/vfs/libvfs.a - TARGET_PDB = vfs.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/vfs/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_lwip - - -############################################# -# Order-only phony target for __idf_lwip - -build cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_esp_netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/acd_dhcp_check.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_lwip - - -############################################# -# Link the static library esp-idf/lwip/liblwip.a - -build esp-idf/lwip/liblwip.a: C_STATIC_LIBRARY_LINKER____idf_lwip_ esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/lwip/liblwip.a - TARGET_PDB = lwip.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/lwip/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/edit_cache: phony esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/rebuild_cache: phony esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_netif_stack/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_netif_stack/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install: phony esp-idf/esp_netif_stack/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_netif_stack/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install/local: phony esp-idf/esp_netif_stack/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_netif_stack/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_netif - - -############################################# -# Order-only phony target for __idf_esp_netif - -build cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_wpa_supplicant - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_netif - - -############################################# -# Link the static library esp-idf/esp_netif/libesp_netif.a - -build esp-idf/esp_netif/libesp_netif.a: C_STATIC_LIBRARY_LINKER____idf_esp_netif_ esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj || esp-idf/wpa_supplicant/libwpa_supplicant.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_netif/libesp_netif.a - TARGET_PDB = esp_netif.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_netif/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_wpa_supplicant - - -############################################# -# Order-only phony target for __idf_wpa_supplicant - -build cmake_object_order_depends_target___idf_wpa_supplicant: phony || cmake_object_order_depends_target___idf_esp_coex - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/dragonfly.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae_pk.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - -build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant - DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.4.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ - DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_wpa_supplicant - - -############################################# -# Link the static library esp-idf/wpa_supplicant/libwpa_supplicant.a - -build esp-idf/wpa_supplicant/libwpa_supplicant.a: C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_ esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj || esp-idf/esp_coex/libesp_coex.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/wpa_supplicant/libwpa_supplicant.a - TARGET_PDB = wpa_supplicant.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/wpa_supplicant/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_coex - - -############################################# -# Order-only phony target for __idf_esp_coex - -build cmake_object_order_depends_target___idf_esp_coex: phony || cmake_object_order_depends_target___idf_esp_wifi - -build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj: C_COMPILER____idf_esp_coex_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist.c || cmake_object_order_depends_target___idf_esp_coex - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - OBJECT_FILE_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src - -build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_coex_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_coex - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - OBJECT_FILE_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src - -build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/esp32c3/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - OBJECT_FILE_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3 - -build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj: C_COMPILER____idf_esp_coex_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c || cmake_object_order_depends_target___idf_esp_coex - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - OBJECT_FILE_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src - -build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj: C_COMPILER____idf_esp_coex_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug.c || cmake_object_order_depends_target___idf_esp_coex - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - OBJECT_FILE_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_coex - - -############################################# -# Link the static library esp-idf/esp_coex/libesp_coex.a - -build esp-idf/esp_coex/libesp_coex.a: C_STATIC_LIBRARY_LINKER____idf_esp_coex_ esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj || esp-idf/esp_wifi/libesp_wifi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_coex/libesp_coex.a - TARGET_PDB = esp_coex.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_coex/edit_cache: phony esp-idf/esp_coex/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_coex/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_coex/rebuild_cache: phony esp-idf/esp_coex/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_coex/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_coex/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_coex/install: phony esp-idf/esp_coex/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_coex/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_coex/install/local: phony esp-idf/esp_coex/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_coex/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_wifi - - -############################################# -# Order-only phony target for __idf_esp_wifi - -build cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_http_parser - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/esp32c3/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3 - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_wifi - - -############################################# -# Link the static library esp-idf/esp_wifi/libesp_wifi.a - -build esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj || esp-idf/http_parser/libhttp_parser.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_wifi/libesp_wifi.a - TARGET_PDB = esp_wifi.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_wifi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_bt - - -############################################# -# Order-only phony target for __idf_bt - -build cmake_object_order_depends_target___idf_bt: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/esp32c3/bt.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3 - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_alarm.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/esp_blufi_api.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/bt_hci_log.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_manage.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_task.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_prf.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_protocol.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/alarm.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/allocator.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/buffer.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/config.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_queue.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/pkt_queue.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_pkt_queue.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/future.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_functions.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_map.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/list.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/mutex.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/thread.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/osi.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/semaphore.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem/bt_osi_mem.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/ble_log_spi_out.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/src/transport.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/src/addr.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_conn.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store_util.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_id.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_svr.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ibeacon.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_alg.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_stop.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ead.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_clt.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_cmd.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_log.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eddystone.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_startup.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gap.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_uuid.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_flow.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_sc.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_misc.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_adv.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eatt.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/nimble_port.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/src/nvs_port.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/endian.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mempool.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/mem.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mbuf.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_msys_init.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src - -build esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj: C_COMPILER____idf_bt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c || cmake_object_order_depends_target___idf_bt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - OBJECT_FILE_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_bt - - -############################################# -# Link the static library esp-idf/bt/libbt.a - -build esp-idf/bt/libbt.a: C_STATIC_LIBRARY_LINKER____idf_bt_ esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/bt/CMakeFiles/__idf_bt.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/bt/libbt.a - TARGET_PDB = bt.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bt/edit_cache: phony esp-idf/bt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bt/rebuild_cache: phony esp-idf/bt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/bt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/bt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/bt/install: phony esp-idf/bt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/bt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/bt/install/local: phony esp-idf/bt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/bt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_unity - - -############################################# -# Order-only phony target for __idf_unity - -build cmake_object_order_depends_target___idf_unity: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_compat.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - -build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_unity - - -############################################# -# Link the static library esp-idf/unity/libunity.a - -build esp-idf/unity/libunity.a: C_STATIC_LIBRARY_LINKER____idf_unity_ esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/unity/libunity.a - TARGET_PDB = unity.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/unity/edit_cache: phony esp-idf/unity/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/unity/rebuild_cache: phony esp-idf/unity/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/unity/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/unity/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/unity/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/unity/install: phony esp-idf/unity/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/unity/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/unity/install/local: phony esp-idf/unity/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/unity/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_cmock - - -############################################# -# Order-only phony target for __idf_cmock - -build cmake_object_order_depends_target___idf_cmock: phony || cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_unity - -build esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER____idf_cmock_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src - OBJECT_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir - OBJECT_FILE_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_cmock - - -############################################# -# Link the static library esp-idf/cmock/libcmock.a - -build esp-idf/cmock/libcmock.a: C_STATIC_LIBRARY_LINKER____idf_cmock_ esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj || esp-idf/riscv/libriscv.a esp-idf/unity/libunity.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/cmock/CMakeFiles/__idf_cmock.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/cmock/libcmock.a - TARGET_PDB = cmock.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/cmock/edit_cache: phony esp-idf/cmock/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/cmock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/cmock/rebuild_cache: phony esp-idf/cmock/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/cmock/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/cmock/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmock/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/cmock/install: phony esp-idf/cmock/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/cmock/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmock/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/cmock/install/local: phony esp-idf/cmock/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/cmock/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmock/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/cmock/install/strip: phony esp-idf/cmock/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_console - - -############################################# -# Order-only phony target for __idf_console - -build cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - -build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_common.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - -build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - -build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise - -build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_repl_chip.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_console - - -############################################# -# Link the static library esp-idf/console/libconsole.a - -build esp-idf/console/libconsole.a: C_STATIC_LIBRARY_LINKER____idf_console_ esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/console/libconsole.a - TARGET_PDB = console.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/console/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_http_parser - - -############################################# -# Order-only phony target for __idf_http_parser - -build cmake_object_order_depends_target___idf_http_parser: phony || cmake_object_order_depends_target___idf_esp-tls - -build esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj: C_COMPILER____idf_http_parser_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir - OBJECT_FILE_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_http_parser - - -############################################# -# Link the static library esp-idf/http_parser/libhttp_parser.a - -build esp-idf/http_parser/libhttp_parser.a: C_STATIC_LIBRARY_LINKER____idf_http_parser_ esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj || esp-idf/esp-tls/libesp-tls.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/http_parser/libhttp_parser.a - TARGET_PDB = http_parser.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/http_parser/edit_cache: phony esp-idf/http_parser/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/http_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/http_parser/rebuild_cache: phony esp-idf/http_parser/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/http_parser/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/http_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/http_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/http_parser/install: phony esp-idf/http_parser/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/http_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/http_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/http_parser/install/local: phony esp-idf/http_parser/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/http_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/http_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/http_parser/install/strip: phony esp-idf/http_parser/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp-tls - - -############################################# -# Order-only phony target for __idf_esp-tls - -build cmake_object_order_depends_target___idf_esp-tls: phony || cmake_object_order_depends_target___idf_esp_adc - -build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - -build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto - -build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - -build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_platform_port.c || cmake_object_order_depends_target___idf_esp-tls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - -build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp-tls - - -############################################# -# Link the static library esp-idf/esp-tls/libesp-tls.a - -build esp-idf/esp-tls/libesp-tls.a: C_STATIC_LIBRARY_LINKER____idf_esp-tls_ esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj || esp-idf/esp_adc/libesp_adc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp-tls/libesp-tls.a - TARGET_PDB = esp-tls.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp-tls/edit_cache: phony esp-idf/esp-tls/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp-tls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp-tls/rebuild_cache: phony esp-idf/esp-tls/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp-tls/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp-tls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp-tls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp-tls/install: phony esp-idf/esp-tls/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp-tls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp-tls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp-tls/install/local: phony esp-idf/esp-tls/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp-tls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp-tls/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_adc - - -############################################# -# Order-only phony target for __idf_esp_adc - -build cmake_object_order_depends_target___idf_esp_adc: phony || cmake_object_order_depends_target___idf_esp_gdbstub - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_monitor.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/gdma/adc_dma.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_filter.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3 - -build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp32c3/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - OBJECT_FILE_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3 - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_adc - - -############################################# -# Link the static library esp-idf/esp_adc/libesp_adc.a - -build esp-idf/esp_adc/libesp_adc.a: C_STATIC_LIBRARY_LINKER____idf_esp_adc_ esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_adc/libesp_adc.a - TARGET_PDB = esp_adc.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_adc/edit_cache: phony esp-idf/esp_adc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_adc/rebuild_cache: phony esp-idf/esp_adc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_adc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_adc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_adc/install: phony esp-idf/esp_adc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_adc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_adc/install/local: phony esp-idf/esp_adc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_adc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_adc/install/strip: phony esp-idf/esp_adc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_isp/edit_cache: phony esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_isp/rebuild_cache: phony esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_isp/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_isp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_isp/install: phony esp-idf/esp_driver_isp/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_isp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_isp/install/local: phony esp-idf/esp_driver_isp/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_isp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_isp/install/strip: phony esp-idf/esp_driver_isp/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_cam - - -############################################# -# Order-only phony target for __idf_esp_driver_cam - -build cmake_object_order_depends_target___idf_esp_driver_cam: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c || cmake_object_order_depends_target___idf_esp_driver_cam - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir - -build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c || cmake_object_order_depends_target___idf_esp_driver_cam - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir - OBJECT_FILE_DIR = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_cam - - -############################################# -# Link the static library esp-idf/esp_driver_cam/libesp_driver_cam.a - -build esp-idf/esp_driver_cam/libesp_driver_cam.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_driver_cam/libesp_driver_cam.a - TARGET_PDB = esp_driver_cam.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_cam/edit_cache: phony esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_cam/rebuild_cache: phony esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_cam/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_cam/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_cam/install: phony esp-idf/esp_driver_cam/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_cam/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_cam/install/local: phony esp-idf/esp_driver_cam/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_cam/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_cam/install/strip: phony esp-idf/esp_driver_cam/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_jpeg/edit_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_jpeg/rebuild_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_jpeg/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_jpeg/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_jpeg/install: phony esp-idf/esp_driver_jpeg/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_jpeg/install/local: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_jpeg/install/strip: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_ppa/edit_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_ppa/rebuild_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_ppa/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_ppa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_ppa/install: phony esp-idf/esp_driver_ppa/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_ppa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_ppa/install/local: phony esp-idf/esp_driver_ppa/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_ppa/install/strip: phony esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_touch_sens/edit_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_touch_sens/rebuild_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_touch_sens/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_touch_sens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_touch_sens/install: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_touch_sens/install/local: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_touch_sens/install/strip: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_eth - - -############################################# -# Order-only phony target for __idf_esp_eth - -build cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir - OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - -build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir - OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy - -build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir - OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_eth - - -############################################# -# Link the static library esp-idf/esp_eth/libesp_eth.a - -build esp-idf/esp_eth/libesp_eth.a: C_STATIC_LIBRARY_LINKER____idf_esp_eth_ esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_eth/libesp_eth.a - TARGET_PDB = esp_eth.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_eth/edit_cache: phony esp-idf/esp_eth/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_eth/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_eth/rebuild_cache: phony esp-idf/esp_eth/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_eth/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_eth/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_eth/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_eth/install: phony esp-idf/esp_eth/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_eth/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_eth/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_eth/install/local: phony esp-idf/esp_eth/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_eth/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_eth/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_gdbstub - - -############################################# -# Order-only phony target for __idf_esp_gdbstub - -build cmake_object_order_depends_target___idf_esp_gdbstub: phony || cmake_object_order_depends_target___idf_tcp_transport - -build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src - -build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src - -build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src - -build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c || cmake_object_order_depends_target___idf_esp_gdbstub - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv - -build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c || cmake_object_order_depends_target___idf_esp_gdbstub - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_gdbstub - - -############################################# -# Link the static library esp-idf/esp_gdbstub/libesp_gdbstub.a - -build esp-idf/esp_gdbstub/libesp_gdbstub.a: C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_ esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj || esp-idf/tcp_transport/libtcp_transport.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_gdbstub/libesp_gdbstub.a - TARGET_PDB = esp_gdbstub.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_gdbstub/edit_cache: phony esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_gdbstub/rebuild_cache: phony esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_gdbstub/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_gdbstub/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_gdbstub/install: phony esp-idf/esp_gdbstub/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_gdbstub/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_gdbstub/install/local: phony esp-idf/esp_gdbstub/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_gdbstub/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_hid - - -############################################# -# Order-only phony target for __idf_esp_hid - -build cmake_object_order_depends_target___idf_esp_hid: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - -build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - -build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - -build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidd.c || cmake_object_order_depends_target___idf_esp_hid - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - -build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj: C_COMPILER____idf_esp_hid_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidh.c || cmake_object_order_depends_target___idf_esp_hid - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - OBJECT_FILE_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_hid - - -############################################# -# Link the static library esp-idf/esp_hid/libesp_hid.a - -build esp-idf/esp_hid/libesp_hid.a: C_STATIC_LIBRARY_LINKER____idf_esp_hid_ esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj || esp-idf/bt/libbt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_hid/libesp_hid.a - TARGET_PDB = esp_hid.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hid/edit_cache: phony esp-idf/esp_hid/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hid/rebuild_cache: phony esp-idf/esp_hid/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hid/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hid/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hid/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hid/install: phony esp-idf/esp_hid/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hid/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hid/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hid/install/local: phony esp-idf/esp_hid/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hid/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hid/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hid/install/strip: phony esp-idf/esp_hid/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_tcp_transport - - -############################################# -# Order-only phony target for __idf_tcp_transport - -build cmake_object_order_depends_target___idf_tcp_transport: phony || cmake_object_order_depends_target___idf_esp_http_client - -build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - -build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - -build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - -build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - -build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_tcp_transport - - -############################################# -# Link the static library esp-idf/tcp_transport/libtcp_transport.a - -build esp-idf/tcp_transport/libtcp_transport.a: C_STATIC_LIBRARY_LINKER____idf_tcp_transport_ esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj || esp-idf/esp_http_client/libesp_http_client.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/tcp_transport/libtcp_transport.a - TARGET_PDB = tcp_transport.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/tcp_transport/edit_cache: phony esp-idf/tcp_transport/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/tcp_transport/rebuild_cache: phony esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/tcp_transport/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/tcp_transport/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcp_transport/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/tcp_transport/install: phony esp-idf/tcp_transport/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/tcp_transport/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcp_transport/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/tcp_transport/install/local: phony esp-idf/tcp_transport/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/tcp_transport/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcp_transport/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_http_client - - -############################################# -# Order-only phony target for __idf_esp_http_client - -build cmake_object_order_depends_target___idf_esp_http_client: phony || cmake_object_order_depends_target___idf_esp_http_server - -build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - -build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - -build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - -build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_http_client - - -############################################# -# Link the static library esp-idf/esp_http_client/libesp_http_client.a - -build esp-idf/esp_http_client/libesp_http_client.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_client_ esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj || esp-idf/esp_http_server/libesp_http_server.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_http_client/libesp_http_client.a - TARGET_PDB = esp_http_client.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_http_client/edit_cache: phony esp-idf/esp_http_client/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_http_client/rebuild_cache: phony esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_http_client/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_http_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_client/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_http_client/install: phony esp-idf/esp_http_client/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_http_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_client/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_http_client/install/local: phony esp-idf/esp_http_client/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_http_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_client/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_http_server - - -############################################# -# Order-only phony target for __idf_esp_http_server - -build cmake_object_order_depends_target___idf_esp_http_server: phony || cmake_object_order_depends_target___idf_esp_https_ota - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src - -build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_http_server - - -############################################# -# Link the static library esp-idf/esp_http_server/libesp_http_server.a - -build esp-idf/esp_http_server/libesp_http_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_server_ esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj || esp-idf/esp_https_ota/libesp_https_ota.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_http_server/libesp_http_server.a - TARGET_PDB = esp_http_server.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_http_server/edit_cache: phony esp-idf/esp_http_server/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_http_server/rebuild_cache: phony esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_http_server/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_http_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_http_server/install: phony esp-idf/esp_http_server/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_http_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_http_server/install/local: phony esp-idf/esp_http_server/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_http_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_https_ota - - -############################################# -# Order-only phony target for __idf_esp_https_ota - -build cmake_object_order_depends_target___idf_esp_https_ota: phony || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle - -build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include - OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir - OBJECT_FILE_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_https_ota - - -############################################# -# Link the static library esp-idf/esp_https_ota/libesp_https_ota.a - -build esp-idf/esp_https_ota/libesp_https_ota.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_ esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_https_ota/libesp_https_ota.a - TARGET_PDB = esp_https_ota.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_https_ota/edit_cache: phony esp-idf/esp_https_ota/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_https_ota/rebuild_cache: phony esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_https_ota/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_https_ota/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_https_ota/install: phony esp-idf/esp_https_ota/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_https_ota/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_https_ota/install/local: phony esp-idf/esp_https_ota/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_https_ota/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_https_server - - -############################################# -# Order-only phony target for __idf_esp_https_server - -build cmake_object_order_depends_target___idf_esp_https_server: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj: C_COMPILER____idf_esp_https_server_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/src/https_server.c || cmake_object_order_depends_target___idf_esp_https_server - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir - OBJECT_FILE_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_https_server - - -############################################# -# Link the static library esp-idf/esp_https_server/libesp_https_server.a - -build esp-idf/esp_https_server/libesp_https_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_server_ esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_https_server/libesp_https_server.a - TARGET_PDB = esp_https_server.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_https_server/edit_cache: phony esp-idf/esp_https_server/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_https_server/rebuild_cache: phony esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_https_server/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_https_server/install: phony esp-idf/esp_https_server/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_https_server/install/local: phony esp-idf/esp_https_server/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_server/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_psram/edit_cache: phony esp-idf/esp_psram/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_psram/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_psram/rebuild_cache: phony esp-idf/esp_psram/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_psram/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_psram/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_psram/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_psram/install: phony esp-idf/esp_psram/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_psram/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_psram/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_psram/install/local: phony esp-idf/esp_psram/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_psram/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_psram/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_psram/install/strip: phony esp-idf/esp_psram/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_lcd - - -############################################# -# Order-only phony target for __idf_esp_lcd - -build cmake_object_order_depends_target___idf_esp_lcd: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c - -build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - OBJECT_FILE_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_lcd - - -############################################# -# Link the static library esp-idf/esp_lcd/libesp_lcd.a - -build esp-idf/esp_lcd/libesp_lcd.a: C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_lcd/libesp_lcd.a - TARGET_PDB = esp_lcd.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_lcd/edit_cache: phony esp-idf/esp_lcd/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_lcd/rebuild_cache: phony esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_lcd/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_lcd/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_lcd/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_lcd/install: phony esp-idf/esp_lcd/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_lcd/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_lcd/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_lcd/install/local: phony esp-idf/esp_lcd/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_lcd/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_lcd/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_lcd/install/strip: phony esp-idf/esp_lcd/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_protobuf-c - - -############################################# -# Order-only phony target for __idf_protobuf-c - -build cmake_object_order_depends_target___idf_protobuf-c: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir - OBJECT_FILE_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_protobuf-c - - -############################################# -# Link the static library esp-idf/protobuf-c/libprotobuf-c.a - -build esp-idf/protobuf-c/libprotobuf-c.a: C_STATIC_LIBRARY_LINKER____idf_protobuf-c_ esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/protobuf-c/libprotobuf-c.a - TARGET_PDB = protobuf-c.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/protobuf-c/edit_cache: phony esp-idf/protobuf-c/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/protobuf-c/rebuild_cache: phony esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/protobuf-c/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/protobuf-c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protobuf-c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/protobuf-c/install: phony esp-idf/protobuf-c/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/protobuf-c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protobuf-c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/protobuf-c/install/local: phony esp-idf/protobuf-c/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/protobuf-c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protobuf-c/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_protocomm - - -############################################# -# Order-only phony target for __idf_protocomm - -build cmake_object_order_depends_target___idf_protocomm: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_riscv - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a - -build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj: C_COMPILER____idf_protocomm_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_nimble.c || cmake_object_order_depends_target___idf_protocomm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_protocomm - - -############################################# -# Link the static library esp-idf/protocomm/libprotocomm.a - -build esp-idf/protocomm/libprotocomm.a: C_STATIC_LIBRARY_LINKER____idf_protocomm_ esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/protocomm/libprotocomm.a - TARGET_PDB = protocomm.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/protocomm/edit_cache: phony esp-idf/protocomm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/protocomm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/protocomm/rebuild_cache: phony esp-idf/protocomm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/protocomm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/protocomm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protocomm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/protocomm/install: phony esp-idf/protocomm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/protocomm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protocomm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/protocomm/install/local: phony esp-idf/protocomm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/protocomm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protocomm/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_local_ctrl - - -############################################# -# Order-only phony target for __idf_esp_local_ctrl - -build cmake_object_order_depends_target___idf_esp_local_ctrl: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_espressif__mdns cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv - -build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - -build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - -build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c - -build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_ble.c || cmake_object_order_depends_target___idf_esp_local_ctrl - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - -build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_local_ctrl - - -############################################# -# Link the static library esp-idf/esp_local_ctrl/libesp_local_ctrl.a - -build esp-idf/esp_local_ctrl/libesp_local_ctrl.a: C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_ esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_local_ctrl/libesp_local_ctrl.a - TARGET_PDB = esp_local_ctrl.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_local_ctrl/edit_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_local_ctrl/rebuild_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_local_ctrl/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_local_ctrl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_local_ctrl/install: phony esp-idf/esp_local_ctrl/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_local_ctrl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_local_ctrl/install/local: phony esp-idf/esp_local_ctrl/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espcoredump - - -############################################# -# Order-only phony target for __idf_espcoredump - -build cmake_object_order_depends_target___idf_espcoredump: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_init.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_sha.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_crc.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src - -build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espcoredump - - -############################################# -# Link the static library esp-idf/espcoredump/libespcoredump.a - -build esp-idf/espcoredump/libespcoredump.a: C_STATIC_LIBRARY_LINKER____idf_espcoredump_ esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espcoredump/libespcoredump.a - TARGET_PDB = espcoredump.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espcoredump/edit_cache: phony esp-idf/espcoredump/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espcoredump/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espcoredump/rebuild_cache: phony esp-idf/espcoredump/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espcoredump/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espcoredump/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espcoredump/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espcoredump/install: phony esp-idf/espcoredump/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espcoredump/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espcoredump/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espcoredump/install/local: phony esp-idf/espcoredump/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espcoredump/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espcoredump/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_wear_levelling - - -############################################# -# Order-only phony target for __idf_wear_levelling - -build cmake_object_order_depends_target___idf_wear_levelling: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - -build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_wear_levelling - - -############################################# -# Link the static library esp-idf/wear_levelling/libwear_levelling.a - -build esp-idf/wear_levelling/libwear_levelling.a: C_STATIC_LIBRARY_LINKER____idf_wear_levelling_ esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/wear_levelling/libwear_levelling.a - TARGET_PDB = wear_levelling.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/wear_levelling/edit_cache: phony esp-idf/wear_levelling/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/wear_levelling/rebuild_cache: phony esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/wear_levelling/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/wear_levelling/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wear_levelling/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/wear_levelling/install: phony esp-idf/wear_levelling/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/wear_levelling/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wear_levelling/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/wear_levelling/install/local: phony esp-idf/wear_levelling/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/wear_levelling/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wear_levelling/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_fatfs - - -############################################# -# Order-only phony target for __idf_fatfs - -build cmake_object_order_depends_target___idf_fatfs: phony || cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_wear_levelling - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - -build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_fatfs - - -############################################# -# Link the static library esp-idf/fatfs/libfatfs.a - -build esp-idf/fatfs/libfatfs.a: C_STATIC_LIBRARY_LINKER____idf_fatfs_ esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj || esp-idf/riscv/libriscv.a esp-idf/wear_levelling/libwear_levelling.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/fatfs/libfatfs.a - TARGET_PDB = fatfs.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/fatfs/edit_cache: phony esp-idf/fatfs/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/fatfs/rebuild_cache: phony esp-idf/fatfs/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/fatfs/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/fatfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fatfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/fatfs/install: phony esp-idf/fatfs/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/fatfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fatfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/fatfs/install/local: phony esp-idf/fatfs/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/fatfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fatfs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/idf_test/edit_cache: phony esp-idf/idf_test/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/idf_test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/idf_test/rebuild_cache: phony esp-idf/idf_test/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/idf_test/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/idf_test/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/idf_test/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/idf_test/install: phony esp-idf/idf_test/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/idf_test/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/idf_test/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/idf_test/install/local: phony esp-idf/idf_test/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/idf_test/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/idf_test/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/ieee802154/edit_cache: phony esp-idf/ieee802154/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/ieee802154/rebuild_cache: phony esp-idf/ieee802154/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/ieee802154/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/ieee802154/install: phony esp-idf/ieee802154/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/ieee802154/install/local: phony esp-idf/ieee802154/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_json - - -############################################# -# Order-only phony target for __idf_json - -build cmake_object_order_depends_target___idf_json: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir - OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON - -build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir - OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_json - - -############################################# -# Link the static library esp-idf/json/libjson.a - -build esp-idf/json/libjson.a: C_STATIC_LIBRARY_LINKER____idf_json_ esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/json/libjson.a - TARGET_PDB = json.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/json/edit_cache: phony esp-idf/json/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/json/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/json/rebuild_cache: phony esp-idf/json/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/json/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/json/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/json/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/json/install: phony esp-idf/json/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/json/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/json/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/json/install/local: phony esp-idf/json/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/json/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/json/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_mqtt - - -############################################# -# Order-only phony target for __idf_mqtt - -build cmake_object_order_depends_target___idf_mqtt: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir - OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt - -build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir - OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - -build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir - OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - -build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser - OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir - OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_mqtt - - -############################################# -# Link the static library esp-idf/mqtt/libmqtt.a - -build esp-idf/mqtt/libmqtt.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_ esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/mqtt/libmqtt.a - TARGET_PDB = mqtt.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mqtt/edit_cache: phony esp-idf/mqtt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mqtt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mqtt/rebuild_cache: phony esp-idf/mqtt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mqtt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mqtt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mqtt/install: phony esp-idf/mqtt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mqtt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mqtt/install/local: phony esp-idf/mqtt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mqtt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_nvs_sec_provider - - -############################################# -# Order-only phony target for __idf_nvs_sec_provider - -build cmake_object_order_depends_target___idf_nvs_sec_provider: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj: C_COMPILER____idf_nvs_sec_provider_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c || cmake_object_order_depends_target___idf_nvs_sec_provider - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir - OBJECT_FILE_DIR = esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_nvs_sec_provider - - -############################################# -# Link the static library esp-idf/nvs_sec_provider/libnvs_sec_provider.a - -build esp-idf/nvs_sec_provider/libnvs_sec_provider.a: C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_ esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/nvs_sec_provider/libnvs_sec_provider.a - TARGET_PDB = nvs_sec_provider.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/nvs_sec_provider/edit_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/nvs_sec_provider/rebuild_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/nvs_sec_provider/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/nvs_sec_provider/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/nvs_sec_provider/install: phony esp-idf/nvs_sec_provider/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/nvs_sec_provider/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/nvs_sec_provider/install/local: phony esp-idf/nvs_sec_provider/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/nvs_sec_provider/install/strip: phony esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/openthread/edit_cache: phony esp-idf/openthread/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/openthread/rebuild_cache: phony esp-idf/openthread/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/openthread/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/openthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/openthread/install: phony esp-idf/openthread/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/openthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/openthread/install/local: phony esp-idf/openthread/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/openthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_rt - - -############################################# -# Order-only phony target for __idf_rt - -build cmake_object_order_depends_target___idf_rt: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj: C_COMPILER____idf_rt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c || cmake_object_order_depends_target___idf_rt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/rt/CMakeFiles/__idf_rt.dir - OBJECT_FILE_DIR = esp-idf/rt/CMakeFiles/__idf_rt.dir - -build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj: C_COMPILER____idf_rt_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c || cmake_object_order_depends_target___idf_rt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/rt/CMakeFiles/__idf_rt.dir - OBJECT_FILE_DIR = esp-idf/rt/CMakeFiles/__idf_rt.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_rt - - -############################################# -# Link the static library esp-idf/rt/librt.a - -build esp-idf/rt/librt.a: C_STATIC_LIBRARY_LINKER____idf_rt_ esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/rt/CMakeFiles/__idf_rt.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/rt/librt.a - TARGET_PDB = rt.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/rt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/rt/edit_cache: phony esp-idf/rt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/rt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/rt/rebuild_cache: phony esp-idf/rt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/rt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/rt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/rt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/rt/install: phony esp-idf/rt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/rt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/rt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/rt/install/local: phony esp-idf/rt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/rt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/rt/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/rt/install/strip: phony esp-idf/rt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_spiffs - - -############################################# -# Order-only phony target for __idf_spiffs - -build cmake_object_order_depends_target___idf_spiffs: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src - -build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_spiffs - - -############################################# -# Link the static library esp-idf/spiffs/libspiffs.a - -build esp-idf/spiffs/libspiffs.a: C_STATIC_LIBRARY_LINKER____idf_spiffs_ esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/spiffs/libspiffs.a - TARGET_PDB = spiffs.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/spiffs/edit_cache: phony esp-idf/spiffs/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/spiffs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/spiffs/rebuild_cache: phony esp-idf/spiffs/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/spiffs/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/spiffs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spiffs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/spiffs/install: phony esp-idf/spiffs/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/spiffs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spiffs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/spiffs/install/local: phony esp-idf/spiffs/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/spiffs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spiffs/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/ulp/edit_cache: phony esp-idf/ulp/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/ulp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/ulp/rebuild_cache: phony esp-idf/ulp/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/ulp/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/ulp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ulp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/ulp/install: phony esp-idf/ulp/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/ulp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ulp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/ulp/install/local: phony esp-idf/ulp/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/ulp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ulp/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/usb/edit_cache: phony esp-idf/usb/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/usb/rebuild_cache: phony esp-idf/usb/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/usb/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/usb/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/usb/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/usb/install: phony esp-idf/usb/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/usb/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/usb/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/usb/install/local: phony esp-idf/usb/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/usb/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/usb/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/usb/install/strip: phony esp-idf/usb/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_wifi_provisioning - - -############################################# -# Order-only phony target for __idf_wifi_provisioning - -build cmake_object_order_depends_target___idf_wifi_provisioning: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - -build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_ble.c || cmake_object_order_depends_target___idf_wifi_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_wifi_provisioning - - -############################################# -# Link the static library esp-idf/wifi_provisioning/libwifi_provisioning.a - -build esp-idf/wifi_provisioning/libwifi_provisioning.a: C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/wifi_provisioning/libwifi_provisioning.a - TARGET_PDB = wifi_provisioning.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/wifi_provisioning/edit_cache: phony esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/wifi_provisioning/rebuild_cache: phony esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/wifi_provisioning/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/wifi_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/wifi_provisioning/install: phony esp-idf/wifi_provisioning/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/wifi_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/wifi_provisioning/install/local: phony esp-idf/wifi_provisioning/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/wifi_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Order-only phony target for __idf_main - -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_app_insights cmake_object_order_depends_target___idf_app_network cmake_object_order_depends_target___idf_app_reset cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_rainmaker cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__cbor cmake_object_order_depends_target___idf_espressif__esp-serial-flasher cmake_object_order_depends_target___idf_espressif__esp_diag_data_store cmake_object_order_depends_target___idf_espressif__esp_diagnostics cmake_object_order_depends_target___idf_espressif__esp_insights cmake_object_order_depends_target___idf_espressif__esp_rcp_update cmake_object_order_depends_target___idf_espressif__esp_schedule cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr cmake_object_order_depends_target___idf_espressif__json_generator cmake_object_order_depends_target___idf_espressif__json_parser cmake_object_order_depends_target___idf_espressif__mdns cmake_object_order_depends_target___idf_espressif__network_provisioning cmake_object_order_depends_target___idf_espressif__qrcode cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_gpio_button cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_ledc_driver cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_nvs_sec_provider cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_rt cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_ws2812_led - -build esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj: C_COMPILER____idf_main_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_driver.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led - OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - -build esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj: C_COMPILER____idf_main_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_main.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led - OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Link the static library esp-idf/main/libmain.a - -build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj || esp-idf/app_insights/libapp_insights.a esp-idf/app_network/libapp_network.a esp-idf/app_reset/libapp_reset.a esp-idf/app_trace/libapp_trace.a esp-idf/bt/libbt.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/fatfs/libfatfs.a esp-idf/gpio_button/libgpio_button.a esp-idf/json/libjson.a esp-idf/ledc_driver/libledc_driver.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/ws2812_led/libws2812_led.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/main/libmain.a - TARGET_PDB = main.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/main/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__rmaker_common - - -############################################# -# Order-only phony target for __idf_espressif__rmaker_common - -build cmake_object_order_depends_target___idf_espressif__rmaker_common: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/work_queue.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/factory.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/time.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/timezone.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/utils.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/cmd_resp.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_common_cmds.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_console.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/esp-mqtt/esp-mqtt-glue.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt - -build esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj: C_COMPILER____idf_espressif__rmaker_common_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/create_APN3_PPI_string.c || cmake_object_order_depends_target___idf_espressif__rmaker_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - OBJECT_FILE_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__rmaker_common - - -############################################# -# Link the static library esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a - -build esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a: C_STATIC_LIBRARY_LINKER____idf_espressif__rmaker_common_ esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj || esp-idf/console/libconsole.a esp-idf/mqtt/libmqtt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a - TARGET_PDB = espressif__rmaker_common.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__rmaker_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__rmaker_common/edit_cache: phony esp-idf/espressif__rmaker_common/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__rmaker_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__rmaker_common/rebuild_cache: phony esp-idf/espressif__rmaker_common/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__rmaker_common/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__rmaker_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__rmaker_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__rmaker_common/install: phony esp-idf/espressif__rmaker_common/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__rmaker_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__rmaker_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__rmaker_common/install/local: phony esp-idf/espressif__rmaker_common/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__rmaker_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__rmaker_common/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__rmaker_common/install/strip: phony esp-idf/espressif__rmaker_common/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_diagnostics - - -############################################# -# Order-only phony target for __idf_espressif__esp_diagnostics - -build cmake_object_order_depends_target___idf_espressif__esp_diagnostics: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_log_hook.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_utils.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_metrics.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_heap_metrics.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_wifi_metrics.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_variables.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj: C_COMPILER____idf_espressif__esp_diagnostics_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_network_variables.c || cmake_object_order_depends_target___idf_espressif__esp_diagnostics - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_diagnostics - - -############################################# -# Link the static library esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a - -build esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_diagnostics_ esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj || esp-idf/console/libconsole.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/mqtt/libmqtt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a - TARGET_PDB = espressif__esp_diagnostics.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diagnostics/edit_cache: phony esp-idf/espressif__esp_diagnostics/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diagnostics/rebuild_cache: phony esp-idf/espressif__esp_diagnostics/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_diagnostics/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_diagnostics/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diagnostics/install: phony esp-idf/espressif__esp_diagnostics/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_diagnostics/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diagnostics/install/local: phony esp-idf/espressif__esp_diagnostics/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_diagnostics/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_diagnostics/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diagnostics/install/strip: phony esp-idf/espressif__esp_diagnostics/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__cbor - - -############################################# -# Order-only phony target for __idf_espressif__cbor - -build cmake_object_order_depends_target___idf_espressif__cbor: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_close_container_checked.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_float.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborerrorstrings.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_dup_string.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_float.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty_stdio.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cbortojson.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborvalidation.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - -build esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj: C_COMPILER____idf_espressif__cbor_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/open_memstream.c || cmake_object_order_depends_target___idf_espressif__cbor - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__linux__ - DEP_FILE = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - OBJECT_FILE_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__cbor - - -############################################# -# Link the static library esp-idf/espressif__cbor/libespressif__cbor.a - -build esp-idf/espressif__cbor/libespressif__cbor.a: C_STATIC_LIBRARY_LINKER____idf_espressif__cbor_ esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__cbor/libespressif__cbor.a - TARGET_PDB = espressif__cbor.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__cbor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__cbor/edit_cache: phony esp-idf/espressif__cbor/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__cbor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__cbor/rebuild_cache: phony esp-idf/espressif__cbor/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__cbor/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__cbor/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__cbor/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__cbor/install: phony esp-idf/espressif__cbor/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__cbor/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__cbor/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__cbor/install/local: phony esp-idf/espressif__cbor/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__cbor/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__cbor/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__cbor/install/strip: phony esp-idf/espressif__cbor/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_diag_data_store - - -############################################# -# Order-only phony target for __idf_espressif__esp_diag_data_store - -build cmake_object_order_depends_target___idf_espressif__esp_diag_data_store: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj: C_COMPILER____idf_espressif__esp_diag_data_store_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/esp_diag_data_store.c || cmake_object_order_depends_target___idf_espressif__esp_diag_data_store - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj: C_COMPILER____idf_espressif__esp_diag_data_store_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store/rtc_store.c || cmake_object_order_depends_target___idf_espressif__esp_diag_data_store - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_diag_data_store - - -############################################# -# Link the static library esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a - -build esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_diag_data_store_ esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a - TARGET_PDB = espressif__esp_diag_data_store.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diag_data_store/edit_cache: phony esp-idf/espressif__esp_diag_data_store/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diag_data_store/rebuild_cache: phony esp-idf/espressif__esp_diag_data_store/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_diag_data_store/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_diag_data_store/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diag_data_store/install: phony esp-idf/espressif__esp_diag_data_store/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_diag_data_store/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diag_data_store/install/local: phony esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_diag_data_store/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_diag_data_store/install/strip: phony esp-idf/espressif__esp_diag_data_store/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_insights - - -############################################# -# Order-only phony target for __idf_espressif__esp_insights - -build cmake_object_order_depends_target___idf_espressif__esp_insights: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__cbor cmake_object_order_depends_target___idf_espressif__esp_diag_data_store cmake_object_order_depends_target___idf_espressif__esp_diagnostics cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_riscv mqtt_server.crt.S - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_transport.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_client_data.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_encoder.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cmd_resp.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_decoder.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_encoder.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj: ASM_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__ - -build esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj: C_COMPILER____idf_espressif__esp_insights_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/transport/esp_insights_mqtt.c || cmake_object_order_depends_target___idf_espressif__esp_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_insights - - -############################################# -# Link the static library esp-idf/espressif__esp_insights/libespressif__esp_insights.a - -build esp-idf/espressif__esp_insights/libespressif__esp_insights.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_insights_ esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj || esp-idf/console/libconsole.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/mqtt/libmqtt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_insights/libespressif__esp_insights.a - TARGET_PDB = espressif__esp_insights.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_insights/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_insights/edit_cache: phony esp-idf/espressif__esp_insights/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_insights/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_insights/rebuild_cache: phony esp-idf/espressif__esp_insights/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_insights/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_insights/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_insights/install: phony esp-idf/espressif__esp_insights/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_insights/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_insights/install/local: phony esp-idf/espressif__esp_insights/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_insights/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_insights/install/strip: phony esp-idf/espressif__esp_insights/CMakeFiles/install/strip.util - - -############################################# -# Custom command for mqtt_server.crt.S - -build mqtt_server.crt.S | ${cmake_ninja_workdir}mqtt_server.crt.S: CUSTOM_COMMAND /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/server_certs/mqtt_server.crt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D DATA_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/server_certs/mqtt_server.crt -D SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S -D FILE_TYPE=TEXT -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake - DESC = Generating ../../mqtt_server.crt.S - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__jsmn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__jsmn/edit_cache: phony esp-idf/espressif__jsmn/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__jsmn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__jsmn/rebuild_cache: phony esp-idf/espressif__jsmn/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__jsmn/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__jsmn/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__jsmn/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__jsmn/install: phony esp-idf/espressif__jsmn/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__jsmn/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__jsmn/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__jsmn/install/local: phony esp-idf/espressif__jsmn/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__jsmn/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__jsmn/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__jsmn/install/strip: phony esp-idf/espressif__jsmn/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__json_parser - - -############################################# -# Order-only phony target for __idf_espressif__json_parser - -build cmake_object_order_depends_target___idf_espressif__json_parser: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj: C_COMPILER____idf_espressif__json_parser_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/src/json_parser.c || cmake_object_order_depends_target___idf_espressif__json_parser - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include - OBJECT_DIR = esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir - OBJECT_FILE_DIR = esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__json_parser - - -############################################# -# Link the static library esp-idf/espressif__json_parser/libespressif__json_parser.a - -build esp-idf/espressif__json_parser/libespressif__json_parser.a: C_STATIC_LIBRARY_LINKER____idf_espressif__json_parser_ esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__json_parser/libespressif__json_parser.a - TARGET_PDB = espressif__json_parser.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__json_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__json_parser/edit_cache: phony esp-idf/espressif__json_parser/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__json_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__json_parser/rebuild_cache: phony esp-idf/espressif__json_parser/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__json_parser/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__json_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__json_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__json_parser/install: phony esp-idf/espressif__json_parser/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__json_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__json_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__json_parser/install/local: phony esp-idf/espressif__json_parser/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__json_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__json_parser/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__json_parser/install/strip: phony esp-idf/espressif__json_parser/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__json_generator - - -############################################# -# Order-only phony target for __idf_espressif__json_generator - -build cmake_object_order_depends_target___idf_espressif__json_generator: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj: C_COMPILER____idf_espressif__json_generator_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/src/json_generator.c || cmake_object_order_depends_target___idf_espressif__json_generator - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir - OBJECT_FILE_DIR = esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__json_generator - - -############################################# -# Link the static library esp-idf/espressif__json_generator/libespressif__json_generator.a - -build esp-idf/espressif__json_generator/libespressif__json_generator.a: C_STATIC_LIBRARY_LINKER____idf_espressif__json_generator_ esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__json_generator/libespressif__json_generator.a - TARGET_PDB = espressif__json_generator.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__json_generator/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__json_generator/edit_cache: phony esp-idf/espressif__json_generator/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__json_generator/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__json_generator/rebuild_cache: phony esp-idf/espressif__json_generator/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__json_generator/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__json_generator/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__json_generator/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__json_generator/install: phony esp-idf/espressif__json_generator/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__json_generator/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__json_generator/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__json_generator/install/local: phony esp-idf/espressif__json_generator/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__json_generator/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__json_generator/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__json_generator/install/strip: phony esp-idf/espressif__json_generator/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__mdns - - -############################################# -# Order-only phony target for __idf_espressif__mdns - -build cmake_object_order_depends_target___idf_espressif__mdns: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj: C_COMPILER____idf_espressif__mdns_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns.c || cmake_object_order_depends_target___idf_espressif__mdns - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - OBJECT_FILE_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - -build esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj: C_COMPILER____idf_espressif__mdns_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_mem_caps.c || cmake_object_order_depends_target___idf_espressif__mdns - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - OBJECT_FILE_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - -build esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj: C_COMPILER____idf_espressif__mdns_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_networking_lwip.c || cmake_object_order_depends_target___idf_espressif__mdns - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - OBJECT_FILE_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - -build esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj: C_COMPILER____idf_espressif__mdns_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_console.c || cmake_object_order_depends_target___idf_espressif__mdns - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - OBJECT_FILE_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__mdns - - -############################################# -# Link the static library esp-idf/espressif__mdns/libespressif__mdns.a - -build esp-idf/espressif__mdns/libespressif__mdns.a: C_STATIC_LIBRARY_LINKER____idf_espressif__mdns_ esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj || esp-idf/console/libconsole.a esp-idf/esp_eth/libesp_eth.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__mdns/libespressif__mdns.a - TARGET_PDB = espressif__mdns.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__mdns/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__mdns/edit_cache: phony esp-idf/espressif__mdns/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__mdns/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__mdns/rebuild_cache: phony esp-idf/espressif__mdns/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__mdns/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__mdns/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__mdns/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__mdns/install: phony esp-idf/espressif__mdns/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__mdns/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__mdns/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__mdns/install/local: phony esp-idf/espressif__mdns/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__mdns/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__mdns/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__mdns/install/strip: phony esp-idf/espressif__mdns/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_schedule - - -############################################# -# Order-only phony target for __idf_espressif__esp_schedule - -build cmake_object_order_depends_target___idf_espressif__esp_schedule: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj: C_COMPILER____idf_espressif__esp_schedule_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule.c || cmake_object_order_depends_target___idf_espressif__esp_schedule - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wno-unused-function -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src - -build esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj: C_COMPILER____idf_espressif__esp_schedule_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule_nvs.c || cmake_object_order_depends_target___idf_espressif__esp_schedule - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -Wno-unused-function -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_schedule - - -############################################# -# Link the static library esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a - -build esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_schedule_ esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj || esp-idf/console/libconsole.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/mqtt/libmqtt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei -Wno-unused-function - OBJECT_DIR = esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a - TARGET_PDB = espressif__esp_schedule.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_schedule/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_schedule/edit_cache: phony esp-idf/espressif__esp_schedule/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_schedule/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_schedule/rebuild_cache: phony esp-idf/espressif__esp_schedule/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_schedule/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_schedule/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_schedule/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_schedule/install: phony esp-idf/espressif__esp_schedule/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_schedule/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_schedule/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_schedule/install/local: phony esp-idf/espressif__esp_schedule/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_schedule/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_schedule/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_schedule/install/strip: phony esp-idf/espressif__esp_schedule/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__network_provisioning - - -############################################# -# Order-only phony target for __idf_espressif__network_provisioning - -build cmake_object_order_depends_target___idf_espressif__network_provisioning: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_config.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_scan.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_ctrl.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/manager.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_config.pb-c.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_scan.pb-c.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_ctrl.pb-c.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_constants.pb-c.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - -build esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj: C_COMPILER____idf_espressif__network_provisioning_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_ble.c || cmake_object_order_depends_target___idf_espressif__network_provisioning - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - OBJECT_FILE_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__network_provisioning - - -############################################# -# Link the static library esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a - -build esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a: C_STATIC_LIBRARY_LINKER____idf_espressif__network_provisioning_ esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a - TARGET_PDB = espressif__network_provisioning.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__network_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__network_provisioning/edit_cache: phony esp-idf/espressif__network_provisioning/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__network_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__network_provisioning/rebuild_cache: phony esp-idf/espressif__network_provisioning/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__network_provisioning/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__network_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__network_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__network_provisioning/install: phony esp-idf/espressif__network_provisioning/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__network_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__network_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__network_provisioning/install/local: phony esp-idf/espressif__network_provisioning/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__network_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__network_provisioning/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__network_provisioning/install/strip: phony esp-idf/espressif__network_provisioning/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp-serial-flasher - - -############################################# -# Order-only phony target for __idf_espressif__esp-serial-flasher - -build cmake_object_order_depends_target___idf_espressif__esp-serial-flasher: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/md5_hash.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_loader.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_targets.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_stubs.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_serial.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_uart.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/slip.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj: C_COMPILER____idf_espressif__esp-serial-flasher_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port/esp32_port.c || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp-serial-flasher - - -############################################# -# Link the static library esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a - -build esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp-serial-flasher_ esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a - TARGET_PDB = espressif__esp-serial-flasher.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp-serial-flasher/edit_cache: phony esp-idf/espressif__esp-serial-flasher/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp-serial-flasher/rebuild_cache: phony esp-idf/espressif__esp-serial-flasher/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp-serial-flasher/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp-serial-flasher/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp-serial-flasher/install: phony esp-idf/espressif__esp-serial-flasher/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp-serial-flasher/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp-serial-flasher/install/local: phony esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp-serial-flasher/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp-serial-flasher/install/strip: phony esp-idf/espressif__esp-serial-flasher/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_rcp_update - - -############################################# -# Order-only phony target for __idf_espressif__esp_rcp_update - -build cmake_object_order_depends_target___idf_espressif__esp_rcp_update: phony || cmake_object_order_depends_target___idf_espressif__esp-serial-flasher cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj: C_COMPILER____idf_espressif__esp_rcp_update_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_ota.c || cmake_object_order_depends_target___idf_espressif__esp_rcp_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include - OBJECT_DIR = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj: C_COMPILER____idf_espressif__esp_rcp_update_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_update.c || cmake_object_order_depends_target___idf_espressif__esp_rcp_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include - OBJECT_DIR = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_rcp_update - - -############################################# -# Link the static library esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a - -build esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_rcp_update_ esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj || esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a - TARGET_PDB = espressif__esp_rcp_update.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_rcp_update/edit_cache: phony esp-idf/espressif__esp_rcp_update/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_rcp_update/rebuild_cache: phony esp-idf/espressif__esp_rcp_update/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_rcp_update/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_rcp_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_rcp_update/install: phony esp-idf/espressif__esp_rcp_update/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_rcp_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_rcp_update/install/local: phony esp-idf/espressif__esp_rcp_update/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_rcp_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_rcp_update/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_rcp_update/install/strip: phony esp-idf/espressif__esp_rcp_update/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__esp_secure_cert_mgr - - -############################################# -# Order-only phony target for __idf_espressif__esp_secure_cert_mgr - -build cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj: C_COMPILER____idf_espressif__esp_secure_cert_mgr_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_tlv_read.c || cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include - OBJECT_DIR = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj: C_COMPILER____idf_espressif__esp_secure_cert_mgr_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_crypto.c || cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include - OBJECT_DIR = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir - OBJECT_FILE_DIR = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__esp_secure_cert_mgr - - -############################################# -# Link the static library esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a - -build esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp_secure_cert_mgr_ esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a - TARGET_PDB = espressif__esp_secure_cert_mgr.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__esp_secure_cert_mgr/edit_cache: phony esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__esp_secure_cert_mgr/rebuild_cache: phony esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__esp_secure_cert_mgr/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp_secure_cert_mgr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__esp_secure_cert_mgr/install: phony esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp_secure_cert_mgr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__esp_secure_cert_mgr/install/local: phony esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp_secure_cert_mgr/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__esp_secure_cert_mgr/install/strip: phony esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_rainmaker - - -############################################# -# Order-only phony target for __idf_esp_rainmaker - -build cmake_object_order_depends_target___idf_esp_rainmaker: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espressif__esp-serial-flasher cmake_object_order_depends_target___idf_espressif__esp_rcp_update cmake_object_order_depends_target___idf_espressif__esp_schedule cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr cmake_object_order_depends_target___idf_espressif__json_generator cmake_object_order_depends_target___idf_espressif__json_parser cmake_object_order_depends_target___idf_espressif__mdns cmake_object_order_depends_target___idf_espressif__network_provisioning cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_wifi_provisioning rmaker_claim_service_server.crt.S rmaker_mqtt_server.crt.S rmaker_ota_server.crt.S - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_core.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_device.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_param.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_config.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_client_data.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_time_service.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_system_service.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.pb-c.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_auth.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_schedule.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_scenes.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_cmd_resp_manager.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_secure_boot_digest.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_claim.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_local_ctrl.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt_budget.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_params.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_topics.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_params.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_devices.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_services.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_console.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj: C_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_commands.c || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj: ASM_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__ - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj: ASM_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__ - -build esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj: ASM_COMPILER____idf_esp_rainmaker_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S || cmake_object_order_depends_target___idf_esp_rainmaker - DEFINES = -DESP_MDNS_VERSION_NUMBER=\"1.8.2\" -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj.d - FLAGS = -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - OBJECT_FILE_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__ - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_rainmaker - - -############################################# -# Link the static library esp-idf/esp_rainmaker/libesp_rainmaker.a - -build esp-idf/esp_rainmaker/libesp_rainmaker.a: C_STATIC_LIBRARY_LINKER____idf_esp_rainmaker_ esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/wifi_provisioning/libwifi_provisioning.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/esp_rainmaker/libesp_rainmaker.a - TARGET_PDB = esp_rainmaker.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_rainmaker/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_rainmaker/edit_cache: phony esp-idf/esp_rainmaker/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_rainmaker/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_rainmaker/rebuild_cache: phony esp-idf/esp_rainmaker/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_rainmaker/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_rainmaker/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rainmaker/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_rainmaker/install: phony esp-idf/esp_rainmaker/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_rainmaker/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rainmaker/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_rainmaker/install/local: phony esp-idf/esp_rainmaker/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_rainmaker/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rainmaker/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_rainmaker/install/strip: phony esp-idf/esp_rainmaker/CMakeFiles/install/strip.util - - -############################################# -# Custom command for rmaker_mqtt_server.crt.S - -build rmaker_mqtt_server.crt.S | ${cmake_ninja_workdir}rmaker_mqtt_server.crt.S: CUSTOM_COMMAND /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_mqtt_server.crt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D DATA_FILE=/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_mqtt_server.crt -D SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S -D FILE_TYPE=TEXT -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake - DESC = Generating ../../rmaker_mqtt_server.crt.S - restat = 1 - - -############################################# -# Custom command for rmaker_claim_service_server.crt.S - -build rmaker_claim_service_server.crt.S | ${cmake_ninja_workdir}rmaker_claim_service_server.crt.S: CUSTOM_COMMAND /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_claim_service_server.crt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D DATA_FILE=/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_claim_service_server.crt -D SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S -D FILE_TYPE=TEXT -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake - DESC = Generating ../../rmaker_claim_service_server.crt.S - restat = 1 - - -############################################# -# Custom command for rmaker_ota_server.crt.S - -build rmaker_ota_server.crt.S | ${cmake_ninja_workdir}rmaker_ota_server.crt.S: CUSTOM_COMMAND /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_ota_server.crt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -D DATA_FILE=/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_ota_server.crt -D SOURCE_FILE=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S -D FILE_TYPE=TEXT -P /home/alex/esp/v5.4.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake - DESC = Generating ../../rmaker_ota_server.crt.S - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_insights - - -############################################# -# Order-only phony target for __idf_app_insights - -build cmake_object_order_depends_target___idf_app_insights: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_rainmaker cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__cbor cmake_object_order_depends_target___idf_espressif__esp-serial-flasher cmake_object_order_depends_target___idf_espressif__esp_diag_data_store cmake_object_order_depends_target___idf_espressif__esp_diagnostics cmake_object_order_depends_target___idf_espressif__esp_insights cmake_object_order_depends_target___idf_espressif__esp_rcp_update cmake_object_order_depends_target___idf_espressif__esp_schedule cmake_object_order_depends_target___idf_espressif__esp_secure_cert_mgr cmake_object_order_depends_target___idf_espressif__json_generator cmake_object_order_depends_target___idf_espressif__json_parser cmake_object_order_depends_target___idf_espressif__mdns cmake_object_order_depends_target___idf_espressif__network_provisioning cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_wifi_provisioning - -build esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj: C_COMPILER____idf_app_insights_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/app_insights.c || cmake_object_order_depends_target___idf_app_insights - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir - OBJECT_FILE_DIR = esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_insights - - -############################################# -# Link the static library esp-idf/app_insights/libapp_insights.a - -build esp-idf/app_insights/libapp_insights.a: C_STATIC_LIBRARY_LINKER____idf_app_insights_ esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_rainmaker/libesp_rainmaker.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__cbor/libespressif__cbor.a esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a esp-idf/espressif__esp_insights/libespressif__esp_insights.a esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a esp-idf/espressif__json_generator/libespressif__json_generator.a esp-idf/espressif__json_parser/libespressif__json_parser.a esp-idf/espressif__mdns/libespressif__mdns.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/wifi_provisioning/libwifi_provisioning.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/app_insights/libapp_insights.a - TARGET_PDB = app_insights.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_insights/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_insights/edit_cache: phony esp-idf/app_insights/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_insights/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_insights/rebuild_cache: phony esp-idf/app_insights/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_insights/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_insights/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_insights/install: phony esp-idf/app_insights/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_insights/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_insights/install/local: phony esp-idf/app_insights/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_insights/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_insights/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_insights/install/strip: phony esp-idf/app_insights/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_espressif__qrcode - - -############################################# -# Order-only phony target for __idf_espressif__qrcode - -build cmake_object_order_depends_target___idf_espressif__qrcode: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj: C_COMPILER____idf_espressif__qrcode_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_main.c || cmake_object_order_depends_target___idf_espressif__qrcode - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - OBJECT_FILE_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - -build esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj: C_COMPILER____idf_espressif__qrcode_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_wrapper.c || cmake_object_order_depends_target___idf_espressif__qrcode - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - OBJECT_FILE_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - -build esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj: C_COMPILER____idf_espressif__qrcode_unscanned_ /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/qrcodegen.c || cmake_object_order_depends_target___idf_espressif__qrcode - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - OBJECT_FILE_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_espressif__qrcode - - -############################################# -# Link the static library esp-idf/espressif__qrcode/libespressif__qrcode.a - -build esp-idf/espressif__qrcode/libespressif__qrcode.a: C_STATIC_LIBRARY_LINKER____idf_espressif__qrcode_ esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/espressif__qrcode/libespressif__qrcode.a - TARGET_PDB = espressif__qrcode.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/espressif__qrcode/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/espressif__qrcode/edit_cache: phony esp-idf/espressif__qrcode/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/espressif__qrcode/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/espressif__qrcode/rebuild_cache: phony esp-idf/espressif__qrcode/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/espressif__qrcode/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/espressif__qrcode/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__qrcode/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/espressif__qrcode/install: phony esp-idf/espressif__qrcode/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/espressif__qrcode/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__qrcode/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/espressif__qrcode/install/local: phony esp-idf/espressif__qrcode/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/espressif__qrcode/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__qrcode/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/espressif__qrcode/install/strip: phony esp-idf/espressif__qrcode/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_network - - -############################################# -# Order-only phony target for __idf_app_network - -build cmake_object_order_depends_target___idf_app_network: phony || cmake_object_order_depends_target___idf_bt cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_espressif__network_provisioning cmake_object_order_depends_target___idf_espressif__qrcode cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_riscv cmake_object_order_depends_target___idf_wifi_provisioning - -build esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj: C_COMPILER____idf_app_network_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_wifi_internal.c || cmake_object_order_depends_target___idf_app_network - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - OBJECT_FILE_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - -build esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj: C_COMPILER____idf_app_network_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_network.c || cmake_object_order_depends_target___idf_app_network - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - OBJECT_FILE_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - -build esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj: C_COMPILER____idf_app_network_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_thread_internal.c || cmake_object_order_depends_target___idf_app_network - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - OBJECT_FILE_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_network - - -############################################# -# Link the static library esp-idf/app_network/libapp_network.a - -build esp-idf/app_network/libapp_network.a: C_STATIC_LIBRARY_LINKER____idf_app_network_ esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj || esp-idf/bt/libbt.a esp-idf/console/libconsole.a esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a esp-idf/espressif__qrcode/libespressif__qrcode.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/riscv/libriscv.a esp-idf/wifi_provisioning/libwifi_provisioning.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/app_network/CMakeFiles/__idf_app_network.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/app_network/libapp_network.a - TARGET_PDB = app_network.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_network/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_network/edit_cache: phony esp-idf/app_network/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_network/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_network/rebuild_cache: phony esp-idf/app_network/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_network/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_network/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_network/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_network/install: phony esp-idf/app_network/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_network/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_network/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_network/install/local: phony esp-idf/app_network/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_network/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_network/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_network/install/strip: phony esp-idf/app_network/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_gpio_button - - -############################################# -# Order-only phony target for __idf_gpio_button - -build cmake_object_order_depends_target___idf_gpio_button: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj: C_COMPILER____idf_gpio_button_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button.c || cmake_object_order_depends_target___idf_gpio_button - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir - OBJECT_FILE_DIR = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button - -build esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj: CXX_COMPILER____idf_gpio_button_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button_obj.cpp || cmake_object_order_depends_target___idf_gpio_button - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir - OBJECT_FILE_DIR = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_gpio_button - - -############################################# -# Link the static library esp-idf/gpio_button/libgpio_button.a - -build esp-idf/gpio_button/libgpio_button.a: C_STATIC_LIBRARY_LINKER____idf_gpio_button_ esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/gpio_button/libgpio_button.a - TARGET_PDB = gpio_button.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/gpio_button/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/gpio_button/edit_cache: phony esp-idf/gpio_button/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/gpio_button/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/gpio_button/rebuild_cache: phony esp-idf/gpio_button/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/gpio_button/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/gpio_button/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/gpio_button/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/gpio_button/install: phony esp-idf/gpio_button/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/gpio_button/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/gpio_button/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/gpio_button/install/local: phony esp-idf/gpio_button/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/gpio_button/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/gpio_button/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/gpio_button/install/strip: phony esp-idf/gpio_button/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_reset - - -############################################# -# Order-only phony target for __idf_app_reset - -build cmake_object_order_depends_target___idf_app_reset: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_espressif__rmaker_common cmake_object_order_depends_target___idf_gpio_button cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_riscv - -build esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj: C_COMPILER____idf_app_reset_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/app_reset/app_reset.c || cmake_object_order_depends_target___idf_app_reset - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir - OBJECT_FILE_DIR = esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_reset - - -############################################# -# Link the static library esp-idf/app_reset/libapp_reset.a - -build esp-idf/app_reset/libapp_reset.a: C_STATIC_LIBRARY_LINKER____idf_app_reset_ esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj || esp-idf/console/libconsole.a esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a esp-idf/gpio_button/libgpio_button.a esp-idf/mqtt/libmqtt.a esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/app_reset/libapp_reset.a - TARGET_PDB = app_reset.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_reset/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_reset/edit_cache: phony esp-idf/app_reset/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_reset/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_reset/rebuild_cache: phony esp-idf/app_reset/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_reset/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_reset/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_reset/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_reset/install: phony esp-idf/app_reset/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_reset/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_reset/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_reset/install/local: phony esp-idf/app_reset/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_reset/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_reset/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_reset/install/strip: phony esp-idf/app_reset/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_ledc_driver - - -############################################# -# Order-only phony target for __idf_ledc_driver - -build cmake_object_order_depends_target___idf_ledc_driver: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj: C_COMPILER____idf_ledc_driver_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/ledc_driver.c || cmake_object_order_depends_target___idf_ledc_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir - OBJECT_FILE_DIR = esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_ledc_driver - - -############################################# -# Link the static library esp-idf/ledc_driver/libledc_driver.a - -build esp-idf/ledc_driver/libledc_driver.a: C_STATIC_LIBRARY_LINKER____idf_ledc_driver_ esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/ledc_driver/libledc_driver.a - TARGET_PDB = ledc_driver.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/ledc_driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/ledc_driver/edit_cache: phony esp-idf/ledc_driver/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/ledc_driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/ledc_driver/rebuild_cache: phony esp-idf/ledc_driver/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/ledc_driver/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/ledc_driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ledc_driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/ledc_driver/install: phony esp-idf/ledc_driver/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/ledc_driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ledc_driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/ledc_driver/install/local: phony esp-idf/ledc_driver/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/ledc_driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ledc_driver/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/ledc_driver/install/strip: phony esp-idf/ledc_driver/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_ws2812_led - - -############################################# -# Order-only phony target for __idf_ws2812_led - -build cmake_object_order_depends_target___idf_ws2812_led: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj: C_COMPILER____idf_ws2812_led_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/ws2812_led.c || cmake_object_order_depends_target___idf_ws2812_led - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir - OBJECT_FILE_DIR = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir - -build esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj: C_COMPILER____idf_ws2812_led_unscanned_ /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/led_strip_rmt_ws2812.c || cmake_object_order_depends_target___idf_ws2812_led - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.4.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj.d - FLAGS = -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir - OBJECT_FILE_DIR = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_ws2812_led - - -############################################# -# Link the static library esp-idf/ws2812_led/libws2812_led.a - -build esp-idf/ws2812_led/libws2812_led.a: C_STATIC_LIBRARY_LINKER____idf_ws2812_led_ esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imc_zicsr_zifencei - OBJECT_DIR = esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir - POST_BUILD = : - PRE_LINK = : - TARGET_FILE = esp-idf/ws2812_led/libws2812_led.a - TARGET_PDB = ws2812_led.a.dbg - - -############################################# -# Utility command for edit_cache - -build esp-idf/ws2812_led/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led && /home/alex/.espressif/tools/cmake/3.30.2/bin/ccmake -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/ws2812_led/edit_cache: phony esp-idf/ws2812_led/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/ws2812_led/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake --regenerate-during-build -S/home/alex/github/ESP-Nodes/RainMaker_Table-Lights -B/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/ws2812_led/rebuild_cache: phony esp-idf/ws2812_led/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/ws2812_led/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/ws2812_led/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ws2812_led/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/ws2812_led/install: phony esp-idf/ws2812_led/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/ws2812_led/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ws2812_led/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/ws2812_led/install/local: phony esp-idf/ws2812_led/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/ws2812_led/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ws2812_led/all - COMMAND = cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led && /home/alex/.espressif/tools/cmake/3.30.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/ws2812_led/install/strip: phony esp-idf/ws2812_led/CMakeFiles/install/strip.util - -# ============================================================================= -# Target aliases. - -build __idf_app_insights: phony esp-idf/app_insights/libapp_insights.a - -build __idf_app_network: phony esp-idf/app_network/libapp_network.a - -build __idf_app_reset: phony esp-idf/app_reset/libapp_reset.a - -build __idf_app_trace: phony esp-idf/app_trace/libapp_trace.a - -build __idf_app_update: phony esp-idf/app_update/libapp_update.a - -build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a - -build __idf_bt: phony esp-idf/bt/libbt.a - -build __idf_cmock: phony esp-idf/cmock/libcmock.a - -build __idf_console: phony esp-idf/console/libconsole.a - -build __idf_cxx: phony esp-idf/cxx/libcxx.a - -build __idf_driver: phony esp-idf/driver/libdriver.a - -build __idf_efuse: phony esp-idf/efuse/libefuse.a - -build __idf_esp-tls: phony esp-idf/esp-tls/libesp-tls.a - -build __idf_esp_adc: phony esp-idf/esp_adc/libesp_adc.a - -build __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a - -build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build __idf_esp_coex: phony esp-idf/esp_coex/libesp_coex.a - -build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a - -build __idf_esp_driver_cam: phony esp-idf/esp_driver_cam/libesp_driver_cam.a - -build __idf_esp_driver_gpio: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -build __idf_esp_driver_gptimer: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -build __idf_esp_driver_i2c: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -build __idf_esp_driver_i2s: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -build __idf_esp_driver_ledc: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -build __idf_esp_driver_rmt: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -build __idf_esp_driver_sdm: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -build __idf_esp_driver_sdspi: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -build __idf_esp_driver_spi: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -build __idf_esp_driver_tsens: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -build __idf_esp_driver_uart: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -build __idf_esp_driver_usb_serial_jtag: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -build __idf_esp_eth: phony esp-idf/esp_eth/libesp_eth.a - -build __idf_esp_event: phony esp-idf/esp_event/libesp_event.a - -build __idf_esp_gdbstub: phony esp-idf/esp_gdbstub/libesp_gdbstub.a - -build __idf_esp_hid: phony esp-idf/esp_hid/libesp_hid.a - -build __idf_esp_http_client: phony esp-idf/esp_http_client/libesp_http_client.a - -build __idf_esp_http_server: phony esp-idf/esp_http_server/libesp_http_server.a - -build __idf_esp_https_ota: phony esp-idf/esp_https_ota/libesp_https_ota.a - -build __idf_esp_https_server: phony esp-idf/esp_https_server/libesp_https_server.a - -build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build __idf_esp_lcd: phony esp-idf/esp_lcd/libesp_lcd.a - -build __idf_esp_local_ctrl: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a - -build __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a - -build __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a - -build __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a - -build __idf_esp_phy: phony esp-idf/esp_phy/libesp_phy.a - -build __idf_esp_pm: phony esp-idf/esp_pm/libesp_pm.a - -build __idf_esp_rainmaker: phony esp-idf/esp_rainmaker/libesp_rainmaker.a - -build __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a - -build __idf_esp_security: phony esp-idf/esp_security/libesp_security.a - -build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a - -build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a - -build __idf_esp_vfs_console: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a - -build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a - -build __idf_espressif__cbor: phony esp-idf/espressif__cbor/libespressif__cbor.a - -build __idf_espressif__esp-serial-flasher: phony esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a - -build __idf_espressif__esp_diag_data_store: phony esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a - -build __idf_espressif__esp_diagnostics: phony esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a - -build __idf_espressif__esp_insights: phony esp-idf/espressif__esp_insights/libespressif__esp_insights.a - -build __idf_espressif__esp_rcp_update: phony esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a - -build __idf_espressif__esp_schedule: phony esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a - -build __idf_espressif__esp_secure_cert_mgr: phony esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a - -build __idf_espressif__json_generator: phony esp-idf/espressif__json_generator/libespressif__json_generator.a - -build __idf_espressif__json_parser: phony esp-idf/espressif__json_parser/libespressif__json_parser.a - -build __idf_espressif__mdns: phony esp-idf/espressif__mdns/libespressif__mdns.a - -build __idf_espressif__network_provisioning: phony esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a - -build __idf_espressif__qrcode: phony esp-idf/espressif__qrcode/libespressif__qrcode.a - -build __idf_espressif__rmaker_common: phony esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a - -build __idf_fatfs: phony esp-idf/fatfs/libfatfs.a - -build __idf_freertos: phony esp-idf/freertos/libfreertos.a - -build __idf_gpio_button: phony esp-idf/gpio_button/libgpio_button.a - -build __idf_hal: phony esp-idf/hal/libhal.a - -build __idf_heap: phony esp-idf/heap/libheap.a - -build __idf_http_parser: phony esp-idf/http_parser/libhttp_parser.a - -build __idf_json: phony esp-idf/json/libjson.a - -build __idf_ledc_driver: phony esp-idf/ledc_driver/libledc_driver.a - -build __idf_log: phony esp-idf/log/liblog.a - -build __idf_lwip: phony esp-idf/lwip/liblwip.a - -build __idf_main: phony esp-idf/main/libmain.a - -build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a - -build __idf_mqtt: phony esp-idf/mqtt/libmqtt.a - -build __idf_newlib: phony esp-idf/newlib/libnewlib.a - -build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a - -build __idf_nvs_sec_provider: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a - -build __idf_protobuf-c: phony esp-idf/protobuf-c/libprotobuf-c.a - -build __idf_protocomm: phony esp-idf/protocomm/libprotocomm.a - -build __idf_pthread: phony esp-idf/pthread/libpthread.a - -build __idf_riscv: phony esp-idf/riscv/libriscv.a - -build __idf_rt: phony esp-idf/rt/librt.a - -build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a - -build __idf_soc: phony esp-idf/soc/libsoc.a - -build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a - -build __idf_spiffs: phony esp-idf/spiffs/libspiffs.a - -build __idf_tcp_transport: phony esp-idf/tcp_transport/libtcp_transport.a - -build __idf_unity: phony esp-idf/unity/libunity.a - -build __idf_vfs: phony esp-idf/vfs/libvfs.a - -build __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a - -build __idf_wifi_provisioning: phony esp-idf/wifi_provisioning/libwifi_provisioning.a - -build __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a - -build __idf_ws2812_led: phony esp-idf/ws2812_led/libws2812_led.a - -build __ldgen_output_sections.ld: phony esp-idf/esp_system/__ldgen_output_sections.ld - -build apidoc: phony esp-idf/mbedtls/mbedtls/apidoc - -build app-flash: phony esp-idf/esptool_py/app-flash - -build app_check_size: phony esp-idf/esptool_py/app_check_size - -build blank_ota_data: phony esp-idf/app_update/blank_ota_data - -build bootloader-flash: phony esp-idf/bootloader/bootloader-flash - -build custom_bundle: phony esp-idf/mbedtls/custom_bundle - -build efuse-common-table: phony esp-idf/efuse/efuse-common-table - -build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table - -build efuse_common_table: phony esp-idf/efuse/efuse_common_table - -build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table - -build efuse_test_table: phony esp-idf/efuse/efuse_test_table - -build encrypted-app-flash: phony esp-idf/esptool_py/encrypted-app-flash - -build encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash - -build encrypted-otadata-flash: phony esp-idf/app_update/encrypted-otadata-flash - -build encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash - -build erase-otadata: phony esp-idf/app_update/erase-otadata - -build erase_otadata: phony esp-idf/app_update/erase_otadata - -build everest: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -build lib: phony esp-idf/mbedtls/mbedtls/library/lib - -build libapp_insights.a: phony esp-idf/app_insights/libapp_insights.a - -build libapp_network.a: phony esp-idf/app_network/libapp_network.a - -build libapp_reset.a: phony esp-idf/app_reset/libapp_reset.a - -build libapp_trace.a: phony esp-idf/app_trace/libapp_trace.a - -build libapp_update.a: phony esp-idf/app_update/libapp_update.a - -build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a - -build libbt.a: phony esp-idf/bt/libbt.a - -build libcmock.a: phony esp-idf/cmock/libcmock.a - -build libconsole.a: phony esp-idf/console/libconsole.a - -build libcxx.a: phony esp-idf/cxx/libcxx.a - -build libdriver.a: phony esp-idf/driver/libdriver.a - -build libefuse.a: phony esp-idf/efuse/libefuse.a - -build libesp-tls.a: phony esp-idf/esp-tls/libesp-tls.a - -build libesp_adc.a: phony esp-idf/esp_adc/libesp_adc.a - -build libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a - -build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build libesp_coex.a: phony esp-idf/esp_coex/libesp_coex.a - -build libesp_common.a: phony esp-idf/esp_common/libesp_common.a - -build libesp_driver_cam.a: phony esp-idf/esp_driver_cam/libesp_driver_cam.a - -build libesp_driver_gpio.a: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -build libesp_driver_gptimer.a: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -build libesp_driver_i2c.a: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -build libesp_driver_i2s.a: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -build libesp_driver_ledc.a: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -build libesp_driver_rmt.a: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -build libesp_driver_sdm.a: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -build libesp_driver_sdspi.a: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -build libesp_driver_spi.a: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -build libesp_driver_tsens.a: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -build libesp_driver_uart.a: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -build libesp_driver_usb_serial_jtag.a: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -build libesp_eth.a: phony esp-idf/esp_eth/libesp_eth.a - -build libesp_event.a: phony esp-idf/esp_event/libesp_event.a - -build libesp_gdbstub.a: phony esp-idf/esp_gdbstub/libesp_gdbstub.a - -build libesp_hid.a: phony esp-idf/esp_hid/libesp_hid.a - -build libesp_http_client.a: phony esp-idf/esp_http_client/libesp_http_client.a - -build libesp_http_server.a: phony esp-idf/esp_http_server/libesp_http_server.a - -build libesp_https_ota.a: phony esp-idf/esp_https_ota/libesp_https_ota.a - -build libesp_https_server.a: phony esp-idf/esp_https_server/libesp_https_server.a - -build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build libesp_lcd.a: phony esp-idf/esp_lcd/libesp_lcd.a - -build libesp_local_ctrl.a: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a - -build libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a - -build libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a - -build libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a - -build libesp_phy.a: phony esp-idf/esp_phy/libesp_phy.a - -build libesp_pm.a: phony esp-idf/esp_pm/libesp_pm.a - -build libesp_rainmaker.a: phony esp-idf/esp_rainmaker/libesp_rainmaker.a - -build libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a - -build libesp_security.a: phony esp-idf/esp_security/libesp_security.a - -build libesp_system.a: phony esp-idf/esp_system/libesp_system.a - -build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a - -build libesp_vfs_console.a: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a - -build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a - -build libespressif__cbor.a: phony esp-idf/espressif__cbor/libespressif__cbor.a - -build libespressif__esp-serial-flasher.a: phony esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a - -build libespressif__esp_diag_data_store.a: phony esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a - -build libespressif__esp_diagnostics.a: phony esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a - -build libespressif__esp_insights.a: phony esp-idf/espressif__esp_insights/libespressif__esp_insights.a - -build libespressif__esp_rcp_update.a: phony esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a - -build libespressif__esp_schedule.a: phony esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a - -build libespressif__esp_secure_cert_mgr.a: phony esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a - -build libespressif__json_generator.a: phony esp-idf/espressif__json_generator/libespressif__json_generator.a - -build libespressif__json_parser.a: phony esp-idf/espressif__json_parser/libespressif__json_parser.a - -build libespressif__mdns.a: phony esp-idf/espressif__mdns/libespressif__mdns.a - -build libespressif__network_provisioning.a: phony esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a - -build libespressif__qrcode.a: phony esp-idf/espressif__qrcode/libespressif__qrcode.a - -build libespressif__rmaker_common.a: phony esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a - -build libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -build libfatfs.a: phony esp-idf/fatfs/libfatfs.a - -build libfreertos.a: phony esp-idf/freertos/libfreertos.a - -build libgpio_button.a: phony esp-idf/gpio_button/libgpio_button.a - -build libhal.a: phony esp-idf/hal/libhal.a - -build libheap.a: phony esp-idf/heap/libheap.a - -build libhttp_parser.a: phony esp-idf/http_parser/libhttp_parser.a - -build libjson.a: phony esp-idf/json/libjson.a - -build libledc_driver.a: phony esp-idf/ledc_driver/libledc_driver.a - -build liblog.a: phony esp-idf/log/liblog.a - -build liblwip.a: phony esp-idf/lwip/liblwip.a - -build libmain.a: phony esp-idf/main/libmain.a - -build libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - -build libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a - -build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a - -build libmqtt.a: phony esp-idf/mqtt/libmqtt.a - -build libnewlib.a: phony esp-idf/newlib/libnewlib.a - -build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a - -build libnvs_sec_provider.a: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a - -build libp256m.a: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -build libprotobuf-c.a: phony esp-idf/protobuf-c/libprotobuf-c.a - -build libprotocomm.a: phony esp-idf/protocomm/libprotocomm.a - -build libpthread.a: phony esp-idf/pthread/libpthread.a - -build libriscv.a: phony esp-idf/riscv/libriscv.a - -build librt.a: phony esp-idf/rt/librt.a - -build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a - -build libsoc.a: phony esp-idf/soc/libsoc.a - -build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a - -build libspiffs.a: phony esp-idf/spiffs/libspiffs.a - -build libtcp_transport.a: phony esp-idf/tcp_transport/libtcp_transport.a - -build libunity.a: phony esp-idf/unity/libunity.a - -build libvfs.a: phony esp-idf/vfs/libvfs.a - -build libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a - -build libwifi_provisioning.a: phony esp-idf/wifi_provisioning/libwifi_provisioning.a - -build libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.a - -build libws2812_led.a: phony esp-idf/ws2812_led/libws2812_led.a - -build mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - -build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a - -build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a - -build memory.ld: phony esp-idf/esp_system/memory.ld - -build otadata-flash: phony esp-idf/app_update/otadata-flash - -build p256m: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -build partition-table: phony esp-idf/partition_table/partition-table - -build partition-table-flash: phony esp-idf/partition_table/partition-table-flash - -build partition_table: phony esp-idf/partition_table/partition_table - -build partition_table-flash: phony esp-idf/partition_table/partition_table-flash - -build partition_table_bin: phony esp-idf/partition_table/partition_table_bin - -build read-otadata: phony esp-idf/app_update/read-otadata - -build read_otadata: phony esp-idf/app_update/read_otadata - -build sections.ld.in: phony esp-idf/esp_system/sections.ld.in - -build show-efuse-table: phony esp-idf/efuse/show-efuse-table - -build show_efuse_table: phony esp-idf/efuse/show_efuse_table - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build - -build all: phony bootloader app RainMaker_Table-Lights.elf esp-idf/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf - -build esp-idf/all: phony esp-idf/riscv/all esp-idf/esp_driver_gpio/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_app_format/all esp-idf/esp_bootloader_format/all esp-idf/app_update/all esp-idf/esp_partition/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/esp_mm/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_security/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_timer/all esp-idf/esp_driver_gptimer/all esp-idf/esp_ringbuf/all esp-idf/esp_driver_uart/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_driver_pcnt/all esp-idf/esp_driver_spi/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_i2s/all esp-idf/sdmmc/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_usb_serial_jtag/all esp-idf/driver/all esp-idf/esp_phy/all esp-idf/esp_vfs_console/all esp-idf/vfs/all esp-idf/lwip/all esp-idf/esp_netif_stack/all esp-idf/esp_netif/all esp-idf/wpa_supplicant/all esp-idf/esp_coex/all esp-idf/esp_wifi/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_adc/all esp-idf/esp_driver_isp/all esp-idf/esp_driver_cam/all esp-idf/esp_driver_jpeg/all esp-idf/esp_driver_ppa/all esp-idf/esp_driver_touch_sens/all esp-idf/esp_eth/all esp-idf/esp_gdbstub/all esp-idf/esp_hid/all esp-idf/tcp_transport/all esp-idf/esp_http_client/all esp-idf/esp_http_server/all esp-idf/esp_https_ota/all esp-idf/esp_https_server/all esp-idf/esp_psram/all esp-idf/esp_lcd/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/esp_local_ctrl/all esp-idf/espcoredump/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/json/all esp-idf/mqtt/all esp-idf/nvs_sec_provider/all esp-idf/openthread/all esp-idf/rt/all esp-idf/spiffs/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/espressif__rmaker_common/all esp-idf/espressif__esp_diagnostics/all esp-idf/espressif__cbor/all esp-idf/espressif__esp_diag_data_store/all esp-idf/espressif__esp_insights/all esp-idf/espressif__jsmn/all esp-idf/espressif__json_parser/all esp-idf/espressif__json_generator/all esp-idf/espressif__mdns/all esp-idf/espressif__esp_schedule/all esp-idf/espressif__network_provisioning/all esp-idf/espressif__esp-serial-flasher/all esp-idf/espressif__esp_rcp_update/all esp-idf/espressif__esp_secure_cert_mgr/all esp-idf/esp_rainmaker/all esp-idf/app_insights/all esp-idf/espressif__qrcode/all esp-idf/app_network/all esp-idf/gpio_button/all esp-idf/app_reset/all esp-idf/ledc_driver/all esp-idf/ws2812_led/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights - -build esp-idf/app_insights/all: phony esp-idf/app_insights/libapp_insights.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network - -build esp-idf/app_network/all: phony esp-idf/app_network/libapp_network.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset - -build esp-idf/app_reset/all: phony esp-idf/app_reset/libapp_reset.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace - -build esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update - -build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a esp-idf/app_update/blank_ota_data - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader - -build esp-idf/bootloader/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support - -build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt - -build esp-idf/bt/all: phony esp-idf/bt/libbt.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock - -build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console - -build esp-idf/console/all: phony esp-idf/console/libconsole.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx - -build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver - -build esp-idf/driver/all: phony esp-idf/driver/libdriver.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse - -build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls - -build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc - -build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format - -build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format - -build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex - -build esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common - -build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr - -build esp-idf/esp_driver_ana_cmpr/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam - -build esp-idf/esp_driver_cam/all: phony esp-idf/esp_driver_cam/libesp_driver_cam.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac - -build esp-idf/esp_driver_dac/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio - -build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer - -build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c - -build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s - -build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp - -build esp-idf/esp_driver_isp/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg - -build esp-idf/esp_driver_jpeg/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc - -build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm - -build esp-idf/esp_driver_mcpwm/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio - -build esp-idf/esp_driver_parlio/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt - -build esp-idf/esp_driver_pcnt/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa - -build esp-idf/esp_driver_ppa/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt - -build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio - -build esp-idf/esp_driver_sdio/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm - -build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc - -build esp-idf/esp_driver_sdmmc/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi - -build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi - -build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens - -build esp-idf/esp_driver_touch_sens/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens - -build esp-idf/esp_driver_tsens/all: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart - -build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag - -build esp-idf/esp_driver_usb_serial_jtag/all: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth - -build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event - -build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub - -build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid - -build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client - -build esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server - -build esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota - -build esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server - -build esp-idf/esp_https_server/all: phony esp-idf/esp_https_server/libesp_https_server.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support - -build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32c3/all esp-idf/esp_hw_support/lowpower/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower - -build esp-idf/esp_hw_support/lowpower/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3 - -build esp-idf/esp_hw_support/port/esp32c3/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd - -build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl - -build esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm - -build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif - -build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack - -build esp-idf/esp_netif_stack/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition - -build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy - -build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm - -build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram - -build esp-idf/esp_psram/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker - -build esp-idf/esp_rainmaker/all: phony esp-idf/esp_rainmaker/libesp_rainmaker.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf - -build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom - -build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security - -build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system - -build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a esp-idf/esp_system/port/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port - -build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32c3/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3 - -build esp-idf/esp_system/port/soc/esp32c3/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer - -build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console - -build esp-idf/esp_vfs_console/all: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi - -build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump - -build esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor - -build esp-idf/espressif__cbor/all: phony esp-idf/espressif__cbor/libespressif__cbor.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher - -build esp-idf/espressif__esp-serial-flasher/all: phony esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store - -build esp-idf/espressif__esp_diag_data_store/all: phony esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics - -build esp-idf/espressif__esp_diagnostics/all: phony esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights - -build esp-idf/espressif__esp_insights/all: phony esp-idf/espressif__esp_insights/libespressif__esp_insights.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update - -build esp-idf/espressif__esp_rcp_update/all: phony esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule - -build esp-idf/espressif__esp_schedule/all: phony esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr - -build esp-idf/espressif__esp_secure_cert_mgr/all: phony esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn - -build esp-idf/espressif__jsmn/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator - -build esp-idf/espressif__json_generator/all: phony esp-idf/espressif__json_generator/libespressif__json_generator.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser - -build esp-idf/espressif__json_parser/all: phony esp-idf/espressif__json_parser/libespressif__json_parser.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns - -build esp-idf/espressif__mdns/all: phony esp-idf/espressif__mdns/libespressif__mdns.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning - -build esp-idf/espressif__network_provisioning/all: phony esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode - -build esp-idf/espressif__qrcode/all: phony esp-idf/espressif__qrcode/libespressif__qrcode.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common - -build esp-idf/espressif__rmaker_common/all: phony esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py - -build esp-idf/esptool_py/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs - -build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos - -build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button - -build esp-idf/gpio_button/all: phony esp-idf/gpio_button/libgpio_button.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal - -build esp-idf/hal/all: phony esp-idf/hal/libhal.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap - -build esp-idf/heap/all: phony esp-idf/heap/libheap.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser - -build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test - -build esp-idf/idf_test/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154 - -build esp-idf/ieee802154/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json - -build esp-idf/json/all: phony esp-idf/json/libjson.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver - -build esp-idf/ledc_driver/all: phony esp-idf/ledc_driver/libledc_driver.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log - -build esp-idf/log/all: phony esp-idf/log/liblog.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip - -build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main - -build esp-idf/main/all: phony esp-idf/main/libmain.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls - -build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls - -build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/3rdparty/all esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/pkgconfig/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty - -build esp-idf/mbedtls/mbedtls/3rdparty/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/all esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include - -build esp-idf/mbedtls/mbedtls/include/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library - -build esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig - -build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt - -build esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib - -build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/port/all - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port - -build esp-idf/newlib/port/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash - -build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider - -build esp-idf/nvs_sec_provider/all: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread - -build esp-idf/openthread/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table - -build esp-idf/partition_table/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c - -build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm - -build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread - -build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv - -build esp-idf/riscv/all: phony esp-idf/riscv/libriscv.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt - -build esp-idf/rt/all: phony esp-idf/rt/librt.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc - -build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc - -build esp-idf/soc/all: phony esp-idf/soc/libsoc.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash - -build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs - -build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport - -build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp - -build esp-idf/ulp/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity - -build esp-idf/unity/all: phony esp-idf/unity/libunity.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb - -build esp-idf/usb/all: phony - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs - -build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling - -build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning - -build esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant - -build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a - -# ============================================================================= - -############################################# -# Folder: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led - -build esp-idf/ws2812_led/all: phony esp-idf/ws2812_led/libws2812_led.a - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | /home/alex/.espressif/esp-rainmaker/.git/HEAD /home/alex/.espressif/esp-rainmaker/.git/refs/heads/master /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_network/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/app_network/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_reset/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/CMakeLists.txt /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake /home/alex/esp/v5.4.1/esp-idf/.git/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/heap/tlsf/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/json/cJSON/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/unity/unity/HEAD /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/app_trace/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/app_trace/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/app_update/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/.git /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/.git /home/alex/esp/v5.4.1/esp-idf/components/console/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/cxx/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/driver/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/sources.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_common/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_common/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_event/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_psram/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_psram/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_security/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/ld.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/espefuse.cmake /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/fatfs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/fatfs/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/freertos/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/hal/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/.git /home/alex/esp/v5.4.1/esp-idf/components/http_parser/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/idf_test/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ieee802154/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/json/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/.git /home/alex/esp/v5.4.1/esp-idf/components/log/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mqtt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/.git /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/port/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/openthread/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/openthread/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/openthread/openthread/.git /home/alex/esp/v5.4.1/esp-idf/components/partition_table/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/partition_table/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/.git /home/alex/esp/v5.4.1/esp-idf/components/protocomm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/pthread/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/rt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/soc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/.git /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ulp/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ulp/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/unity/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/.git /home/alex/esp/v5.4.1/esp-idf/components/usb/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/vfs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/build.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/component.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/depgraph.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/dfu.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/gdbinit.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/git_submodules.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/idf.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/kconfig.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/ldgen.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/openocd.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/prefix_map.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project_description.json.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/symbols.gdbinit.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/targets.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/tool_version_check.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/utilities.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/version.cmake /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/confgen.py /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/config.env.in /home/alex/github/ESP-Nodes/.git/HEAD /home/alex/github/ESP-Nodes/.git/refs/heads/main /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/project_include.cmake /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/app_update/otadata-flash_args.in esp-idf/bootloader/bootloader-flash_args.in esp-idf/esp_rainmaker/CMakeFiles/git-data/grabRef.cmake esp-idf/espressif__esp_insights/CMakeFiles/git-data/grabRef.cmake esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build /home/alex/.espressif/esp-rainmaker/.git/HEAD /home/alex/.espressif/esp-rainmaker/.git/refs/heads/master /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_network/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/app_network/idf_component.yml /home/alex/.espressif/esp-rainmaker/examples/common/app_reset/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/CMakeLists.txt /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/CMakeLists.txt /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake /home/alex/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake /home/alex/esp/v5.4.1/esp-idf/.git/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/cmock/CMock/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/heap/tlsf/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/json/cJSON/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/lib/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/openthread/openthread/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/alex/esp/v5.4.1/esp-idf/.git/modules/components/unity/unity/HEAD /home/alex/esp/v5.4.1/esp-idf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/app_trace/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/app_trace/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/app_update/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bootloader/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/.git /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/.git /home/alex/esp/v5.4.1/esp-idf/components/console/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/cxx/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/driver/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/sources.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_common/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_common/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_event/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_psram/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_psram/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_security/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ld/ld.cmake /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/espefuse.cmake /home/alex/esp/v5.4.1/esp-idf/components/esptool_py/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/fatfs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/fatfs/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/freertos/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/hal/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/.git /home/alex/esp/v5.4.1/esp-idf/components/http_parser/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/idf_test/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ieee802154/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/json/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/.git /home/alex/esp/v5.4.1/esp-idf/components/log/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/.git /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mqtt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/.git /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/port/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/newlib/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/openthread/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/openthread/lib/.git /home/alex/esp/v5.4.1/esp-idf/components/openthread/openthread/.git /home/alex/esp/v5.4.1/esp-idf/components/partition_table/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/partition_table/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/.git /home/alex/esp/v5.4.1/esp-idf/components/protocomm/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/pthread/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/riscv/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/rt/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/soc/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/spiffs/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/.git /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ulp/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/ulp/project_include.cmake /home/alex/esp/v5.4.1/esp-idf/components/unity/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/.git /home/alex/esp/v5.4.1/esp-idf/components/usb/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/vfs/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/alex/esp/v5.4.1/esp-idf/tools/cmake/build.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/component.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/depgraph.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/dfu.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/gdbinit.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/git_submodules.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/idf.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/kconfig.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/ldgen.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/openocd.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/prefix_map.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/project_description.json.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/symbols.gdbinit.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/targets.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/alex/esp/v5.4.1/esp-idf/tools/cmake/tool_version_check.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/toolchain-esp32c3.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/utilities.cmake /home/alex/esp/v5.4.1/esp-idf/tools/cmake/version.cmake /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/confgen.py /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/config.env.in /home/alex/github/ESP-Nodes/.git/HEAD /home/alex/github/ESP-Nodes/.git/refs/heads/main /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/project_include.cmake /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/CMakeLists.txt /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/idf_component.yml /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/partitions_4mb_optimised.csv /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/app_update/otadata-flash_args.in esp-idf/bootloader/bootloader-flash_args.in esp-idf/esp_rainmaker/CMakeFiles/git-data/grabRef.cmake esp-idf/espressif__esp_insights/CMakeFiles/git-data/grabRef.cmake esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony - - -############################################# -# Clean additional files. - -build CMakeFiles/clean.additional: CLEAN_ADDITIONAL - - -############################################# -# Clean all the built files. - -build clean: CLEAN CMakeFiles/clean.additional - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/RainMaker_Table-Lights/build/cmake_install.cmake b/RainMaker_Table-Lights/build/cmake_install.cmake deleted file mode 100644 index 70994ffaa..000000000 --- a/RainMaker_Table-Lights/build/cmake_install.cmake +++ /dev/null @@ -1,63 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmake_install.cmake") - -endif() - -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") - file(WRITE "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/RainMaker_Table-Lights/build/compile_commands.json b/RainMaker_Table-Lights/build/compile_commands.json deleted file mode 100644 index e256fce85..000000000 --- a/RainMaker_Table-Lights/build/compile_commands.json +++ /dev/null @@ -1,6560 +0,0 @@ -[ -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c", - "output": "CMakeFiles/RainMaker_Table-Lights.elf.dir/project_elf_src_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/riscv/instruction_decode.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/riscv/instruction_decode.c", - "output": "esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt.c", - "output": "esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj -c /home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors.S", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors.S", - "output": "esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt_intc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt_intc.c", - "output": "esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj -c /home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors_intc.S", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors_intc.S", - "output": "esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio.c", - "output": "esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", - "output": "esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", - "output": "esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", - "output": "esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c", - "output": "esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_locks.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_locks.c", - "output": "esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_trace.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_trace.c", - "output": "esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_impl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_impl.c", - "output": "esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", - "output": "esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S", - "output": "esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c", - "output": "esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c", - "output": "esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c", - "output": "esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c", - "output": "esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c", - "output": "esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aes.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aes.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aria.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/aria.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/base64.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/base64.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/des.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/des.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/error.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/error.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lms.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/lms.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md5.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/md5.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/oid.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/oid.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pem.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/threading.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/threading.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/timing.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/timing.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/debug.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/debug.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c", - "output": "esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"RainMaker_Table-Lights\\\" -DPROJECT_VER=\\\"1.0\\\" -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/esp_app_desc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/esp_app_desc.c", - "output": "esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c", - "output": "esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_ops.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_ops.c", - "output": "esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_app_desc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_app_desc.c", - "output": "esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition.c", - "output": "esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition_target.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition_target.c", - "output": "esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_startup.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_startup.c", - "output": "esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/secure_boot_secure_features.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/secure_boot_secure_features.c", - "output": "esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_mmu_map.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_mmu_map.c", - "output": "esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/port/esp32c3/ext_mem_layout.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/port/esp32c3/ext_mem_layout.c", - "output": "esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_cache.c", - "output": "esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_mm/heap_align_hw.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/heap_align_hw.c", - "output": "esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_brownout_hook.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_brownout_hook.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/memspi_host_driver.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/memspi_host_driver.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/cache_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/cache_utils.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_mmap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_mmap.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_ops.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_ops.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_api.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include/spi_flash -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c", - "output": "esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/crosscore_int.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/crosscore_int.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_ipc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_ipc.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/freertos_hooks.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/freertos_hooks.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/int_wdt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/int_wdt.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/panic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/panic.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_system.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_system.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup_funcs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup_funcs.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/system_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/system_time.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/stack_check.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/stack_check.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/ubsan.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ubsan.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/xt_wdt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/xt_wdt.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/hw_stack_guard.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/hw_stack_guard.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/cpu_start.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/cpu_start.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/panic_handler.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/panic_handler.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/esp_system_chip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/esp_system_chip.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/image_process.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/image_process.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/brownout.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/brownout.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/clk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/clk.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/reset_reason.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/reset_reason.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/system_internal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/system_internal.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/cache_err_int.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/cache_err_int.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/apb_backup_dma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/apb_backup_dma.c", - "output": "esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c", - "output": "esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", - "output": "esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/color_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/color_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/clk_tree_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/clk_tree_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/systimer_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/systimer_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/gpio_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/gpio_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/timer_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/timer_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/rmt_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/rmt_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_top.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_top.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/i2s_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2s_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/sdm_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/sdm_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal_common.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_oneshot_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_oneshot_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/mpi_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/mpi_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/sha_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/sha_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/aes_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/aes_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/brownout_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/brownout_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal_iram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal_iram.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hd_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hd_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/hmac_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/hmac_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/ds_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/ds_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/usb_serial_jtag_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/usb_serial_jtag_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/xt_wdt_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/xt_wdt_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/rtc_cntl_hal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/rtc_cntl_hal.c", - "output": "esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_timestamp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_timestamp.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_lock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_lock.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_write.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_write.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/buffer/log_buffers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/buffer/log_buffers.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/util.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/log_level.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/log_level.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c", - "output": "esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_base.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_base.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_init.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/multi_heap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/multi_heap.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/tlsf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/tlsf.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/port/memory_layout_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/port/memory_layout_utils.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/heap/port/esp32c3/memory_layout.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/heap/port/esp32c3/memory_layout.c", - "output": "esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c", - "output": "esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/init.c", - "output": "esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_hmac.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_hmac.c", - "output": "esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_ds.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_ds.c", - "output": "esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_crypto_lock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_crypto_lock.c", - "output": "esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clk.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/hw_random.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/hw_random.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/intr_alloc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/intr_alloc.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mac_addr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mac_addr.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/periph_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/periph_ctrl.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/revision.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/revision.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/rtc_module.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/rtc_module.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modem.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modes.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modes.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_console.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_console.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_usb.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_usb.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_gpio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_gpio.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_event.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_event.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/io_mux.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/io_mux.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_clk_tree.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_clk_tree.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_utils.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/systimer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/systimer.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mspi_timing_tuning.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mspi_timing_tuning.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clock_output.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clock_output.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/sar_periph_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/sar_periph_ctrl.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/adc2_init_cal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/adc2_init_cal.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_memprot.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_memprot.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/esp_private -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/port/esp32c3/sleep_cpu.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/port/esp32c3/sleep_cpu.c", - "output": "esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/heap_idf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/heap_idf.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/app_startup.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/app_startup.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/port_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/port_common.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/port_systick.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/port_systick.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions.c", - "output": "esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/abort.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/abort.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/assert.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/assert.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-builtin -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/heap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/heap.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/flockfile.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/flockfile.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/locks.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/locks.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/poll.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/poll.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/pthread.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/pthread.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/random.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/random.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/getentropy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/getentropy.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/reent_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/reent_init.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib_init.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/syscalls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/syscalls.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/termios.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/termios.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/stdatomic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/stdatomic.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/time.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/sysconf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/sysconf.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/realpath.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/realpath.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/scandir.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/scandir.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/newlib/port/esp_time_impl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/newlib/port/esp_time_impl.c", - "output": "esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread.c", - "output": "esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_cond_var.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_cond_var.c", - "output": "esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_local_storage.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_local_storage.c", - "output": "esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_rwlock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_rwlock.c", - "output": "esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_semaphore.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_semaphore.c", - "output": "esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", - "output": "esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_guards.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_guards.cpp", - "output": "esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_init.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_init.cpp", - "output": "esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_init.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/system_time.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/system_time.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c", - "output": "esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", - "output": "esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c", - "output": "esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/ringbuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/ringbuf.c", - "output": "esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart.c", - "output": "esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c", - "output": "esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace.c", - "output": "esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace_util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace_util.c", - "output": "esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_trace/host_file_io.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/host_file_io.c", - "output": "esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/port_uart.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/port_uart.c", - "output": "esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_event/default_event_loop.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/default_event_loop.c", - "output": "esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event.c", - "output": "esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event_private.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event_private.c", - "output": "esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp", - "output": "esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", - "output": "esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", - "output": "esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", - "output": "esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c", - "output": "esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c", - "output": "esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_common.c", - "output": "esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_std.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_std.c", - "output": "esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", - "output": "esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", - "output": "esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_platform.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_platform.c", - "output": "esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_cmd.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_common.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_init.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_io.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_io.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_mmc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_mmc.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_sd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_sd.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c", - "output": "esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", - "output": "esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", - "output": "esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c", - "output": "esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", - "output": "esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", - "output": "esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", - "output": "esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c", - "output": "esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c", - "output": "esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/src/sdm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/src/sdm.c", - "output": "esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_master.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_master.c", - "output": "esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_common.c", - "output": "esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_slave.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_slave.c", - "output": "esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/src/ledc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/src/ledc.c", - "output": "esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", - "output": "esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", - "output": "esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c", - "output": "esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/timer_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/timer_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/i2c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/i2c.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/i2s_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/i2s_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rmt_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rmt_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/driver/twai/twai.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/twai.c", - "output": "esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_override.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_override.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/lib_printf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/lib_printf.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_common.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_init.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/phy_init_data.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/phy_init_data.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/btbb_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/btbb_init.c", - "output": "esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/vfs_console.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/vfs_console.c", - "output": "esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs.c", - "output": "esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_eventfd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_eventfd.c", - "output": "esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_semihost.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_semihost.c", - "output": "esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/vfs/nullfs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/vfs/nullfs.c", - "output": "esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/sntp/sntp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/sntp/sntp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_lib.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_lib.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_msg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_msg.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/err.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/err.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/if_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/if_api.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netbuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netbuf.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netdb.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netdb.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netifapi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netifapi.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/sockets.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/sockets.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/tcpip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/tcpip.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/def.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/def.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/dns.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/dns.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/init.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ip.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/mem.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/memp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/memp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/netif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/netif.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/pbuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/pbuf.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/raw.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/raw.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/stats.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/stats.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/sys.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/sys.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/timeouts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/timeouts.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/udp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/udp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/slipif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/slipif.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/debug/lwip_debug.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/debug/lwip_debug.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/sockets_ext.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/sockets_ext.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/sys_arch.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/sys_arch.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/acd_dhcp_check.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/acd_dhcp_check.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/esp_ping.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/esp_ping.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping_sock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping_sock.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c", - "output": "esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_handlers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_handlers.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_objects.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_objects.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_defaults.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_defaults.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c", - "output": "esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/os_xtensa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/os_xtensa.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/eloop.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/eloop.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/base64.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/base64.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/uuid.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/uuid.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/json.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/json.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.4.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c", - "output": "esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist.c", - "output": "esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/lib_printf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/lib_printf.c", - "output": "esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/esp32c3/esp_coex_adapter.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/esp32c3/esp_coex_adapter.c", - "output": "esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", - "output": "esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug.c", - "output": "esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/lib_printf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/lib_printf.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/mesh_event.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/mesh_event.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_init.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_netif.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_netif.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/esp32c3/esp_adapter.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/esp32c3/esp_adapter.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig_ack.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig_ack.c", - "output": "esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/controller/esp32c3/bt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/esp32c3/bt.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_alarm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_alarm.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/esp_blufi_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/esp_blufi_api.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/bt_hci_log.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/bt_hci_log.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_manage.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_manage.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_task.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_task.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_prf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_prf.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_protocol.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_protocol.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/alarm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/alarm.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/allocator.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/allocator.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/buffer.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/buffer.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/config.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/config.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_queue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_queue.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/pkt_queue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/pkt_queue.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_pkt_queue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_pkt_queue.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/future.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/future.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_functions.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_functions.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_map.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_map.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/list.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/list.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/mutex.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/mutex.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/thread.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/thread.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/osi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/osi.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/semaphore.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/semaphore.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem/bt_osi_mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem/bt_osi_mem.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/ble_log_spi_out.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/ble_log_spi_out.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/src/transport.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/src/transport.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/src/addr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/src/addr.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_conn.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_conn.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store_util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store_util.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_id.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_id.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_svr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_svr.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ibeacon.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ibeacon.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_alg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_alg.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_stop.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_stop.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ead.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ead.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_clt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_clt.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_cmd.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_log.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_log.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eddystone.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eddystone.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_startup.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_startup.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gap.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_uuid.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_uuid.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_flow.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_flow.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_sc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_sc.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_misc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_misc.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_adv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_adv.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eatt.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eatt.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/nimble_port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/nimble_port.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/src/nvs_port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/src/nvs_port.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/endian.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/endian.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mempool.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mempool.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/mem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/mem.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mbuf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mbuf.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_msys_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_msys_init.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-implicit-fallthrough -Wno-unused-const-variable -Wno-format -o esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c", - "output": "esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src/unity.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src/unity.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_compat.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_compat.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_runner.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_runner.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_freertos.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_freertos.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_cache.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_memory.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_memory.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/unity_port_esp32.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_port_esp32.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c", - "output": "esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src/cmock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src/cmock.c", - "output": "esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/commands.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/commands.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_common.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/split_argv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/split_argv.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/linenoise/linenoise.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/linenoise/linenoise.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_repl_chip.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_repl_chip.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_cmd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_cmd.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_date.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_date.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dbl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dbl.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dstr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dstr.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_end.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_end.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_file.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_file.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_hashtable.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_hashtable.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_int.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_int.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_lit.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_lit.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rem.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rex.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rex.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_str.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_str.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_utils.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/console/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/argtable3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/argtable3.c", - "output": "esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/http_parser/http_parser.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/http_parser/http_parser.c", - "output": "esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls.c", - "output": "esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", - "output": "esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_error_capture.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_error_capture.c", - "output": "esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_platform_port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_platform_port.c", - "output": "esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c", - "output": "esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_oneshot.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_oneshot.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_common.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_continuous.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_continuous.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_monitor.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_monitor.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/gdma/adc_dma.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/gdma/adc_dma.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_filter.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_filter.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/curve_fitting_coefficients.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/curve_fitting_coefficients.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp32c3/esp_adc_cal_legacy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp32c3/esp_adc_cal_legacy.c", - "output": "esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", - "output": "esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c", - "output": "esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth.c", - "output": "esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", - "output": "esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c", - "output": "esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub.c", - "output": "esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", - "output": "esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/packet.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/packet.c", - "output": "esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c", - "output": "esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c", - "output": "esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidd.c", - "output": "esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidh.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidh.c", - "output": "esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hid_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hid_common.c", - "output": "esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidd.c", - "output": "esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/private -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidh.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidh.c", - "output": "esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport.c", - "output": "esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ssl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ssl.c", - "output": "esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_internal.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_internal.c", - "output": "esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_socks_proxy.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_socks_proxy.c", - "output": "esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ws.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ws.c", - "output": "esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/esp_http_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/esp_http_client.c", - "output": "esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_auth.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_auth.c", - "output": "esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_header.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_header.c", - "output": "esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_utils.c", - "output": "esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_main.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_main.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_parse.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_parse.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_sess.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_sess.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_txrx.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_txrx.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_uri.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_uri.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_ws.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_ws.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c", - "output": "esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/src/esp_https_ota.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/src/esp_https_ota.c", - "output": "esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/src/https_server.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/src/https_server.c", - "output": "esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/priv_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c", - "output": "esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c", - "output": "esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common/protocomm.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common/protocomm.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/session.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/session.pb-c.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_console.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_console.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security0.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security0.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security1.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security1.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security2.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security2.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_nimble.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_nimble.c", - "output": "esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", - "output": "esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", - "output": "esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", - "output": "esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_ble.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_ble.c", - "output": "esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c", - "output": "esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_init.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_init.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_common.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_common.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_flash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_flash.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_uart.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_uart.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_elf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_elf.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_binary.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_binary.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_sha.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_sha.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_crc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_crc.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include_core_dump/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c", - "output": "esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Partition.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Partition.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/SPI_Flash.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/SPI_Flash.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Flash.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Flash.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/crc32.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/crc32.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/wear_levelling.cpp", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/wear_levelling.cpp", - "output": "esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_wl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_wl.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ff.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ff.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ffunicode.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ffunicode.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/port/freertos/ffsystem.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/port/freertos/ffsystem.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c", - "output": "esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON.c", - "output": "esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON_Utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON_Utils.c", - "output": "esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", - "output": "esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", - "output": "esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", - "output": "esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c", - "output": "esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c", - "output": "esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", - "output": "esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c", - "output": "esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs_api.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs_api.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/spiffs/esp_spiffs.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/esp_spiffs.c", - "output": "esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_config.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_config.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/manager.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/manager.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/handlers.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/handlers.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_console.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_console.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj -c /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_ble.c", - "file": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_ble.c", - "output": "esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_driver.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_driver.c", - "output": "esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_security/include -I/home/alex/esp/v5.4.1/esp-idf/components/pthread/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_trace/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/include -I/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src -I/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/interface -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/interface -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/include -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src -I/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include -I/home/alex/esp/v5.4.1/esp-idf/components/idf_test/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/include -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/include -I/home/alex/esp/v5.4.1/esp-idf/components/rt/include -I/home/alex/esp/v5.4.1/esp-idf/components/spiffs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_main.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_main.c", - "output": "esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/work_queue.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/work_queue.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/factory.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/factory.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/time.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/time.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/timezone.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/timezone.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/utils.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/utils.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/cmd_resp.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/cmd_resp.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_common_cmds.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_common_cmds.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_console.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_console.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/esp-mqtt/esp-mqtt-glue.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/esp-mqtt/esp-mqtt-glue.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/create_APN3_PPI_string.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/create_APN3_PPI_string.c", - "output": "esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_log_hook.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_log_hook.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_utils.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_utils.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_metrics.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_metrics.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_heap_metrics.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_heap_metrics.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_wifi_metrics.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_wifi_metrics.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_variables.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_variables.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_network_variables.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_network_variables.c", - "output": "esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_close_container_checked.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_close_container_checked.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_float.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_float.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborerrorstrings.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborerrorstrings.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_dup_string.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_dup_string.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_float.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_float.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty_stdio.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty_stdio.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cbortojson.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cbortojson.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborvalidation.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborvalidation.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__linux__ -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/open_memstream.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/open_memstream.c", - "output": "esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/esp_diag_data_store.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/esp_diag_data_store.c", - "output": "esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store/rtc_store.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store/rtc_store.c", - "output": "esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_transport.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_transport.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_client_data.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_client_data.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_encoder.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_encoder.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cmd_resp.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cmd_resp.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_decoder.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_decoder.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_encoder.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_encoder.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include -I/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/include/port/riscv -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/transport/esp_insights_mqtt.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/transport/esp_insights_mqtt.c", - "output": "esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/src/json_parser.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/src/json_parser.c", - "output": "esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/src/json_generator.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/src/json_generator.c", - "output": "esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns.c", - "output": "esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_mem_caps.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_mem_caps.c", - "output": "esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_networking_lwip.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_networking_lwip.c", - "output": "esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_console.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_console.c", - "output": "esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -Wno-unused-function -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule.c", - "output": "esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -Wno-unused-function -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule_nvs.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule_nvs.c", - "output": "esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_config.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_config.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_scan.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_scan.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_ctrl.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_ctrl.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/manager.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/manager.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/handlers.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/handlers.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_console.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_console.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_config.pb-c.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_config.pb-c.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_scan.pb-c.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_scan.pb-c.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_ctrl.pb-c.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_ctrl.pb-c.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_constants.pb-c.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_constants.pb-c.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_softap.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_softap.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_ble.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_ble.c", - "output": "esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/md5_hash.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/md5_hash.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_loader.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_loader.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_targets.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_targets.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_stubs.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_stubs.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_serial.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_serial.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_uart.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_uart.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/slip.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/slip.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wstrict-prototypes -o esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port/esp32_port.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port/esp32_port.c", - "output": "esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_ota.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_ota.c", - "output": "esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_update.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_update.c", - "output": "esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_tlv_read.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_tlv_read.c", - "output": "esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_crypto.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_crypto.c", - "output": "esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_core.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_core.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_device.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_device.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_param.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_param.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_config.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_config.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_client_data.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_client_data.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_time_service.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_time_service.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_system_service.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_system_service.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.pb-c.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.pb-c.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_auth.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_auth.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_schedule.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_schedule.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_scenes.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_scenes.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_cmd_resp_manager.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_cmd_resp_manager.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_secure_boot_digest.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_secure_boot_digest.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_claim.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_claim.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_local_ctrl.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_local_ctrl.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt_budget.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt_budget.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_params.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_params.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_topics.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_topics.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_params.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_params.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_devices.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_devices.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_services.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_services.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_console.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_console.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj -c /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_commands.c", - "file": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_commands.c", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_MDNS_VERSION_NUMBER=\\\"1.8.2\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMD5_ENABLED=1 -DSERIAL_FLASHER_BOOT_HOLD_TIME_MS=50 -DSERIAL_FLASHER_BOOT_INVERT=false -DSERIAL_FLASHER_DEBUG_TRACE=false -DSERIAL_FLASHER_INTERFACE_UART -DSERIAL_FLASHER_RESET_HOLD_TIME_MS=100 -DSERIAL_FLASHER_RESET_INVERT=false -DSERIAL_FLASHER_WRITE_BLOCK_RETRIES=3 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/include -I/home/alex/esp/v5.4.1/esp-idf/components/app_update/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls -I/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/include -I/home/alex/esp/v5.4.1/esp-idf/components/console -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/include -I/home/alex/esp/v5.4.1/esp-idf/components/http_parser -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/include -I/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/include -I/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S", - "output": "esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_insights -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/include -I/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/app_insights.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights/app_insights.c", - "output": "esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_main.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_main.c", - "output": "esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_wrapper.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_wrapper.c", - "output": "esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj -c /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/qrcodegen.c", - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/qrcodegen.c", - "output": "esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_wifi_internal.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_wifi_internal.c", - "output": "esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_network.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_network.c", - "output": "esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network -I/home/alex/.espressif/esp-rainmaker/examples/common/app_network/private_include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/include -I/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/common -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/security -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/transports -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/include/crypto/srp6a -I/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c -I/home/alex/esp/v5.4.1/esp-idf/components/bt/include/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/include/api -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/include/local -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_thread_internal.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_thread_internal.c", - "output": "esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button.c", - "output": "esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++ -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button_obj.cpp", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button_obj.cpp", - "output": "esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/app_reset -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_event/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/app_reset/app_reset.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset/app_reset.c", - "output": "esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/ledc_driver.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/ledc_driver.c", - "output": "esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/ws2812_led.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/ws2812_led.c", - "output": "esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj" -}, -{ - "directory": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "command": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc -DESP_PLATFORM -DIDF_VER=\\\"v5.4.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -I/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config -I/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led -I/home/alex/esp/v5.4.1/esp-idf/components/newlib/platform_include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/config/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -I/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/include/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/ldo/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/debug_probe/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/. -I/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/include -I/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf -I/home/alex/esp/v5.4.1/esp-idf/components/log/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/register -I/home/alex/esp/v5.4.1/esp-idf/components/hal/platform_port/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/hal/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/include/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3 -I/home/alex/esp/v5.4.1/esp-idf/components/esp_common/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/riscv -I/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/include/private -I/home/alex/esp/v5.4.1/esp-idf/components/riscv/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/include/apps/sntp -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/arch -I/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/include/sys -I/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated -I/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/touch_sensor/include -I/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/include -I/home/alex/esp/v5.4.1/esp-idf/components/vfs/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/include -I/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imc_zicsr_zifencei -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Og -fno-shrink-wrap -fmacro-prefix-map=/home/alex/github/ESP-Nodes/RainMaker_Table-Lights=. -fmacro-prefix-map=/home/alex/esp/v5.4.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj -c /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/led_strip_rmt_ws2812.c", - "file": "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/led_strip_rmt_ws2812.c", - "output": "esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj" -} -] \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/config.env b/RainMaker_Table-Lights/build/config.env deleted file mode 100644 index 14dec8969..000000000 --- a/RainMaker_Table-Lights/build/config.env +++ /dev/null @@ -1,12 +0,0 @@ -{ - "COMPONENT_KCONFIGS": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/bt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/console/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/driver/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_event/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/fatfs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/heap/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/lwip/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/openthread/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/protocomm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/pthread/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spiffs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/ulp/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/unity/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/usb/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/vfs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/app_insights/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/Kconfig.projbuild;/home/alex/.espressif/esp-rainmaker/examples/common/app_network/Kconfig.projbuild;/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/Kconfig.projbuild", - "COMPONENT_SDKCONFIG_RENAMES": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/bootloader/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/bt/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/bt/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/driver/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_event/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/freertos/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/hal/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/lwip/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/newlib/sdkconfig.rename.esp32c3;/home/alex/esp/v5.4.1/esp-idf/components/pthread/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/sdkconfig.rename;/home/alex/esp/v5.4.1/esp-idf/components/vfs/sdkconfig.rename;/home/alex/.espressif/esp-rainmaker/examples/common/app_network/sdkconfig.rename;/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/sdkconfig.rename", - "IDF_TARGET": "esp32c3", - "IDF_TOOLCHAIN": "gcc", - "IDF_VERSION": "5.4.1", - "IDF_ENV_FPGA": "", - "IDF_PATH": "/home/alex/esp/v5.4.1/esp-idf", - "COMPONENT_KCONFIGS_SOURCE_FILE": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/kconfigs.in", - "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/kconfigs_projbuild.in" -} diff --git a/RainMaker_Table-Lights/build/config/kconfig_menus.json b/RainMaker_Table-Lights/build/config/kconfig_menus.json deleted file mode 100644 index 018a7f201..000000000 --- a/RainMaker_Table-Lights/build/config/kconfig_menus.json +++ /dev/null @@ -1,32272 +0,0 @@ -[ - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SUPPORTED", - "name": "SOC_ADC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDICATED_GPIO_SUPPORTED", - "name": "SOC_DEDICATED_GPIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORTED", - "name": "SOC_UART_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORTED", - "name": "SOC_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_SUPPORTED", - "name": "SOC_AHB_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPTIMER_SUPPORTED", - "name": "SOC_GPTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTED", - "name": "SOC_TWAI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BT_SUPPORTED", - "name": "SOC_BT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASYNC_MEMCPY_SUPPORTED", - "name": "SOC_ASYNC_MEMCPY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMP_SENSOR_SUPPORTED", - "name": "SOC_TEMP_SENSOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XT_WDT_SUPPORTED", - "name": "SOC_XT_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_SUPPORTED", - "name": "SOC_PHY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_SUPPORTED", - "name": "SOC_WIFI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORTS_SECURE_DL_MODE", - "name": "SOC_SUPPORTS_SECURE_DL_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_HAS_EFUSE_RST_BUG", - "name": "SOC_EFUSE_HAS_EFUSE_RST_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SUPPORTED", - "name": "SOC_EFUSE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_FAST_MEM_SUPPORTED", - "name": "SOC_RTC_FAST_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_MEM_SUPPORTED", - "name": "SOC_RTC_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTED", - "name": "SOC_I2S_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORTED", - "name": "SOC_RMT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_SUPPORTED", - "name": "SOC_SDM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPSPI_SUPPORTED", - "name": "SOC_GPSPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORTED", - "name": "SOC_LEDC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORTED", - "name": "SOC_I2C_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORTED", - "name": "SOC_SYSTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_COEXISTENCE", - "name": "SOC_SUPPORT_COEXISTENCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORTED", - "name": "SOC_AES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_SUPPORTED", - "name": "SOC_MPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORTED", - "name": "SOC_SHA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HMAC_SUPPORTED", - "name": "SOC_HMAC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DIG_SIGN_SUPPORTED", - "name": "SOC_DIG_SIGN_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENC_SUPPORTED", - "name": "SOC_FLASH_ENC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_SUPPORTED", - "name": "SOC_SECURE_BOOT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_SUPPORTED", - "name": "SOC_MEMPROT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BOD_SUPPORTED", - "name": "SOC_BOD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_TREE_SUPPORTED", - "name": "SOC_CLK_TREE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASSIST_DEBUG_SUPPORTED", - "name": "SOC_ASSIST_DEBUG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WDT_SUPPORTED", - "name": "SOC_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_FLASH_SUPPORTED", - "name": "SOC_SPI_FLASH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_SUPPORTED", - "name": "SOC_RNG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LIGHT_SLEEP_SUPPORTED", - "name": "SOC_LIGHT_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEEP_SLEEP_SUPPORTED", - "name": "SOC_DEEP_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", - "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORTED", - "name": "SOC_PM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_SUPPORT_40M", - "name": "SOC_XTAL_SUPPORT_40M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_DMA", - "name": "SOC_AES_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_GDMA", - "name": "SOC_AES_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_128", - "name": "SOC_AES_SUPPORT_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_256", - "name": "SOC_AES_SUPPORT_AES_256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_CTRL_SUPPORTED", - "name": "SOC_ADC_DIG_CTRL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ARBITER_SUPPORTED", - "name": "SOC_ADC_ARBITER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MONITOR_SUPPORTED", - "name": "SOC_ADC_MONITOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DMA_SUPPORTED", - "name": "SOC_ADC_DMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PERIPH_NUM", - "name": "SOC_ADC_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MAX_CHANNEL_NUM", - "name": "SOC_ADC_MAX_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ATTEN_NUM", - "name": "SOC_ADC_ATTEN_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_CONTROLLER_NUM", - "name": "SOC_ADC_DIGI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PATT_LEN_MAX", - "name": "SOC_ADC_PATT_LEN_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MIN_BITWIDTH", - "name": "SOC_ADC_DIGI_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MAX_BITWIDTH", - "name": "SOC_ADC_DIGI_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_RESULT_BYTES", - "name": "SOC_ADC_DIGI_RESULT_BYTES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MONITOR_NUM", - "name": "SOC_ADC_DIGI_MONITOR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MIN_BITWIDTH", - "name": "SOC_ADC_RTC_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MAX_BITWIDTH", - "name": "SOC_ADC_RTC_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SHARED_POWER", - "name": "SOC_ADC_SHARED_POWER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APB_BACKUP_DMA", - "name": "SOC_APB_BACKUP_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BROWNOUT_RESET_SUPPORTED", - "name": "SOC_BROWNOUT_RESET_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHARED_IDCACHE_SUPPORTED", - "name": "SOC_SHARED_IDCACHE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CACHE_MEMORY_IBANK_SIZE", - "name": "SOC_CACHE_MEMORY_IBANK_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_CORES_NUM", - "name": "SOC_CPU_CORES_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_INTR_NUM", - "name": "SOC_CPU_INTR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_FLEXIBLE_INTC", - "name": "SOC_CPU_HAS_FLEXIBLE_INTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_CSR_PC", - "name": "SOC_CPU_HAS_CSR_PC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_BREAKPOINTS_NUM", - "name": "SOC_CPU_BREAKPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINTS_NUM", - "name": "SOC_CPU_WATCHPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_VERSION", - "name": "SOC_AHB_GDMA_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_NUM_GROUPS_MAX", - "name": "SOC_GDMA_NUM_GROUPS_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PORT", - "name": "SOC_GPIO_PORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PIN_COUNT", - "name": "SOC_GPIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", - "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", - "name": "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_IN_RANGE_MAX", - "name": "SOC_GPIO_IN_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_OUT_RANGE_MAX", - "name": "SOC_GPIO_OUT_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", - "name": "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", - "name": "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_NUM", - "name": "SOC_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HP_I2C_NUM", - "name": "SOC_HP_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_FIFO_LEN", - "name": "SOC_I2C_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_CMD_REG_NUM", - "name": "SOC_I2C_CMD_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLAVE", - "name": "SOC_I2C_SUPPORT_SLAVE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_XTAL", - "name": "SOC_I2C_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_RTC", - "name": "SOC_I2C_SUPPORT_RTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_10BIT_ADDR", - "name": "SOC_I2C_SUPPORT_10BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_NUM", - "name": "SOC_I2S_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_HW_VERSION_2", - "name": "SOC_I2S_HW_VERSION_2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_XTAL", - "name": "SOC_I2S_SUPPORTS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F160M", - "name": "SOC_I2S_SUPPORTS_PLL_F160M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM", - "name": "SOC_I2S_SUPPORTS_PCM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM", - "name": "SOC_I2S_SUPPORTS_PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_TX", - "name": "SOC_I2S_SUPPORTS_PDM_TX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_TX_LINES", - "name": "SOC_I2S_PDM_MAX_TX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_TDM", - "name": "SOC_I2S_SUPPORTS_TDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_APB_CLOCK", - "name": "SOC_LEDC_SUPPORT_APB_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_NUM", - "name": "SOC_LEDC_TIMER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_CHANNEL_NUM", - "name": "SOC_LEDC_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_BIT_WIDTH", - "name": "SOC_LEDC_TIMER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_FADE_STOP", - "name": "SOC_LEDC_SUPPORT_FADE_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PERIPH_NUM", - "name": "SOC_MMU_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_MIN_REGION_SIZE", - "name": "SOC_MPU_MIN_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGIONS_MAX_NUM", - "name": "SOC_MPU_REGIONS_MAX_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_RO_SUPPORTED", - "name": "SOC_MPU_REGION_RO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_WO_SUPPORTED", - "name": "SOC_MPU_REGION_WO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_GROUPS", - "name": "SOC_RMT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_CHANNELS_PER_GROUP", - "name": "SOC_RMT_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_PINGPONG", - "name": "SOC_RMT_SUPPORT_RX_PINGPONG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_XTAL", - "name": "SOC_RMT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_APB", - "name": "SOC_RMT_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RC_FAST", - "name": "SOC_RMT_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", - "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", - "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND", - "name": "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SLEEP_TGWDT_STOP_WORKAROUND", - "name": "SOC_SLEEP_TGWDT_STOP_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_PIN_COUNT", - "name": "SOC_RTCIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_MEM_BLOCKS_NUM", - "name": "SOC_MPI_MEM_BLOCKS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_OPERATIONS_NUM", - "name": "SOC_MPI_OPERATIONS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RSA_MAX_BIT_LEN", - "name": "SOC_RSA_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_DMA", - "name": "SOC_SHA_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_RESUME", - "name": "SOC_SHA_SUPPORT_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_GDMA", - "name": "SOC_SHA_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA1", - "name": "SOC_SHA_SUPPORT_SHA1", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA224", - "name": "SOC_SHA_SUPPORT_SHA224", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA256", - "name": "SOC_SHA_SUPPORT_SHA256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_GROUPS", - "name": "SOC_SDM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CHANNELS_PER_GROUP", - "name": "SOC_SDM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_APB", - "name": "SOC_SDM_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_NUM", - "name": "SOC_SPI_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_CS_NUM", - "name": "SOC_SPI_MAX_CS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_DDRCLK", - "name": "SOC_SPI_SUPPORT_DDRCLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CD_SIG", - "name": "SOC_SPI_SUPPORT_CD_SIG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_APB", - "name": "SOC_SPI_SUPPORT_CLK_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_XTAL", - "name": "SOC_SPI_SUPPORT_CLK_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", - "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_SUPPORTED", - "name": "SOC_SPI_SCT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_REG_NUM", - "name": "SOC_SPI_SCT_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_IS_INDEPENDENT", - "name": "SOC_MEMSPI_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_PRE_DIVIDER", - "name": "SOC_SPI_MAX_PRE_DIVIDER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", - "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_WRAP", - "name": "SOC_SPI_MEM_SUPPORT_WRAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_COUNTER_NUM", - "name": "SOC_SYSTIMER_COUNTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_NUM", - "name": "SOC_SYSTIMER_ALARM_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_LO", - "name": "SOC_SYSTIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_HI", - "name": "SOC_SYSTIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_FIXED_DIVIDER", - "name": "SOC_SYSTIMER_FIXED_DIVIDER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_INT_LEVEL", - "name": "SOC_SYSTIMER_INT_LEVEL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUPS", - "name": "SOC_TIMER_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_APB", - "name": "SOC_TIMER_GROUP_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_LO", - "name": "SOC_LP_TIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_HI", - "name": "SOC_LP_TIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_XTAL", - "name": "SOC_MWDT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CONTROLLER_NUM", - "name": "SOC_TWAI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CLK_SUPPORT_APB", - "name": "SOC_TWAI_CLK_SUPPORT_APB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MIN", - "name": "SOC_TWAI_BRP_MIN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MAX", - "name": "SOC_TWAI_BRP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTS_RX_STATUS", - "name": "SOC_TWAI_SUPPORTS_RX_STATUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", - "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_PAD_JTAG", - "name": "SOC_EFUSE_DIS_PAD_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_USB_JTAG", - "name": "SOC_EFUSE_DIS_USB_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DIRECT_BOOT", - "name": "SOC_EFUSE_DIS_DIRECT_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SOFT_DIS_JTAG", - "name": "SOC_EFUSE_SOFT_DIS_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_ICACHE", - "name": "SOC_EFUSE_DIS_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_RSA", - "name": "SOC_SECURE_BOOT_V2_RSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", - "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", - "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_NUM", - "name": "SOC_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_HP_NUM", - "name": "SOC_UART_HP_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_FIFO_LEN", - "name": "SOC_UART_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_BITRATE_MAX", - "name": "SOC_UART_BITRATE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_APB_CLK", - "name": "SOC_UART_SUPPORT_APB_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_RTC_CLK", - "name": "SOC_UART_SUPPORT_RTC_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_XTAL_CLK", - "name": "SOC_UART_SUPPORT_XTAL_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_WAKEUP_INT", - "name": "SOC_UART_SUPPORT_WAKEUP_INT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_COEX_HW_PTI", - "name": "SOC_COEX_HW_PTI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_ADVANCE", - "name": "SOC_EXTERNAL_COEX_ADVANCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_DIG_REGS_MEM_SIZE", - "name": "SOC_PHY_DIG_REGS_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MAC_BB_PD_MEM_SIZE", - "name": "SOC_MAC_BB_PD_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", - "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", - "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_WAKEUP", - "name": "SOC_PM_SUPPORT_BT_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_CPU_PD", - "name": "SOC_PM_SUPPORT_CPU_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_WIFI_PD", - "name": "SOC_PM_SUPPORT_WIFI_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_PD", - "name": "SOC_PM_SUPPORT_BT_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC_FAST_PD", - "name": "SOC_PM_SUPPORT_RC_FAST_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_VDDSDIO_PD", - "name": "SOC_PM_SUPPORT_VDDSDIO_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_MAC_BB_PD", - "name": "SOC_PM_SUPPORT_MAC_BB_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", - "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", - "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_PD_BY_SW", - "name": "SOC_PM_MODEM_PD_BY_SW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", - "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", - "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_XTAL32K_SUPPORTED", - "name": "SOC_CLK_XTAL32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_HW_TSF", - "name": "SOC_WIFI_HW_TSF", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_FTM_SUPPORT", - "name": "SOC_WIFI_FTM_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_GCMP_SUPPORT", - "name": "SOC_WIFI_GCMP_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_WAPI_SUPPORT", - "name": "SOC_WIFI_WAPI_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_CSI_SUPPORT", - "name": "SOC_WIFI_CSI_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_MESH_SUPPORT", - "name": "SOC_WIFI_MESH_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", - "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", - "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_SUPPORTED", - "name": "SOC_BLE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MESH_SUPPORTED", - "name": "SOC_BLE_MESH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_50_SUPPORTED", - "name": "SOC_BLE_50_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLUFI_SUPPORTED", - "name": "SOC_BLUFI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_COMBO_MODULE", - "name": "SOC_PHY_COMBO_MODULE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CMAKE", - "name": "IDF_CMAKE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", - "id": "IDF_ENV_FPGA", - "name": "IDF_ENV_FPGA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", - "id": "IDF_ENV_BRINGUP", - "name": "IDF_ENV_BRINGUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CI_BUILD", - "name": "IDF_CI_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_DOC_BUILD", - "name": "IDF_DOC_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN", - "name": "IDF_TOOLCHAIN", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_CLANG", - "name": "IDF_TOOLCHAIN_CLANG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_GCC", - "name": "IDF_TOOLCHAIN_GCC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_RISCV", - "name": "IDF_TARGET_ARCH_RISCV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_XTENSA", - "name": "IDF_TARGET_ARCH_XTENSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH", - "name": "IDF_TARGET_ARCH", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET", - "name": "IDF_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_INIT_VERSION", - "name": "IDF_INIT_VERSION", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32", - "name": "IDF_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S2", - "name": "IDF_TARGET_ESP32S2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S3", - "name": "IDF_TARGET_ESP32S3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C3", - "name": "IDF_TARGET_ESP32C3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C2", - "name": "IDF_TARGET_ESP32C2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C6", - "name": "IDF_TARGET_ESP32C6", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C5", - "name": "IDF_TARGET_ESP32C5", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32P4", - "name": "IDF_TARGET_ESP32P4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H2", - "name": "IDF_TARGET_ESP32H2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C61", - "name": "IDF_TARGET_ESP32C61", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_LINUX", - "name": "IDF_TARGET_LINUX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_FIRMWARE_CHIP_ID", - "name": "IDF_FIRMWARE_CHIP_ID", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "APP_BUILD_TYPE_APP_2NDBOOT", - "name": "APP_BUILD_TYPE_APP_2NDBOOT", - "range": null, - "title": "Default (binary application + 2nd stage bootloader)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APP_BUILD_TYPE_RAM", - "name": "APP_BUILD_TYPE_RAM", - "range": null, - "title": "Build app runs entirely in RAM (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", - "id": "build-type-application-build-type", - "name": "APP_BUILD_TYPE", - "title": "Application build type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_GENERATE_BINARIES", - "name": "APP_BUILD_GENERATE_BINARIES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_BOOTLOADER", - "name": "APP_BUILD_BOOTLOADER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "APP_BUILD_TYPE_RAM", - "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", - "id": "APP_BUILD_TYPE_PURE_RAM_APP", - "name": "APP_BUILD_TYPE_PURE_RAM_APP", - "range": null, - "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_USE_FLASH_SECTIONS", - "name": "APP_BUILD_USE_FLASH_SECTIONS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", - "id": "APP_REPRODUCIBLE_BUILD", - "name": "APP_REPRODUCIBLE_BUILD", - "range": null, - "title": "Enable reproducible build", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", - "id": "APP_NO_BLOBS", - "name": "APP_NO_BLOBS", - "range": null, - "title": "No Binary Blobs", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", - "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloaders before ESP-IDF v2.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", - "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "APP_INIT_CLK", - "name": "APP_INIT_CLK", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "build-type", - "title": "Build type", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "BOOTLOADER_COMPILE_TIME_DATE", - "name": "BOOTLOADER_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", - "id": "BOOTLOADER_PROJECT_VER", - "name": "BOOTLOADER_PROJECT_VER", - "range": [ - 0, - 4294967295 - ], - "title": "Project version", - "type": "int" - } - ], - "depends_on": null, - "id": "bootloader-config-bootloader-manager", - "title": "Bootloader manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", - "id": "BOOTLOADER_OFFSET_IN_FLASH", - "name": "BOOTLOADER_OFFSET_IN_FLASH", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", - "id": "bootloader-config-bootloader-optimization-level", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION", - "title": "Bootloader optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_NONE", - "name": "BOOTLOADER_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_ERROR", - "name": "BOOTLOADER_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_WARN", - "name": "BOOTLOADER_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_INFO", - "name": "BOOTLOADER_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_DEBUG", - "name": "BOOTLOADER_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in bootloader logs.", - "id": "bootloader-config-log-bootloader-log-verbosity", - "name": "BOOTLOADER_LOG_LEVEL", - "title": "Bootloader log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_LEVEL", - "name": "BOOTLOADER_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Use ANSI terminal colors in log output\nEnable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "BOOTLOADER_LOG_COLORS", - "name": "BOOTLOADER_LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", - "id": "bootloader-config-log-format-timestamp", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - } - ], - "depends_on": null, - "id": "bootloader-config-log-format", - "title": "Format", - "type": "menu" - } - ], - "depends_on": null, - "id": "bootloader-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", - "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "range": null, - "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", - "id": "BOOTLOADER_SPI_WP_PIN", - "name": "BOOTLOADER_SPI_WP_PIN", - "range": null, - "title": "Custom SPI Flash WP Pin", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", - "id": "BOOTLOADER_FLASH_DC_AWARE", - "name": "BOOTLOADER_FLASH_DC_AWARE", - "range": null, - "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", - "id": "BOOTLOADER_FLASH_XMC_SUPPORT", - "name": "BOOTLOADER_FLASH_XMC_SUPPORT", - "range": null, - "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_32BIT_ADDR", - "name": "BOOTLOADER_FLASH_32BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address quad flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", - "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", - "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-serial-flash-configurations", - "title": "Serial Flash Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "range": null, - "title": "1.8V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "range": null, - "title": "1.9V", - "type": "bool" - } - ], - "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", - "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", - "id": "bootloader-config-vddsdio-ldo-voltage", - "name": "BOOTLOADER_VDDSDIO_BOOST", - "title": "VDDSDIO LDO voltage", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "range": null, - "title": "Number of the GPIO input for factory reset", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "range": null, - "title": "Reset on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "range": null, - "title": "Reset on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Pin level for factory reset, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", - "title": "Factory reset GPIO level", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", - "id": "BOOTLOADER_OTA_DATA_ERASE", - "name": "BOOTLOADER_OTA_DATA_ERASE", - "range": null, - "title": "Clear OTA data on factory reset (select factory partition)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", - "id": "BOOTLOADER_DATA_FACTORY_RESET", - "name": "BOOTLOADER_DATA_FACTORY_RESET", - "range": null, - "title": "Comma-separated names of partitions to clear on factory reset", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", - "id": "BOOTLOADER_FACTORY_RESET", - "name": "BOOTLOADER_FACTORY_RESET", - "range": null, - "title": "GPIO triggers factory reset", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_APP_TEST", - "name": "BOOTLOADER_NUM_PIN_APP_TEST", - "range": null, - "title": "Number of the GPIO input to boot TEST partition", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_LOW", - "name": "BOOTLOADER_APP_TEST_PIN_LOW", - "range": null, - "title": "Enter test app on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_HIGH", - "name": "BOOTLOADER_APP_TEST_PIN_HIGH", - "range": null, - "title": "Enter test app on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "Pin level for app test, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", - "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", - "title": "App test GPIO level", - "type": "choice" - } - ], - "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", - "id": "BOOTLOADER_APP_TEST", - "name": "BOOTLOADER_APP_TEST", - "range": null, - "title": "GPIO triggers boot from test app partition", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", - "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", - "id": "BOOTLOADER_HOLD_TIME_GPIO", - "name": "BOOTLOADER_HOLD_TIME_GPIO", - "range": null, - "title": "Hold time of GPIO for reset/test mode (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", - "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "range": null, - "title": "Enable protection for unmapped memory regions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", - "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "range": null, - "title": "Allows RTC watchdog disable in user code", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", - "id": "BOOTLOADER_WDT_TIME_MS", - "name": "BOOTLOADER_WDT_TIME_MS", - "range": [ - 0, - 120000 - ], - "title": "Timeout for RTC watchdog (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", - "id": "BOOTLOADER_WDT_ENABLE", - "name": "BOOTLOADER_WDT_ENABLE", - "range": null, - "title": "Use RTC watchdog in start code", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", - "id": "BOOTLOADER_APP_SECURE_VERSION", - "name": "BOOTLOADER_APP_SECURE_VERSION", - "range": null, - "title": "eFuse secure version of app", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", - "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "range": null, - "title": "Size of the efuse secure version field", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", - "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "range": null, - "title": "Emulate operations with efuse secure version(only test)", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "help": "This option prevents rollback to previous firmware/application image with lower security version.", - "id": "BOOTLOADER_APP_ANTI_ROLLBACK", - "name": "BOOTLOADER_APP_ANTI_ROLLBACK", - "range": null, - "title": "Enable app anti-rollback support", - "type": "bool" - } - ], - "depends_on": null, - "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", - "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "range": null, - "title": "Enable app rollback support", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", - "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", - "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "range": null, - "title": "Skip image validation when exiting deep sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", - "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "range": null, - "title": "Skip image validation from power on reset (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", - "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "range": null, - "title": "Skip image validation always (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", - "id": "BOOTLOADER_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_RESERVE_RTC_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "range": null, - "title": "Include custom memory in the CRC calculation", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "range": null, - "title": "Size in bytes for custom purposes", - "type": "hex" - } - ], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "range": null, - "title": "Reserve RTC FAST memory for custom purposes", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", - "id": "BOOTLOADER_RESERVE_RTC_MEM", - "name": "BOOTLOADER_RESERVE_RTC_MEM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config", - "title": "Bootloader config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_BOOT", - "name": "SECURE_SIGNED_ON_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_UPDATE", - "name": "SECURE_SIGNED_ON_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", - "help": null, - "id": "SECURE_SIGNED_APPS", - "name": "SECURE_SIGNED_APPS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", - "help": null, - "id": "SECURE_BOOT_V2_RSA_SUPPORTED", - "name": "SECURE_BOOT_V2_RSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V2_ECC", - "help": null, - "id": "SECURE_BOOT_V2_ECC_SUPPORTED", - "name": "SECURE_BOOT_V2_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V1", - "help": null, - "id": "SECURE_BOOT_V1_SUPPORTED", - "name": "SECURE_BOOT_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_REV_MIN_FULL >= 300", - "help": null, - "id": "SECURE_BOOT_V2_PREFERRED", - "name": "SECURE_BOOT_V2_PREFERRED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_ECDSA_ENABLED", - "name": "SECURE_BOOT_V2_ECDSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_RSA_ENABLED", - "name": "SECURE_BOOT_V2_RSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_BOOT", - "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", - "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "range": null, - "title": "Require signed app images", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", - "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "range": null, - "title": "ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", - "id": "SECURE_SIGNED_APPS_RSA_SCHEME", - "name": "SECURE_SIGNED_APPS_RSA_SCHEME", - "range": null, - "title": "RSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "range": null, - "title": "ECDSA (V2)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", - "id": "security-features-app-signing-scheme", - "name": "SECURE_SIGNED_APPS_SCHEME", - "title": "App Signing Scheme", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "range": null, - "title": "Using ECC curve NISTP192", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "range": null, - "title": "Using ECC curve NISTP256 (Recommended)", - "type": "bool" - } - ], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", - "id": "security-features-ecdsa-key-size", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", - "title": "ECDSA key size", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", - "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", - "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "range": null, - "title": "Bootloader verifies app signatures", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", - "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "range": null, - "title": "Verify app signature on update", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", - "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V1_ENABLED", - "name": "SECURE_BOOT_V1_ENABLED", - "range": null, - "title": "Enable Secure Boot version 1", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", - "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V2_ENABLED", - "name": "SECURE_BOOT_V2_ENABLED", - "range": null, - "title": "Enable Secure Boot version 2", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT", - "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", - "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", - "name": "SECURE_BOOT_VERSION", - "title": "Select secure boot version", - "type": "choice" - } - ], - "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", - "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", - "id": "SECURE_BOOT", - "name": "SECURE_BOOT", - "range": null, - "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", - "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "range": null, - "title": "One-time flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", - "id": "SECURE_BOOTLOADER_REFLASHABLE", - "name": "SECURE_BOOTLOADER_REFLASHABLE", - "range": null, - "title": "Reflashable", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT_V1_ENABLED", - "help": null, - "id": "security-features-secure-bootloader-mode", - "name": "SECURE_BOOTLOADER_MODE", - "title": "Secure bootloader mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", - "id": "SECURE_BOOT_SIGNING_KEY", - "name": "SECURE_BOOT_SIGNING_KEY", - "range": null, - "title": "Secure boot private signing key", - "type": "string" - } - ], - "depends_on": "SECURE_SIGNED_APPS", - "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", - "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "range": null, - "title": "Sign binaries during build", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_VERIFICATION_KEY", - "name": "SECURE_BOOT_VERIFICATION_KEY", - "range": null, - "title": "Secure boot public signature verification key", - "type": "string" - }, - { - "children": [], - "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", - "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "range": null, - "title": "Enable Aggressive key revoke strategy", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", - "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "range": null, - "title": "Do not disable the ability to further read protect eFuses", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED && SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", - "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "range": null, - "title": "Flash bootloader along with other artifacts when using the default flash command", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "range": null, - "title": "No encoding (256 bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "range": null, - "title": "3/4 encoding (192 bit key)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", - "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", - "id": "security-features-hardware-key-encoding", - "name": "SECURE_BOOTLOADER_KEY_ENCODING", - "title": "Hardware Key Encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_BOOT", - "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_INSECURE", - "name": "SECURE_BOOT_INSECURE", - "range": null, - "title": "Allow potentially insecure options", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "range": null, - "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128", - "name": "SECURE_FLASH_ENCRYPTION_AES128", - "range": null, - "title": "AES-128 (256-bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES256", - "name": "SECURE_FLASH_ENCRYPTION_AES256", - "range": null, - "title": "AES-256 (512-bit key)", - "type": "bool" - } - ], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", - "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", - "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", - "title": "Size of generated XTS-AES key", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "range": null, - "title": "Development (NOT SECURE)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "range": null, - "title": "Release", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", - "name": "SECURE_FLASH_ENCRYPTION_MODE", - "title": "Enable usage mode", - "type": "choice" - } - ], - "depends_on": null, - "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", - "id": "SECURE_FLASH_ENC_ENABLED", - "name": "SECURE_FLASH_ENC_ENABLED", - "range": null, - "title": "Enable flash encryption on boot (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", - "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_ROM_BASIC", - "name": "SECURE_BOOT_ALLOW_ROM_BASIC", - "range": null, - "title": "Leave ROM BASIC Interpreter available on reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_JTAG", - "name": "SECURE_BOOT_ALLOW_JTAG", - "range": null, - "title": "Allow JTAG Debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", - "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "range": null, - "title": "Allow app partition length not 64KB aligned", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", - "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "range": null, - "title": "Leave unused digest slots available (not revoke)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "range": null, - "title": "Leave UART bootloader encryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", - "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "range": null, - "title": "Leave UART bootloader decryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", - "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "range": null, - "title": "Leave UART bootloader flash cache enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", - "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "range": null, - "title": "Require flash encryption to be already enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", - "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "range": null, - "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", - "type": "bool" - } - ], - "depends_on": null, - "id": "security-features-potentially-insecure-options", - "title": "Potentially insecure options", - "type": "menu" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", - "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "range": null, - "title": "Encrypt only the app image that is present in the partition of type app", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", - "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "range": null, - "title": "Check Flash Encryption enabled on app startup", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", - "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Permanently enable XTS-AES's pseudo rounds function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_ROM_DL_MODE_ENABLED", - "name": "SECURE_ROM_DL_MODE_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", - "id": "SECURE_DISABLE_ROM_DL_MODE", - "name": "SECURE_DISABLE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently disabled (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", - "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32 (includes revisions till ECO3).", - "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", - "id": "SECURE_INSECURE_ALLOW_DL_MODE", - "name": "SECURE_INSECURE_ALLOW_DL_MODE", - "range": null, - "title": "UART ROM download mode (Enabled (not recommended))", - "type": "bool" - } - ], - "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", - "help": null, - "id": "security-features-uart-rom-download-mode", - "name": "SECURE_UART_ROM_DL_MODE", - "title": "UART ROM download mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "security-features", - "title": "Security features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "APP_COMPILE_TIME_DATE", - "name": "APP_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for app", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_VER_VAR", - "name": "APP_EXCLUDE_PROJECT_VER_VAR", - "range": null, - "title": "Exclude PROJECT_VER from firmware image", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_NAME_VAR", - "name": "APP_EXCLUDE_PROJECT_NAME_VAR", - "range": null, - "title": "Exclude PROJECT_NAME from firmware image", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "APP_PROJECT_VER_FROM_CONFIG", - "help": "Project version", - "id": "APP_PROJECT_VER", - "name": "APP_PROJECT_VER", - "range": null, - "title": "Project version", - "type": "string" - } - ], - "depends_on": null, - "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", - "id": "APP_PROJECT_VER_FROM_CONFIG", - "name": "APP_PROJECT_VER_FROM_CONFIG", - "range": null, - "title": "Get the project version from Kconfig", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", - "id": "APP_RETRIEVE_LEN_ELF_SHA", - "name": "APP_RETRIEVE_LEN_ELF_SHA", - "range": [ - 8, - 64 - ], - "title": "The length of APP ELF SHA is stored in RAM(chars)", - "type": "int" - } - ], - "depends_on": null, - "id": "application-manager", - "title": "Application manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_LE", - "name": "ESP_ROM_HAS_CRC_LE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_BE", - "name": "ESP_ROM_HAS_CRC_BE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_MZ_CRC32", - "name": "ESP_ROM_HAS_MZ_CRC32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_JPEG_DECODE", - "name": "ESP_ROM_HAS_JPEG_DECODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_UART_CLK_IS_XTAL", - "name": "ESP_ROM_UART_CLK_IS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ERASE_0_REGION_BUG", - "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", - "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_GET_CLK_FREQ", - "name": "ESP_ROM_GET_CLK_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", - "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_LAYOUT_TABLE", - "name": "ESP_ROM_HAS_LAYOUT_TABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH", - "name": "ESP_ROM_HAS_SPI_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", - "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB", - "name": "ESP_ROM_HAS_NEWLIB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", - "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SW_FLOAT", - "name": "ESP_ROM_HAS_SW_FLOAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_OTG_NUM", - "name": "ESP_ROM_USB_OTG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_VERSION", - "name": "ESP_ROM_HAS_VERSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Always print ROM logs, this is the default behavior.", - "id": "BOOT_ROM_LOG_ALWAYS_ON", - "name": "BOOT_ROM_LOG_ALWAYS_ON", - "range": null, - "title": "Always Log", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Don't print ROM logs.", - "id": "BOOT_ROM_LOG_ALWAYS_OFF", - "name": "BOOT_ROM_LOG_ALWAYS_OFF", - "range": null, - "title": "Permanently disable logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "range": null, - "title": "Log on GPIO High", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_LOW", - "name": "BOOT_ROM_LOG_ON_GPIO_LOW", - "range": null, - "title": "Log on GPIO Low", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_ESP32", - "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", - "id": "boot-rom-behavior-permanently-change-boot-rom-output", - "name": "BOOT_ROM_LOG_SCHEME", - "title": "Permanently change Boot ROM output", - "type": "choice" - } - ], - "depends_on": null, - "id": "boot-rom-behavior", - "title": "Boot ROM Behavior", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", - "id": "ESPTOOLPY_NO_STUB", - "name": "ESPTOOLPY_NO_STUB", - "range": null, - "title": "Disable download stub", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_OCT_FLASH", - "name": "ESPTOOLPY_OCT_FLASH", - "range": null, - "title": "Enable Octal Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", - "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "range": null, - "title": "Choose flash mode automatically (please read help)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QIO", - "name": "ESPTOOLPY_FLASHMODE_QIO", - "range": null, - "title": "QIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QOUT", - "name": "ESPTOOLPY_FLASHMODE_QOUT", - "range": null, - "title": "QOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DIO", - "name": "ESPTOOLPY_FLASHMODE_DIO", - "range": null, - "title": "DIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DOUT", - "name": "ESPTOOLPY_FLASHMODE_DOUT", - "range": null, - "title": "DOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_OPI", - "name": "ESPTOOLPY_FLASHMODE_OPI", - "range": null, - "title": "OPI", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", - "id": "serial-flasher-config-flash-spi-mode", - "name": "ESPTOOLPY_FLASHMODE", - "title": "Flash SPI mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "range": null, - "title": "STR Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "range": null, - "title": "DTR Mode", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-sampling-mode", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", - "title": "Flash Sampling Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHMODE", - "name": "ESPTOOLPY_FLASHMODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_80M", - "name": "ESPTOOLPY_FLASHFREQ_80M", - "range": null, - "title": "80 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_40M", - "name": "ESPTOOLPY_FLASHFREQ_40M", - "range": null, - "title": "40 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_26M", - "name": "ESPTOOLPY_FLASHFREQ_26M", - "range": null, - "title": "26 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_20M", - "name": "ESPTOOLPY_FLASHFREQ_20M", - "range": null, - "title": "20 MHz", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-spi-speed", - "name": "ESPTOOLPY_FLASHFREQ", - "title": "Flash SPI speed", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ", - "name": "ESPTOOLPY_FLASHFREQ", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_1MB", - "name": "ESPTOOLPY_FLASHSIZE_1MB", - "range": null, - "title": "1 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_2MB", - "name": "ESPTOOLPY_FLASHSIZE_2MB", - "range": null, - "title": "2 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_4MB", - "name": "ESPTOOLPY_FLASHSIZE_4MB", - "range": null, - "title": "4 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_8MB", - "name": "ESPTOOLPY_FLASHSIZE_8MB", - "range": null, - "title": "8 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_16MB", - "name": "ESPTOOLPY_FLASHSIZE_16MB", - "range": null, - "title": "16 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_32MB", - "name": "ESPTOOLPY_FLASHSIZE_32MB", - "range": null, - "title": "32 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_64MB", - "name": "ESPTOOLPY_FLASHSIZE_64MB", - "range": null, - "title": "64 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_128MB", - "name": "ESPTOOLPY_FLASHSIZE_128MB", - "range": null, - "title": "128 MB", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash size, in megabytes", - "id": "serial-flasher-config-flash-size", - "name": "ESPTOOLPY_FLASHSIZE", - "title": "Flash size", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE", - "name": "ESPTOOLPY_FLASHSIZE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", - "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "range": null, - "title": "Detect flash size when flashing bootloader", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_RESET", - "name": "ESPTOOLPY_BEFORE_RESET", - "range": null, - "title": "Reset to bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_NORESET", - "name": "ESPTOOLPY_BEFORE_NORESET", - "range": null, - "title": "No reset", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-before-flashing", - "name": "ESPTOOLPY_BEFORE", - "title": "Before flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_BEFORE", - "name": "ESPTOOLPY_BEFORE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_RESET", - "name": "ESPTOOLPY_AFTER_RESET", - "range": null, - "title": "Reset after flashing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_NORESET", - "name": "ESPTOOLPY_AFTER_NORESET", - "range": null, - "title": "Stay in bootloader", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-after-flashing", - "name": "ESPTOOLPY_AFTER", - "title": "After flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_AFTER", - "name": "ESPTOOLPY_AFTER", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_MONITOR_BAUD", - "name": "ESPTOOLPY_MONITOR_BAUD", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "serial-flasher-config", - "title": "Serial flasher config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP", - "name": "PARTITION_TABLE_SINGLE_APP", - "range": null, - "title": "Single factory app, no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE", - "range": null, - "title": "Single factory app (large), no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", - "id": "PARTITION_TABLE_TWO_OTA", - "name": "PARTITION_TABLE_TWO_OTA", - "range": null, - "title": "Factory app, two OTA definitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", - "id": "PARTITION_TABLE_TWO_OTA_LARGE", - "name": "PARTITION_TABLE_TWO_OTA_LARGE", - "range": null, - "title": "Two large size OTA partitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", - "id": "PARTITION_TABLE_CUSTOM", - "name": "PARTITION_TABLE_CUSTOM", - "range": null, - "title": "Custom partition table CSV", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "range": null, - "title": "Single factory app, no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "range": null, - "title": "Single factory app (large), no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", - "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "range": null, - "title": "Factory app, two OTA definitions, encrypted NVS", - "type": "bool" - } - ], - "depends_on": null, - "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", - "id": "partition-table-partition-table", - "name": "PARTITION_TABLE_TYPE", - "title": "Partition Table", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", - "id": "PARTITION_TABLE_CUSTOM_FILENAME", - "name": "PARTITION_TABLE_CUSTOM_FILENAME", - "range": null, - "title": "Custom partition CSV file", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PARTITION_TABLE_FILENAME", - "name": "PARTITION_TABLE_FILENAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", - "id": "PARTITION_TABLE_OFFSET", - "name": "PARTITION_TABLE_OFFSET", - "range": null, - "title": "Offset of partition table", - "type": "hex" - }, - { - "children": [], - "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", - "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", - "id": "PARTITION_TABLE_MD5", - "name": "PARTITION_TABLE_MD5", - "range": null, - "title": "Generate an MD5 checksum for the partition table", - "type": "bool" - } - ], - "depends_on": null, - "id": "partition-table", - "title": "Partition Table", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "GPIO number on which the \"Boot\" button is connected. This is generally used\nby the application for custom operations like toggling states, resetting to defaults, etc.", - "id": "EXAMPLE_BOARD_BUTTON_GPIO", - "name": "EXAMPLE_BOARD_BUTTON_GPIO", - "range": null, - "title": "Boot Button GPIO", - "type": "int" - } - ], - "depends_on": null, - "id": "example-configuration", - "title": "Example Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Show the QR code for provisioning.", - "id": "APP_NETWORK_PROV_SHOW_QR", - "name": "APP_NETWORK_PROV_SHOW_QR", - "range": null, - "title": "Show provisioning QR code", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the maximum wrong pop attempts allowed before stopping provisioning.\nSet 0 for the feature to be disabled.\nThis safeguards the device from brute-force attempt by limiting the wrong pop allowed.\nNeeds IDF version >= 5.1.3", - "id": "APP_NETWORK_PROV_MAX_POP_MISMATCH", - "name": "APP_NETWORK_PROV_MAX_POP_MISMATCH", - "range": [ - 0, - 20 - ], - "title": "Max wrong pop attempts allowed", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32H2 && ", - "help": null, - "id": "APP_NETWORK_PROV_TRANSPORT_SOFTAP", - "name": "APP_NETWORK_PROV_TRANSPORT_SOFTAP", - "range": null, - "title": "Soft AP", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32S2 && ", - "help": null, - "id": "APP_NETWORK_PROV_TRANSPORT_BLE", - "name": "APP_NETWORK_PROV_TRANSPORT_BLE", - "range": null, - "title": "BLE", - "type": "bool" - } - ], - "depends_on": null, - "help": "Wi-Fi/Network provisioning component offers both, SoftAP and BLE transports. Choose any one.", - "id": "esp-rainmaker-app-wi-fi-provisioning-provisioning-transport-method", - "name": "APP_NETWORK_PROV_TRANSPORT", - "title": "Provisioning Transport method", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_NETWORK_PROV_TRANSPORT", - "name": "APP_NETWORK_PROV_TRANSPORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "APP_NETWORK_RESET_PROV_ON_FAILURE", - "help": "Set the Maximum retry to avoid reconnecting to an inexistent network or if credentials\nare misconfigured. Provisioned credentials are erased and internal state machine\nis reset after this threshold is reached.", - "id": "APP_NETWORK_PROV_MAX_RETRY_CNT", - "name": "APP_NETWORK_PROV_MAX_RETRY_CNT", - "range": null, - "title": "Max retries before reseting provisioning state machine", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable reseting provisioned credentials and state machine after session failure.\nThis will restart the provisioning service after retries are exhausted.", - "id": "APP_NETWORK_RESET_PROV_ON_FAILURE", - "name": "APP_NETWORK_RESET_PROV_ON_FAILURE", - "range": null, - "title": "Reset provisioned credentials and state machine after session failure", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Show some intro text for demos in order to help users understand more about ESP RainMaker.", - "id": "APP_NETWORK_SHOW_DEMO_INTRO_TEXT", - "name": "APP_NETWORK_SHOW_DEMO_INTRO_TEXT", - "range": null, - "title": "Show intro text for demos", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Timeout (in minutes) after which the provisioning will auto stop. A reboot will be required\nto restart provisioning. It is always recommended to set this to some non zero value, especially\nif you are not using PoP. Set to 0 if you do not want provisioning to auto stop.", - "id": "APP_NETWORK_PROV_TIMEOUT_PERIOD", - "name": "APP_NETWORK_PROV_TIMEOUT_PERIOD", - "range": null, - "title": "Provisioning Timeout", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Provisioning Name Prefix.", - "id": "APP_NETWORK_PROV_NAME_PREFIX", - "name": "APP_NETWORK_PROV_NAME_PREFIX", - "range": null, - "title": "Provisioning Name Prefix", - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_NETWORK_OVER_WIFI", - "help": "Stay compatible with Previous App Wi-Fi component", - "id": "APP_WIFI_PROV_COMPAT", - "name": "APP_WIFI_PROV_COMPAT", - "range": null, - "title": "Stay compatible with App Wi-Fi component", - "type": "bool" - } - ], - "depends_on": null, - "id": "esp-rainmaker-app-wi-fi-provisioning", - "title": "ESP RainMaker App Wi-Fi Provisioning", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Do not use any claiming. The MQTT credentials need to\nbe pre-programmed for this to work. This should be used\nfor all private RainMaker deployments.", - "id": "ESP_RMAKER_NO_CLAIM", - "name": "ESP_RMAKER_NO_CLAIM", - "range": null, - "title": "Do not use Claiming", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32 && !IDF_TARGET_ESP32C2 && ", - "help": "Use Self Claiming i.e. get the MQTT credentials\ndirectly from the claiming service.", - "id": "ESP_RMAKER_SELF_CLAIM", - "name": "ESP_RMAKER_SELF_CLAIM", - "range": null, - "title": "Use Self Claiming", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_ENABLED && !IDF_TARGET_ESP32S2 && ", - "help": "Use Assisted Claiming i.e. get the MQTT credentials\nfrom the claiming service via assistance from clients,\nlike the phone apps.", - "id": "ESP_RMAKER_ASSISTED_CLAIM", - "name": "ESP_RMAKER_ASSISTED_CLAIM", - "range": null, - "title": "Use Assisted Claiming", - "type": "bool" - } - ], - "depends_on": null, - "help": "Claiming type to be used.", - "id": "esp-rainmaker-config-claiming-type", - "name": "ESP_RMAKER_CLAIM_TYPE", - "title": "Claiming Type", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_NO_CLAIM && ", - "help": "Enable the use of ESP Secure Certificate Manager APIs for the example.\nPlease refer to ESP Secure Certificate Manager documentation for more details.", - "id": "ESP_RMAKER_USE_ESP_SECURE_CERT_MGR", - "name": "ESP_RMAKER_USE_ESP_SECURE_CERT_MGR", - "range": null, - "title": "Use ESP Secure Certificate Manager", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option expects the Private key and Device certificate to be in the NVS.\nThis is the default behaviour.", - "id": "ESP_RMAKER_USE_NVS", - "name": "ESP_RMAKER_USE_NVS", - "range": null, - "title": "Use NVS (default)", - "type": "bool" - } - ], - "depends_on": null, - "help": "ESP devices support multiple ways to secure store the PKI credentials.\nCurrently, NVS and ESP Secure Cert Manager are supported.\nThe default behaviour is to access the PKI credentials from the NVS.\nConsult the ESP-TLS documentation in ESP-IDF Programming guide for more details.", - "id": "esp-rainmaker-config-choose-pki-credentials-access-method", - "name": "ESP_RMAKER_CHOOSE_PKI_ACCESS_METHOD", - "title": "Choose PKI credentials access method", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_RMAKER_CLAIM_TYPE", - "name": "ESP_RMAKER_CLAIM_TYPE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_SELF_CLAIM", - "help": "ESP RainMaker Claiming Service Base URL.", - "id": "ESP_RMAKER_CLAIM_SERVICE_BASE_URL", - "name": "ESP_RMAKER_CLAIM_SERVICE_BASE_URL", - "range": null, - "title": "ESP RainMaker Claiming Service Base URL", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "Normally, if self claiming or assisted claiming is used, the MQTT Host is anyways read from\nESP_RMAKER_MQTT_HOST, independent of this config option. However, if this is set, even if\nan MQTT host value is found in NVS, it will be overriden with ESP_RMAKER_MQTT_HOST.", - "id": "ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG", - "name": "ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG", - "range": null, - "title": "Read MQTT Host from ESP_RMAKER_MQTT_HOST (Read Docs)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the device will get its node id from the device certificate's CN field. If not enabled,\nit will read the node id either from nvs factory partition or mac address, depending on the configuration.", - "id": "ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN", - "name": "ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN", - "range": null, - "title": "Read Node ID from Device Certificate", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_SELF_CLAIM || ESP_RMAKER_ASSISTED_CLAIM || ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG", - "help": "ESP RainMaker MQTT Host name.", - "id": "ESP_RMAKER_MQTT_HOST", - "name": "ESP_RMAKER_MQTT_HOST", - "range": null, - "title": "ESP RainMaker MQTT Host", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "This config enables the use of AWS Basic Ingest Topics for Node to Cloud communication,\nwhich eliminates the MQTT Broker and thus reduces messaging cost.", - "id": "ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS", - "name": "ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS", - "range": null, - "title": "Use Basic Ingest Topics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "help": "Default MQTT budget. Budget will reduce on sending an MQTT message and increase based on\nESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD. If no budget is available, MQTT message will be dropped.", - "id": "ESP_RMAKER_MQTT_DEFAULT_BUDGET", - "name": "ESP_RMAKER_MQTT_DEFAULT_BUDGET", - "range": [ - 64, - 1024 - ], - "title": "Default MQTT Budget", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "help": "Maximum budget that the node can have. No additional budget will be allocated if this count is reached.", - "id": "ESP_RMAKER_MQTT_MAX_BUDGET", - "name": "ESP_RMAKER_MQTT_MAX_BUDGET", - "range": [ - 64, - 2048 - ], - "title": "Max MQTT Budget", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "help": "Period in seconds after which the MQTT budget should revive (by ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT).\nThis is used to limit the messages being sent by the node.", - "id": "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD", - "name": "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD", - "range": [ - 5, - 600 - ], - "title": "MQTT Budget revive period", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "help": "The count by which the budget will be increased periodically based on ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD.", - "id": "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT", - "name": "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT", - "range": [ - 1, - 16 - ], - "title": "MQTT Budget revive count", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable MQTT budgeting, which will control the number of MQTT messages sent by the node.", - "id": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "name": "ESP_RMAKER_MQTT_ENABLE_BUDGETING", - "range": null, - "title": "Enable MQTT budgeting", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Maximum size of the payload for reporting parameter values.", - "id": "ESP_RMAKER_MAX_PARAM_DATA_SIZE", - "name": "ESP_RMAKER_MAX_PARAM_DATA_SIZE", - "range": [ - 64, - 8192 - ], - "title": "Maximum Parameters' data size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The handlers for User Node Mapping are now registered internally by ESP RainMaker core,\nby registering to appropriate Wi-Fi Provisioning events. If your application code also\nhas the calls to create and register the user mapping handlers, enable this config\noption to prevent duplication.", - "id": "ESP_RMAKER_DISABLE_USER_MAPPING_PROV", - "name": "ESP_RMAKER_DISABLE_USER_MAPPING_PROV", - "range": null, - "title": "Disable User Mapping during Provisioning", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This enables the additional user id checks during user node mapping. Whenever a new user\nid is received, it is checked against the existing user id in NVS. If there is a mismatch,\nor if no user id exists in NVS, this is considered as a reset state and the same is reported\nto the ESP RainMaker Cloud during the User Node association MQTT Publish so that the cloud\ncan take appropriate action w.r.t user permissions. It is recommended to enable this option\nfor security reasons.", - "id": "ESP_RMAKER_USER_ID_CHECK", - "name": "ESP_RMAKER_USER_ID_CHECK", - "range": null, - "title": "User id check for User Node mapping", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "By default, the \"Name\" parameter (esp.param.name) changes are handled internally. If Applications\nwant to handle this themselves, this config option can be enabled. Please ensure that you update\nand report the name parameter in your callback so that it reflects correctly everywhere.\nIf no device callback is registered, the name paramater will be handled internally.", - "id": "RMAKER_NAME_PARAM_CB", - "name": "RMAKER_NAME_PARAM_CB", - "range": null, - "title": "Call device callback for Name param", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this allows to discover and control the node over local Wi-Fi network.\nNote that this uses only Wi-Fi level security and so, any client on the same\nWi-Fi network can potentially control the node. The communication is not encrypted\nand uses plain HTTP. Please Check the RainMaker documentation for additional details.\nNote that enabling this just means that the APIs to enable/disable local\ncontrol will be compiled in and can be used in application code. If CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE\nis also enabled, then no additional APIs are required for actually enabling local control.", - "id": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE", - "name": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE", - "range": null, - "title": "ESP RainMaker Local Control Feature", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Automatically enabled local control when RainMaker starts.", - "id": "ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE", - "name": "ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE", - "range": null, - "title": "Auto ESP RainMaker Local Control", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE", - "help": "The port number to be used for http for local control.", - "id": "ESP_RMAKER_LOCAL_CTRL_HTTP_PORT", - "name": "ESP_RMAKER_LOCAL_CTRL_HTTP_PORT", - "range": null, - "title": "Local Control HTTP Port", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE", - "help": "The task stack size to be used for http server for local control.", - "id": "ESP_RMAKER_LOCAL_CTRL_STACK_SIZE", - "name": "ESP_RMAKER_LOCAL_CTRL_STACK_SIZE", - "range": null, - "title": "Local Control HTTP Server task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_LOCAL_CTRL_SECURITY_0", - "name": "ESP_RMAKER_LOCAL_CTRL_SECURITY_0", - "range": null, - "title": "sec0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_LOCAL_CTRL_SECURITY_1", - "name": "ESP_RMAKER_LOCAL_CTRL_SECURITY_1", - "range": null, - "title": "sec1", - "type": "bool" - } - ], - "depends_on": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE", - "help": "Security type to be selected for local control.", - "id": "esp-rainmaker-config-local-control-security-type", - "name": "ESP_RMAKER_LOCAL_CTRL_SECURITY", - "title": "Local Control Security Type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_RMAKER_LOCAL_CTRL_SECURITY", - "name": "ESP_RMAKER_LOCAL_CTRL_SECURITY", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE && ESP_RMAKER_NETWORK_OVER_THREAD", - "help": "This parameter defines, in seconds, how long a Thread Border Router waits before removing an SRP service\nafter the Thread End Device powers off. To minimize unnecessary packet exchanges, we set the lease interval\nto 180 seconds (3 minutes) by default.", - "id": "ESP_RMAKER_LOCAL_CTRL_LEASE_INTERVAL_SECONDS", - "name": "ESP_RMAKER_LOCAL_CTRL_LEASE_INTERVAL_SECONDS", - "range": null, - "title": "Local Control SRP Service Lease Interval (Seconds)", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_CONSOLE_UART_NUM_0", - "name": "ESP_RMAKER_CONSOLE_UART_NUM_0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_CONSOLE_UART_NUM_1", - "name": "ESP_RMAKER_CONSOLE_UART_NUM_1", - "range": null, - "title": "UART1", - "type": "bool" - } - ], - "depends_on": null, - "help": "UART to be selected for serial console.", - "id": "esp-rainmaker-config-uart-for-console-input", - "name": "ESP_RMAKER_CONSOLE_UART_NUM", - "title": "UART for console input", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_RMAKER_CONSOLE_UART_NUM", - "name": "ESP_RMAKER_CONSOLE_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Use Certificate Bundle for server authentication. Enabling this is recommended to safeguard\nagainst any changes in the server certificates in future. This has an impact on the binary\nsize as well as heap requirement.", - "id": "ESP_RMAKER_USE_CERT_BUNDLE", - "name": "ESP_RMAKER_USE_CERT_BUNDLE", - "range": null, - "title": "Use Certificate Bundle", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_OTA_AUTOFETCH", - "help": "Periodically send an OTA fetch request. If set to 0, the request will be sent only once,\nwhen the node connects to the ESP RainMaker Cloud first time after a boot.\nElse, this defines the period (in hours) for the periodic fetch request.", - "id": "ESP_RMAKER_OTA_AUTOFETCH_PERIOD", - "name": "ESP_RMAKER_OTA_AUTOFETCH_PERIOD", - "range": [ - 0, - 168 - ], - "title": "OTA Auto Fetch Period", - "type": "int" - } - ], - "depends_on": null, - "help": "Applicable only for OTA using Topics.\nFetch the OTA (i.e. get the URL and other details) by actively sending an\nOTA fetch request to ESP RainMaker Cloud. If this is disabled, the node\nwill stay subscribed to the OTA Topics, but will get the information only\nif someone explicitly triggers it.", - "id": "ESP_RMAKER_OTA_AUTOFETCH", - "name": "ESP_RMAKER_OTA_AUTOFETCH", - "range": null, - "title": "Auto Fetch OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This allows you to skip the validation of OTA server certificate CN field.", - "id": "ESP_RMAKER_SKIP_COMMON_NAME_CHECK", - "name": "ESP_RMAKER_SKIP_COMMON_NAME_CHECK", - "range": null, - "title": "Skip server certificate CN field check", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This allows you to skip the firmware version check. Useful during development,\nbut not for production.", - "id": "ESP_RMAKER_SKIP_VERSION_CHECK", - "name": "ESP_RMAKER_SKIP_VERSION_CHECK", - "range": null, - "title": "Skip firmware version check", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This allows you to skip the secure version check. Useful during development,\nbut not for production. Check out ESP IDF's Anti-rollback feature for more details.", - "id": "ESP_RMAKER_SKIP_SECURE_VERSION_CHECK", - "name": "ESP_RMAKER_SKIP_SECURE_VERSION_CHECK", - "range": null, - "title": "Skip secure version check", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This allows you to skip the project name check.", - "id": "ESP_RMAKER_SKIP_PROJECT_NAME_CHECK", - "name": "ESP_RMAKER_SKIP_PROJECT_NAME_CHECK", - "range": null, - "title": "Skip project name check", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Increasing this value beyond the default would speed up the OTA download process.\nHowever, please ensure that your application has enough memory headroom to allow this,\nelse, the OTA may fail.", - "id": "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE", - "name": "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE", - "range": [ - 512, - 5760 - ], - "title": "OTA HTTP receive buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "After an OTA Update, if CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is set, then the firmware will wait for MQTT\nconnection to mark the new firmware as valid. However, if it is not able to do so within\nthis wait period (in seconds), the firmware will be marked as invalid and the older\nfirmware will be booted into.", - "id": "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD", - "name": "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD", - "range": [ - 30, - 600 - ], - "title": "OTA Rollback Wait Period (Seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "After OTA image is flashed and active partition changed, the device automatically reboots. To disable this\nbehaviour and handle reboot on your own, based on RMAKER_OTA event, enable this option.", - "id": "ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT", - "name": "ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT", - "range": null, - "title": "Disable auto reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "OTA Jobs can include additional metadata for time to indicate a range of valid date and the time within\nthose dates. Eg. Perform OTA between 1 Dec 2022 and 10 Dec 2022 that too only between 2:00am and 5:00am.\nIf you want to ignore this, disable this option.", - "id": "ESP_RMAKER_OTA_TIME_SUPPORT", - "name": "ESP_RMAKER_OTA_TIME_SUPPORT", - "range": null, - "title": "Enable OTA Time Support", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_OTA_PROGRESS_SUPPORT", - "help": "If you set the reported upgrade progress interval to 10, it will report 10% of the progress every time 10%\nof the firmware is downloaded, range from 10%, 20%, 30% until 90%. For example, when downloaded 10% firmware size,\nthe ota_status is OTA_STATUS_IN_PROGRESS and the additional_info is `Downloaded 10% Firmware Image`.\nThe additional_info `Downloading Firmware Image` is 0% progress and `Firmware Image download complete` is 100% progress.", - "id": "ESP_RMAKER_OTA_PROGRESS_INTERVAL", - "name": "ESP_RMAKER_OTA_PROGRESS_INTERVAL", - "range": null, - "title": "OTA Progress Interval (%)", - "type": "int" - } - ], - "depends_on": null, - "help": "When the device do OTA, it will report upgrade progress to cloud. If the APP need show the progress bar,\nplease enable it and APP can get the progress value in additional_info by API ota_status.", - "id": "ESP_RMAKER_OTA_PROGRESS_SUPPORT", - "name": "ESP_RMAKER_OTA_PROGRESS_SUPPORT", - "range": null, - "title": "Enable OTA Progress Support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Maximum number of times the device will retry OTA download on failure before giving up.", - "id": "ESP_RMAKER_OTA_MAX_RETRIES", - "name": "ESP_RMAKER_OTA_MAX_RETRIES", - "range": [ - 1, - 10 - ], - "title": "Maximum OTA Retry Attempts", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Delay (in minutes) before re-fetching OTA details after all retry attempts fail (for OTA using topics).", - "id": "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES", - "name": "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES", - "range": [ - 1, - 60 - ], - "title": "OTA Retry Delay (Minutes)", - "type": "int" - } - ], - "depends_on": null, - "id": "esp-rainmaker-config-esp-rainmaker-ota-config", - "title": "ESP RainMaker OTA Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Maximum Number of schedules allowed. The json size for report params increases as the number of schedules increases.", - "id": "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES", - "name": "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES", - "range": [ - 1, - 50 - ], - "title": "Maximum schedules", - "type": "int" - } - ], - "depends_on": null, - "id": "esp-rainmaker-config-esp-rainmaker-scheduling", - "title": "ESP RainMaker Scheduling", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Maximum Number of scenes allowed. The json size for report params increases as the number of scenes increases.", - "id": "ESP_RMAKER_SCENES_MAX_SCENES", - "name": "ESP_RMAKER_SCENES_MAX_SCENES", - "range": [ - 1, - 50 - ], - "title": "Maximum scenes", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This enables the deactivate callback support. The application callback will be invoked with the source\nset to ESP_RMAKER_REQ_SRC_SCENE_DEACTIVATE when the deactivate operation is received. However, the\nparam values would be the same as those for activate, since the RainMaker core does not know what the\nexpected values are for scene deactivation.", - "id": "ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT", - "name": "ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT", - "range": null, - "title": "Enable Deactivate support", - "type": "bool" - } - ], - "depends_on": null, - "id": "esp-rainmaker-config-esp-rainmaker-scenes", - "title": "ESP RainMaker Scenes", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_CMD_RESP_ENABLE", - "help": "Enable testing for Command-Response module. This enables triggering commands and parsing response from the node itself,\nrather than receiving the commands from cloud. C API or the serial console can be used to trigger the commands.\nThis should be enabled only while testing commands, but should always be disabled in production firmware.", - "id": "ESP_RMAKER_CMD_RESP_TEST_ENABLE", - "name": "ESP_RMAKER_CMD_RESP_TEST_ENABLE", - "range": null, - "title": "Enable Command-Response Testing", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable the ESP RainMaker Command-Response module for semi-synchronous communication. Please refer the RainMaker documents\nfor additional information.", - "id": "ESP_RMAKER_CMD_RESP_ENABLE", - "name": "ESP_RMAKER_CMD_RESP_ENABLE", - "range": null, - "title": "Enable Command-Response Module", - "type": "bool" - } - ], - "depends_on": null, - "id": "esp-rainmaker-config-esp-rainmaker-command-response", - "title": "ESP RainMaker Command-Response", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "RainMaker will use network_provisioning component to provision a device to a Wi-Fi/Thread network if enabling this option.\nIf the option is not enabled, it will use wifi_provisioning instead. This option only works when IDF verson is later than\nv5.1.", - "id": "ESP_RMAKER_USING_NETWORK_PROV", - "name": "ESP_RMAKER_USING_NETWORK_PROV", - "range": null, - "title": "Using Network Provisioning", - "type": "bool" - } - ], - "depends_on": null, - "id": "esp-rainmaker-config", - "title": "ESP RainMaker Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_DEBUG", - "name": "COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_SIZE", - "name": "COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Optimize for size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_PERF", - "name": "COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_NONE", - "name": "COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", - "id": "compiler-options-optimization-level", - "name": "COMPILER_OPTIMIZATION", - "title": "Optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enable assertions. Assertion content and line number will be printed on failure.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "range": null, - "title": "Silent (saves code size)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "range": null, - "title": "Disabled (sets -DNDEBUG)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", - "id": "compiler-options-assertion-level", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "title": "Assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", - "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "range": null, - "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_RVFPLIB && ", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "range": null, - "title": "librvfp", - "type": "bool" - } - ], - "depends_on": null, - "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", - "id": "compiler-options-compiler-float-lib-source", - "name": "COMPILER_FLOAT_LIB_FROM", - "title": "Compiler float lib source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", - "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "range": null, - "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", - "id": "COMPILER_HIDE_PATHS_MACROS", - "is_menuconfig": true, - "name": "COMPILER_HIDE_PATHS_MACROS", - "range": null, - "title": "Replace ESP-IDF and project paths in binaries", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_CXX_EXCEPTIONS", - "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", - "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "range": null, - "title": "Emergency Pool Size", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", - "id": "COMPILER_CXX_EXCEPTIONS", - "is_menuconfig": true, - "name": "COMPILER_CXX_EXCEPTIONS", - "range": null, - "title": "Enable C++ exceptions", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", - "id": "COMPILER_CXX_RTTI", - "name": "COMPILER_CXX_RTTI", - "range": null, - "title": "Enable C++ run-time type info (RTTI)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NONE", - "name": "COMPILER_STACK_CHECK_MODE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NORM", - "name": "COMPILER_STACK_CHECK_MODE_NORM", - "range": null, - "title": "Normal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_STRONG", - "name": "COMPILER_STACK_CHECK_MODE_STRONG", - "range": null, - "title": "Strong", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_ALL", - "name": "COMPILER_STACK_CHECK_MODE_ALL", - "range": null, - "title": "Overall", - "type": "bool" - } - ], - "depends_on": null, - "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", - "id": "compiler-options-stack-smashing-protection-mode", - "name": "COMPILER_STACK_CHECK_MODE", - "title": "Stack smashing protection mode", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Stack smashing protection.", - "id": "COMPILER_STACK_CHECK", - "name": "COMPILER_STACK_CHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", - "id": "COMPILER_NO_MERGE_CONSTANTS", - "name": "COMPILER_NO_MERGE_CONSTANTS", - "range": null, - "title": "Disable merging const sections", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", - "id": "COMPILER_WARN_WRITE_STRINGS", - "name": "COMPILER_WARN_WRITE_STRINGS", - "range": null, - "title": "Enable -Wwrite-strings warning flag", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", - "id": "COMPILER_SAVE_RESTORE_LIBCALLS", - "name": "COMPILER_SAVE_RESTORE_LIBCALLS", - "range": null, - "title": "Enable -msave-restore flag to reduce code size", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", - "id": "COMPILER_DISABLE_DEFAULT_ERRORS", - "name": "COMPILER_DISABLE_DEFAULT_ERRORS", - "range": null, - "title": "Disable errors for default warnings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", - "id": "COMPILER_DISABLE_GCC12_WARNINGS", - "name": "COMPILER_DISABLE_GCC12_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 12", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", - "id": "COMPILER_DISABLE_GCC13_WARNINGS", - "name": "COMPILER_DISABLE_GCC13_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 13", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", - "id": "COMPILER_DISABLE_GCC14_WARNINGS", - "name": "COMPILER_DISABLE_GCC14_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 14", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", - "id": "COMPILER_DUMP_RTL_FILES", - "name": "COMPILER_DUMP_RTL_FILES", - "range": null, - "title": "Dump RTL files during compilation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_GCCLIB", - "name": "COMPILER_RT_LIB_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_CLANGRT", - "name": "COMPILER_RT_LIB_CLANGRT", - "range": null, - "title": "libclang_rt", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_HOST", - "name": "COMPILER_RT_LIB_HOST", - "range": null, - "title": "Host", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", - "id": "compiler-options-compiler-runtime-library", - "name": "COMPILER_RT_LIB", - "title": "Compiler runtime library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_RT_LIB_NAME", - "name": "COMPILER_RT_LIB_NAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Places orphan sections with a warning message.", - "id": "COMPILER_ORPHAN_SECTIONS_WARNING", - "name": "COMPILER_ORPHAN_SECTIONS_WARNING", - "range": null, - "title": "Place with warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places orphan sections without a warning/error message.", - "id": "COMPILER_ORPHAN_SECTIONS_PLACE", - "name": "COMPILER_ORPHAN_SECTIONS_PLACE", - "range": null, - "title": "Place silently", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX", - "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", - "id": "compiler-options-orphan-sections-handling", - "name": "COMPILER_ORPHAN_SECTIONS", - "title": "Orphan sections handling", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", - "id": "COMPILER_STATIC_ANALYZER", - "name": "COMPILER_STATIC_ANALYZER", - "range": null, - "title": "Enable compiler static analyzer", - "type": "bool" - } - ], - "depends_on": null, - "id": "compiler-options", - "title": "Compiler options", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "APPTRACE_DEST_JTAG", - "name": "APPTRACE_DEST_JTAG", - "range": null, - "title": "JTAG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APPTRACE_DEST_NONE", - "name": "APPTRACE_DEST_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select destination for application trace: JTAG or none (to disable).", - "id": "component-config-application-level-tracing-data-destination-1", - "name": "APPTRACE_DESTINATION1", - "title": "Data Destination 1", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APPTRACE_DEST_UART", - "name": "APPTRACE_DEST_UART", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APPTRACE_DEST_UART_NOUSB", - "name": "APPTRACE_DEST_UART_NOUSB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_NUM != 0 && ", - "help": null, - "id": "APPTRACE_DEST_UART0", - "name": "APPTRACE_DEST_UART0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_NUM != 1 && ", - "help": null, - "id": "APPTRACE_DEST_UART1", - "name": "APPTRACE_DEST_UART1", - "range": null, - "title": "UART1", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_NUM != 2 && SOC_UART_NUM > 2 && ", - "help": null, - "id": "APPTRACE_DEST_UART2", - "name": "APPTRACE_DEST_UART2", - "range": null, - "title": "UART2", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_CONSOLE_USB_CDC && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && !USB_ENABLED && ", - "help": null, - "id": "APPTRACE_DEST_USB_CDC", - "name": "APPTRACE_DEST_USB_CDC", - "range": null, - "title": "USB_CDC", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APPTRACE_DEST_UART_NONE", - "name": "APPTRACE_DEST_UART_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select destination for application trace: UART(XX) or none (to disable).", - "id": "component-config-application-level-tracing-data-destination-2", - "name": "APPTRACE_DESTINATION2", - "title": "Data Destination 2", - "type": "choice" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART_NOUSB", - "help": "This GPIO is used for UART TX pin.", - "id": "APPTRACE_UART_TX_GPIO", - "name": "APPTRACE_UART_TX_GPIO", - "range": null, - "title": "UART TX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART_NOUSB", - "help": "This GPIO is used for UART RX pin.", - "id": "APPTRACE_UART_RX_GPIO", - "name": "APPTRACE_UART_RX_GPIO", - "range": null, - "title": "UART RX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART", - "help": "This baud rate is used for UART.\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.", - "id": "APPTRACE_UART_BAUDRATE", - "name": "APPTRACE_UART_BAUDRATE", - "range": null, - "title": "UART baud rate", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART", - "help": "Size of the UART input ring buffer.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.\nThe data placed to this buffer before sent out to the interface.", - "id": "APPTRACE_UART_RX_BUFF_SIZE", - "name": "APPTRACE_UART_RX_BUFF_SIZE", - "range": null, - "title": "UART RX ring buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART", - "help": "Size of the UART output ring buffer.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.", - "id": "APPTRACE_UART_TX_BUFF_SIZE", - "name": "APPTRACE_UART_TX_BUFF_SIZE", - "range": null, - "title": "UART TX ring buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART", - "help": "Maximum size of the single message to transfer.", - "id": "APPTRACE_UART_TX_MSG_SIZE", - "name": "APPTRACE_UART_TX_MSG_SIZE", - "range": null, - "title": "UART TX message size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "UART task priority. In case of high events rate,\nthis parameter could be changed up to (configMAX_PRIORITIES-1).", - "id": "APPTRACE_UART_TASK_PRIO", - "name": "APPTRACE_UART_TASK_PRIO", - "range": [ - 1, - 32 - ], - "title": "UART Task Priority", - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", - "help": "Enables/disable TRAX tracing HW.", - "id": "APPTRACE_DEST_TRAX", - "name": "APPTRACE_DEST_TRAX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disable swapping memory buffers tracing protocol.", - "id": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", - "name": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disable application tracing module.", - "id": "APPTRACE_ENABLE", - "name": "APPTRACE_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disable application tracing module internal sync lock.", - "id": "APPTRACE_LOCK_ENABLE", - "name": "APPTRACE_LOCK_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_ENABLE", - "help": "Timeout for flushing last trace data to host in case of panic. In ms.\nUse -1 to disable timeout and wait forever.", - "id": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", - "name": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", - "range": null, - "title": "Timeout for flushing last trace data to host on panic", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_ENABLE", - "help": "Threshold for flushing last trace data to host on panic in post-mortem mode.\nThis is minimal amount of data needed to perform flush. In bytes.", - "id": "APPTRACE_POSTMORTEM_FLUSH_THRESH", - "name": "APPTRACE_POSTMORTEM_FLUSH_THRESH", - "range": null, - "title": "Threshold for flushing last trace data to host on panic", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE && !APPTRACE_DEST_TRAX", - "help": "Size of the memory buffer for trace data in bytes.", - "id": "APPTRACE_BUF_SIZE", - "name": "APPTRACE_BUF_SIZE", - "range": null, - "title": "Size of the apptrace buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", - "help": "Size of the buffer for events in bytes. It is useful for buffering events from\nthe time critical code (scheduler, ISRs etc). If this parameter is 0 then\nevents will be discarded when main HW buffer is full.", - "id": "APPTRACE_PENDING_DATA_SIZE_MAX", - "name": "APPTRACE_PENDING_DATA_SIZE_MAX", - "range": null, - "title": "Size of the pending data buffer", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!PM_ENABLE && !APPTRACE_DEST_NONE && ", - "help": "Send SEGGER SystemView events through JTAG interface.", - "id": "APPTRACE_SV_DEST_JTAG", - "name": "APPTRACE_SV_DEST_JTAG", - "range": null, - "title": "Data destination JTAG", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_DEST_UART && ", - "help": "Send SEGGER SystemView events through UART interface.", - "id": "APPTRACE_SV_DEST_UART", - "name": "APPTRACE_SV_DEST_UART", - "range": null, - "title": "Data destination UART", - "type": "bool" - } - ], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "SystemView will transfer data through the defined interface.", - "id": "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination", - "name": "APPTRACE_SV_DEST", - "title": "SystemView destination", - "type": "choice" - } - ], - "depends_on": "APPTRACE_ENABLE && APPTRACE_ENABLE", - "help": "Enables supporrt for SEGGER SystemView tracing functionality.", - "id": "APPTRACE_SV_ENABLE", - "name": "APPTRACE_SV_ENABLE", - "range": null, - "title": "SystemView Tracing Enable", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Send SEGGER SystemView events for Pro CPU.", - "id": "APPTRACE_SV_DEST_CPU_0", - "name": "APPTRACE_SV_DEST_CPU_0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Send SEGGER SystemView events for App CPU.", - "id": "APPTRACE_SV_DEST_CPU_1", - "name": "APPTRACE_SV_DEST_CPU_1", - "range": null, - "title": "CPU1", - "type": "bool" - } - ], - "depends_on": "APPTRACE_SV_DEST_UART && !ESP_SYSTEM_SINGLE_CORE_MODE && APPTRACE_ENABLE", - "help": "Define the CPU to trace by SystemView.", - "id": "component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace", - "name": "APPTRACE_SV_CPU", - "title": "CPU to trace", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE && !PM_ENABLE && !IDF_TARGET_ESP32C3 && ", - "help": null, - "id": "APPTRACE_SV_TS_SOURCE_CCOUNT", - "name": "APPTRACE_SV_TS_SOURCE_CCOUNT", - "range": null, - "title": "CPU cycle counter (CCOUNT)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!PM_ENABLE && !IDF_TARGET_ESP32C3 && ", - "help": null, - "id": "APPTRACE_SV_TS_SOURCE_GPTIMER", - "name": "APPTRACE_SV_TS_SOURCE_GPTIMER", - "range": null, - "title": "General Purpose Timer (Timer Group)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", - "name": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", - "range": null, - "title": "esp_timer high resolution timer", - "type": "bool" - } - ], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "SystemView needs to use a hardware timer as the source of timestamps\nwhen tracing. This option selects the timer for it.", - "id": "component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source", - "name": "APPTRACE_SV_TS_SOURCE", - "title": "Timer to use as timestamp source", - "type": "choice" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Configures maximum supported tasks in sysview debug", - "id": "APPTRACE_SV_MAX_TASKS", - "name": "APPTRACE_SV_MAX_TASKS", - "range": null, - "title": "Maximum supported tasks", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Configures timeout (in us) to wait for free space in trace buffer.\nSet to -1 to wait forever and avoid lost events.", - "id": "APPTRACE_SV_BUF_WAIT_TMO", - "name": "APPTRACE_SV_BUF_WAIT_TMO", - "range": null, - "title": "Trace buffer wait timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Trace Buffer Overflow\" event.", - "id": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", - "name": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", - "range": null, - "title": "Trace Buffer Overflow Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"ISR Enter\" event.", - "id": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", - "name": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", - "range": null, - "title": "ISR Enter Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"ISR Exit\" event.", - "id": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", - "name": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", - "range": null, - "title": "ISR Exit Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"ISR to Scheduler\" event.", - "id": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", - "name": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", - "range": null, - "title": "ISR Exit to Scheduler Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Start Execution\" event.", - "id": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", - "range": null, - "title": "Task Start Execution Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Stop Execution\" event.", - "id": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", - "range": null, - "title": "Task Stop Execution Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Start Ready State\" event.", - "id": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", - "range": null, - "title": "Task Start Ready State Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Stop Ready State\" event.", - "id": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", - "range": null, - "title": "Task Stop Ready State Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Create\" event.", - "id": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", - "range": null, - "title": "Task Create Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Task Terminate\" event.", - "id": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", - "name": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", - "range": null, - "title": "Task Terminate Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"System Idle\" event.", - "id": "APPTRACE_SV_EVT_IDLE_ENABLE", - "name": "APPTRACE_SV_EVT_IDLE_ENABLE", - "range": null, - "title": "System Idle Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Timer Enter\" event.", - "id": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", - "name": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", - "range": null, - "title": "Timer Enter Event", - "type": "bool" - }, - { - "children": [], - "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", - "help": "Enables \"Timer Exit\" event.", - "id": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", - "name": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", - "range": null, - "title": "Timer Exit Event", - "type": "bool" - } - ], - "depends_on": "APPTRACE_ENABLE", - "id": "component-config-application-level-tracing-freertos-systemview-tracing", - "title": "FreeRTOS SystemView Tracing", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "APPTRACE_GCOV_ENABLE", - "help": "Configures stack size of Gcov dump task", - "id": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", - "name": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", - "range": null, - "title": "Gcov dump task stack size", - "type": "int" - } - ], - "depends_on": "APPTRACE_ENABLE && !APPTRACE_SV_ENABLE", - "help": "Enables support for GCOV data transfer to host.", - "id": "APPTRACE_GCOV_ENABLE", - "name": "APPTRACE_GCOV_ENABLE", - "range": null, - "title": "GCOV to Host Enable", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-application-level-tracing", - "title": "Application Level Tracing", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option is recommended for classic Bluetooth or for dual-mode\nusecases", - "id": "BT_BLUEDROID_ENABLED", - "name": "BT_BLUEDROID_ENABLED", - "range": null, - "title": "Bluedroid - Dual-mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option is recommended for BLE only usecases to save on memory", - "id": "BT_NIMBLE_ENABLED", - "name": "BT_NIMBLE_ENABLED", - "range": null, - "title": "NimBLE - BLE only", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_BT_SUPPORTED && ", - "help": "This option is recommended when you want to communicate directly with the\ncontroller (without any host) or when you are using any other host stack\nnot supported by Espressif (not mentioned here).", - "id": "BT_CONTROLLER_ONLY", - "name": "BT_CONTROLLER_ONLY", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "BT_ENABLED", - "help": "This helps to choose Bluetooth host stack", - "id": "component-config-bluetooth-bluetooth-host", - "name": "BT_HOST", - "title": "Host", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_BT_SUPPORTED && ", - "help": "This option is recommended for Bluetooth controller usecases", - "id": "BT_CONTROLLER_ENABLED", - "name": "BT_CONTROLLER_ENABLED", - "range": null, - "title": "Enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option is recommended for Bluetooth Host only usecases", - "id": "BT_CONTROLLER_DISABLED", - "name": "BT_CONTROLLER_DISABLED", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "BT_ENABLED", - "help": "This helps to choose Bluetooth controller stack", - "id": "component-config-bluetooth-bluetooth-controller", - "name": "BT_CONTROLLER", - "title": "Controller", - "type": "choice" - } - ], - "depends_on": "!APP_NO_BLOBS", - "help": "Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.", - "id": "BT_ENABLED", - "name": "BT_ENABLED", - "range": null, - "title": "Bluetooth", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This select btc task stack size", - "id": "BT_BTC_TASK_STACK_SIZE", - "name": "BT_BTC_TASK_STACK_SIZE", - "range": null, - "title": "Bluetooth event (callback to application) task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_BLUEDROID_PINNED_TO_CORE_0", - "name": "BT_BLUEDROID_PINNED_TO_CORE_0", - "range": null, - "title": "Core 0 (PRO CPU)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "BT_BLUEDROID_PINNED_TO_CORE_1", - "name": "BT_BLUEDROID_PINNED_TO_CORE_1", - "range": null, - "title": "Core 1 (APP CPU)", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !FREERTOS_UNICORE && BT_BLUEDROID_ENABLED", - "help": "Which the cpu core to run Bluedroid. Can choose core0 and core1.\nCan not specify no-affinity.", - "id": "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run", - "name": "BT_BLUEDROID_PINNED_TO_CORE_CHOICE", - "title": "The cpu core which Bluedroid run", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_BLUEDROID_PINNED_TO_CORE", - "name": "BT_BLUEDROID_PINNED_TO_CORE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This select btu task stack size", - "id": "BT_BTU_TASK_STACK_SIZE", - "name": "BT_BTU_TASK_STACK_SIZE", - "range": null, - "title": "Bluetooth Bluedroid Host Stack task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Bluedroid memory debug", - "id": "BT_BLUEDROID_MEM_DEBUG", - "name": "BT_BLUEDROID_MEM_DEBUG", - "range": null, - "title": "Bluedroid memory debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", - "id": "BT_BLUEDROID_ESP_COEX_VSC", - "name": "BT_BLUEDROID_ESP_COEX_VSC", - "range": null, - "title": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_STD_SUPPORTED)) && ", - "help": null, - "id": "BT_ENC_KEY_SIZE_CTRL_STD", - "name": "BT_ENC_KEY_SIZE_CTRL_STD", - "range": null, - "title": "Supported by standard HCI command", - "type": "bool" - }, - { - "children": [], - "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED)) && ", - "help": null, - "id": "BT_ENC_KEY_SIZE_CTRL_VSC", - "name": "BT_ENC_KEY_SIZE_CTRL_VSC", - "range": null, - "title": "Supported by Vendor-specific HCI command", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_ENC_KEY_SIZE_CTRL_NONE", - "name": "BT_ENC_KEY_SIZE_CTRL_NONE", - "range": null, - "title": "Not supported", - "type": "bool" - } - ], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This chooses the support status of configuring encryption key size", - "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-configure-encryption-key-size", - "name": "BT_ENC_KEY_SIZE_CTRL_ENABLED", - "title": "configure encryption key size", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables functionalities of Host qualification for Classic Bluetooth.", - "id": "BT_CLASSIC_BQB_ENABLED", - "name": "BT_CLASSIC_BQB_ENABLED", - "range": null, - "title": "Host Qualitifcation support for Classic Bluetooth", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_A2DP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Audio/Video Remote Control Profile, AVRCP and A2DP are coupled in Bluedroid,\nAVRCP still controlled by A2DP option, this is a dummy option currently", - "id": "BT_AVRCP_ENABLED", - "name": "BT_AVRCP_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enable Cover Art feature of AVRCP CT role", - "id": "BT_AVRCP_CT_COVER_ART_ENABLED", - "name": "BT_AVRCP_CT_COVER_ART_ENABLED", - "range": null, - "title": "AVRCP CT Cover Art", - "type": "bool" - } - ], - "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", - "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-a2dp-avrcp-features", - "title": "AVRCP Features", - "type": "menu" - } - ], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Advanced Audio Distribution Profile", - "id": "BT_A2DP_ENABLE", - "name": "BT_A2DP_ENABLE", - "range": null, - "title": "A2DP", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the Serial Port Profile", - "id": "BT_SPP_ENABLED", - "name": "BT_SPP_ENABLED", - "range": null, - "title": "SPP", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the Logical Link Control and Adaptation Layer Protocol.\nOnly supported classic bluetooth.", - "id": "BT_L2CAP_ENABLED", - "name": "BT_L2CAP_ENABLED", - "range": null, - "title": "BT L2CAP", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables common SDP operation, such as SDP record creation and deletion.", - "id": "BT_SDP_COMMON_ENABLED", - "name": "BT_SDP_COMMON_ENABLED", - "range": null, - "title": "BT SDP COMMON", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_HFP_CLIENT_ENABLE", - "name": "BT_HFP_CLIENT_ENABLE", - "range": null, - "title": "Hands Free Unit", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_HFP_AG_ENABLE", - "name": "BT_HFP_AG_ENABLE", - "range": null, - "title": "Audio Gateway", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_HFP_AUDIO_DATA_PATH_PCM", - "name": "BT_HFP_AUDIO_DATA_PATH_PCM", - "range": null, - "title": "PCM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_HFP_AUDIO_DATA_PATH_HCI", - "name": "BT_HFP_AUDIO_DATA_PATH_HCI", - "range": null, - "title": "HCI", - "type": "bool" - } - ], - "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "SCO data path, i.e. HCI or PCM. This option is set using API\n\"esp_bredr_sco_datapath_set\" in Bluetooth host. Default SCO data\npath can also be set in Bluetooth Controller.", - "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path", - "name": "BT_HFP_AUDIO_DATA_PATH", - "title": "audio(SCO) data path", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_HFP_ENABLE && BT_HFP_AUDIO_DATA_PATH_HCI && BT_BLUEDROID_ENABLED", - "help": "This enables Wide Band Speech. Should disable it when SCO data path is PCM.\nOtherwise there will be no data transmitted via GPIOs.", - "id": "BT_HFP_WBS_ENABLE", - "name": "BT_HFP_WBS_ENABLE", - "range": null, - "title": "Wide Band Speech", - "type": "bool" - } - ], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Hands Free Unit and Audio Gateway can be included simultaneously\nbut they cannot run simultaneously due to internal limitations.", - "id": "BT_HFP_ENABLE", - "is_menuconfig": true, - "name": "BT_HFP_ENABLE", - "range": null, - "title": "Hands Free/Handset Profile", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the BT HID Host", - "id": "BT_HID_HOST_ENABLED", - "name": "BT_HID_HOST_ENABLED", - "range": null, - "title": "Classic BT HID Host", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the BT HID Device", - "id": "BT_HID_DEVICE_ENABLED", - "name": "BT_HID_DEVICE_ENABLED", - "range": null, - "title": "Classic BT HID Device", - "type": "bool" - } - ], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the BT HID functionalities", - "id": "BT_HID_ENABLED", - "is_menuconfig": true, - "name": "BT_HID_ENABLED", - "range": null, - "title": "Classic BT HID", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables the BT GOEP Profile Client role", - "id": "BT_GOEPC_ENABLED", - "name": "BT_GOEPC_ENABLED", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BT_CLASSIC_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "For now this option needs \"SMP_ENABLE\" to be set to yes", - "id": "BT_CLASSIC_ENABLED", - "name": "BT_CLASSIC_ENABLED", - "range": null, - "title": "Classic Bluetooth", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "This enables \"Peripheral Preferred Connection Parameters\" characteristic (UUID: 0x2A04) in GAP service that has\nconnection parameters like min/max connection interval, slave latency and supervision timeout multiplier", - "id": "BT_GATTS_PPCP_CHAR_GAP", - "name": "BT_GATTS_PPCP_CHAR_GAP", - "range": null, - "title": "Enable Peripheral Preferred Connection Parameters characteristic in GAP service", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "This option can be close when the app does not require blufi function.", - "id": "BT_BLE_BLUFI_ENABLE", - "name": "BT_BLE_BLUFI_ENABLE", - "range": null, - "title": "Include blufi function", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Maximum GATT Server Profiles Count", - "id": "BT_GATT_MAX_SR_PROFILES", - "name": "BT_GATT_MAX_SR_PROFILES", - "range": null, - "title": "Max GATT Server Profiles", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Maximum GATT Service Attributes Count", - "id": "BT_GATT_MAX_SR_ATTRIBUTES", - "name": "BT_GATT_MAX_SR_ATTRIBUTES", - "range": null, - "title": "Max GATT Service Attributes", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Manually send service change indication through API esp_ble_gatts_send_service_change_indication()", - "id": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", - "name": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", - "range": null, - "title": "GATTS manually send service change indication", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Let Bluedroid handle the service change indication internally", - "id": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", - "name": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", - "range": null, - "title": "GATTS automatically send service change indication", - "type": "bool" - } - ], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Service change indication mode for GATT Server.", - "id": "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode", - "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", - "title": "GATTS Service Change Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", - "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "This option enables the GATT robust caching feature on the server.\nif turned on, the Client Supported Features characteristic, Database Hash characteristic,\nand Server Supported Features characteristic will be included in the GAP SERVICE.", - "id": "BT_GATTS_ROBUST_CACHING_ENABLED", - "name": "BT_GATTS_ROBUST_CACHING_ENABLED", - "range": null, - "title": "Enable Robust Caching on Server Side", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Enabling this option allows remote GATT clients to write device name", - "id": "BT_GATTS_DEVICE_NAME_WRITABLE", - "name": "BT_GATTS_DEVICE_NAME_WRITABLE", - "range": null, - "title": "Allow to write device name by GATT clients", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Enabling this option allows remote GATT clients to write appearance", - "id": "BT_GATTS_APPEARANCE_WRITABLE", - "name": "BT_GATTS_APPEARANCE_WRITABLE", - "range": null, - "title": "Allow to write appearance by GATT clients", - "type": "bool" - } - ], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This option can be disabled when the app work only on gatt client mode", - "id": "BT_GATTS_ENABLE", - "name": "BT_GATTS_ENABLE", - "range": null, - "title": "Include GATT server module(GATTS)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Maximum GATTC cache characteristic count", - "id": "BT_GATTC_MAX_CACHE_CHAR", - "name": "BT_GATTC_MAX_CACHE_CHAR", - "range": null, - "title": "Max gattc cache characteristic for discover", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", - "help": "Maximum GATTC notify(indication) register number", - "id": "BT_GATTC_NOTIF_REG_MAX", - "name": "BT_GATTC_NOTIF_REG_MAX", - "range": null, - "title": "Max gattc notify(indication) register number", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", - "help": "This select can save gattc cache data to nvs flash", - "id": "BT_GATTC_CACHE_NVS_FLASH", - "name": "BT_GATTC_CACHE_NVS_FLASH", - "range": null, - "title": "Save gattc cache data to nvs flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", - "help": "The number of attempts to reconnect if the connection establishment failed", - "id": "BT_GATTC_CONNECT_RETRY_COUNT", - "name": "BT_GATTC_CONNECT_RETRY_COUNT", - "range": null, - "title": "The number of attempts to reconnect if the connection establishment failed", - "type": "int" - } - ], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This option can be close when the app work only on gatt server mode", - "id": "BT_GATTC_ENABLE", - "name": "BT_GATTC_ENABLE", - "range": null, - "title": "Include GATT client module(GATTC)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "In order to reduce the pairing time, slave actively initiates connection parameters\nupdate during pairing.", - "id": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", - "name": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", - "range": null, - "title": "Slave enable connection parameters update during pairing", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, Bluedroid will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", - "id": "BT_BLE_SMP_ID_RESET_ENABLE", - "name": "BT_BLE_SMP_ID_RESET_ENABLE", - "range": null, - "title": "Reset device identity when all bonding records are deleted", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "This select can save SMP bonding keys to nvs flash", - "id": "BT_BLE_SMP_BOND_NVS_FLASH", - "name": "BT_BLE_SMP_BOND_NVS_FLASH", - "range": null, - "title": "Save SMP bonding keys to nvs flash", - "type": "bool" - } - ], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This option can be close when the app not used the ble security connect.", - "id": "BT_BLE_SMP_ENABLE", - "name": "BT_BLE_SMP_ENABLE", - "range": null, - "title": "Include BLE security module(SMP)", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables Bluetooth Low Energy", - "id": "BT_BLE_ENABLED", - "name": "BT_BLE_ENABLED", - "range": null, - "title": "Bluetooth Low Energy", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This select can save the rodata code size", - "id": "BT_STACK_NO_LOG", - "name": "BT_STACK_NO_LOG", - "range": null, - "title": "Disable BT debug logs (minimize bin size)", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_NONE", - "name": "BT_LOG_HCI_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_ERROR", - "name": "BT_LOG_HCI_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_WARNING", - "name": "BT_LOG_HCI_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_API", - "name": "BT_LOG_HCI_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_EVENT", - "name": "BT_LOG_HCI_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for HCI layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer", - "name": "BT_LOG_HCI_TRACE_LEVEL", - "title": "HCI layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_HCI_TRACE_LEVEL", - "name": "BT_LOG_HCI_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_NONE", - "name": "BT_LOG_BTM_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_ERROR", - "name": "BT_LOG_BTM_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_WARNING", - "name": "BT_LOG_BTM_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_API", - "name": "BT_LOG_BTM_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_EVENT", - "name": "BT_LOG_BTM_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for BTM layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer", - "name": "BT_LOG_BTM_TRACE_LEVEL", - "title": "BTM layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_BTM_TRACE_LEVEL", - "name": "BT_LOG_BTM_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_API", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for L2CAP layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer", - "name": "BT_LOG_L2CAP_TRACE_LEVEL", - "title": "L2CAP layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_L2CAP_TRACE_LEVEL", - "name": "BT_LOG_L2CAP_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_API", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for RFCOMM layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL", - "title": "RFCOMM layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_RFCOMM_TRACE_LEVEL", - "name": "BT_LOG_RFCOMM_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_NONE", - "name": "BT_LOG_SDP_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_ERROR", - "name": "BT_LOG_SDP_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_WARNING", - "name": "BT_LOG_SDP_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_API", - "name": "BT_LOG_SDP_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_EVENT", - "name": "BT_LOG_SDP_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for SDP layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer", - "name": "BT_LOG_SDP_TRACE_LEVEL", - "title": "SDP layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_SDP_TRACE_LEVEL", - "name": "BT_LOG_SDP_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_NONE", - "name": "BT_LOG_GAP_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_ERROR", - "name": "BT_LOG_GAP_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_WARNING", - "name": "BT_LOG_GAP_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_API", - "name": "BT_LOG_GAP_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_EVENT", - "name": "BT_LOG_GAP_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for GAP layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer", - "name": "BT_LOG_GAP_TRACE_LEVEL", - "title": "GAP layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_GAP_TRACE_LEVEL", - "name": "BT_LOG_GAP_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_NONE", - "name": "BT_LOG_BNEP_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", - "name": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", - "name": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_API", - "name": "BT_LOG_BNEP_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", - "name": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for BNEP layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer", - "name": "BT_LOG_BNEP_TRACE_LEVEL", - "title": "BNEP layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_BNEP_TRACE_LEVEL", - "name": "BT_LOG_BNEP_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_NONE", - "name": "BT_LOG_PAN_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_ERROR", - "name": "BT_LOG_PAN_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_WARNING", - "name": "BT_LOG_PAN_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_API", - "name": "BT_LOG_PAN_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_EVENT", - "name": "BT_LOG_PAN_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for PAN layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer", - "name": "BT_LOG_PAN_TRACE_LEVEL", - "title": "PAN layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_PAN_TRACE_LEVEL", - "name": "BT_LOG_PAN_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_NONE", - "name": "BT_LOG_A2D_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_ERROR", - "name": "BT_LOG_A2D_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_WARNING", - "name": "BT_LOG_A2D_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_API", - "name": "BT_LOG_A2D_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_EVENT", - "name": "BT_LOG_A2D_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for A2D layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer", - "name": "BT_LOG_A2D_TRACE_LEVEL", - "title": "A2D layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_A2D_TRACE_LEVEL", - "name": "BT_LOG_A2D_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_NONE", - "name": "BT_LOG_AVDT_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", - "name": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", - "name": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_API", - "name": "BT_LOG_AVDT_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", - "name": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for AVDT layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer", - "name": "BT_LOG_AVDT_TRACE_LEVEL", - "title": "AVDT layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_AVDT_TRACE_LEVEL", - "name": "BT_LOG_AVDT_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_NONE", - "name": "BT_LOG_AVCT_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", - "name": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", - "name": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_API", - "name": "BT_LOG_AVCT_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", - "name": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for AVCT layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer", - "name": "BT_LOG_AVCT_TRACE_LEVEL", - "title": "AVCT layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_AVCT_TRACE_LEVEL", - "name": "BT_LOG_AVCT_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_NONE", - "name": "BT_LOG_AVRC_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", - "name": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", - "name": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_API", - "name": "BT_LOG_AVRC_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", - "name": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for AVRC layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer", - "name": "BT_LOG_AVRC_TRACE_LEVEL", - "title": "AVRC layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_AVRC_TRACE_LEVEL", - "name": "BT_LOG_AVRC_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_NONE", - "name": "BT_LOG_MCA_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_ERROR", - "name": "BT_LOG_MCA_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_WARNING", - "name": "BT_LOG_MCA_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_API", - "name": "BT_LOG_MCA_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_EVENT", - "name": "BT_LOG_MCA_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for MCA layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer", - "name": "BT_LOG_MCA_TRACE_LEVEL", - "title": "MCA layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_MCA_TRACE_LEVEL", - "name": "BT_LOG_MCA_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_NONE", - "name": "BT_LOG_HID_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_ERROR", - "name": "BT_LOG_HID_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_WARNING", - "name": "BT_LOG_HID_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_API", - "name": "BT_LOG_HID_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_EVENT", - "name": "BT_LOG_HID_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_HID_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for HID layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer", - "name": "BT_LOG_HID_TRACE_LEVEL", - "title": "HID layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_HID_TRACE_LEVEL", - "name": "BT_LOG_HID_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_NONE", - "name": "BT_LOG_APPL_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_ERROR", - "name": "BT_LOG_APPL_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_WARNING", - "name": "BT_LOG_APPL_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_API", - "name": "BT_LOG_APPL_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_EVENT", - "name": "BT_LOG_APPL_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for APPL layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer", - "name": "BT_LOG_APPL_TRACE_LEVEL", - "title": "APPL layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_APPL_TRACE_LEVEL", - "name": "BT_LOG_APPL_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_NONE", - "name": "BT_LOG_GATT_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_ERROR", - "name": "BT_LOG_GATT_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_WARNING", - "name": "BT_LOG_GATT_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_API", - "name": "BT_LOG_GATT_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_EVENT", - "name": "BT_LOG_GATT_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for GATT layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer", - "name": "BT_LOG_GATT_TRACE_LEVEL", - "title": "GATT layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_GATT_TRACE_LEVEL", - "name": "BT_LOG_GATT_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_NONE", - "name": "BT_LOG_SMP_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_ERROR", - "name": "BT_LOG_SMP_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_WARNING", - "name": "BT_LOG_SMP_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_API", - "name": "BT_LOG_SMP_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_EVENT", - "name": "BT_LOG_SMP_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for SMP layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer", - "name": "BT_LOG_SMP_TRACE_LEVEL", - "title": "SMP layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_SMP_TRACE_LEVEL", - "name": "BT_LOG_SMP_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_NONE", - "name": "BT_LOG_BTIF_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", - "name": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", - "name": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_API", - "name": "BT_LOG_BTIF_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", - "name": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for BTIF layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer", - "name": "BT_LOG_BTIF_TRACE_LEVEL", - "title": "BTIF layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_BTIF_TRACE_LEVEL", - "name": "BT_LOG_BTIF_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_NONE", - "name": "BT_LOG_BTC_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_ERROR", - "name": "BT_LOG_BTC_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_WARNING", - "name": "BT_LOG_BTC_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_API", - "name": "BT_LOG_BTC_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_EVENT", - "name": "BT_LOG_BTC_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for BTC layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer", - "name": "BT_LOG_BTC_TRACE_LEVEL", - "title": "BTC layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_BTC_TRACE_LEVEL", - "name": "BT_LOG_BTC_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_NONE", - "name": "BT_LOG_OSI_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_ERROR", - "name": "BT_LOG_OSI_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_WARNING", - "name": "BT_LOG_OSI_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_API", - "name": "BT_LOG_OSI_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_EVENT", - "name": "BT_LOG_OSI_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for OSI layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer", - "name": "BT_LOG_OSI_TRACE_LEVEL", - "title": "OSI layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_OSI_TRACE_LEVEL", - "name": "BT_LOG_OSI_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_API", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_API", - "range": null, - "title": "API", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", - "range": null, - "title": "EVENT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", - "name": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": "Define BT trace level for BLUFI layer", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer", - "name": "BT_LOG_BLUFI_TRACE_LEVEL", - "title": "BLUFI layer", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_LOG_BLUFI_TRACE_LEVEL", - "name": "BT_LOG_BLUFI_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", - "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level", - "title": "BT DEBUG LOG LEVEL", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Maximum BT/BLE connection count. The ESP32-C3/S3 chip supports a maximum of 10 instances,\nincluding ADV, SCAN and connections. The ESP32-C3/S3 chip can connect up to 9 devices if\nADV or SCAN uses only one. If ADV and SCAN are both used, The ESP32-C3/S3 chip is connected\nto a maximum of 8 devices. Because Bluetooth cannot reclaim used instances once ADV or SCAN\nis used.", - "id": "BT_ACL_CONNECTIONS", - "name": "BT_ACL_CONNECTIONS", - "range": null, - "title": "BT/BLE MAX ACL CONNECTIONS(1~9)", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Enable this option if there are multiple connections", - "id": "BT_MULTI_CONNECTION_ENBALE", - "name": "BT_MULTI_CONNECTION_ENBALE", - "range": null, - "title": "Enable BLE multi-connections", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This select can save the internal RAM if there have the PSRAM", - "id": "BT_ALLOCATION_FROM_SPIRAM_FIRST", - "name": "BT_ALLOCATION_FROM_SPIRAM_FIRST", - "range": null, - "title": "BT/BLE will first malloc the memory from the PSRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This select can make the allocation of memory will become more flexible", - "id": "BT_BLE_DYNAMIC_ENV_MEMORY", - "name": "BT_BLE_DYNAMIC_ENV_MEMORY", - "range": null, - "title": "Use dynamic memory allocation in BT/BLE stack", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\nor application layer handling adv packets is slow, it will cause the controller memory\nto run out. if enabled, adv packets will be lost when host queue is congested.", - "id": "BT_BLE_HOST_QUEUE_CONG_CHECK", - "name": "BT_BLE_HOST_QUEUE_CONG_CHECK", - "range": null, - "title": "BLE queue congestion check", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": null, - "id": "BT_SMP_ENABLE", - "name": "BT_SMP_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_SMP_ENABLE && BT_BLUEDROID_ENABLED", - "help": "The number of security records for peer devices.", - "id": "BT_SMP_MAX_BONDS", - "name": "BT_SMP_MAX_BONDS", - "range": null, - "title": "BT/BLE maximum bond device count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Originally, when doing BLE active scan, Bluedroid will not report adv to application layer\nuntil receive scan response. This option is used to disable the behavior. When enable this option,\nBluedroid will report adv data or scan response to application layer immediately.\n\n# Memory reserved at start of DRAM for Bluetooth stack", - "id": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", - "name": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", - "range": null, - "title": "Report adv data and scan response individually when BLE active scan", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Bluetooth Connection establishment maximum time, if connection time exceeds this value, the connection\nestablishment fails, ESP_GATTC_OPEN_EVT or ESP_GATTS_OPEN_EVT is triggered.", - "id": "BT_BLE_ESTAB_LINK_CONN_TOUT", - "name": "BT_BLE_ESTAB_LINK_CONN_TOUT", - "range": null, - "title": "Timeout of BLE connection establishment", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "Bluetooth Device name length shall be no larger than 248 octets, If the broadcast data cannot contain\nthe complete device name, then only the shortname will be displayed, the rest parts that can't fit in\nwill be truncated.", - "id": "BT_MAX_DEVICE_NAME_LEN", - "name": "BT_MAX_DEVICE_NAME_LEN", - "range": null, - "title": "length of bluetooth device name", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && ((BT_CONTROLLER_ENABLED && !SOC_BLE_DEVICE_PRIVACY_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "This enables controller RPA list function.\nFor ESP32, ESP32 only support network privacy mode. If this option is enabled, ESP32 will only accept\nadvertising packets from peer devices that contain private address, HW will not receive the advertising\npackets contain identity address after IRK changed. If this option is disabled, address resolution will\nbe performed in the host, so the functions that require controller to resolve address in the white list\ncannot be used. This option is disabled by default on ESP32, please enable or disable this option according\nto your own needs.\n\nFor other BLE chips, devices support network privacy mode and device privacy mode,\nusers can switch the two modes according to their own needs. So this option is enabled by default.", - "id": "BT_BLE_RPA_SUPPORTED", - "name": "BT_BLE_RPA_SUPPORTED", - "range": null, - "title": "Update RPA to Controller", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This set RPA timeout of Controller and Host.\nDefault is 900 s (15 minutes). Range is 1 s to 1 hour (3600 s).", - "id": "BT_BLE_RPA_TIMEOUT", - "name": "BT_BLE_RPA_TIMEOUT", - "range": null, - "title": "Timeout of resolvable private address", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BLE_50_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "Enabling this option activates BLE 5.0 features.\nThis option is universally supported in chips that support BLE, except for ESP32.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", - "id": "BT_BLE_50_FEATURES_SUPPORTED", - "name": "BT_BLE_50_FEATURES_SUPPORTED", - "range": null, - "title": "Enable BLE 5.0 features(please disable BLE 4.2 if enable BLE 5.0)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BLE_50_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "This enables BLE 4.2 features.\nThis option is universally supported by all ESP chips with BLE capabilities.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", - "id": "BT_BLE_42_FEATURES_SUPPORTED", - "name": "BT_BLE_42_FEATURES_SUPPORTED", - "range": null, - "title": "Enable BLE 4.2 features(please disable BLE 5.0 if enable BLE 4.2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "This enables BLE periodic advertising sync transfer feature", - "id": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", - "name": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", - "range": null, - "title": "Enable BLE periodic advertising sync transfer feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "Enable the periodic advertising enhancements", - "id": "BT_BLE_FEAT_PERIODIC_ADV_ENH", - "name": "BT_BLE_FEAT_PERIODIC_ADV_ENH", - "range": null, - "title": "Enable periodic adv enhancements(adi support)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", - "help": "Enable the create sync enhancements", - "id": "BT_BLE_FEAT_CREATE_SYNC_ENH", - "name": "BT_BLE_FEAT_CREATE_SYNC_ENH", - "range": null, - "title": "Enable create sync enhancements(reporting disable and duplicate filtering enable support)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enable BLE high duty advertising interval feature", - "id": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", - "name": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", - "range": null, - "title": "Enable BLE high duty advertising interval feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", - "help": "This enables abort when memory allocation fails", - "id": "BT_ABORT_WHEN_ALLOCATION_FAILS", - "name": "BT_ABORT_WHEN_ALLOCATION_FAILS", - "range": null, - "title": "Abort when memory allocation fails in BT/BLE stack", - "type": "bool" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED", - "id": "component-config-bluetooth-bluedroid-options", - "title": "Bluedroid Options", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", - "name": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", - "range": null, - "title": "Internal memory", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": null, - "id": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", - "name": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", - "range": null, - "title": "External SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", - "name": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", - "range": null, - "title": "Default alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", - "help": "Allows to use IRAM memory region as 8bit accessible region.\n\nEvery unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", - "id": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", - "name": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", - "range": null, - "title": "Internal IRAM", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Allocation strategy for NimBLE host stack, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Internal IRAM memory wherever applicable else internal DRAM", - "id": "component-config-bluetooth-nimble-options-memory-allocation-strategy", - "name": "BT_NIMBLE_MEM_ALLOC_MODE", - "title": "Memory allocation strategy", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL_NONE", - "name": "BT_NIMBLE_LOG_LEVEL_NONE", - "range": null, - "title": "No logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL_ERROR", - "name": "BT_NIMBLE_LOG_LEVEL_ERROR", - "range": null, - "title": "Error logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL_WARNING", - "name": "BT_NIMBLE_LOG_LEVEL_WARNING", - "range": null, - "title": "Warning logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL_INFO", - "name": "BT_NIMBLE_LOG_LEVEL_INFO", - "range": null, - "title": "Info logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL_DEBUG", - "name": "BT_NIMBLE_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug logs", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Select NimBLE log level. Please make a note that the selected NimBLE log\nverbosity can not exceed the level set in \"Component config --> Log output\n--> Default log verbosity\".", - "id": "component-config-bluetooth-nimble-options-nimble-host-log-verbosity", - "name": "BT_NIMBLE_LOG_LEVEL", - "title": "NimBLE Host log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_LOG_LEVEL", - "name": "BT_NIMBLE_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of concurrent BLE connections. For ESP32, user\nis expected to configure BTDM_CTRL_BLE_MAX_CONN from controller menu\nalong with this option. Similarly for ESP32-C3 or ESP32-S3, user is expected to\nconfigure BT_CTRL_BLE_MAX_ACT from controller menu.\nFor ESP32C2, ESP32C6 and ESP32H2, each connection will take about 1k DRAM.", - "id": "BT_NIMBLE_MAX_CONNECTIONS", - "name": "BT_NIMBLE_MAX_CONNECTIONS", - "range": [ - 1, - 9 - ], - "title": "Maximum number of concurrent connections", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of bonds to save for peer security and our security", - "id": "BT_NIMBLE_MAX_BONDS", - "name": "BT_NIMBLE_MAX_BONDS", - "range": null, - "title": "Maximum number of bonds to save across reboots", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of CCC descriptors to save", - "id": "BT_NIMBLE_MAX_CCCDS", - "name": "BT_NIMBLE_MAX_CCCDS", - "range": null, - "title": "Maximum number of CCC descriptors to save across reboots", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compiled in", - "id": "BT_NIMBLE_L2CAP_COC_MAX_NUM", - "name": "BT_NIMBLE_L2CAP_COC_MAX_NUM", - "range": [ - 0, - 9 - ], - "title": "Maximum number of connection oriented channels", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_L2CAP_COC_MAX_NUM >= 1 && BT_NIMBLE_ENABLED", - "help": "Enable Enhanced Credit Based Flow Control Mode", - "id": "BT_NIMBLE_L2CAP_ENHANCED_COC", - "name": "BT_NIMBLE_L2CAP_ENHANCED_COC", - "range": null, - "title": "L2CAP Enhanced Connection Oriented Channel", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_PINNED_TO_CORE_0", - "name": "BT_NIMBLE_PINNED_TO_CORE_0", - "range": null, - "title": "Core 0 (PRO CPU)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "BT_NIMBLE_PINNED_TO_CORE_1", - "name": "BT_NIMBLE_PINNED_TO_CORE_1", - "range": null, - "title": "Core 1 (APP CPU)", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && !FREERTOS_UNICORE && BT_NIMBLE_ENABLED", - "help": "The CPU core on which NimBLE host will run. You can choose Core 0 or Core 1.\nCannot specify no-affinity", - "id": "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run", - "name": "BT_NIMBLE_PINNED_TO_CORE_CHOICE", - "title": "The CPU core on which NimBLE host will run", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_PINNED_TO_CORE", - "name": "BT_NIMBLE_PINNED_TO_CORE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This configures stack size of NimBLE host task", - "id": "BT_NIMBLE_HOST_TASK_STACK_SIZE", - "name": "BT_NIMBLE_HOST_TASK_STACK_SIZE", - "range": null, - "title": "NimBLE Host task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enables central role", - "id": "BT_NIMBLE_ROLE_CENTRAL", - "name": "BT_NIMBLE_ROLE_CENTRAL", - "range": null, - "title": "Enable BLE Central role", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable peripheral role", - "id": "BT_NIMBLE_ROLE_PERIPHERAL", - "name": "BT_NIMBLE_ROLE_PERIPHERAL", - "range": null, - "title": "Enable BLE Peripheral role", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enables broadcaster role", - "id": "BT_NIMBLE_ROLE_BROADCASTER", - "name": "BT_NIMBLE_ROLE_BROADCASTER", - "range": null, - "title": "Enable BLE Broadcaster role", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enables observer role", - "id": "BT_NIMBLE_ROLE_OBSERVER", - "name": "BT_NIMBLE_ROLE_OBSERVER", - "range": null, - "title": "Enable BLE Observer role", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable this flag to make bonding persistent across device reboots", - "id": "BT_NIMBLE_NVS_PERSIST", - "name": "BT_NIMBLE_NVS_PERSIST", - "range": null, - "title": "Persist the BLE Bonding keys in NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, NimBLE will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", - "id": "BT_NIMBLE_SMP_ID_RESET", - "name": "BT_NIMBLE_SMP_ID_RESET", - "range": null, - "title": "Reset device identity when all bonding records are deleted", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", - "help": "Enable security manager legacy pairing", - "id": "BT_NIMBLE_SM_LEGACY", - "name": "BT_NIMBLE_SM_LEGACY", - "range": null, - "title": "Security manager legacy pairing", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_SM_SC && BT_NIMBLE_ENABLED", - "help": "If this option is enabled, SM uses predefined DH key pair as described\nin Core Specification, Vol. 3, Part H, 2.3.5.6.1. This allows to\ndecrypt air traffic easily and thus should only be used for debugging.", - "id": "BT_NIMBLE_SM_SC_DEBUG_KEYS", - "name": "BT_NIMBLE_SM_SC_DEBUG_KEYS", - "range": null, - "title": "Use predefined public-private key pair", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", - "help": "Enable security manager secure connections", - "id": "BT_NIMBLE_SM_SC", - "name": "BT_NIMBLE_SM_SC", - "range": null, - "title": "Security manager secure connections (4.2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable encryption connection", - "id": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", - "name": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", - "range": null, - "title": "Enable LE encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", - "help": "LE Security Mode 1 Levels:\n1. No Security\n2. Unauthenticated pairing with encryption\n3. Authenticated pairing with encryption\n4. Authenticated LE Secure Connections pairing with encryption using a 128-bit strength encryption key.", - "id": "BT_NIMBLE_SM_LVL", - "name": "BT_NIMBLE_SM_LVL", - "range": null, - "title": "Security level", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", - "help": "Enable Secure Connections Only Mode", - "id": "BT_NIMBLE_SM_SC_ONLY", - "name": "BT_NIMBLE_SM_SC_ONLY", - "range": null, - "title": "Enable Secure Connections Only Mode", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable BLE sm feature", - "id": "BT_NIMBLE_SECURITY_ENABLE", - "is_menuconfig": true, - "name": "BT_NIMBLE_SECURITY_ENABLE", - "range": null, - "title": "Enable BLE SM feature", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This enables extra runtime asserts and host debugging", - "id": "BT_NIMBLE_DEBUG", - "name": "BT_NIMBLE_DEBUG", - "range": null, - "title": "Enable extra runtime asserts and host debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This enables user to add/remove Gatt services at runtime", - "id": "BT_NIMBLE_DYNAMIC_SERVICE", - "name": "BT_NIMBLE_DYNAMIC_SERVICE", - "range": null, - "title": "Enable dynamic services", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "The Device Name characteristic shall contain the name of the device as an UTF-8 string.\nThis name can be changed by using API ble_svc_gap_device_name_set()", - "id": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", - "name": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", - "range": null, - "title": "BLE GAP default device name", - "type": "string" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Device Name characteristic value shall be 0 to 248 octets in length", - "id": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", - "name": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", - "range": null, - "title": "Maximum length of BLE device name in octets", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the default value of ATT MTU indicated by the device during an ATT MTU exchange.\nThis value can be changed using API ble_att_set_preferred_mtu()", - "id": "BT_NIMBLE_ATT_PREFERRED_MTU", - "name": "BT_NIMBLE_ATT_PREFERRED_MTU", - "range": null, - "title": "Preferred MTU size in octets", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Standard BLE GAP Appearance value in HEX format e.g. 0x02C0", - "id": "BT_NIMBLE_SVC_GAP_APPEARANCE", - "name": "BT_NIMBLE_SVC_GAP_APPEARANCE", - "range": null, - "title": "External appearance of the device", - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "MSYS is a system level mbuf registry. For prepare write & prepare\nresponses MBUFs are allocated out of msys_1 pool. For NIMBLE_MESH\nenabled cases, this block count is increased by 8 than user defined\ncount.", - "id": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", - "name": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", - "range": null, - "title": "MSYS_1 Block Count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Dynamic memory size of block 1", - "id": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", - "name": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", - "range": null, - "title": "MSYS_1 Block Size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Dynamic memory count", - "id": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", - "name": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", - "range": null, - "title": "MSYS_2 Block Count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Dynamic memory size of block 2", - "id": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", - "name": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", - "range": null, - "title": "MSYS_2 Block Size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_LE_MSYS_INIT_IN_CONTROLLER && BT_NIMBLE_ENABLED", - "help": "This option sets the source of the shared msys mbuf memory between\nthe Host and the Controller. Allocate the memory from the heap if\nthis option is sets, from the mempool otherwise.", - "id": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", - "name": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", - "range": null, - "title": "Get Msys Mbuf from heap", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "The number of ACL data buffers allocated for host.", - "id": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", - "name": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", - "range": null, - "title": "ACL Buffer count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the maximum size of the data portion of HCI ACL data packets.\nIt does not include the HCI data header (of 4 bytes)", - "id": "BT_NIMBLE_TRANSPORT_ACL_SIZE", - "name": "BT_NIMBLE_TRANSPORT_ACL_SIZE", - "range": null, - "title": "Transport ACL Buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the size of each HCI event buffer in bytes. In case of\nextended advertising, packets can be fragmented. 257 bytes is the\nmaximum size of a packet.", - "id": "BT_NIMBLE_TRANSPORT_EVT_SIZE", - "name": "BT_NIMBLE_TRANSPORT_EVT_SIZE", - "range": null, - "title": "Transport Event Buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the high priority HCI events' buffer size. High-priority\nevent buffers are for everything except advertising reports. If there\nare no free high-priority event buffers then host will try to allocate a\nlow-priority buffer instead", - "id": "BT_NIMBLE_TRANSPORT_EVT_COUNT", - "name": "BT_NIMBLE_TRANSPORT_EVT_COUNT", - "range": null, - "title": "Transport Event Buffer count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the low priority HCI events' buffer size. Low-priority event\nbuffers are only used for advertising reports. If there are no free\nlow-priority event buffers, then an incoming advertising report will\nget dropped", - "id": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", - "name": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", - "range": null, - "title": "Discardable Transport Event Buffer count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This is the service data unit buffer count for l2cap coc.", - "id": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", - "name": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", - "range": null, - "title": "L2cap coc Service Data Unit Buffer count", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-memory-settings", - "title": "Memory Settings", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Maximum number of GATT client procedures that can be executed.", - "id": "BT_NIMBLE_GATT_MAX_PROCS", - "name": "BT_NIMBLE_GATT_MAX_PROCS", - "range": null, - "title": "Maximum number of GATT client procedures", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", - "help": "Host flow control interval in msecs", - "id": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", - "name": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", - "range": null, - "title": "Host Flow control interval", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", - "help": "Host flow control threshold, if the number of free buffers are at or\nbelow this threshold, send an immediate number-of-completed-packets\nevent", - "id": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", - "name": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", - "range": null, - "title": "Host Flow control threshold", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", - "help": "Enable this option to send number-of-completed-packets event to\ncontroller after disconnection", - "id": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", - "name": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", - "range": null, - "title": "Host Flow control on disconnect", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable Host Flow control", - "id": "BT_NIMBLE_HS_FLOW_CTRL", - "name": "BT_NIMBLE_HS_FLOW_CTRL", - "range": null, - "title": "Enable Host Flow control", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Time interval between RPA address change.", - "id": "BT_NIMBLE_RPA_TIMEOUT", - "name": "BT_NIMBLE_RPA_TIMEOUT", - "range": [ - 1, - 41400 - ], - "title": "RPA timeout in seconds", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Enable proxy. This is automatically set whenever NIMBLE_MESH_PB_GATT or\nNIMBLE_MESH_GATT_PROXY is set", - "id": "BT_NIMBLE_MESH_PROXY", - "name": "BT_NIMBLE_MESH_PROXY", - "range": null, - "title": "Enable mesh proxy functionality", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", - "help": "Enable this option to allow the device to be provisioned over\nthe advertising bearer", - "id": "BT_NIMBLE_MESH_PB_ADV", - "name": "BT_NIMBLE_MESH_PB_ADV", - "range": null, - "title": "Enable mesh provisioning over advertising bearer", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", - "help": "Enable this option to allow the device to be provisioned over the GATT\nbearer", - "id": "BT_NIMBLE_MESH_PB_GATT", - "name": "BT_NIMBLE_MESH_PB_GATT", - "range": null, - "title": "Enable mesh provisioning over GATT bearer", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Enable mesh provisioning", - "id": "BT_NIMBLE_MESH_PROV", - "name": "BT_NIMBLE_MESH_PROV", - "range": null, - "title": "Enable BLE mesh provisioning", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "This option enables support for the Mesh GATT Proxy Service,\ni.e. the ability to act as a proxy between a Mesh GATT Client\nand a Mesh network", - "id": "BT_NIMBLE_MESH_GATT_PROXY", - "name": "BT_NIMBLE_MESH_GATT_PROXY", - "range": null, - "title": "Enable GATT Proxy functionality", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Support for acting as a Mesh Relay Node", - "id": "BT_NIMBLE_MESH_RELAY", - "name": "BT_NIMBLE_MESH_RELAY", - "range": null, - "title": "Enable mesh relay functionality", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Enable this option to be able to act as a Low Power Node", - "id": "BT_NIMBLE_MESH_LOW_POWER", - "name": "BT_NIMBLE_MESH_LOW_POWER", - "range": null, - "title": "Enable mesh low power mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Enable this option to be able to act as a Friend Node", - "id": "BT_NIMBLE_MESH_FRIEND", - "name": "BT_NIMBLE_MESH_FRIEND", - "range": null, - "title": "Enable mesh friend functionality", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "This value defines Bluetooth Mesh device/node name", - "id": "BT_NIMBLE_MESH_DEVICE_NAME", - "name": "BT_NIMBLE_MESH_DEVICE_NAME", - "range": null, - "title": "Set mesh device name", - "type": "string" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Defines mesh node count.", - "id": "BT_NIMBLE_MESH_NODE_COUNT", - "name": "BT_NIMBLE_MESH_NODE_COUNT", - "range": null, - "title": "Set mesh node count", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", - "help": "Enable mesh provisioner.", - "id": "BT_NIMBLE_MESH_PROVISIONER", - "name": "BT_NIMBLE_MESH_PROVISIONER", - "range": null, - "title": "Enable BLE mesh provisioner", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable BLE Mesh example present in upstream mynewt-nimble and not maintained by Espressif.\n\nIDF maintains ESP-BLE-MESH as the official Mesh solution. Please refer to ESP-BLE-MESH guide at:\n`https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/esp-ble-mesh/ble-mesh-index.html`", - "id": "BT_NIMBLE_MESH", - "is_menuconfig": true, - "name": "BT_NIMBLE_MESH", - "range": null, - "title": "Enable BLE mesh functionality", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable this option to choose mbedTLS instead of TinyCrypt for crypto\ncomputations.", - "id": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", - "name": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", - "range": null, - "title": "Override TinyCrypt with mbedTLS for crypto computations", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "BLE Host stop procedure timeout in milliseconds.", - "id": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", - "name": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", - "range": null, - "title": "BLE host stop timeout in msec", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && IDF_TARGET_ESP32 && BT_NIMBLE_ENABLED", - "help": "Use this option to do host based Random Private Address resolution.\nIf this option is disabled then controller based privacy is used.", - "id": "BT_NIMBLE_HOST_BASED_PRIVACY", - "name": "BT_NIMBLE_HOST_BASED_PRIVACY", - "range": null, - "title": "Enable host based privacy for random address.", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLE_CONN_REATTEMPT && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of connection reattempts.", - "id": "BT_NIMBLE_MAX_CONN_REATTEMPT", - "name": "BT_NIMBLE_MAX_CONN_REATTEMPT", - "range": [ - 1, - 255 - ], - "title": "Maximum number connection reattempts", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Enable to make the NimBLE host to reattempt GAP connection on connection\nestablishment failure.", - "id": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", - "name": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", - "range": null, - "title": "Enable connection reattempts on connection establishment error", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable 2M-PHY", - "id": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", - "name": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", - "range": null, - "title": "Enable 2M Phy", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable coded-PHY", - "id": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", - "name": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", - "range": null, - "title": "Enable coded Phy", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Change this option to set maximum number of extended advertising\ninstances. Minimum there is always one instance of\nadvertising. Enter how many more advertising instances you\nwant.\nFor ESP32C2, ESP32C6 and ESP32H2, each extended advertising instance\nwill take about 0.5k DRAM.", - "id": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", - "name": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", - "range": null, - "title": "Maximum number of extended advertising instances.", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Defines the length of the extended adv data. The value should not\nexceed 1650.", - "id": "BT_NIMBLE_EXT_ADV_MAX_SIZE", - "name": "BT_NIMBLE_EXT_ADV_MAX_SIZE", - "range": null, - "title": "Maximum length of the advertising data.", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable the periodic advertising enhancements", - "id": "BT_NIMBLE_PERIODIC_ADV_ENH", - "name": "BT_NIMBLE_PERIODIC_ADV_ENH", - "range": null, - "title": "Periodic adv enhancements(adi support)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "This enables controller transfer periodic sync events to host", - "id": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", - "name": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", - "range": null, - "title": "Enable Transfer Sync Events", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "This enables controller PAwR (Periodic Advertisement with Response).", - "id": "BT_NIMBLE_PERIODIC_ADV_WITH_RESPONSES", - "name": "BT_NIMBLE_PERIODIC_ADV_WITH_RESPONSES", - "range": null, - "title": "Enable Periodic Advertisement with Response (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable this option to start periodic advertisement.", - "id": "BT_NIMBLE_ENABLE_PERIODIC_ADV", - "name": "BT_NIMBLE_ENABLE_PERIODIC_ADV", - "range": null, - "title": "Enable periodic advertisement.", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable this option to do extended advertising. Extended advertising\nwill be supported from BLE 5.0 onwards.", - "id": "BT_NIMBLE_EXT_ADV", - "name": "BT_NIMBLE_EXT_ADV", - "range": null, - "title": "Enable extended advertising", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_SYNC && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit for number of periodic sync\nconnections. This should be less than maximum connections allowed by\ncontroller.", - "id": "BT_NIMBLE_MAX_PERIODIC_SYNCS", - "name": "BT_NIMBLE_MAX_PERIODIC_SYNCS", - "range": [ - 0, - 8 - ], - "title": "Maximum number of periodic advertising syncs", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLE_PERIODIC_SYNC && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit for number of periodic advertiser list.", - "id": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", - "name": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", - "range": null, - "title": "Maximum number of periodic advertiser list", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_EXT_SCAN && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable this option to receive periodic advertisement.", - "id": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", - "name": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", - "range": null, - "title": "Enable periodic sync", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ROLE_OBSERVER && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable this option to do extended scanning.", - "id": "BT_NIMBLE_EXT_SCAN", - "name": "BT_NIMBLE_EXT_SCAN", - "range": null, - "title": "Enable extended scanning", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_POWER_CONTROL_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to enable the Power Control feature", - "id": "BT_NIMBLE_BLE_POWER_CONTROL", - "name": "BT_NIMBLE_BLE_POWER_CONTROL", - "range": null, - "title": "Enable support for BLE Power Control", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && (BT_CONTROLLER_DISABLED || SOC_BLE_CTE_SUPPORTED) && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable support for Connectionless and Connection Oriented Direction Finding", - "id": "BT_NIMBLE_AOA_AOD", - "name": "BT_NIMBLE_AOA_AOD", - "range": null, - "title": "Direction Finding", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit on number of connections to be cached.", - "id": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", - "name": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", - "range": null, - "title": "Maximum connections to be cached", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit on number of services per connection to be cached.", - "id": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", - "name": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", - "range": null, - "title": "Maximum number of services per connection", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit on number of characteristics per connection to be cached.", - "id": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", - "name": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", - "range": null, - "title": "Maximum number of characteristics per connection", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Set this option to set the upper limit on number of descriptors per connection to be cached.", - "id": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", - "name": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", - "range": null, - "title": "Maximum number of descriptors per connection", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", - "help": "Enable GATT caching", - "id": "BT_NIMBLE_GATT_CACHING", - "is_menuconfig": true, - "name": "BT_NIMBLE_GATT_CACHING", - "range": null, - "title": "Enable GATT caching", - "type": "menu" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && (SOC_BLE_50_SUPPORTED || !BT_CONTROLLER_ENABLED) && BT_NIMBLE_ENABLED", - "help": "Enable BLE 5 feature", - "id": "BT_NIMBLE_50_FEATURE_SUPPORT", - "is_menuconfig": true, - "name": "BT_NIMBLE_50_FEATURE_SUPPORT", - "range": null, - "title": "Enable BLE 5 feature", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", - "help": "When client receives ATT out-of-sync error message, it will not automatically start the discovery procedure\nto correct the invalid cache.", - "id": "BT_NIMBLE_GATT_CACHING_DISABLE_AUTO", - "name": "BT_NIMBLE_GATT_CACHING_DISABLE_AUTO", - "range": null, - "title": "Do not start discovery procedure automatically upon receiving Out of Sync", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "BLE list size", - "id": "BT_NIMBLE_WHITELIST_SIZE", - "name": "BT_NIMBLE_WHITELIST_SIZE", - "range": [ - 1, - 15 - ], - "title": "BLE white list size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Enable the throughput test mode", - "id": "BT_NIMBLE_TEST_THROUGHPUT_TEST", - "name": "BT_NIMBLE_TEST_THROUGHPUT_TEST", - "range": null, - "title": "Throughput Test Mode enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Set this option to enable blufi functionality.", - "id": "BT_NIMBLE_BLUFI_ENABLE", - "name": "BT_NIMBLE_BLUFI_ENABLE", - "range": null, - "title": "Enable blufi functionality", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer", - "id": "BT_NIMBLE_USE_ESP_TIMER", - "name": "BT_NIMBLE_USE_ESP_TIMER", - "range": null, - "title": "Enable Esp Timer for Nimble", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "This option is used to distinguish whether a previous version of VHCI is being used", - "id": "BT_NIMBLE_LEGACY_VHCI_ENABLE", - "name": "BT_NIMBLE_LEGACY_VHCI_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "This option is used when data to be sent is more than 512 bytes. For peripheral role,\nBT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.", - "id": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", - "name": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", - "range": null, - "title": "Blob transfer", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", - "range": null, - "title": "Write with encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", - "range": null, - "title": "Write with authentication", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", - "range": null, - "title": "Write with authorisation", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", - "range": null, - "title": "Write", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-gap-service-gap-appearance-write-permissions", - "title": "GAP Appearance write permissions", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", - "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", - "name": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", - "range": null, - "title": "Characteristic not supported", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", - "name": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", - "range": null, - "title": "Central Address Resolution not supported", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_CAR_SUPP", - "name": "BT_NIMBLE_SVC_GAP_CAR_SUPP", - "range": null, - "title": "Central Address Resolution supported", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Weather or not Central Address Resolution characteristic is supported on\nthe device, and if supported, weather or not Central Address Resolution\nis supported.\n\n- Central Address Resolution characteristic not supported\n- Central Address Resolution not supported\n- Central Address Resolution supported", - "id": "component-config-bluetooth-nimble-options-gap-service-gap-characteristic-central-address-resolution", - "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", - "title": "GAP Characteristic - Central Address Resolution", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", - "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", - "range": null, - "title": "Write with encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", - "range": null, - "title": "Write with authentication", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", - "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", - "range": null, - "title": "Write with authorisation", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE", - "range": null, - "title": "Write", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-gap-service-gap-device-name-write-permissions", - "title": "GAP device name write permissions", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", - "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_ENABLED", - "help": "Peripheral Preferred Connection Parameter: Connection Interval maximum value\nInterval Max = value * 1.25 ms", - "id": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", - "name": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", - "range": null, - "title": "PPCP Connection Interval Max (Unit: 1.25 ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_ENABLED", - "help": "Peripheral Preferred Connection Parameter: Connection Interval minimum value\nInterval Min = value * 1.25 ms", - "id": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", - "name": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", - "range": null, - "title": "PPCP Connection Interval Min (Unit: 1.25 ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Peripheral Preferred Connection Parameter: Slave Latency", - "id": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", - "name": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", - "range": null, - "title": "PPCP Slave Latency", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Peripheral Preferred Connection Parameter: Supervision Timeout\nTimeout = Value * 10 ms", - "id": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", - "name": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", - "range": null, - "title": "PPCP Supervision Timeout (Uint: 10 ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Enable the LE GATT Security Level Characteristic", - "id": "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL", - "name": "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL", - "range": null, - "title": "LE GATT Security Level Characteristic", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-gap-service", - "title": "GAP Service", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of HID service instances", - "id": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", - "name": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", - "range": null, - "title": "Maximum HID service instances", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of report characteristics per service instance", - "id": "BT_NIMBLE_SVC_HID_MAX_RPTS", - "name": "BT_NIMBLE_SVC_HID_MAX_RPTS", - "range": null, - "title": "Maximum HID Report characteristics per service instance", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable HID service support", - "id": "BT_NIMBLE_HID_SERVICE", - "is_menuconfig": true, - "name": "BT_NIMBLE_HID_SERVICE", - "range": null, - "title": "HID service", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable/Disable notifications on BAS Battery Level Characteristic", - "id": "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY", - "name": "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY", - "range": null, - "title": "BAS Battery Level NOTIFY permission", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS characteristic Manufacturer Name String characteristic", - "id": "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME", - "name": "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME", - "range": null, - "title": "Manufacturer Name", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS Serial Number characteristic", - "id": "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER", - "name": "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER", - "range": null, - "title": "Serial Number", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS Hardware Revision characteristic", - "id": "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION", - "name": "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION", - "range": null, - "title": "Hardware Revision", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS Firmware Revision characteristic", - "id": "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION", - "name": "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION", - "range": null, - "title": "Firmware Revision", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS Software Revision characteristic", - "id": "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION", - "name": "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION", - "range": null, - "title": "Software Revision", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS System ID characteristic", - "id": "BT_NIMBLE_SVC_DIS_SYSTEM_ID", - "name": "BT_NIMBLE_SVC_DIS_SYSTEM_ID", - "range": null, - "title": "System ID", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable the DIS PnP ID characteristic", - "id": "BT_NIMBLE_SVC_DIS_PNP_ID", - "name": "BT_NIMBLE_SVC_DIS_PNP_ID", - "range": null, - "title": "PnP ID", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Use DIS as an included service", - "id": "BT_NIMBLE_SVC_DIS_INCLUDED", - "name": "BT_NIMBLE_SVC_DIS_INCLUDED", - "range": null, - "title": "DIS as an Included Service", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-ble-services-device-information-service", - "title": "Device Information Service", - "type": "menu" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-ble-services", - "title": "BLE Services", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "This option is used to enable support for sending Vendor Specific HCI commands and handling\nVendor Specific HCI Events.", - "id": "BT_NIMBLE_VS_SUPPORT", - "name": "BT_NIMBLE_VS_SUPPORT", - "range": null, - "title": "Enable support for VSC and VSE", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_BLE_MULTI_CONN_OPTIMIZATION && BT_NIMBLE_ENABLED", - "help": "This option enables the use of vendor-specific APIs for multi-connections, which can\ngreatly enhance the stability of coexistence between numerous central and peripheral\ndevices. It will prohibit the usage of standard APIs.", - "id": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", - "name": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", - "range": null, - "title": "Enable the optimization of multi-connection", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENC_ADV_DATA && BT_NIMBLE_ENABLED", - "help": "Defines maximum number of encrypted advertising data key material to save", - "id": "BT_NIMBLE_MAX_EADS", - "name": "BT_NIMBLE_MAX_EADS", - "range": null, - "title": "Maximum number of EAD devices to save across reboots", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "This option is used to enable encrypted advertising data.", - "id": "BT_NIMBLE_ENC_ADV_DATA", - "name": "BT_NIMBLE_ENC_ADV_DATA", - "range": null, - "title": "Encrypted Advertising Data", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "This enable BLE high duty advertising interval feature", - "id": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", - "name": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", - "range": null, - "title": "Enable BLE high duty advertising interval feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && BT_NIMBLE_ENABLED", - "help": "This enables support for user to initiate a new connection with scan in progress", - "id": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", - "name": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", - "range": null, - "title": "Allow Connections with scanning in progress", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\nor application layer handling adv packets is slow, it will cause the controller memory\nto run out. if enabled, adv packets will be lost when host queue is congested.", - "id": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", - "name": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", - "range": null, - "title": "BLE queue congestion check", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "When BLE and Wireless protocol/IEEE 802.15.4 operate in coexistence, BLE preemption\ncan disrupt the GATT context,causing the service discovery callback to not be invoked.\nA temporary list is maintained to preserve the GATT context and use it in case of preemption.", - "id": "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT", - "name": "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT", - "range": null, - "title": "Gatt-proc preemption protect check", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": "Uart port", - "id": "BT_NIMBLE_TRANSPORT_UART_PORT", - "name": "BT_NIMBLE_TRANSPORT_UART_PORT", - "range": null, - "title": "Uart port", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_BAUDRATE_115200", - "name": "UART_BAUDRATE_115200", - "range": null, - "title": "115200", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_BAUDRATE_230400", - "name": "UART_BAUDRATE_230400", - "range": null, - "title": "230400", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_BAUDRATE_460800", - "name": "UART_BAUDRATE_460800", - "range": null, - "title": "460800", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_BAUDRATE_921600", - "name": "UART_BAUDRATE_921600", - "range": null, - "title": "921600", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": "Uart Baud Rate", - "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-hci-baud-rate", - "name": "BT_NIMBLE_HCI_USE_UART_BAUDRATE", - "title": "Uart Hci Baud Rate", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_HCI_UART_BAUDRATE", - "name": "BT_NIMBLE_HCI_UART_BAUDRATE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_PARITY_NONE", - "name": "UART_PARITY_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_PARITY_ODD", - "name": "UART_PARITY_ODD", - "range": null, - "title": "Odd", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_PARITY_EVEN", - "name": "UART_PARITY_EVEN", - "range": null, - "title": "Even", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": "Uart Parity", - "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-parity", - "name": "BT_NIMBLE_USE_HCI_UART_PARITY", - "title": "Uart PARITY", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", - "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", - "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", - "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": "Rx pin for Nimble Transport", - "id": "BT_NIMBLE_UART_RX_PIN", - "name": "BT_NIMBLE_UART_RX_PIN", - "range": null, - "title": "UART Rx pin", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", - "help": "Tx pin for Nimble Transport", - "id": "BT_NIMBLE_UART_TX_PIN", - "name": "BT_NIMBLE_UART_TX_PIN", - "range": null, - "title": "UART Tx pin", - "type": "int" - } - ], - "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_ENABLED", - "help": "Use UART transport", - "id": "BT_NIMBLE_TRANSPORT_UART", - "name": "BT_NIMBLE_TRANSPORT_UART", - "range": null, - "title": "Enable Uart Transport", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_HW_FLOWCTRL_DISABLE", - "name": "UART_HW_FLOWCTRL_DISABLE", - "range": null, - "title": "Disable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "UART_HW_FLOWCTRL_CTS_RTS", - "name": "UART_HW_FLOWCTRL_CTS_RTS", - "range": null, - "title": "Enable hardware flow control", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Uart Flow Control", - "id": "component-config-bluetooth-nimble-options-host-controller-transport-uart-flow-control", - "name": "BT_NIMBLE_USE_HCI_UART_FLOW_CTRL", - "title": "Uart Flow Control", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": null, - "id": "BT_NIMBLE_HCI_UART_FLOW_CTRL", - "name": "BT_NIMBLE_HCI_UART_FLOW_CTRL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "UART HCI RTS pin", - "id": "BT_NIMBLE_HCI_UART_RTS_PIN", - "name": "BT_NIMBLE_HCI_UART_RTS_PIN", - "range": null, - "title": "UART Rts Pin", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "UART HCI CTS pin", - "id": "BT_NIMBLE_HCI_UART_CTS_PIN", - "name": "BT_NIMBLE_HCI_UART_CTS_PIN", - "range": null, - "title": "UART Cts Pin", - "type": "int" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options-host-controller-transport", - "title": "Host-controller Transport", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Defines the number of channels EATT bearers can use", - "id": "BT_NIMBLE_EATT_CHAN_NUM", - "name": "BT_NIMBLE_EATT_CHAN_NUM", - "range": null, - "title": "Maximum number of EATT channels", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", - "help": "Enable connection subrate change feature", - "id": "BT_NIMBLE_SUBRATE", - "name": "BT_NIMBLE_SUBRATE", - "range": null, - "title": "Enable Subrate Change", - "type": "bool" - } - ], - "depends_on": "BT_NIMBLE_ENABLED", - "id": "component-config-bluetooth-nimble-options", - "title": "NimBLE Options", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_MODE_EFF", - "name": "BT_CTRL_MODE_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "BLE maximum activities of bluetooth controller\uff0cboth of connections,\nscan , sync and adv(periodic adv, multi-adv). Each instance needs to\nconsume 828 bytes, you can save RAM by modifying the instance value\naccording to actual needs.", - "id": "BT_CTRL_BLE_MAX_ACT", - "name": "BT_CTRL_BLE_MAX_ACT", - "range": [ - 1, - 10 - ], - "title": "BLE Max Instances", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_BLE_MAX_ACT_EFF", - "name": "BT_CTRL_BLE_MAX_ACT_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "BLE ACL buffer have two methods to be allocated. One is persistent allocating\n(allocate when controller initialise, never free until controller de-initialise)\nanother is dynamically allocating (allocate before TX and free after TX).", - "id": "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB", - "name": "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB", - "range": [ - 0, - 12 - ], - "title": "BLE static ACL TX buffer numbers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_PINNED_TO_CORE_0", - "name": "BT_CTRL_PINNED_TO_CORE_0", - "range": null, - "title": "Core 0 (PRO CPU)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "BT_CTRL_PINNED_TO_CORE_1", - "name": "BT_CTRL_PINNED_TO_CORE_1", - "range": null, - "title": "Core 1 (APP CPU)", - "type": "bool" - } - ], - "depends_on": "!FREERTOS_UNICORE && BT_CONTROLLER_ENABLED", - "help": "Specify the cpu core to run bluetooth controller.\nCan not specify no-affinity.", - "id": "component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run", - "name": "BT_CTRL_PINNED_TO_CORE_CHOICE", - "title": "The cpu core which bluetooth controller run", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_PINNED_TO_CORE", - "name": "BT_CTRL_PINNED_TO_CORE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Normal option. Mostly, choose this VHCI when bluetooth host run on ESP32S3 or ESP32C3.", - "id": "BT_CTRL_HCI_MODE_VHCI", - "name": "BT_CTRL_HCI_MODE_VHCI", - "range": null, - "title": "VHCI", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "If use external bluetooth host which run on other hardware and use UART as the HCI interface,\nchoose this option.", - "id": "BT_CTRL_HCI_MODE_UART_H4", - "name": "BT_CTRL_HCI_MODE_UART_H4", - "range": null, - "title": "UART(H4)", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Specify HCI mode as VHCI or UART(H4)", - "id": "component-config-bluetooth-controller-options-hci-mode", - "name": "BT_CTRL_HCI_MODE_CHOICE", - "title": "HCI mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "HCI mode as VHCI or UART(H4)", - "id": "BT_CTRL_HCI_TL", - "name": "BT_CTRL_HCI_TL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "The maximum number of 5.0 extend duplicate", - "id": "BT_CTRL_ADV_DUP_FILT_MAX", - "name": "BT_CTRL_ADV_DUP_FILT_MAX", - "range": [ - 1, - 500 - ], - "title": "The maximum number of 5.0 extend duplicate scan filter", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_BLE_CCA_MODE_NONE", - "name": "BT_BLE_CCA_MODE_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_BLE_CCA_MODE_HW", - "name": "BT_BLE_CCA_MODE_HW", - "range": null, - "title": "Hardware", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_BLE_CCA_MODE_SW", - "name": "BT_BLE_CCA_MODE_SW", - "range": null, - "title": "Software", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Define BT BLE CCA mode", - "id": "component-config-bluetooth-controller-options-ble-cca-mode", - "name": "BT_BLE_CCA_MODE", - "title": "BLE CCA mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_BLE_CCA_MODE", - "name": "BT_BLE_CCA_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "It is the threshold value of HW CCA, if the value is 30, it means CCA threshold is -30 dBm.", - "id": "BT_CTRL_HW_CCA_VAL", - "name": "BT_CTRL_HW_CCA_VAL", - "range": [ - 20, - 100 - ], - "title": "CCA threshold value", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If other devices are sending packets in the air and the signal is strong,\nthe packet hw to be sent this time is cancelled.", - "id": "BT_CTRL_HW_CCA_EFF", - "name": "BT_CTRL_HW_CCA_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_CE_LENGTH_TYPE_ORIG", - "name": "BT_CTRL_CE_LENGTH_TYPE_ORIG", - "range": null, - "title": "ORIGINAL", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_CE_LENGTH_TYPE_CE", - "name": "BT_CTRL_CE_LENGTH_TYPE_CE", - "range": null, - "title": "Use CE parameter for HCI command", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_CE_LENGTH_TYPE_SD", - "name": "BT_CTRL_CE_LENGTH_TYPE_SD", - "range": null, - "title": "Use Espressif self-defined method", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Specify connection event length determination", - "id": "component-config-bluetooth-controller-options-connection-event-length-determination-method", - "name": "BT_CTRL_CE_LENGTH_TYPE", - "title": "Connection event length determination method", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_CE_LENGTH_TYPE_EFF", - "name": "BT_CTRL_CE_LENGTH_TYPE_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_TX_ANTENNA_INDEX_0", - "name": "BT_CTRL_TX_ANTENNA_INDEX_0", - "range": null, - "title": "Antenna 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_TX_ANTENNA_INDEX_1", - "name": "BT_CTRL_TX_ANTENNA_INDEX_1", - "range": null, - "title": "Antenna 1", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Specify default Tx antenna used for bluetooth", - "id": "component-config-bluetooth-controller-options-default-tx-anntena-used", - "name": "BT_CTRL_TX_ANTENNA_INDEX", - "title": "default Tx anntena used", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_TX_ANTENNA_INDEX_EFF", - "name": "BT_CTRL_TX_ANTENNA_INDEX_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_RX_ANTENNA_INDEX_0", - "name": "BT_CTRL_RX_ANTENNA_INDEX_0", - "range": null, - "title": "Antenna 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_RX_ANTENNA_INDEX_1", - "name": "BT_CTRL_RX_ANTENNA_INDEX_1", - "range": null, - "title": "Antenna 1", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Specify default Rx antenna used for bluetooth", - "id": "component-config-bluetooth-controller-options-default-rx-anntena-used", - "name": "BT_CTRL_RX_ANTENNA_INDEX", - "title": "default Rx anntena used", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_RX_ANTENNA_INDEX_EFF", - "name": "BT_CTRL_RX_ANTENNA_INDEX_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N24", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N24", - "range": null, - "title": "-24dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N21", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N21", - "range": null, - "title": "-21dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N18", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N18", - "range": null, - "title": "-18dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N15", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N15", - "range": null, - "title": "-15dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N12", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N12", - "range": null, - "title": "-12dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N9", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N9", - "range": null, - "title": "-9dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N6", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N6", - "range": null, - "title": "-6dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N3", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N3", - "range": null, - "title": "-3dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N0", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N0", - "range": null, - "title": "0dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P3", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P3", - "range": null, - "title": "+3dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P6", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P6", - "range": null, - "title": "+6dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P9", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P9", - "range": null, - "title": "+9dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P12", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P12", - "range": null, - "title": "+12dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P15", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P15", - "range": null, - "title": "+15dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P18", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P18", - "range": null, - "title": "+18dBm", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P20", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P20", - "range": null, - "title": "+20dBm", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Specify default Tx power level", - "id": "component-config-bluetooth-controller-options-ble-default-tx-power-level", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL", - "title": "BLE default Tx power level", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_DFT_TX_POWER_LEVEL_EFF", - "name": "BT_CTRL_DFT_TX_POWER_LEVEL_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", - "help": "The number of unprocessed advertising report that bluetooth host can save.If you set\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, bluetooth host may cache a\nlot of adv packets and this may cause system memory run out. For example, if you set\nit to 50, the maximum memory consumed by host is 35 * 50 bytes. Please set\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` according to your system free memory and handle adv\npackets as fast as possible, otherwise it will cause adv packets lost.", - "id": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", - "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", - "range": [ - 50, - 1000 - ], - "title": "BLE adv report flow control number", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", - "help": "When adv report flow control is enabled, The ADV lost event will be generated when the number\nof ADV packets lost in the controller reaches this threshold. It is better to set a larger value.\nIf you set `BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", - "id": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", - "name": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", - "range": [ - 1, - 1000 - ], - "title": "BLE adv lost event threshold value", - "type": "int" - } - ], - "depends_on": "(!BT_CTRL_RUN_IN_FLASH_ONLY || (BT_CTRL_RUN_IN_FLASH_ONLY && BT_CTRL_BLE_SCAN)) && BT_CONTROLLER_ENABLED", - "help": "The function is mainly used to enable flow control for advertising reports. When it is enabled,\nadvertising reports will be discarded by the controller if the number of unprocessed advertising\nreports exceeds the size of BLE adv report flow control.", - "id": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", - "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", - "range": null, - "title": "BLE adv report flow control supported", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Advertising packets with the same address, address type, and advertising type are reported once.", - "id": "BT_CTRL_SCAN_DUPL_TYPE_DEVICE", - "name": "BT_CTRL_SCAN_DUPL_TYPE_DEVICE", - "range": null, - "title": "Scan Duplicate By Device Address", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Advertising packets with identical advertising data, address type, and advertising type\nare reported only once, even if they originate from different devices.", - "id": "BT_CTRL_SCAN_DUPL_TYPE_DATA", - "name": "BT_CTRL_SCAN_DUPL_TYPE_DATA", - "range": null, - "title": "Scan Duplicate By Advertising Data", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Advertising packets with the same address, advertising data, address type,\nand advertising type are reported only once.", - "id": "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE", - "name": "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE", - "range": null, - "title": "Scan Duplicate By Device Address And Advertising Data", - "type": "bool" - } - ], - "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", - "help": "Scan duplicate have three ways. one is \"Scan Duplicate By Device Address\", This way is to use\nadvertiser address filtering. The adv packet of the same address is only allowed to be reported once.\nAnother way is \"Scan Duplicate By Device Address And Advertising Data\". This way is to use advertising\ndata and device address filtering. All different adv packets with the same address are allowed to be\nreported. The last way is \"Scan Duplicate By Advertising Data\". This way is to use advertising data\nfiltering. All same advertising data only allow to be reported once even though they are from\ndifferent devices.", - "id": "component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type", - "name": "BT_CTRL_SCAN_DUPL_TYPE", - "title": "Scan Duplicate Type", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_SCAN_DUPL_TYPE", - "name": "BT_CTRL_SCAN_DUPL_TYPE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", - "help": "Maximum number of devices which can be recorded in scan duplicate filter.\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.", - "id": "BT_CTRL_SCAN_DUPL_CACHE_SIZE", - "name": "BT_CTRL_SCAN_DUPL_CACHE_SIZE", - "range": [ - 10, - 1000 - ], - "title": "Maximum number of devices in scan duplicate filter", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", - "help": "If the period value is non-zero, the controller will periodically clear the device information\nstored in the scan duuplicate filter. If it is 0, the scan duuplicate filter will not be cleared\nuntil the scanning is disabled. Duplicate advertisements for this period should not be sent to the\nHost in advertising report events.\nThere are two scenarios where the ADV packet will be repeatedly reported:\n1. The duplicate scan cache is full, the controller will delete the oldest device information and\nadd new device information.\n2. When the refresh period is up, the controller will clear all device information and start filtering\nagain.", - "id": "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD", - "name": "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD", - "range": [ - 0, - 1000 - ], - "title": "Duplicate scan list refresh period (seconds)", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CTRL_BLE_MESH_SCAN_DUPL_EN && BT_CONTROLLER_ENABLED", - "help": "Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.", - "id": "BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE", - "name": "BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE", - "range": null, - "title": "Maximum number of Mesh adv packets in scan duplicate filter", - "type": "int" - } - ], - "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", - "help": "This enables the BLE scan duplicate for special BLE Mesh scan.", - "id": "BT_CTRL_BLE_MESH_SCAN_DUPL_EN", - "name": "BT_CTRL_BLE_MESH_SCAN_DUPL_EN", - "range": null, - "title": "Special duplicate scan mechanism for BLE Mesh scan", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "This select enables parameters setting of BLE scan duplicate.", - "id": "BT_CTRL_BLE_SCAN_DUPL", - "name": "BT_CTRL_BLE_SCAN_DUPL", - "range": null, - "title": "BLE Scan Duplicate Options", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Always enable the limitation on max tx/rx time for Coded-PHY connection", - "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN", - "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN", - "range": null, - "title": "Force Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Disable the limitation on max tx/rx time for Coded-PHY connection", - "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS", - "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS", - "range": null, - "title": "Force Disable", - "type": "bool" - } - ], - "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && BT_CONTROLLER_ENABLED", - "help": "When using PHY-Coded in BLE connection, limitation on max tx/rx time can be applied to\nbetter avoid dramatic performance deterioration of Wi-Fi.", - "id": "component-config-bluetooth-controller-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection", - "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM", - "title": "Coexistence: limit on MAX Tx/Rx time for coded-PHY connection", - "type": "choice" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF", - "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Main crystal can be used as low power clock for bluetooth modem sleep. If this option is\nselected, bluetooth modem sleep can work under Dynamic Frequency Scaling(DFS) enabled, and\nbluetooth can work under light sleep enabled. Main crystal has a relatively better performance\nthan other bluetooth low power clock sources.", - "id": "BT_CTRL_LPCLK_SEL_MAIN_XTAL", - "name": "BT_CTRL_LPCLK_SEL_MAIN_XTAL", - "range": null, - "title": "Main crystal", - "type": "bool" - }, - { - "children": [], - "depends_on": "(RTC_CLK_SRC_EXT_CRYS || RTC_CLK_SRC_EXT_OSC) && ", - "help": "External 32kHz crystal/oscillator has a nominal frequency of 32.768kHz and provides good frequency\nstability. If used as Bluetooth low power clock, External 32kHz can support Bluetooth\nmodem sleep to be used with both DFS and light sleep.", - "id": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", - "name": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", - "range": null, - "title": "External 32kHz crystal/oscillator", - "type": "bool" - }, - { - "children": [], - "depends_on": "RTC_CLK_SRC_INT_RC && ", - "help": "Internal 150kHz RC oscillator. The accuracy of this clock is a lot larger than 500ppm which is required\nin Bluetooth communication, so don't select this option in scenarios such as BLE connection state.", - "id": "BT_CTRL_LPCLK_SEL_RTC_SLOW", - "name": "BT_CTRL_LPCLK_SEL_RTC_SLOW", - "range": null, - "title": "Internal 150kHz RC oscillator", - "type": "bool" - } - ], - "depends_on": "BT_CTRL_MODEM_SLEEP_MODE_1 && BT_CONTROLLER_ENABLED", - "help": "Select the low power clock source for bluetooth controller", - "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode-1-bluetooth-low-power-clock", - "name": "BT_CTRL_LOW_POWER_CLOCK", - "title": "Bluetooth low power clock", - "type": "choice" - } - ], - "depends_on": "BT_CTRL_MODEM_SLEEP && BT_CONTROLLER_ENABLED", - "help": "Mode 1 is the currently supported sleep mode. In this mode,\nbluetooth controller sleeps between and BLE events. A low\npower clock is used to maintain bluetooth reference clock.", - "id": "BT_CTRL_MODEM_SLEEP_MODE_1", - "name": "BT_CTRL_MODEM_SLEEP_MODE_1", - "range": null, - "title": "Bluetooth Modem sleep Mode 1", - "type": "bool" - } - ], - "depends_on": "!BT_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", - "help": "Enable/disable bluetooth controller low power mode.\nModem sleep is not supported to be used with UART HCI.", - "id": "BT_CTRL_MODEM_SLEEP", - "name": "BT_CTRL_MODEM_SLEEP", - "range": null, - "title": "Bluetooth modem sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "(BT_CTRL_LPCLK_SEL_MAIN_XTAL || BT_CTRL_LPCLK_SEL_EXT_32K_XTAL) && FREERTOS_USE_TICKLESS_IDLE && BT_CONTROLLER_ENABLED", - "help": "If this option is selected, the main crystal will power up during light sleep when the low power clock\nselects an external 32kHz crystal but the external 32kHz crystal does not exist or the low power clock\nselects the main crystal.", - "id": "BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP", - "name": "BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP", - "range": null, - "title": "power up main XTAL during light sleep", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "id": "component-config-bluetooth-controller-options-modem-sleep-options", - "title": "MODEM SLEEP Options", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_SLEEP_MODE_EFF", - "name": "BT_CTRL_SLEEP_MODE_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_SLEEP_CLOCK_EFF", - "name": "BT_CTRL_SLEEP_CLOCK_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_HCI_TL_EFF", - "name": "BT_CTRL_HCI_TL_EFF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CTRL_AGC_RECORRECT_EN && BT_CONTROLLER_ENABLED", - "help": "Enable coded phy AGC recorrect", - "id": "BT_CTRL_CODED_AGC_RECORRECT_EN", - "name": "BT_CTRL_CODED_AGC_RECORRECT_EN", - "range": null, - "title": "Enable coded phy AGC recorrect", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Enable uncoded phy AGC recorrect", - "id": "BT_CTRL_AGC_RECORRECT_EN", - "name": "BT_CTRL_AGC_RECORRECT_EN", - "range": null, - "title": "Enable HW AGC recorrect", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Disable active scan backoff. The bluetooth spec requires that scanners should run a backoff procedure to\nminimize collision of scan request PDUs from nultiple scanners. If scan backoff is disabled, in active\nscanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.", - "id": "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", - "name": "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", - "range": null, - "title": "Disable active scan backoff", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "When this option is enabled, auxiliary packets will be present in the events of\n'Non-Connectable and Non-Scannable' regardless of whether the advertising length is 0.\nIf this option is not enabled, auxiliary packets will only be present when the advertising length is not 0.", - "id": "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX", - "name": "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX", - "range": null, - "title": "Enable aux packet when ext adv data length is zero", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is enabled, The Controller will records the communication quality\nfor each channel and then start a timer to check and update the channel map every 4 seconds.", - "id": "BT_CTRL_CHAN_ASS_EN", - "name": "BT_CTRL_CHAN_ASS_EN", - "range": null, - "title": "Enable channel assessment", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is disabled, The Controller will not start the LE authenticated payload timer.\nThis option is used for some compatibility problems related to LE ping procedure.", - "id": "BT_CTRL_LE_PING_EN", - "name": "BT_CTRL_LE_PING_EN", - "range": null, - "title": "Enable LE Ping procedure", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs during connection update procedure.", - "id": "BT_CTRL_BLE_LLCP_CONN_UPDATE", - "name": "BT_CTRL_BLE_LLCP_CONN_UPDATE", - "range": null, - "title": "BLE ACL connection update procedure", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs in channel map update procedure.", - "id": "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE", - "name": "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE", - "range": null, - "title": "BLE ACL channel map update procedure", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs in PHY update procedure.", - "id": "BT_CTRL_BLE_LLCP_PHY_UPDATE", - "name": "BT_CTRL_BLE_LLCP_PHY_UPDATE", - "range": null, - "title": "BLE ACL PHY update procedure", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "id": "component-config-bluetooth-controller-options-ble-disconnects-when-instant-passed-0x28-occurs", - "title": "BLE disconnects when Instant Passed (0x28) occurs", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_DTM_ENABLE", - "name": "BT_CTRL_DTM_ENABLE", - "range": null, - "title": "Enable direct test mode feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_BLE_MASTER", - "name": "BT_CTRL_BLE_MASTER", - "range": null, - "title": "Enable BLE master role feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_BLE_TEST", - "name": "BT_CTRL_BLE_TEST", - "range": null, - "title": "Enable BLE QA test feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_BLE_SCAN", - "name": "BT_CTRL_BLE_SCAN", - "range": null, - "title": "Enable BLE scan feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ONLY && BT_CONTROLLER_ENABLED", - "help": null, - "id": "BT_CTRL_BLE_SECURITY_ENABLE", - "name": "BT_CTRL_BLE_SECURITY_ENABLE", - "range": null, - "title": "Enable BLE security feature", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "If this option is enabled, all code for the Bluetooth controller will be moved from ROM and IRAM\nto flash, saving over 20K bytes of memory. However, it will require more flash resources and the\nperformance of Bluetooth will decrease If this option is enabled, Bluetooth may not work properly\nduring erasing flash. It is recommended to turn on the auto suspend function of flash. After auto\nsuspend is turned on, Bluetooth interrupts can be executed normally during erasing flash, with less\nimpact on Bluetooth performance.", - "id": "BT_CTRL_RUN_IN_FLASH_ONLY", - "name": "BT_CTRL_RUN_IN_FLASH_ONLY", - "range": null, - "title": "Put all BLE Controller code in flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_CONTROLLER_ENABLED", - "help": "Enabling this option will add stricter verification of the Access Address in the CONNECT_IND PDU.\nThis improves security by ensuring that only connection requests with valid Access Addresses are accepted.\nIf disabled, only basic checks are applied, improving compatibility.", - "id": "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", - "name": "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", - "range": null, - "title": "Enable enhanced Access Address check in CONNECT_IND", - "type": "bool" - } - ], - "depends_on": "BT_CONTROLLER_ENABLED", - "id": "component-config-bluetooth-controller-options", - "title": "Controller Options", - "type": "menu" - }, - { - "children": [], - "depends_on": "BT_ENABLED && BT_LE_RELEASE_IRAM_SUPPORTED", - "help": "This option release Bluetooth text section and merge Bluetooth data, bss & text into\na large free heap region when esp_bt_mem_release is called, total saving ~21kB or more of IRAM.\nESP32-C2 only 3 configurable PMP entries available, rest of them are hard-coded.\nWe cannot split the memory into 3 different regions (IRAM, BLE-IRAM, DRAM).\nSo this option will disable the PMP (ESP_SYSTEM_PMP_IDRAM_SPLIT)", - "id": "BT_RELEASE_IRAM", - "name": "BT_RELEASE_IRAM", - "range": null, - "title": "Release Bluetooth text (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "This option decides the maximum number of alarms which\ncould be used by Bluetooth host.", - "id": "BT_ALARM_MAX_NUM", - "name": "BT_ALARM_MAX_NUM", - "range": null, - "title": "Maximum number of Bluetooth alarms", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "The number of ble log async SPI output queues", - "id": "BT_BLE_LOG_SPI_OUT_QUEUE_SIZE", - "name": "BT_BLE_LOG_SPI_OUT_QUEUE_SIZE", - "range": null, - "title": "Number of ble log async SPI output queues", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "The size of ble log async SPI output transaction buffer size", - "id": "BT_BLE_LOG_SPI_OUT_TRANS_BUF_SIZE", - "name": "BT_BLE_LOG_SPI_OUT_TRANS_BUF_SIZE", - "range": null, - "title": "Size of ble log async SPI output transaction buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "GPIO number of SPI MOSI", - "id": "BT_BLE_LOG_SPI_OUT_MOSI_IO_NUM", - "name": "BT_BLE_LOG_SPI_OUT_MOSI_IO_NUM", - "range": null, - "title": "GPIO number of SPI MOSI", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "GPIO number of SPI SCLK", - "id": "BT_BLE_LOG_SPI_OUT_SCLK_IO_NUM", - "name": "BT_BLE_LOG_SPI_OUT_SCLK_IO_NUM", - "range": null, - "title": "GPIO number of SPI SCLK", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "GPIO number of SPI CS", - "id": "BT_BLE_LOG_SPI_OUT_CS_IO_NUM", - "name": "BT_BLE_LOG_SPI_OUT_CS_IO_NUM", - "range": null, - "title": "GPIO number of SPI CS", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", - "help": "GPIO number of SYNC IO", - "id": "BT_BLE_LOG_SPI_OUT_SYNC_IO_NUM", - "name": "BT_BLE_LOG_SPI_OUT_SYNC_IO_NUM", - "range": null, - "title": "GPIO number of SYNC IO", - "type": "int" - } - ], - "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", - "help": "Enable ble log & logic analyzer log time sync", - "id": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", - "name": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", - "range": null, - "title": "Enable ble log & logic analyzer log time sync", - "type": "bool" - } - ], - "depends_on": null, - "help": "Output ble logs to SPI bus", - "id": "BT_BLE_LOG_SPI_OUT_ENABLED", - "name": "BT_BLE_LOG_SPI_OUT_ENABLED", - "range": null, - "title": "Output ble logs to SPI bus (Experimental)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-bluetooth-common-options", - "title": "Common Options", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BT_HCI_LOG_DEBUG_EN", - "help": "This option is to configure the buffer size of the hci data steam cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", - "id": "BT_HCI_LOG_DATA_BUFFER_SIZE", - "name": "BT_HCI_LOG_DATA_BUFFER_SIZE", - "range": null, - "title": "Size of the cache used for HCI data in Bluetooth HCI debug mode (N*1024 bytes)", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_HCI_LOG_DEBUG_EN", - "help": "This option is to configure the buffer size of the hci adv report cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", - "id": "BT_HCI_LOG_ADV_BUFFER_SIZE", - "name": "BT_HCI_LOG_ADV_BUFFER_SIZE", - "range": null, - "title": "Size of the cache used for adv report in Bluetooth HCI debug mode (N*1024 bytes)", - "type": "int" - } - ], - "depends_on": "BT_BLUEDROID_ENABLED || BT_NIMBLE_ENABLED", - "help": "This option is used to enable bluetooth debug mode, which saves the hci layer data stream.", - "id": "BT_HCI_LOG_DEBUG_EN", - "name": "BT_HCI_LOG_DEBUG_EN", - "range": null, - "title": "Enable Bluetooth HCI debug mode", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-bluetooth", - "title": "Bluetooth", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH", - "help": "It is a temporary solution and needs further modifications.", - "id": "BLE_MESH_HCI_5_0", - "name": "BLE_MESH_HCI_5_0", - "range": null, - "title": "Support sending 20ms non-connectable adv packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Support BLE Mesh v1.1 features", - "id": "BLE_MESH_V11_SUPPORT", - "name": "BLE_MESH_V11_SUPPORT", - "range": null, - "title": "Support ESP BLE Mesh v1.1 features (Preview)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable this option to allow using random advertising interval\nfor mesh packets. And this could help avoid collision of\nadvertising packets.", - "id": "BLE_MESH_RANDOM_ADV_INTERVAL", - "name": "BLE_MESH_RANDOM_ADV_INTERVAL", - "range": null, - "title": "Support using random adv interval for mesh packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable this option to allow using specific duplicate scan filter\nin BLE Mesh, and Scan Duplicate Type must be set by choosing the\noption in the Bluetooth Controller section in menuconfig, which is\n\"Scan Duplicate By Device Address and Advertising Data\".", - "id": "BLE_MESH_USE_DUPLICATE_SCAN", - "name": "BLE_MESH_USE_DUPLICATE_SCAN", - "range": null, - "title": "Support Duplicate Scan in BLE Mesh", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to allow using BLE Active Scan for BLE Mesh.", - "id": "BLE_MESH_ACTIVE_SCAN", - "name": "BLE_MESH_ACTIVE_SCAN", - "range": null, - "title": "Support Active Scan in BLE Mesh", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", - "name": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", - "range": null, - "title": "Internal DRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": null, - "id": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", - "name": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", - "range": null, - "title": "External SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Enable this option to use the default memory allocation strategy when\nexternal SPIRAM is enabled. See the SPIRAM options for more details.", - "id": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", - "name": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", - "range": null, - "title": "Default alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", - "help": "Allows to use IRAM memory region as 8bit accessible region. Every\nunaligned (8bit or 16bit) access will result in an exception and\nincur penalty of certain clock cycles per unaligned read/write.", - "id": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", - "name": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", - "range": null, - "title": "Internal IRAM", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "Allocation strategy for BLE Mesh stack, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Internal IRAM memory wherever applicable else internal DRAM\n\nRecommended mode here is always internal (*), since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.\n\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\nSPIRAM contents provided hardware flash encryption feature is enabled.\nIn that case, using external SPIRAM allocation strategy is also safe choice\nfrom security perspective.", - "id": "component-config-esp-ble-mesh-support-memory-allocation-strategy", - "name": "BLE_MESH_MEM_ALLOC_MODE", - "title": "Memory allocation strategy", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SPIRAM && ", - "help": "If enabled, BLE Mesh allocates dynamic memory from external SPIRAM for\nFreeRTOS objects, i.e. mutex, queue, and task stack. External SPIRAM\ncan only be used for task stack when SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY\nis enabled. See the SPIRAM options for more details.", - "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", - "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", - "range": null, - "title": "External SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", - "help": "If enabled, BLE Mesh allocates dynamic memory from internal IRAM for\nFreeRTOS objects, i.e. mutex, queue. Note: IRAM region cannot be used\nas task stack.", - "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", - "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", - "range": null, - "title": "Internal IRAM", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_FREERTOS_STATIC_ALLOC && BLE_MESH", - "help": "Choose the memory to be used for FreeRTOS objects.", - "id": "component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects", - "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_MODE", - "title": "Memory allocation for FreeRTOS objects", - "type": "choice" - } - ], - "depends_on": "FREERTOS_SUPPORT_STATIC_ALLOCATION && ((IDF_TARGET_ESP32 && SPIRAM) || ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY) && BLE_MESH", - "help": "Enable this option to use FreeRTOS static allocation APIs for BLE Mesh,\nwhich provides the ability to use different dynamic memory (i.e. SPIRAM\nor IRAM) for FreeRTOS objects.\nIf this option is disabled, the FreeRTOS static allocation APIs will not\nbe used, and internal DRAM will be allocated for FreeRTOS objects.", - "id": "BLE_MESH_FREERTOS_STATIC_ALLOC", - "name": "BLE_MESH_FREERTOS_STATIC_ALLOC", - "range": null, - "title": "Enable FreeRTOS static allocation", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "If enabled, users can use the function esp_ble_mesh_deinit() to de-initialize\nthe whole BLE Mesh stack.", - "id": "BLE_MESH_DEINIT", - "name": "BLE_MESH_DEINIT", - "range": null, - "title": "Support de-initialize BLE Mesh stack", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_SUPPORT_BLE_ADV && BLE_MESH", - "help": "Number of advertising buffers for BLE packets available.", - "id": "BLE_MESH_BLE_ADV_BUF_COUNT", - "name": "BLE_MESH_BLE_ADV_BUF_COUNT", - "range": null, - "title": "Number of advertising buffers for BLE advertising packets", - "type": "int" - } - ], - "depends_on": "BLE_MESH", - "help": "When selected, users can send normal BLE advertising packets\nwith specific API.", - "id": "BLE_MESH_SUPPORT_BLE_ADV", - "name": "BLE_MESH_SUPPORT_BLE_ADV", - "range": null, - "title": "Support sending normal BLE advertising packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "When selected, users can register a callback and receive normal BLE\nadvertising packets in the application layer.", - "id": "BLE_MESH_SUPPORT_BLE_SCAN", - "name": "BLE_MESH_SUPPORT_BLE_SCAN", - "range": null, - "title": "Support scanning normal BLE advertising packets", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "id": "component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support", - "title": "BLE Mesh and BLE coexistence support", - "type": "menu" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable this option to allow BLE Mesh fast provisioning solution to be used.\nWhen there are multiple unprovisioned devices around, fast provisioning can\ngreatly reduce the time consumption of the whole provisioning process.\nWhen this option is enabled, and after an unprovisioned device is provisioned\ninto a node successfully, it can be changed to a temporary Provisioner.", - "id": "BLE_MESH_FAST_PROV", - "name": "BLE_MESH_FAST_PROV", - "range": null, - "title": "Enable BLE Mesh Fast Provisioning", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable the device to be provisioned into a node. This option should be\nenabled when an unprovisioned device is going to be provisioned into a\nnode and communicate with other nodes in the BLE Mesh network.", - "id": "BLE_MESH_NODE", - "name": "BLE_MESH_NODE", - "range": null, - "title": "Support for BLE Mesh Node", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many unprovisioned devices can be added to device\nqueue for provisioning. Users can use this option to define the size of the\nqueue in the bottom layer which is used to store unprovisioned device\ninformation (e.g. Device UUID, address).", - "id": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", - "name": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", - "range": null, - "title": "Maximum number of unprovisioned devices that can be added to device queue", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many devices can be provisioned by a Provisioner.\nThis value indicates the maximum number of unprovisioned devices which can be\nprovisioned by a Provisioner. For instance, if the value is 6, it means the\nProvisioner can provision up to 6 unprovisioned devices.\nTheoretically a Provisioner without the limitation of its memory can provision\nup to 32766 unprovisioned devices, here we limit the maximum number to 100\njust to limit the memory used by a Provisioner. The bigger the value is, the\nmore memory it will cost by a Provisioner to store the information of nodes.", - "id": "BLE_MESH_MAX_PROV_NODES", - "name": "BLE_MESH_MAX_PROV_NODES", - "range": null, - "title": "Maximum number of devices that can be provisioned by Provisioner", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PB_ADV && BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-ADV. For examples, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-ADV at the same time.", - "id": "BLE_MESH_PBA_SAME_TIME", - "name": "BLE_MESH_PBA_SAME_TIME", - "range": null, - "title": "Maximum number of PB-ADV running at the same time by Provisioner", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PB_GATT && BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many devices can be provisioned at the same\ntime using PB-GATT. For example, if the value is 2, it means a Provisioner\ncan provision two unprovisioned devices with PB-GATT at the same time.", - "id": "BLE_MESH_PBG_SAME_TIME", - "name": "BLE_MESH_PBG_SAME_TIME", - "range": null, - "title": "Maximum number of PB-GATT running at the same time by Provisioner", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many subnets per network a Provisioner can create.\nIndeed, this value decides the number of network keys which can be added by a Provisioner.", - "id": "BLE_MESH_PROVISIONER_SUBNET_COUNT", - "name": "BLE_MESH_PROVISIONER_SUBNET_COUNT", - "range": null, - "title": "Maximum number of mesh subnets that can be created by Provisioner", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many application keys the Provisioner can have.\nIndeed, this value decides the number of the application keys which can be added by a Provisioner.", - "id": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", - "name": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", - "range": null, - "title": "Maximum number of application keys that can be owned by Provisioner", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_PROVISIONER_RECV_HB && BLE_MESH_PROVISIONER && BLE_MESH", - "help": "This option specifies how many heartbeat filter entries Provisioner supports.\nThe heartbeat filter (acceptlist or rejectlist) entries are used to store a\nlist of SRC and DST which can be used to decide if a heartbeat message will\nbe processed and notified to the application layer by Provisioner.\nNote: The filter is an empty rejectlist by default.", - "id": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", - "name": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", - "range": null, - "title": "Maximum number of filter entries for receiving Heartbeat messages", - "type": "int" - } - ], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", - "help": "When this option is enabled, Provisioner can call specific functions to enable\nor disable receiving Heartbeat messages and notify them to the application layer.", - "id": "BLE_MESH_PROVISIONER_RECV_HB", - "name": "BLE_MESH_PROVISIONER_RECV_HB", - "range": null, - "title": "Support receiving Heartbeat messages", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "Enable the device to be a Provisioner. The option should be enabled when\na device is going to act as a Provisioner and provision unprovisioned\ndevices into the BLE Mesh network.", - "id": "BLE_MESH_PROVISIONER", - "name": "BLE_MESH_PROVISIONER", - "range": null, - "title": "Support for BLE Mesh Provisioner", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_PROV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to support BLE Mesh enhanced provisioning authentication\nfunctionality. This option can increase the security level of provisioning.\nIt is recommended to enable this option.", - "id": "BLE_MESH_PROV_EPA", - "name": "BLE_MESH_PROV_EPA", - "range": null, - "title": "BLE Mesh enhanced provisioning authentication", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_CERT_BASED_PROV && BLE_MESH", - "help": "This option sets the maximum size of the provisioning record fragment that the\nProvisioner can receive. The range depends on provisioning bearer.", - "id": "BLE_MESH_RECORD_FRAG_MAX_SIZE", - "name": "BLE_MESH_RECORD_FRAG_MAX_SIZE", - "range": null, - "title": "Maximum size of the provisioning record fragment that Provisioner can receive", - "type": "int" - } - ], - "depends_on": "BLE_MESH_PROV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to support BLE Mesh Certificate-Based Provisioning.", - "id": "BLE_MESH_CERT_BASED_PROV", - "name": "BLE_MESH_CERT_BASED_PROV", - "range": null, - "title": "Support Certificate-based provisioning", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "Enable this option to support BLE Mesh Provisioning functionality. For\nBLE Mesh, this option should be always enabled.", - "id": "BLE_MESH_PROV", - "name": "BLE_MESH_PROV", - "range": null, - "title": "BLE Mesh Provisioning support", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_NODE && BLE_MESH_PB_ADV && BLE_MESH", - "help": "This option specifies the interval of sending two consecutive unprovisioned\ndevice beacon, users can use this option to change the frequency of sending\nunprovisioned device beacon. For example, if the value is 5, it means the\nunprovisioned device beacon will send every 5 seconds. When the option of\nBLE_MESH_FAST_PROV is selected, the value is better to be 3 seconds, or less.", - "id": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", - "name": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", - "range": null, - "title": "Interval between two consecutive Unprovisioned Device Beacon", - "type": "int" - } - ], - "depends_on": "BLE_MESH", - "help": "Enable this option to allow the device to be provisioned over the\nadvertising bearer. This option should be enabled if PB-ADV is\ngoing to be used during provisioning procedure.", - "id": "BLE_MESH_PB_ADV", - "name": "BLE_MESH_PB_ADV", - "range": null, - "title": "Provisioning support using the advertising bearer (PB-ADV)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable this option to allow the device to be provisioned over GATT.\nThis option should be enabled if PB-GATT is going to be used during\nprovisioning procedure.\n\n# Virtual option enabled whenever any Proxy protocol is needed", - "id": "BLE_MESH_PB_GATT", - "name": "BLE_MESH_PB_GATT", - "range": null, - "title": "Provisioning support using GATT (PB-GATT)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable this option to support BLE Mesh Proxy protocol used by PB-GATT\nand other proxy pdu transmission.", - "id": "BLE_MESH_PROXY", - "name": "BLE_MESH_PROXY", - "range": null, - "title": "BLE Mesh Proxy protocol support", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", - "help": "This option determines for how long the local node advertises using\nNode Identity. The given value is in seconds. The specification limits\nthis to 60 seconds and lists it as the recommended value as well.\nSo leaving the default value is the safest option.\nWhen an unprovisioned device is provisioned successfully and becomes a\nnode, it will start to advertise using Node Identity during the time\nset by this option. And after that, Network ID will be advertised.", - "id": "BLE_MESH_NODE_ID_TIMEOUT", - "name": "BLE_MESH_NODE_ID_TIMEOUT", - "range": null, - "title": "Node Identity advertising timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", - "help": "This option specifies how many Proxy Filter entries the local node supports.\nThe entries of Proxy filter (whitelist or blacklist) are used to store a\nlist of addresses which can be used to decide which messages will be forwarded\nto the Proxy Client by the Proxy Server.", - "id": "BLE_MESH_PROXY_FILTER_SIZE", - "name": "BLE_MESH_PROXY_FILTER_SIZE", - "range": null, - "title": "Maximum number of filter entries per Proxy Client", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_PRB_SRV && BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", - "help": "The Proxy Privacy parameter controls the privacy of the Proxy Server\nover the connection. The value of the Proxy Privacy parameter is\ncontrolled by the type of proxy connection, which is dependent on the\nbearer used by the proxy connection.", - "id": "BLE_MESH_PROXY_PRIVACY", - "name": "BLE_MESH_PROXY_PRIVACY", - "range": null, - "title": "Support Proxy Privacy", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH", - "help": "This option specifies the maximum capacity of the solicitation replay\nprotection list. The solicitation replay protection list is used to\nreject Solicitation PDUs that were already processed by a node, which\nwill store the solicitation src and solicitation sequence number of\nthe received Solicitation PDU message.", - "id": "BLE_MESH_PROXY_SOLIC_RX_CRPL", - "name": "BLE_MESH_PROXY_SOLIC_RX_CRPL", - "range": null, - "title": "Maximum capacity of solicitation replay protection list", - "type": "int" - } - ], - "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to support receiving Proxy Solicitation PDU.", - "id": "BLE_MESH_PROXY_SOLIC_PDU_RX", - "name": "BLE_MESH_PROXY_SOLIC_PDU_RX", - "range": null, - "title": "Support receiving Proxy Solicitation PDU", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_NODE && BLE_MESH", - "help": "This option enables support for Mesh GATT Proxy Service, i.e. the\nability to act as a proxy between a Mesh GATT Client and a Mesh network.\nThis option should be enabled if a node is going to be a Proxy Server.", - "id": "BLE_MESH_GATT_PROXY_SERVER", - "name": "BLE_MESH_GATT_PROXY_SERVER", - "range": null, - "title": "BLE Mesh GATT Proxy Server", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_TX && BLE_MESH", - "help": "This option specifies the maximum number of Solicitation Source (SSRC)\nthat can be used by Proxy Client for sending a Solicitation PDU.\nA Proxy Client may use the primary address or any of the secondary\naddresses as the SSRC for a Solicitation PDU.\nSo for a Proxy Client, it's better to choose the value based on its\nown element count.", - "id": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", - "name": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", - "range": null, - "title": "Maximum number of SSRC that can be used by Proxy Client", - "type": "int" - } - ], - "depends_on": "BLE_MESH_GATT_PROXY_CLIENT && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to support sending Proxy Solicitation PDU.", - "id": "BLE_MESH_PROXY_SOLIC_PDU_TX", - "name": "BLE_MESH_PROXY_SOLIC_PDU_TX", - "range": null, - "title": "Support sending Proxy Solicitation PDU", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "This option enables support for Mesh GATT Proxy Client. The Proxy Client\ncan use the GATT bearer to send mesh messages to a node that supports the\nadvertising bearer.", - "id": "BLE_MESH_GATT_PROXY_CLIENT", - "name": "BLE_MESH_GATT_PROXY_CLIENT", - "range": null, - "title": "BLE Mesh GATT Proxy Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable BLE Mesh net buffer pool tracking. This option is used to introduce another\nvariable in the bottom layer to record the usage of advertising buffers of BLE Mesh\ndevices. Recommend to enable this option as default.", - "id": "BLE_MESH_NET_BUF_POOL_USAGE", - "name": "BLE_MESH_NET_BUF_POOL_USAGE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", - "help": "This value defines in seconds how soon any pending changes are actually\nwritten into persistent storage (flash) after a change occurs.\nThe option allows nodes to delay a certain period of time to save proper\ninformation to flash. The default value is 0, which means information\nwill be stored immediately once there are updates.", - "id": "BLE_MESH_STORE_TIMEOUT", - "name": "BLE_MESH_STORE_TIMEOUT", - "range": null, - "title": "Delay (in seconds) before storing anything persistently", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", - "help": "This value defines how often the local sequence number gets updated in\npersistent storage (i.e. flash). e.g. a value of 100 means that the\nsequence number will be stored to flash on every 100th increment.\nIf the node sends messages very frequently a higher value makes more\nsense, whereas if the node sends infrequently a value as low as 0\n(update storage for every increment) can make sense. When the stack\ngets initialized it will add sequence number to the last stored one,\nso that it starts off with a value that's guaranteed to be larger than\nthe last one used before power off.", - "id": "BLE_MESH_SEQ_STORE_RATE", - "name": "BLE_MESH_SEQ_STORE_RATE", - "range": null, - "title": "How often the sequence number gets updated in storage", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", - "help": "This value defines in seconds how soon the RPL (Replay Protection List)\ngets written to persistent storage after a change occurs. If the node\nreceives messages frequently, then a large value is recommended. If the\nnode receives messages rarely, then the value can be as low as 0 (which\nmeans the RPL is written into the storage immediately).\nNote that if the node operates in a security-sensitive case, and there is\na risk of sudden power-off, then a value of 0 is strongly recommended.\nOtherwise, a power loss before RPL being written into the storage may\nintroduce message replay attacks and system security will be in a\nvulnerable state.", - "id": "BLE_MESH_RPL_STORE_TIMEOUT", - "name": "BLE_MESH_RPL_STORE_TIMEOUT", - "range": null, - "title": "Minimum frequency that the RPL gets updated in storage", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_NODE && BLE_MESH_SETTINGS && BLE_MESH", - "help": "This option is created to solve the issue of failure in recovering\nnode information after mesh stack updates. In the old version mesh\nstack, there is no key of \"mesh/role\" in nvs. In the new version\nmesh stack, key of \"mesh/role\" is added in nvs, recovering node\ninformation needs to check \"mesh/role\" key in nvs and implements\nselective recovery of mesh node information. Therefore, there may\nbe failure in recovering node information during node restarting\nafter OTA.\n\nThe new version mesh stack adds the option of \"mesh/role\" because\nwe have added the support of storing Provisioner information, while\nthe old version only supports storing node information.\n\nIf users are updating their nodes from old version to new version,\nwe recommend enabling this option, so that system could set the flag\nin advance before recovering node information and make sure the node\ninformation recovering could work as expected.", - "id": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", - "name": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", - "range": null, - "title": "A specific option for settings backward compatibility", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_SPECIFIC_PARTITION && BLE_MESH_SETTINGS && BLE_MESH", - "help": "This value defines the name of the specified NVS partition used by the\nmesh stack.", - "id": "BLE_MESH_PARTITION_NAME", - "name": "BLE_MESH_PARTITION_NAME", - "range": null, - "title": "Name of the NVS partition for BLE Mesh", - "type": "string" - } - ], - "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", - "help": "When selected, the mesh stack will use a specified NVS partition instead of\ndefault NVS partition. Note that the specified partition must be registered\nwith NVS using nvs_flash_init_partition() API, and the partition must exists\nin the csv file.\nWhen Provisioner needs to store a large amount of nodes' information in the\nflash (e.g. more than 20), this option is recommended to be enabled.", - "id": "BLE_MESH_SPECIFIC_PARTITION", - "name": "BLE_MESH_SPECIFIC_PARTITION", - "range": null, - "title": "Use a specific NVS partition for BLE Mesh", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_USE_MULTIPLE_NAMESPACE && BLE_MESH_SETTINGS && BLE_MESH", - "help": "This option specifies the maximum NVS namespaces supported by Provisioner.", - "id": "BLE_MESH_MAX_NVS_NAMESPACE", - "name": "BLE_MESH_MAX_NVS_NAMESPACE", - "range": null, - "title": "Maximum number of NVS namespaces", - "type": "int" - } - ], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH_SETTINGS && BLE_MESH", - "help": "When selected, Provisioner can use different NVS namespaces to store\ndifferent instances of mesh information.\nFor example, if in the first room, Provisioner uses NetKey A, AppKey\nA and provisions three devices, these information will be treated as\nmesh information instance A. When the Provisioner moves to the second\nroom, it uses NetKey B, AppKey B and provisions two devices, then the\ninformation will be treated as mesh information instance B.\nHere instance A and instance B will be stored in different namespaces.\nWith this option enabled, Provisioner needs to use specific functions\nto open the corresponding NVS namespace, restore the mesh information,\nrelease the mesh information or erase the mesh information.", - "id": "BLE_MESH_USE_MULTIPLE_NAMESPACE", - "name": "BLE_MESH_USE_MULTIPLE_NAMESPACE", - "range": null, - "title": "Support using multiple NVS namespaces by Provisioner", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "When selected, the BLE Mesh stack will take care of storing/restoring the BLE\nMesh configuration persistently in flash.\nIf the device is a BLE Mesh node, when this option is enabled, the configuration\nof the device will be stored persistently, including unicast address, NetKey,\nAppKey, etc.\nAnd if the device is a BLE Mesh Provisioner, the information of the device will\nbe stored persistently, including the information of provisioned nodes, NetKey,\nAppKey, etc.", - "id": "BLE_MESH_SETTINGS", - "name": "BLE_MESH_SETTINGS", - "range": null, - "title": "Store BLE Mesh configuration persistently", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies how many subnets a Mesh network can have at the same time.\nIndeed, this value decides the number of the network keys which can be owned by a node.", - "id": "BLE_MESH_SUBNET_COUNT", - "name": "BLE_MESH_SUBNET_COUNT", - "range": null, - "title": "Maximum number of mesh subnets per network", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies how many application keys the device can store per network.\nIndeed, this value decides the number of the application keys which can be owned by a node.", - "id": "BLE_MESH_APP_KEY_COUNT", - "name": "BLE_MESH_APP_KEY_COUNT", - "range": null, - "title": "Maximum number of application keys per network", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies the maximum number of application keys to which each model\ncan be bound.", - "id": "BLE_MESH_MODEL_KEY_COUNT", - "name": "BLE_MESH_MODEL_KEY_COUNT", - "range": null, - "title": "Maximum number of application keys per model", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies the maximum number of addresses to which each model can\nbe subscribed.", - "id": "BLE_MESH_MODEL_GROUP_COUNT", - "name": "BLE_MESH_MODEL_GROUP_COUNT", - "range": null, - "title": "Maximum number of group address subscriptions per model", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies how many Label UUIDs can be stored.\nIndeed, this value decides the number of the Virtual Addresses can be supported by a node.", - "id": "BLE_MESH_LABEL_COUNT", - "name": "BLE_MESH_LABEL_COUNT", - "range": null, - "title": "Maximum number of Label UUIDs used for Virtual Addresses", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option specifies the maximum capacity of the replay protection list.\nIt is similar to Network message cache size, but has a different purpose.\nThe replay protection list is used to prevent a node from replay attack,\nwhich will store the source address and sequence number of the received\nmesh messages.\nFor Provisioner, the replay protection list size should not be smaller than\nthe maximum number of nodes whose information can be stored. And the element\nnumber of each node should also be taken into consideration. For example, if\nProvisioner can provision up to 20 nodes and each node contains two elements,\nthen the replay protection list size of Provisioner should be at least 40.", - "id": "BLE_MESH_CRPL", - "name": "BLE_MESH_CRPL", - "range": null, - "title": "Maximum capacity of the replay protection list", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_EXPERIMENTAL && BLE_MESH", - "help": "There may be many expired messages in a complex mesh network that would be\nconsidered replayed messages.\nEnable this option will refuse to relay such messages, which could help to\nreduce invalid packets in the mesh network.\nHowever, it should be noted that enabling this option may result in packet\nloss in certain environments.\nTherefore, users need to decide whether to enable this option according to\nthe actual usage situation.", - "id": "BLE_MESH_NOT_RELAY_REPLAY_MSG", - "name": "BLE_MESH_NOT_RELAY_REPLAY_MSG", - "range": null, - "title": "Not relay replayed messages in a mesh network", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Number of messages that are cached for the network. This helps prevent\nunnecessary decryption operations and unnecessary relays. This option\nis similar to Replay protection list, but has a different purpose.\nA node is not required to cache the entire Network PDU and may cache\nonly part of it for tracking, such as values for SRC/SEQ or others.", - "id": "BLE_MESH_MSG_CACHE_SIZE", - "name": "BLE_MESH_MSG_CACHE_SIZE", - "range": null, - "title": "Network message cache size", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Number of advertising buffers available. The transport layer reserves\nADV_BUF_COUNT - 3 buffers for outgoing segments. The maximum outgoing\nSDU size is 12 times this value (out of which 4 or 8 bytes are used\nfor the Transport Layer MIC). For example, 5 segments means the maximum\nSDU size is 60 bytes, which leaves 56 bytes for application layer data\nusing a 4-byte MIC, or 52 bytes using an 8-byte MIC.", - "id": "BLE_MESH_ADV_BUF_COUNT", - "name": "BLE_MESH_ADV_BUF_COUNT", - "range": null, - "title": "Number of advertising buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "When the IV Update state enters Normal operation or IV Update\nin Progress, we need to keep track of how many hours has passed\nin the state, since the specification requires us to remain in\nthe state at least for 96 hours (Update in Progress has an\nadditional upper limit of 144 hours).\n\nIn order to fulfill the above requirement, even if the node might\nbe powered off once in a while, we need to store persistently\nhow many hours the node has been in the state. This doesn't\nnecessarily need to happen every hour (thanks to the flexible\nduration range). The exact cadence will depend a lot on the\nways that the node will be used and what kind of power source it\nhas.\n\nSince there is no single optimal answer, this configuration\noption allows specifying a divider, i.e. how many intervals\nthe 96 hour minimum gets split into. After each interval the\nduration that the node has been in the current state gets\nstored to flash. E.g. the default value of 4 means that the\nstate is saved every 24 hours (96 / 4).", - "id": "BLE_MESH_IVU_DIVIDER", - "name": "BLE_MESH_IVU_DIVIDER", - "range": null, - "title": "Divider for IV Update state refresh timer", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "According to Section 3.10.5 of Mesh Specification v1.0.1.\nIf a node in Normal Operation receives a Secure Network beacon with an IV index\nequal to the last known IV index+1 and the IV Update Flag set to 0, the node may\nupdate its IV without going to the IV Update in Progress state, or it may initiate\nan IV Index Recovery procedure (Section 3.10.6), or it may ignore the Secure\nNetwork beacon. The node makes the choice depending on the time since last IV\nupdate and the likelihood that the node has missed the Secure Network beacons\nwith the IV update Flag.\nWhen the above situation is encountered, this option can be used to decide whether\nto perform the IV index recovery procedure.", - "id": "BLE_MESH_IVU_RECOVERY_IVI", - "name": "BLE_MESH_IVU_RECOVERY_IVI", - "range": null, - "title": "Recovery the IV index when the latest whole IV update procedure is missed", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to use the enhanced segmentation and reassembly\nmechanism introduced in Bluetooth Mesh Protocol 1.1.", - "id": "BLE_MESH_SAR_ENHANCEMENT", - "name": "BLE_MESH_SAR_ENHANCEMENT", - "range": null, - "title": "Segmentation and reassembly enhancement", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Maximum number of simultaneous outgoing multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only send one segmented\nmessage at a time. And if another segmented message is going to be sent, it\nshould wait for the completion of the previous one.\nIf users are going to send multiple segmented messages at the same time, this\nvalue should be configured properly.", - "id": "BLE_MESH_TX_SEG_MSG_COUNT", - "name": "BLE_MESH_TX_SEG_MSG_COUNT", - "range": null, - "title": "Maximum number of simultaneous outgoing segmented messages", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Maximum number of simultaneous incoming multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only receive one segmented\nmessage at a time. And if another segmented message is going to be received,\nit should wait for the completion of the previous one.\nIf users are going to receive multiple segmented messages at the same time, this\nvalue should be configured properly.", - "id": "BLE_MESH_RX_SEG_MSG_COUNT", - "name": "BLE_MESH_RX_SEG_MSG_COUNT", - "range": null, - "title": "Maximum number of simultaneous incoming segmented messages", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Maximum incoming Upper Transport Access PDU length. Leave this to the default\nvalue, unless you really need to optimize memory usage.", - "id": "BLE_MESH_RX_SDU_MAX", - "name": "BLE_MESH_RX_SDU_MAX", - "range": null, - "title": "Maximum incoming Upper Transport Access PDU length", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Maximum number of segments supported for outgoing messages.\nThis value should typically be fine-tuned based on what\nmodels the local node supports, i.e. what's the largest\nmessage payload that the node needs to be able to send.\nThis value affects memory and call stack consumption, which\nis why the default is lower than the maximum that the\nspecification would allow (32 segments).\n\nThe maximum outgoing SDU size is 12 times this number (out of\nwhich 4 or 8 bytes is used for the Transport Layer MIC). For\nexample, 5 segments means the maximum SDU size is 60 bytes,\nwhich leaves 56 bytes for application layer data using a\n4-byte MIC and 52 bytes using an 8-byte MIC.\n\nBe sure to specify a sufficient number of advertising buffers\nwhen setting this option to a higher value. There must be at\nleast three more advertising buffers (BLE_MESH_ADV_BUF_COUNT)\nas there are outgoing segments.", - "id": "BLE_MESH_TX_SEG_MAX", - "name": "BLE_MESH_TX_SEG_MAX", - "range": null, - "title": "Maximum number of segments in outgoing messages", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_RELAY_ADV_BUF && BLE_MESH_RELAY && BLE_MESH", - "help": "Number of advertising buffers for relay packets available.", - "id": "BLE_MESH_RELAY_ADV_BUF_COUNT", - "name": "BLE_MESH_RELAY_ADV_BUF_COUNT", - "range": null, - "title": "Number of advertising buffers for relay packets", - "type": "int" - } - ], - "depends_on": "BLE_MESH_RELAY && BLE_MESH", - "help": "When selected, self-send packets will be put in a high-priority\nqueue and relay packets will be put in a low-priority queue.", - "id": "BLE_MESH_RELAY_ADV_BUF", - "name": "BLE_MESH_RELAY_ADV_BUF", - "range": null, - "title": "Use separate advertising buffers for relay packets", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_NODE && BLE_MESH", - "help": "Support for acting as a Mesh Relay Node. Enabling this option will allow\na node to support the Relay feature, and the Relay feature can still\nbe enabled or disabled by proper configuration messages. Disabling this\noption will let a node not support the Relay feature.", - "id": "BLE_MESH_RELAY", - "name": "BLE_MESH_RELAY", - "range": null, - "title": "Relay support", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Perform the Friendship establishment using low power with the help of a\nreduced scan duty cycle. The downside of this is that the node may miss\nout on messages intended for it until it has successfully set up Friendship\nwith a Friend node.\nWhen this option is enabled, the node will stop scanning for a period of\ntime after a Friend Request or Friend Poll is sent, so as to reduce more\npower consumption.", - "id": "BLE_MESH_LPN_ESTABLISHMENT", - "name": "BLE_MESH_LPN_ESTABLISHMENT", - "range": null, - "title": "Perform Friendship establishment using low power", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_LPN_AUTO && BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Time in seconds from the last received message, that the node waits out\nbefore starting to look for Friend nodes.", - "id": "BLE_MESH_LPN_AUTO_TIMEOUT", - "name": "BLE_MESH_LPN_AUTO_TIMEOUT", - "range": null, - "title": "Time from last received message before going to LPN mode", - "type": "int" - } - ], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Once provisioned, automatically enable LPN functionality and start looking\nfor Friend nodes. If this option is disabled LPN mode needs to be manually\nenabled by calling bt_mesh_lpn_set(true).\nWhen an unprovisioned device is provisioned successfully and becomes a node,\nenabling this option will trigger the node starts to send Friend Request at\na certain period until it finds a proper Friend node.", - "id": "BLE_MESH_LPN_AUTO", - "name": "BLE_MESH_LPN_AUTO", - "range": null, - "title": "Automatically start looking for Friend nodes once provisioned", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Time in seconds between Friend Requests, if a previous Friend Request did\nnot yield any acceptable Friend Offers.", - "id": "BLE_MESH_LPN_RETRY_TIMEOUT", - "name": "BLE_MESH_LPN_RETRY_TIMEOUT", - "range": null, - "title": "Retry timeout for Friend requests", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "The contribution of the RSSI, measured by the Friend node, used in Friend\nOffer Delay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nRSSIFactor, one of the parameters carried by Friend Request sent by Low Power\nnode, which is used to calculate the Friend Offer Delay.", - "id": "BLE_MESH_LPN_RSSI_FACTOR", - "name": "BLE_MESH_LPN_RSSI_FACTOR", - "range": null, - "title": "RSSIFactor, used in Friend Offer Delay calculation", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "The contribution of the supported Receive Window used in Friend Offer\nDelay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nReceiveWindowFactor, one of the parameters carried by Friend Request sent by\nLow Power node, which is used to calculate the Friend Offer Delay.", - "id": "BLE_MESH_LPN_RECV_WIN_FACTOR", - "name": "BLE_MESH_LPN_RECV_WIN_FACTOR", - "range": null, - "title": "ReceiveWindowFactor, used in Friend Offer Delay calculation", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "The MinQueueSizeLog field is defined as log_2(N), where N is the minimum\nnumber of maximum size Lower Transport PDUs that the Friend node can store\nin its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2,\nand value 7 gives N = 128.", - "id": "BLE_MESH_LPN_MIN_QUEUE_SIZE", - "name": "BLE_MESH_LPN_MIN_QUEUE_SIZE", - "range": null, - "title": "Minimum size of the acceptable friend queue (MinQueueSizeLog)", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "The ReceiveDelay is the time between the Low Power node sending a\nrequest and listening for a response. This delay allows the Friend\nnode time to prepare the response. The value is in units of milliseconds.", - "id": "BLE_MESH_LPN_RECV_DELAY", - "name": "BLE_MESH_LPN_RECV_DELAY", - "range": null, - "title": "Receive delay requested by the local node", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "PollTimeout timer is used to measure time between two consecutive\nrequests sent by a Low Power node. If no requests are received\nthe Friend node before the PollTimeout timer expires, then the\nfriendship is considered terminated. The value is in units of 100\nmilliseconds, so e.g. a value of 300 means 30 seconds.\nThe smaller the value, the faster the Low Power node tries to get\nmessages from corresponding Friend node and vice versa.", - "id": "BLE_MESH_LPN_POLL_TIMEOUT", - "name": "BLE_MESH_LPN_POLL_TIMEOUT", - "range": null, - "title": "The value of the PollTimeout timer", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "The initial value of the PollTimeout timer when Friendship is to be\nestablished for the first time. After this, the timeout gradually\ngrows toward the actual PollTimeout, doubling in value for each iteration.\nThe value is in units of 100 milliseconds, so e.g. a value of 300 means\n30 seconds.", - "id": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", - "name": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", - "range": null, - "title": "The starting value of the PollTimeout timer", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Latency (in milliseconds) is the time it takes to enable scanning. In\npractice, it means how much time in advance of the Receive Window, the\nrequest to enable scanning is made.", - "id": "BLE_MESH_LPN_SCAN_LATENCY", - "name": "BLE_MESH_LPN_SCAN_LATENCY", - "range": null, - "title": "Latency for enabling scanning", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Maximum number of groups to which the LPN can subscribe.", - "id": "BLE_MESH_LPN_GROUPS", - "name": "BLE_MESH_LPN_GROUPS", - "range": null, - "title": "Number of groups the LPN can subscribe to", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", - "help": "Automatically subscribe all nodes address when friendship\nestablished.", - "id": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", - "name": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", - "range": null, - "title": "Automatically subscribe all nodes address", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_NODE && BLE_MESH", - "help": "Enable this option to operate as a Low Power Node. If low power consumption\nis required by a node, this option should be enabled. And once the node\nenters the mesh network, it will try to find a Friend node and establish a\nfriendship.", - "id": "BLE_MESH_LOW_POWER", - "name": "BLE_MESH_LOW_POWER", - "range": null, - "title": "Support for Low Power features", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_FRIEND && BLE_MESH", - "help": "Receive Window in milliseconds supported by the Friend node.", - "id": "BLE_MESH_FRIEND_RECV_WIN", - "name": "BLE_MESH_FRIEND_RECV_WIN", - "range": null, - "title": "Friend Receive Window", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_FRIEND && BLE_MESH", - "help": "Minimum number of buffers available to be stored for each local Friend Queue.\nThis option decides the size of each buffer which can be used by a Friend node\nto store messages for each Low Power node.", - "id": "BLE_MESH_FRIEND_QUEUE_SIZE", - "name": "BLE_MESH_FRIEND_QUEUE_SIZE", - "range": null, - "title": "Minimum number of buffers supported per Friend Queue", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_FRIEND && BLE_MESH", - "help": "Size of the Subscription List that can be supported by a Friend node for a\nLow Power node. And Low Power node can send Friend Subscription List Add or\nFriend Subscription List Remove messages to the Friend node to add or remove\nsubscription addresses.", - "id": "BLE_MESH_FRIEND_SUB_LIST_SIZE", - "name": "BLE_MESH_FRIEND_SUB_LIST_SIZE", - "range": null, - "title": "Friend Subscription List Size", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_FRIEND && BLE_MESH", - "help": "Number of Low Power Nodes with which a Friend can have Friendship simultaneously.\nA Friend node can have friendship with multiple Low Power nodes at the same time,\nwhile a Low Power node can only establish friendship with only one Friend node at\nthe same time.", - "id": "BLE_MESH_FRIEND_LPN_COUNT", - "name": "BLE_MESH_FRIEND_LPN_COUNT", - "range": null, - "title": "Number of supported LPN nodes", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_FRIEND && BLE_MESH", - "help": "Number of incomplete segment lists tracked for each Friends' LPN.\nIn other words, this determines from how many elements can segmented\nmessages destined for the Friend queue be received simultaneously.", - "id": "BLE_MESH_FRIEND_SEG_RX", - "name": "BLE_MESH_FRIEND_SEG_RX", - "range": null, - "title": "Number of incomplete segment lists per LPN", - "type": "int" - } - ], - "depends_on": "BLE_MESH", - "help": "Enable this option to be able to act as a Friend Node.", - "id": "BLE_MESH_FRIEND", - "name": "BLE_MESH_FRIEND", - "range": null, - "title": "Support for Friend feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH && BLE_MESH", - "help": "Select this to save the BLE Mesh related rodata code size. Enabling this option\nwill disable the output of BLE Mesh debug log.", - "id": "BLE_MESH_NO_LOG", - "name": "BLE_MESH_NO_LOG", - "range": null, - "title": "Disable BLE Mesh debug logs (minimize bin size)", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_NONE", - "name": "BLE_MESH_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_ERROR", - "name": "BLE_MESH_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_WARNING", - "name": "BLE_MESH_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_INFO", - "name": "BLE_MESH_TRACE_LEVEL_INFO", - "range": null, - "title": "INFO", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_DEBUG", - "name": "BLE_MESH_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_TRACE_LEVEL_VERBOSE", - "name": "BLE_MESH_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "help": "Define BLE Mesh trace level for BLE Mesh stack.", - "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack", - "name": "BLE_MESH_STACK_TRACE_LEVEL", - "title": "BLE_MESH_STACK", - "type": "choice" - }, - { - "children": [], - "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "help": null, - "id": "BLE_MESH_STACK_TRACE_LEVEL", - "name": "BLE_MESH_STACK_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level", - "title": "BLE Mesh STACK DEBUG LOG LEVEL", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", - "range": null, - "title": "NONE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", - "range": null, - "title": "ERROR", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", - "range": null, - "title": "WARNING", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", - "range": null, - "title": "INFO", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", - "range": null, - "title": "DEBUG", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", - "range": null, - "title": "VERBOSE", - "type": "bool" - } - ], - "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "help": "Define BLE Mesh trace level for BLE Mesh net buffer.", - "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", - "title": "BLE_MESH_NET_BUF", - "type": "choice" - }, - { - "children": [], - "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "help": null, - "id": "BLE_MESH_NET_BUF_TRACE_LEVEL", - "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", - "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level", - "title": "BLE Mesh NET BUF DEBUG LOG LEVEL", - "type": "menu" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Timeout value used by the node to get response of the acknowledged\nmessage which is sent by the client model.\nThis value indicates the maximum time that a client model waits for\nthe response of the sent acknowledged messages. If a client model\nuses 0 as the timeout value when sending acknowledged messages, then\nthe default value will be used which is four seconds.", - "id": "BLE_MESH_CLIENT_MSG_TIMEOUT", - "name": "BLE_MESH_CLIENT_MSG_TIMEOUT", - "range": null, - "title": "Timeout(ms) for client message response", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Configuration Client model.", - "id": "BLE_MESH_CFG_CLI", - "name": "BLE_MESH_CFG_CLI", - "range": null, - "title": "Configuration Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Health Client model.", - "id": "BLE_MESH_HEALTH_CLI", - "name": "BLE_MESH_HEALTH_CLI", - "range": null, - "title": "Health Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Health Server model.", - "id": "BLE_MESH_HEALTH_SRV", - "name": "BLE_MESH_HEALTH_SRV", - "range": null, - "title": "Health Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Bridge Configuration Client model.", - "id": "BLE_MESH_BRC_CLI", - "name": "BLE_MESH_BRC_CLI", - "range": null, - "title": "Bridge Configuration Client model", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Maximum number of Bridging Table entries that the Bridge Configuration Server can support.", - "id": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", - "name": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", - "range": null, - "title": "Maximum number of Bridging Table entries", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "This option specifies the maximum capacity of the bridge replay\nprotection list. The bridge replay protection list is used to\nprevent a bridged subnet from replay attack, which will store the\nsource address and sequence number of the received bridge messages.", - "id": "BLE_MESH_BRIDGE_CRPL", - "name": "BLE_MESH_BRIDGE_CRPL", - "range": null, - "title": "Maximum capacity of bridge replay protection list", - "type": "int" - } - ], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Bridge Configuration Server model.", - "id": "BLE_MESH_BRC_SRV", - "name": "BLE_MESH_BRC_SRV", - "range": null, - "title": "Bridge Configuration Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Mesh Private Beacon Client model.", - "id": "BLE_MESH_PRB_CLI", - "name": "BLE_MESH_PRB_CLI", - "range": null, - "title": "Mesh Private Beacon Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Mesh Private Beacon Server model.", - "id": "BLE_MESH_PRB_SRV", - "name": "BLE_MESH_PRB_SRV", - "range": null, - "title": "Mesh Private Beacon Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for On-Demand Private Proxy Client model.", - "id": "BLE_MESH_ODP_CLI", - "name": "BLE_MESH_ODP_CLI", - "range": null, - "title": "On-Demand Private Proxy Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for On-Demand Private Proxy Server model.", - "id": "BLE_MESH_ODP_SRV", - "name": "BLE_MESH_ODP_SRV", - "range": null, - "title": "On-Demand Private Proxy Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Solicitation PDU RPL Configuration Client model.", - "id": "BLE_MESH_SRPL_CLI", - "name": "BLE_MESH_SRPL_CLI", - "range": null, - "title": "Solicitation PDU RPL Configuration Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Solicitation PDU RPL Configuration Server model.\nNote:\nThis option depends on the functionality of receiving Solicitation\nPDU. If the device doesn't support receiving Solicitation PDU, then\nthere is no need to enable this server model.", - "id": "BLE_MESH_SRPL_SRV", - "name": "BLE_MESH_SRPL_SRV", - "range": null, - "title": "Solicitation PDU RPL Configuration Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Opcodes Aggregator Client model.", - "id": "BLE_MESH_AGG_CLI", - "name": "BLE_MESH_AGG_CLI", - "range": null, - "title": "Opcodes Aggregator Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Opcodes Aggregator Server model.", - "id": "BLE_MESH_AGG_SRV", - "name": "BLE_MESH_AGG_SRV", - "range": null, - "title": "Opcodes Aggregator Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for SAR Configuration Client model.", - "id": "BLE_MESH_SAR_CLI", - "name": "BLE_MESH_SAR_CLI", - "range": null, - "title": "SAR Configuration Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for SAR Configuration Server model.", - "id": "BLE_MESH_SAR_SRV", - "name": "BLE_MESH_SAR_SRV", - "range": null, - "title": "SAR Configuration Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Composition Data Page 1 contains information about the relationships\namong models.\nEach model either can be a root model or can extend other models.", - "id": "BLE_MESH_COMP_DATA_1", - "name": "BLE_MESH_COMP_DATA_1", - "range": null, - "title": "Support Composition Data Page 1", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Composition Data Page 128 is used to indicate the structure of\nelements, features, and models of a node after the successful\nexecution of the Node Address Refresh procedure or the Node\nComposition Refresh procedure, or after the execution of the\nNode Removal procedure followed by the provisioning process.\nComposition Data Page 128 shall be present if the node supports\nthe Remote Provisioning Server model; otherwise it is optional.", - "id": "BLE_MESH_COMP_DATA_128", - "name": "BLE_MESH_COMP_DATA_128", - "range": null, - "title": "Support Composition Data Page 128", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_MODELS_METADATA_0 && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 128 contains metadata for the node\u2019s models\nafter the successful execution of the Node Address Refresh\nprocedure or the Node Composition Refresh procedure, or after\nthe execution of the Node Removal procedure followed by the\nprovisioning process.\nModels Metadata Page 128 shall be present if the node supports\nthe Remote Provisioning Server model and the node supports the\nLarge Composition Data Server model.", - "id": "BLE_MESH_MODELS_METADATA_128", - "name": "BLE_MESH_MODELS_METADATA_128", - "range": null, - "title": "Support Models Metadata Page 128", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 0 shall be present if the node supports\nthe Large Composition Data Server model.", - "id": "BLE_MESH_MODELS_METADATA_0", - "name": "BLE_MESH_MODELS_METADATA_0", - "range": null, - "title": "Support Models Metadata Page 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Large Composition Data Client model.", - "id": "BLE_MESH_LCD_CLI", - "name": "BLE_MESH_LCD_CLI", - "range": null, - "title": "Large Composition Data Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Large Composition Data Server model.", - "id": "BLE_MESH_LCD_SRV", - "name": "BLE_MESH_LCD_SRV", - "range": null, - "title": "Large Composition Data Server model", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_RPR_CLI && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-REMOTE. For example, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-REMOTE at the same time.", - "id": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", - "name": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", - "range": null, - "title": "Maximum number of PB-Remote running at the same time by Provisioner", - "type": "int" - } - ], - "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Remote Provisioning Client model", - "id": "BLE_MESH_RPR_CLI", - "name": "BLE_MESH_RPR_CLI", - "range": null, - "title": "Remote Provisioning Client model", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "This option specifies how many device information can a Remote\nProvisioning Server store each time while scanning.", - "id": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", - "name": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", - "range": null, - "title": "Maximum number of device information can be scanned", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable this option to support Active Scan for remote provisioning.", - "id": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", - "name": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", - "range": null, - "title": "Support Active Scan for remote provisioning", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "This option specifies how many extended scan procedures can be\nstarted by the Remote Provisioning Server.", - "id": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", - "name": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", - "range": null, - "title": "Maximum number of extended scan procedures", - "type": "int" - } - ], - "depends_on": "BLE_MESH_NODE && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Remote Provisioning Server model", - "id": "BLE_MESH_RPR_SRV", - "name": "BLE_MESH_RPR_SRV", - "range": null, - "title": "Remote Provisioning Server model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Directed Forwarding Configuration Client model.", - "id": "BLE_MESH_DF_CLI", - "name": "BLE_MESH_DF_CLI", - "range": null, - "title": "Directed Forwarding Configuration Client model", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Maximum number of Discovery Table entries supported by the node in a given subnet.", - "id": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", - "name": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", - "range": null, - "title": "Maximum number of discovery table entries in a given subnet", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Maximum number of Forward Table entries supported by the node in a given subnet.", - "id": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", - "name": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", - "range": null, - "title": "Maximum number of forward table entries in a given subnet", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Maximum size of dependent nodes list supported by each forward table entry.", - "id": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", - "name": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", - "range": null, - "title": "Maximum number of dependent nodes per path", - "type": "int" - }, - { - "children": [], - "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "The option only removes the Path Use timer; all other behavior of the\ndevice is not changed.\nIf Path Monitoring test mode is going to be used, this option should\nbe enabled.", - "id": "BLE_MESH_PATH_MONITOR_TEST", - "name": "BLE_MESH_PATH_MONITOR_TEST", - "range": null, - "title": "Enable Path Monitoring test mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Support Directed Proxy functionality.", - "id": "BLE_MESH_SUPPORT_DIRECTED_PROXY", - "name": "BLE_MESH_SUPPORT_DIRECTED_PROXY", - "range": null, - "title": "Enable Directed Proxy functionality", - "type": "bool" - } - ], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for Directed Forwarding Configuration Server model.", - "id": "BLE_MESH_DF_SRV", - "name": "BLE_MESH_DF_SRV", - "range": null, - "title": "Directed Forwarding Configuration Server model", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models", - "title": "Support for BLE Mesh Foundation models", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic OnOff Client model.", - "id": "BLE_MESH_GENERIC_ONOFF_CLI", - "name": "BLE_MESH_GENERIC_ONOFF_CLI", - "range": null, - "title": "Generic OnOff Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Level Client model.", - "id": "BLE_MESH_GENERIC_LEVEL_CLI", - "name": "BLE_MESH_GENERIC_LEVEL_CLI", - "range": null, - "title": "Generic Level Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Default Transition Time Client model.", - "id": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", - "name": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", - "range": null, - "title": "Generic Default Transition Time Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Power OnOff Client model.", - "id": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", - "name": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", - "range": null, - "title": "Generic Power OnOff Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Power Level Client model.", - "id": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", - "name": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", - "range": null, - "title": "Generic Power Level Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Battery Client model.", - "id": "BLE_MESH_GENERIC_BATTERY_CLI", - "name": "BLE_MESH_GENERIC_BATTERY_CLI", - "range": null, - "title": "Generic Battery Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Location Client model.", - "id": "BLE_MESH_GENERIC_LOCATION_CLI", - "name": "BLE_MESH_GENERIC_LOCATION_CLI", - "range": null, - "title": "Generic Location Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic Property Client model.", - "id": "BLE_MESH_GENERIC_PROPERTY_CLI", - "name": "BLE_MESH_GENERIC_PROPERTY_CLI", - "range": null, - "title": "Generic Property Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Sensor Client model.", - "id": "BLE_MESH_SENSOR_CLI", - "name": "BLE_MESH_SENSOR_CLI", - "range": null, - "title": "Sensor Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Time Client model.", - "id": "BLE_MESH_TIME_CLI", - "name": "BLE_MESH_TIME_CLI", - "range": null, - "title": "Time Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Scene Client model.", - "id": "BLE_MESH_SCENE_CLI", - "name": "BLE_MESH_SCENE_CLI", - "range": null, - "title": "Scene Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Scheduler Client model.", - "id": "BLE_MESH_SCHEDULER_CLI", - "name": "BLE_MESH_SCHEDULER_CLI", - "range": null, - "title": "Scheduler Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Light Lightness Client model.", - "id": "BLE_MESH_LIGHT_LIGHTNESS_CLI", - "name": "BLE_MESH_LIGHT_LIGHTNESS_CLI", - "range": null, - "title": "Light Lightness Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Light CTL Client model.", - "id": "BLE_MESH_LIGHT_CTL_CLI", - "name": "BLE_MESH_LIGHT_CTL_CLI", - "range": null, - "title": "Light CTL Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Light HSL Client model.", - "id": "BLE_MESH_LIGHT_HSL_CLI", - "name": "BLE_MESH_LIGHT_HSL_CLI", - "range": null, - "title": "Light HSL Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Light XYL Client model.", - "id": "BLE_MESH_LIGHT_XYL_CLI", - "name": "BLE_MESH_LIGHT_XYL_CLI", - "range": null, - "title": "Light XYL Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Light LC Client model.", - "id": "BLE_MESH_LIGHT_LC_CLI", - "name": "BLE_MESH_LIGHT_LC_CLI", - "range": null, - "title": "Light LC Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Generic server models.", - "id": "BLE_MESH_GENERIC_SERVER", - "name": "BLE_MESH_GENERIC_SERVER", - "range": null, - "title": "Generic server models", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Sensor server models.", - "id": "BLE_MESH_SENSOR_SERVER", - "name": "BLE_MESH_SENSOR_SERVER", - "range": null, - "title": "Sensor server models", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Time and Scenes server models.", - "id": "BLE_MESH_TIME_SCENE_SERVER", - "name": "BLE_MESH_TIME_SCENE_SERVER", - "range": null, - "title": "Time and Scenes server models", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Enable support for Lighting server models.", - "id": "BLE_MESH_LIGHTING_SERVER", - "name": "BLE_MESH_LIGHTING_SERVER", - "range": null, - "title": "Lighting server models", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_MBT_CLI && BLE_MESH", - "help": "Maximum number of BLOB Transfer Server models that can participating\nin the BLOB transfer with a BLOB Transfer Client model.", - "id": "BLE_MESH_MAX_BLOB_RECEIVERS", - "name": "BLE_MESH_MAX_BLOB_RECEIVERS", - "range": null, - "title": "Maximum number of simultaneous blob receivers", - "type": "int" - } - ], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for BLOB Transfer Client model.", - "id": "BLE_MESH_MBT_CLI", - "name": "BLE_MESH_MBT_CLI", - "range": null, - "title": "BLOB Transfer Client model", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", - "help": "Enable support for BLOB Transfer Server model.", - "id": "BLE_MESH_MBT_SRV", - "name": "BLE_MESH_MBT_SRV", - "range": null, - "title": "BLOB Transfer Server model", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models", - "title": "Support for BLE Mesh Client/Server models", - "type": "menu" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option removes the 96 hour limit of the IV Update Procedure and\nlets the state to be changed at any time.\nIf IV Update test mode is going to be used, this option should be enabled.", - "id": "BLE_MESH_IV_UPDATE_TEST", - "name": "BLE_MESH_IV_UPDATE_TEST", - "range": null, - "title": "Test the IV Update Procedure", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option is used to decide whether discarding the old SeqAuth when\nreceiving a segmented message.", - "id": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", - "name": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH", - "help": "This option adds extra self-tests which are run every time BLE Mesh\nnetworking is initialized.", - "id": "BLE_MESH_SELF_TEST", - "name": "BLE_MESH_SELF_TEST", - "range": null, - "title": "Perform BLE Mesh self-tests", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_BQB_TEST && BLE_MESH", - "help": "This option is used to enable the log of auto-pts test.", - "id": "BLE_MESH_BQB_TEST_LOG", - "name": "BLE_MESH_BQB_TEST_LOG", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "This option is used to enable some internal functions for auto-pts test.", - "id": "BLE_MESH_BQB_TEST", - "name": "BLE_MESH_BQB_TEST", - "range": null, - "title": "Enable BLE Mesh specific internal test", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", - "help": "With this option enabled, an unprovisioned device can automatically\nenters mesh network using a specific test function without the pro-\nvisioning procedure. And on the Provisioner side, a test function\nneeds to be invoked to add the node information into the mesh stack.", - "id": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", - "name": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", - "range": null, - "title": "Unprovisioned device enters mesh network automatically", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", - "help": "With this option enabled, users can use white list to filter mesh\nadvertising packets while scanning.", - "id": "BLE_MESH_TEST_USE_WHITE_LIST", - "name": "BLE_MESH_TEST_USE_WHITE_LIST", - "range": null, - "title": "Use white list to filter mesh advertising packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Activate shell module that provides BLE Mesh commands to the console.", - "id": "BLE_MESH_SHELL", - "name": "BLE_MESH_SHELL", - "range": null, - "title": "Enable BLE Mesh shell", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Network layer debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_NET", - "name": "BLE_MESH_DEBUG_NET", - "range": null, - "title": "Network layer debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Transport layer debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_TRANS", - "name": "BLE_MESH_DEBUG_TRANS", - "range": null, - "title": "Transport layer debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Beacon-related debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_BEACON", - "name": "BLE_MESH_DEBUG_BEACON", - "range": null, - "title": "Beacon debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable cryptographic debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_CRYPTO", - "name": "BLE_MESH_DEBUG_CRYPTO", - "range": null, - "title": "Crypto debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Provisioning debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_PROV", - "name": "BLE_MESH_DEBUG_PROV", - "range": null, - "title": "Provisioning debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Access layer debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_ACCESS", - "name": "BLE_MESH_DEBUG_ACCESS", - "range": null, - "title": "Access layer debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Foundation Models debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_MODEL", - "name": "BLE_MESH_DEBUG_MODEL", - "range": null, - "title": "Foundation model debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable advertising debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_ADV", - "name": "BLE_MESH_DEBUG_ADV", - "range": null, - "title": "Advertising debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Low Power debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_LOW_POWER", - "name": "BLE_MESH_DEBUG_LOW_POWER", - "range": null, - "title": "Low Power debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Friend debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_FRIEND", - "name": "BLE_MESH_DEBUG_FRIEND", - "range": null, - "title": "Friend debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "BLE_MESH_PROXY && BLE_MESH_DEBUG && BLE_MESH", - "help": "Enable Proxy protocol debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG_PROXY", - "name": "BLE_MESH_DEBUG_PROXY", - "range": null, - "title": "Proxy debug", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "help": "Enable debug logs for the BLE Mesh functionality.", - "id": "BLE_MESH_DEBUG", - "name": "BLE_MESH_DEBUG", - "range": null, - "title": "Enable BLE Mesh debug logs", - "type": "bool" - } - ], - "depends_on": "BLE_MESH", - "id": "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option", - "title": "BLE Mesh specific test option", - "type": "menu" - }, - { - "children": [], - "depends_on": "BLE_MESH", - "help": "Make BLE Mesh Experimental features visible.\nExperimental features list:\n- CONFIG_BLE_MESH_NOT_RELAY_REPLAY_MSG", - "id": "BLE_MESH_EXPERIMENTAL", - "name": "BLE_MESH_EXPERIMENTAL", - "range": null, - "title": "Make BLE Mesh experimental features visible", - "type": "bool" - } - ], - "depends_on": "BT_ENABLED", - "help": "This option enables ESP BLE Mesh support. The specific features that are\navailable may depend on other features that have been enabled in the\nstack, such as Bluetooth Support, Bluedroid Support & GATT support.", - "id": "BLE_MESH", - "is_menuconfig": true, - "name": "BLE_MESH", - "range": null, - "title": "ESP BLE Mesh Support", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Instead of listing the commands in the order of registration, the help command lists\nthe available commands in sorted order, if this option is enabled.", - "id": "CONSOLE_SORTED_HELP", - "name": "CONSOLE_SORTED_HELP", - "range": null, - "title": "Enable sorted help", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-console-library", - "title": "Console Library", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "Place the TWAI ISR in to IRAM. This will allow the ISR to avoid\ncache misses, and also be able to run whilst the cache is disabled\n(such as when writing to SPI Flash).\nNote that if this option is enabled:\n- Users should also set the ESP_INTR_FLAG_IRAM in the driver\nconfiguration structure when installing the driver (see docs for\nspecifics).\n- Alert logging (i.e., setting of the TWAI_ALERT_AND_LOG flag)\nwill have no effect.", - "id": "TWAI_ISR_IN_IRAM", - "name": "TWAI_ISR_IN_IRAM", - "range": null, - "title": "Place TWAI ISR function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the\ndriver's ISR. However on the ESP32, there is an edge case where the REC will increase before the\ndriver's ISR can respond in time (e.g., due to the rapid occurrence of bus errors), thus causing the\nREC to be non-zero after bus-off. A non-zero REC can prevent bus-off recovery as the bus-off recovery\ncondition is that both TEC and REC become 0. Enabling this option will add a workaround in the driver\nto forcibly reset REC to zero on reaching bus-off.", - "id": "TWAI_ERRATA_FIX_BUS_OFF_REC", - "name": "TWAI_ERRATA_FIX_BUS_OFF_REC", - "range": null, - "title": "Add SW workaround for REC change during bus-off", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clock\ncycle, the transmit interrupt could be lost. Enabling this option will add a workaround that checks the\ntransmit buffer status bit to recover any lost transmit interrupt.", - "id": "TWAI_ERRATA_FIX_TX_INTR_LOST", - "name": "TWAI_ERRATA_FIX_TX_INTR_LOST", - "range": null, - "title": "Add SW workaround for TX interrupt lost errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when receiving a data or remote frame, if a bus error occurs in the data or CRC field,\nthe data of the next received frame could be invalid. Enabling this option will add a workaround that\nwill reset the peripheral on detection of this errata condition. Note that if a frame is transmitted on\nthe bus whilst the reset is ongoing, the message will not be receive by the peripheral sent on the bus\nduring the reset, the message will be lost.", - "id": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", - "name": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", - "range": null, - "title": "Add SW workaround for invalid RX frame errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when the RX FIFO overruns and the RX message counter maxes out at 64 messages, the entire\nRX FIFO is no longer recoverable. Enabling this option will add a workaround that resets the peripheral\non detection of this errata condition. Note that if a frame is being sent on the bus during the reset\nbus during the reset, the message will be lost.", - "id": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", - "name": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", - "range": null, - "title": "Add SW workaround for RX FIFO corruption errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3) && SOC_TWAI_SUPPORTED", - "help": "When in the listen only mode, the TWAI controller must not influence the TWAI bus (i.e., must not send\nany dominant bits). However, while in listen only mode on the ESP32/ESP32-S2/ESP32-S3/ESP32-C3, the\nTWAI controller will still transmit dominant bits when it detects an error (i.e., as part of an active\nerror frame). Enabling this option will add a workaround that forces the TWAI controller into an error\npassive state on initialization, thus preventing any dominant bits from being sent.", - "id": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", - "name": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", - "range": null, - "title": "Add SW workaround for listen only transmits dominant bit errata", - "type": "bool" - } - ], - "depends_on": "SOC_TWAI_SUPPORTED", - "id": "component-config-driver-configurations-twai-configuration", - "title": "TWAI Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", - "id": "ADC_DISABLE_DAC", - "name": "ADC_DISABLE_DAC", - "range": null, - "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "ADC_SUPPRESS_DEPRECATE_WARN", - "name": "ADC_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "ADC_SKIP_LEGACY_CONFLICT_CHECK", - "name": "ADC_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", - "id": "ADC_CAL_EFUSE_TP_ENABLE", - "name": "ADC_CAL_EFUSE_TP_ENABLE", - "range": null, - "title": "Use Two Point Values", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", - "id": "ADC_CAL_EFUSE_VREF_ENABLE", - "name": "ADC_CAL_EFUSE_VREF_ENABLE", - "range": null, - "title": "Use eFuse Vref", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", - "id": "ADC_CAL_LUT_ENABLE", - "name": "ADC_CAL_LUT_ENABLE", - "range": null, - "title": "Use Lookup Tables", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Whether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", - "id": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", - "name": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration", - "title": "Legacy ADC Calibration Configuration", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations-legacy-adc-driver-configuration", - "title": "Legacy ADC Driver Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "DAC_SUPPRESS_DEPRECATE_WARN", - "name": "DAC_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "DAC_SKIP_LEGACY_CONFLICT_CHECK", - "name": "DAC_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_DAC_SUPPORTED", - "id": "component-config-driver-configurations-legacy-dac-driver-configurations", - "title": "Legacy DAC Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", - "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", - "name": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_MCPWM_SUPPORTED", - "id": "component-config-driver-configurations-legacy-mcpwm-driver-configurations", - "title": "Legacy MCPWM Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", - "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", - "name": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "id": "component-config-driver-configurations-legacy-timer-group-driver-configurations", - "title": "Legacy Timer Group Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "RMT_SUPPRESS_DEPRECATE_WARN", - "name": "RMT_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "RMT_SKIP_LEGACY_CONFLICT_CHECK", - "name": "RMT_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_RMT_SUPPORTED", - "id": "component-config-driver-configurations-legacy-rmt-driver-configurations", - "title": "Legacy RMT Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "I2S_SUPPRESS_DEPRECATE_WARN", - "name": "I2S_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "I2S_SKIP_LEGACY_CONFLICT_CHECK", - "name": "I2S_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_I2S_SUPPORTED", - "id": "component-config-driver-configurations-legacy-i2s-driver-configurations", - "title": "Legacy I2S Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "PCNT_SUPPRESS_DEPRECATE_WARN", - "name": "PCNT_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", - "name": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_PCNT_SUPPORTED", - "id": "component-config-driver-configurations-legacy-pcnt-driver-configurations", - "title": "Legacy PCNT Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "SDM_SUPPRESS_DEPRECATE_WARN", - "name": "SDM_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "SDM_SKIP_LEGACY_CONFLICT_CHECK", - "name": "SDM_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_SDM_SUPPORTED", - "id": "component-config-driver-configurations-legacy-sdm-driver-configurations", - "title": "Legacy SDM Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", - "id": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", - "name": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", - "name": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "id": "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations", - "title": "Legacy Temperature Sensor Driver Configurations", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations", - "title": "Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_CUSTOM_TABLE", - "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", - "id": "EFUSE_CUSTOM_TABLE_FILENAME", - "name": "EFUSE_CUSTOM_TABLE_FILENAME", - "range": null, - "title": "Custom eFuse CSV file", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to generate a structure for eFuse from the CSV file.", - "id": "EFUSE_CUSTOM_TABLE", - "name": "EFUSE_CUSTOM_TABLE", - "range": null, - "title": "Use custom eFuse table", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", - "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", - "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "range": null, - "title": "Keep eFuses in flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "EFUSE_VIRTUAL", - "help": "If enabled, log efuse burns. This shows changes that would be made.", - "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "range": null, - "title": "Log all virtual writes", - "type": "bool" - } - ], - "depends_on": null, - "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", - "id": "EFUSE_VIRTUAL", - "name": "EFUSE_VIRTUAL", - "range": null, - "title": "Simulate eFuse operations in RAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "range": null, - "title": "None Only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "range": null, - "title": "3/4 and None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "range": null, - "title": "Repeat, 3/4 and None (common table does not support it)", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32", - "help": "Selector eFuse code scheme.", - "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", - "name": "EFUSE_CODE_SCHEME_SELECTOR", - "title": "Coding Scheme Compatibility", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "EFUSE_MAX_BLK_LEN", - "name": "EFUSE_MAX_BLK_LEN", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-efuse-bit-manager", - "title": "eFuse Bit Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_TLS_USING_MBEDTLS", - "name": "ESP_TLS_USING_MBEDTLS", - "range": null, - "title": "mbedTLS", - "type": "bool" - }, - { - "children": [], - "depends_on": "TLS_STACK_WOLFSSL && ", - "help": null, - "id": "ESP_TLS_USING_WOLFSSL", - "name": "ESP_TLS_USING_WOLFSSL", - "range": null, - "title": "wolfSSL (License info in wolfSSL directory README)", - "type": "bool" - } - ], - "depends_on": null, - "help": "The ESP-TLS APIs support multiple backend TLS libraries. Currently mbedTLS and WolfSSL are\nsupported. Different TLS libraries may support different features and have different resource\nusage. Consult the ESP-TLS documentation in ESP-IDF Programming guide for more details.", - "id": "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-", - "name": "ESP_TLS_LIBRARY_CHOOSE", - "title": "Choose SSL/TLS library for ESP-TLS (See help for more Info)", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ESP_TLS_USING_MBEDTLS", - "help": "Enable use of Secure Element for ESP-TLS, this enables internal support for\nATECC608A peripheral, which can be used for TLS connection.", - "id": "ESP_TLS_USE_SECURE_ELEMENT", - "name": "ESP_TLS_USE_SECURE_ELEMENT", - "range": null, - "title": "Use Secure Element (ATECC608A) with ESP-TLS", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_MBEDTLS && SOC_DIG_SIGN_SUPPORTED", - "help": "Enable use of the Digital Signature Peripheral for ESP-TLS.The DS peripheral\ncan only be used when it is appropriately configured for TLS.\nConsult the ESP-TLS documentation in ESP-IDF Programming Guide for more details.", - "id": "ESP_TLS_USE_DS_PERIPHERAL", - "name": "ESP_TLS_USE_DS_PERIPHERAL", - "range": null, - "title": "Use Digital Signature (DS) Peripheral with ESP-TLS", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_CLIENT_SSL_SESSION_TICKETS", - "help": "Enable session ticket support as specified in RFC5077.", - "id": "ESP_TLS_CLIENT_SESSION_TICKETS", - "name": "ESP_TLS_CLIENT_SESSION_TICKETS", - "range": null, - "title": "Enable client session tickets", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TLS_SERVER_SESSION_TICKETS", - "help": "Sets the session ticket timeout used in the tls server.", - "id": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", - "name": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", - "range": null, - "title": "Server session ticket timeout in seconds", - "type": "int" - } - ], - "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_SERVER_SSL_SESSION_TICKETS", - "help": "Enable session ticket support as specified in RFC5077", - "id": "ESP_TLS_SERVER_SESSION_TICKETS", - "name": "ESP_TLS_SERVER_SESSION_TICKETS", - "range": null, - "title": "Enable server session tickets", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_MBEDTLS", - "help": "Ability to configure and use a certificate selection callback during server handshake,\nto select a certificate to present to the client based on the TLS extensions supplied in\nthe client hello (alpn, sni, etc).", - "id": "ESP_TLS_SERVER_CERT_SELECT_HOOK", - "name": "ESP_TLS_SERVER_CERT_SELECT_HOOK", - "range": null, - "title": "Certificate selection hook", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_MBEDTLS", - "help": "When this option is enabled, the peer (here, the client) certificate is checked by the server,\nhowever the handshake continues even if verification failed. By default, the\npeer certificate is not checked and ignored by the server.\n\nmbedtls_ssl_get_verify_result() can be called after the handshake is complete to\nretrieve status of verification.", - "id": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", - "name": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", - "range": null, - "title": "ESP-TLS Server: Set minimum Certificate Verification mode to Optional", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support for pre shared key ciphers, supported for both mbedTLS as well as\nwolfSSL TLS library.", - "id": "ESP_TLS_PSK_VERIFICATION", - "name": "ESP_TLS_PSK_VERIFICATION", - "range": null, - "title": "Enable PSK verification", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TLS_INSECURE", - "help": "After enabling this option the esp-tls client will skip the server certificate verification\nby default. Note that this option will only modify the default behaviour of esp-tls client\nregarding server cert verification. The default behaviour should only be applicable when\nno other option regarding the server cert verification is opted in the esp-tls config\n(e.g. crt_bundle_attach, use_global_ca_store etc.).\nWARNING : Enabling this option comes with a potential risk of establishing a TLS connection\nwith a server which has a fake identity, provided that the server certificate\nis not provided either through API or other mechanism like ca_store etc.", - "id": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", - "name": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", - "range": null, - "title": "Skip server certificate verification by default (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", - "type": "bool" - } - ], - "depends_on": null, - "help": "You can enable some potentially insecure options. These options should only be used for testing pusposes.\nOnly enable these options if you are very sure.", - "id": "ESP_TLS_INSECURE", - "name": "ESP_TLS_INSECURE", - "range": null, - "title": "Allow potentially insecure options", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_WOLFSSL", - "help": "Enable detailed debug prints for wolfSSL SSL library.", - "id": "ESP_DEBUG_WOLFSSL", - "name": "ESP_DEBUG_WOLFSSL", - "range": null, - "title": "Enable debug logs for wolfSSL", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TLS_USING_WOLFSSL", - "help": "Enable a fuller set of OCSP checks: checking revocation status of intermediate certificates,\noptional fallbacks to CRLs, etc.", - "id": "ESP_TLS_OCSP_CHECKALL", - "name": "ESP_TLS_OCSP_CHECKALL", - "range": null, - "title": "Enabled full OCSP checks for ESP-TLS", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-tls", - "title": "ESP-TLS", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place ISR version ADC oneshot mode read function into IRAM.", - "id": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", - "name": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place ISR version ADC oneshot mode read function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ADC_DMA_SUPPORTED", - "help": "Ensure the ADC continuous mode ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", - "id": "ADC_CONTINUOUS_ISR_IRAM_SAFE", - "name": "ADC_CONTINUOUS_ISR_IRAM_SAFE", - "range": null, - "title": "ADC continuous mode driver ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", - "id": "ADC_CALI_EFUSE_TP_ENABLE", - "name": "ADC_CALI_EFUSE_TP_ENABLE", - "range": null, - "title": "Use Two Point Values", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", - "id": "ADC_CALI_EFUSE_VREF_ENABLE", - "name": "ADC_CALI_EFUSE_VREF_ENABLE", - "range": null, - "title": "Use eFuse Vref", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", - "id": "ADC_CALI_LUT_ENABLE", - "name": "ADC_CALI_LUT_ENABLE", - "range": null, - "title": "Use Lookup Tables", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32", - "id": "component-config-adc-and-adc-calibration-adc-calibration-configurations", - "title": "ADC Calibration Configurations", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "By default, this is set. The ADC oneshot driver will disable the output of the\ncorresponding DAC channels:\nESP32: IO25 and IO26\nESP32S2: IO17 and IO18\n\nDisable this option so as to measure the output of DAC by internal ADC, for test usage.", - "id": "ADC_DISABLE_DAC_OUTPUT", - "name": "ADC_DISABLE_DAC_OUTPUT", - "range": null, - "title": "Disable DAC when ADC2 is in use", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3", - "help": "On ESP32C3 and ESP32S3, ADC2 Digital Controller is not stable. Therefore,\nADC2 continuous mode is not suggested on ESP32S3 and ESP32C3\n\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\nFor more details, you can search for errata on espressif website.", - "id": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", - "name": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", - "range": null, - "title": "Force use ADC2 continumous mode on ESP32S3 or ESP32C3", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C3", - "help": "On ESP32C3, ADC2 Digital Controller is not stable. Therefore,\nADC2 oneshot mode is not suggested on ESP32C3\n\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\nFor more details, you can search for errata on espressif website.", - "id": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", - "name": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", - "range": null, - "title": "Force use ADC2 oneshot mode on ESP32C3", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "whether to enable the debug log message for ADC driver.\nNote that this option only controls the ADC driver log, will not affect other drivers.\n\nnote: This cannot be used in the ADC legacy driver.", - "id": "ADC_ENABLE_DEBUG_LOG", - "name": "ADC_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable ADC debug log", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-adc-and-adc-calibration", - "title": "ADC and ADC Calibration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_COEX_ENABLED", - "name": "ESP_COEX_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "((ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)) && ESP_COEX_ENABLED", - "help": "If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.\nRecommended for heavy traffic scenarios. Both coexistence configuration options are\nautomatically managed, no user intervention is required.\nIf only Bluetooth is used, it is recommended to disable this option to reduce binary file\nsize.", - "id": "ESP_COEX_SW_COEXIST_ENABLE", - "name": "ESP_COEX_SW_COEXIST_ENABLE", - "range": null, - "title": "Software controls WiFi/Bluetooth coexistence", - "type": "bool" - }, - { - "children": [], - "depends_on": "!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32 && ESP_COEX_ENABLED", - "help": "If enabled, HW External coexistence arbitration is managed by GPIO pins.\nIt can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.\nUser can select GPIO pins in application code with configure interfaces.\n\nThis function depends on BT-off\nbecause currently we do not support external coex and internal coex simultaneously.", - "id": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", - "name": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", - "range": null, - "title": "External Coexistence", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && ESP_COEX_ENABLED", - "help": "If enabled, coexist power management will be enabled.", - "id": "ESP_COEX_POWER_MANAGEMENT", - "name": "ESP_COEX_POWER_MANAGEMENT", - "range": null, - "title": "Support power management under coexistence", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", - "name": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", - "range": null, - "title": "General", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", - "name": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", - "range": null, - "title": "Wi-Fi", - "type": "bool" - } - ], - "depends_on": "ESP_COEX_GPIO_DEBUG", - "help": "Select type of debugging diagram", - "id": "component-config-wireless-coexistence-gpio-debugging-for-coexistence-debugging-diagram", - "name": "ESP_COEX_GPIO_DEBUG_DIAG", - "title": "Debugging Diagram", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_COUNT", - "name": "ESP_COEX_GPIO_DEBUG_IO_COUNT", - "range": null, - "title": "Max number of debugging GPIOs", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 0 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX0", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX0", - "range": null, - "title": "Actual IO num for Debug IO ID0", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 1 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX1", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX1", - "range": null, - "title": "Actual IO num for Debug IO ID1", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 2 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX2", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX2", - "range": null, - "title": "Actual IO num for Debug IO ID2", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 3 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX3", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX3", - "range": null, - "title": "Actual IO num for Debug IO ID3", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 4 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX4", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX4", - "range": null, - "title": "Actual IO num for Debug IO ID4", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 5 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX5", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX5", - "range": null, - "title": "Actual IO num for Debug IO ID5", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 6 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX6", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX6", - "range": null, - "title": "Actual IO num for Debug IO ID6", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 7 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX7", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX7", - "range": null, - "title": "Actual IO num for Debug IO ID7", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 8 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX8", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX8", - "range": null, - "title": "Actual IO num for Debug IO ID8", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 9 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX9", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX9", - "range": null, - "title": "Actual IO num for Debug IO ID9", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 10 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX10", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX10", - "range": null, - "title": "Actual IO num for Debug IO ID10", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 11 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX11", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX11", - "range": null, - "title": "Actual IO num for Debug IO ID11", - "type": "int" - } - ], - "depends_on": "!PM_SLP_DISABLE_GPIO && !PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "help": "Support coexistence GPIO debugging", - "id": "ESP_COEX_GPIO_DEBUG", - "name": "ESP_COEX_GPIO_DEBUG", - "range": null, - "title": "GPIO debugging for coexistence", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-wireless-coexistence", - "title": "Wireless Coexistence", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", - "id": "ESP_ERR_TO_NAME_LOOKUP", - "name": "ESP_ERR_TO_NAME_LOOKUP", - "range": null, - "title": "Enable lookup of error code strings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-common-esp-related", - "title": "Common ESP-related", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "Ensure the Analog Comparator interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "ANA_CMPR_ISR_IRAM_SAFE", - "name": "ANA_CMPR_ISR_IRAM_SAFE", - "range": null, - "title": "Analog comparator ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "Place Analog Comparator control functions (like ana_cmpr_set_internal_reference) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "ANA_CMPR_CTRL_FUNC_IN_IRAM", - "name": "ANA_CMPR_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place Analog Comparator control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "whether to enable the debug log message for Analog Comparator driver.\nNote that, this option only controls the Analog Comparator driver log, won't affect other drivers.", - "id": "ANA_CMPR_ENABLE_DEBUG_LOG", - "name": "ANA_CMPR_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "id": "component-config-esp-driver-analog-comparator-configurations", - "title": "ESP-Driver:Analog Comparator Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_MIPI_CSI_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", - "help": "Ensure the CSI driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", - "id": "CAM_CTLR_MIPI_CSI_ISR_IRAM_SAFE", - "name": "CAM_CTLR_MIPI_CSI_ISR_IRAM_SAFE", - "range": null, - "title": "CSI ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED", - "help": "Ensure the ISP_DVP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", - "id": "CAM_CTLR_ISP_DVP_ISR_IRAM_SAFE", - "name": "CAM_CTLR_ISP_DVP_ISR_IRAM_SAFE", - "range": null, - "title": "ISP_DVP ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LCDCAM_CAM_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", - "help": "Ensure the DVP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", - "id": "CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE", - "name": "CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE", - "range": null, - "title": "DVP ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_MIPI_CSI_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED", - "id": "component-config-esp-driver-camera-controller-configurations", - "title": "ESP-Driver:Camera Controller Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,\nso that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "DAC_CTRL_FUNC_IN_IRAM", - "name": "DAC_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place DAC control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "DAC_ISR_IRAM_SAFE", - "name": "DAC_ISR_IRAM_SAFE", - "range": null, - "title": "DAC ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "whether to enable the debug log message for DAC driver.\nNote that, this option only controls the DAC driver log, won't affect other drivers.", - "id": "DAC_ENABLE_DEBUG_LOG", - "name": "DAC_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED", - "help": "Whether to left shift the continuous data to align every bytes to 16 bits in the driver.\nOn ESP32, although the DAC resolution is only 8 bits,\nthe hardware requires 16 bits data in continuous mode.\nBy enabling this option, the driver will left shift 8 bits for the input data automatically.\nOnly disable this option when you decide to do this step by yourself.\nNote that the driver will allocate a new piece of memory to save the converted data.", - "id": "DAC_DMA_AUTO_16BIT_ALIGN", - "name": "DAC_DMA_AUTO_16BIT_ALIGN", - "range": null, - "title": "Align the continuous data to 16 bit automatically", - "type": "bool" - } - ], - "depends_on": "SOC_DAC_SUPPORTED", - "id": "component-config-esp-driver-dac-configurations", - "title": "ESP-Driver:DAC Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "This option is intended to fix the bug that ESP32 is not able to switch to configured\npullup/pulldown mode in sleep.\nIf this option is selected, chip will automatically emulate the behaviour of switching,\nand about 450B of source codes would be placed into IRAM.", - "id": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", - "name": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", - "range": null, - "title": "Support light sleep GPIO pullup/pulldown configuration for ESP32", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Place GPIO control functions (like intr_disable/set_level) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GPIO_CTRL_FUNC_IN_IRAM", - "name": "GPIO_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GPIO control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-gpio-configurations", - "title": "ESP-Driver:GPIO Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Place GPTimer ISR handler into IRAM for better performance and fewer cache misses.", - "id": "GPTIMER_ISR_HANDLER_IN_IRAM", - "name": "GPTIMER_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place GPTimer ISR handler into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Place GPTimer control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "GPTIMER_CTRL_FUNC_IN_IRAM", - "name": "GPTIMER_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GPTimer control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Ensure the GPTimer interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "GPTIMER_ISR_IRAM_SAFE", - "name": "GPTIMER_ISR_IRAM_SAFE", - "range": null, - "title": "GPTimer ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "whether to enable the debug log message for GPTimer driver.\nNote that, this option only controls the GPTimer driver log, won't affect other drivers.", - "id": "GPTIMER_ENABLE_DEBUG_LOG", - "name": "GPTIMER_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "id": "component-config-esp-driver-gptimer-configurations", - "title": "ESP-Driver:GPTimer Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nnote: This cannot be used in the I2C legacy driver.", - "id": "I2C_ISR_IRAM_SAFE", - "name": "I2C_ISR_IRAM_SAFE", - "range": null, - "title": "I2C ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "whether to enable the debug log message for I2C driver.\nNote that this option only controls the I2C driver log, will not affect other drivers.\n\nnote: This cannot be used in the I2C legacy driver.", - "id": "I2C_ENABLE_DEBUG_LOG", - "name": "I2C_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable I2C debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "I2C slave version 2 solves some existing known issues. Such as write/read workflow, stretch handling, etc.", - "id": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", - "name": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", - "range": null, - "title": "Enable I2C slave driver version 2", - "type": "bool" - } - ], - "depends_on": "SOC_I2C_SUPPORTED", - "id": "component-config-esp-driver-i2c-configurations", - "title": "ESP-Driver:I2C Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "I2S_ISR_IRAM_SAFE", - "name": "I2S_ISR_IRAM_SAFE", - "range": null, - "title": "I2S ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "whether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", - "id": "I2S_ENABLE_DEBUG_LOG", - "name": "I2S_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable I2S debug log", - "type": "bool" - } - ], - "depends_on": "SOC_I2S_SUPPORTED", - "id": "component-config-esp-driver-i2s-configurations", - "title": "ESP-Driver:I2S Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ISP_SUPPORTED", - "help": "Ensure the ISP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", - "id": "ISP_ISR_IRAM_SAFE", - "name": "ISP_ISR_IRAM_SAFE", - "range": null, - "title": "ISP driver ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ISP_SUPPORTED", - "help": "Place ISP control functions into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.\n\nFunction list:\n- `esp_isp_sharpen_configure`", - "id": "ISP_CTRL_FUNC_IN_IRAM", - "name": "ISP_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place ISP control functions into IRAM", - "type": "bool" - } - ], - "depends_on": "SOC_ISP_SUPPORTED", - "id": "component-config-esp-driver-isp-configurations", - "title": "ESP-Driver:ISP Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_JPEG_CODEC_SUPPORTED", - "help": "whether to enable the debug log message for JPEG driver.\nNote that, this option only controls the JPEG driver log, won't affect other drivers.\nPlease also note, enable this option will make jpeg codec process speed much slower.", - "id": "JPEG_ENABLE_DEBUG_LOG", - "name": "JPEG_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_JPEG_CODEC_SUPPORTED", - "id": "component-config-esp-driver-jpeg-codec-configurations", - "title": "ESP-Driver:JPEG-Codec Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place LEDC control functions (ledc_update_duty and ledc_stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM context.\nEnabling this option can improve driver performance as well.", - "id": "LEDC_CTRL_FUNC_IN_IRAM", - "name": "LEDC_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place LEDC control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-ledc-configurations", - "title": "ESP-Driver:LEDC Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "This will ensure the MCPWM interrupt handle is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write)", - "id": "MCPWM_ISR_IRAM_SAFE", - "name": "MCPWM_ISR_IRAM_SAFE", - "range": null, - "title": "Place MCPWM ISR function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Place MCPWM control functions (like set_compare_value) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "MCPWM_CTRL_FUNC_IN_IRAM", - "name": "MCPWM_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place MCPWM control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "whether to enable the debug log message for MCPWM driver.\nNote that, this option only controls the MCPWM driver log, won't affect other drivers.", - "id": "MCPWM_ENABLE_DEBUG_LOG", - "name": "MCPWM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_MCPWM_SUPPORTED", - "id": "component-config-esp-driver-mcpwm-configurations", - "title": "ESP-Driver:MCPWM Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "whether to enable the debug log message for parallel IO driver.\nNote that, this option only controls the parallel IO driver log, won't affect other drivers.", - "id": "PARLIO_ENABLE_DEBUG_LOG", - "name": "PARLIO_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Ensure the Parallel IO interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "PARLIO_ISR_IRAM_SAFE", - "name": "PARLIO_ISR_IRAM_SAFE", - "range": null, - "title": "Parallel IO ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_PARLIO_SUPPORTED", - "id": "component-config-esp-driver-parallel-io-configurations", - "title": "ESP-Driver:Parallel IO Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "Place PCNT control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "PCNT_CTRL_FUNC_IN_IRAM", - "name": "PCNT_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place PCNT control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "Ensure the PCNT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "PCNT_ISR_IRAM_SAFE", - "name": "PCNT_ISR_IRAM_SAFE", - "range": null, - "title": "PCNT ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "whether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", - "id": "PCNT_ENABLE_DEBUG_LOG", - "name": "PCNT_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_PCNT_SUPPORTED", - "id": "component-config-esp-driver-pcnt-configurations", - "title": "ESP-Driver:PCNT Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Ensure the RMT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "RMT_ISR_IRAM_SAFE", - "name": "RMT_ISR_IRAM_SAFE", - "range": null, - "title": "RMT ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Place RMT receive function into IRAM,\nso that the receive function can be IRAM-safe and able to be called when the flash cache is disabled.\nEnabling this option can improve driver performance as well.", - "id": "RMT_RECV_FUNC_IN_IRAM", - "name": "RMT_RECV_FUNC_IN_IRAM", - "range": null, - "title": "Place RMT receive function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "whether to enable the debug log message for RMT driver.\nNote that, this option only controls the RMT driver log, won't affect other drivers.", - "id": "RMT_ENABLE_DEBUG_LOG", - "name": "RMT_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_RMT_SUPPORTED", - "id": "component-config-esp-driver-rmt-configurations", - "title": "ESP-Driver:RMT Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "Place SDM control functions (like set_duty) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "SDM_CTRL_FUNC_IN_IRAM", - "name": "SDM_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place SDM control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "whether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", - "id": "SDM_ENABLE_DEBUG_LOG", - "name": "SDM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_SDM_SUPPORTED", - "id": "component-config-esp-driver-sigma-delta-modulator-configurations", - "title": "ESP-Driver:Sigma Delta Modulator Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH && SOC_GPSPI_SUPPORTED", - "help": "Normally only the ISR of SPI master is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.\n\nThis configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\n\nDuring unit test, this is enabled to measure the ideal case of api.", - "id": "SPI_MASTER_IN_IRAM", - "name": "SPI_MASTER_IN_IRAM", - "range": null, - "title": "Place transmitting functions of SPI master into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!HEAP_PLACE_FUNCTION_INTO_FLASH && SOC_GPSPI_SUPPORTED", - "help": "Place the SPI master ISR in to IRAM to avoid possible cache miss.\n\nEnabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH\nis disabled since the spi master uses can allocate transactions buffers into DMA\nmemory section using the heap component API that ipso facto has to be placed in IRAM.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", - "id": "SPI_MASTER_ISR_IN_IRAM", - "name": "SPI_MASTER_ISR_IN_IRAM", - "range": null, - "title": "Place SPI master ISR function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPSPI_SUPPORTED", - "help": "Normally only the ISR of SPI slave is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.", - "id": "SPI_SLAVE_IN_IRAM", - "name": "SPI_SLAVE_IN_IRAM", - "range": null, - "title": "Place transmitting functions of SPI slave into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPSPI_SUPPORTED", - "help": "Place the SPI slave ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", - "id": "SPI_SLAVE_ISR_IN_IRAM", - "name": "SPI_SLAVE_ISR_IN_IRAM", - "range": null, - "title": "Place SPI slave ISR function into IRAM", - "type": "bool" - } - ], - "depends_on": "SOC_GPSPI_SUPPORTED", - "id": "component-config-esp-driver-spi-configurations", - "title": "ESP-Driver:SPI Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "help": "Place touch sensor oneshot scanning and continuous scanning functions into IRAM,\nso that these function can be IRAM-safe and able to be called when the flash cache is disabled.\nEnabling this option can improve driver performance as well.", - "id": "TOUCH_CTRL_FUNC_IN_IRAM", - "name": "TOUCH_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place touch sensor control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "help": "Ensure the touch sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "TOUCH_ISR_IRAM_SAFE", - "name": "TOUCH_ISR_IRAM_SAFE", - "range": null, - "title": "Touch sensor ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "help": "Whether to enable the debug log message for touch driver.\nNote that, this option only controls the touch driver log, won't affect other drivers.", - "id": "TOUCH_ENABLE_DEBUG_LOG", - "name": "TOUCH_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "id": "component-config-esp-driver-touch-sensor-configurations", - "title": "ESP-Driver:Touch Sensor Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "whether to enable the debug log message for temperature sensor driver.\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.", - "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", - "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED", - "help": "Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "TEMP_SENSOR_ISR_IRAM_SAFE", - "name": "TEMP_SENSOR_ISR_IRAM_SAFE", - "range": null, - "title": "Temperature sensor ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "id": "component-config-esp-driver-temperature-sensor-configurations", - "title": "ESP-Driver:Temperature Sensor Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "help": "If this option is not selected, UART interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", - "id": "UART_ISR_IN_IRAM", - "name": "UART_ISR_IN_IRAM", - "range": null, - "title": "Place UART ISR function into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-uart-configurations", - "title": "ESP-Driver:UART Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && USJ_ENABLE_USB_SERIAL_JTAG && SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long\nas the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to\nprevent the system from entering light sleep.\nThis option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is\nenabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.\nNote. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is\ncalled manually from the program, enabling this option will not prevent light sleep entry even if the\nUSB Serial/JTAG is in use.", - "id": "USJ_NO_AUTO_LS_ON_CONNECTION", - "name": "USJ_NO_AUTO_LS_ON_CONNECTION", - "range": null, - "title": "Don't enter the automatic light sleep when USB Serial/JTAG port is connected", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "The USB-Serial-JTAG module on ESP chips is turned on by default after power-on.\nIf your application does not need it and not rely on it to be used as system\nconsole or use the built-in JTAG for debugging, you can disable this option,\nthen the clock of this module will be disabled at startup, which will save\nsome power consumption.", - "id": "USJ_ENABLE_USB_SERIAL_JTAG", - "name": "USJ_ENABLE_USB_SERIAL_JTAG", - "range": null, - "title": "Enable USB-Serial-JTAG Module", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "id": "component-config-esp-driver-usb-serial-jtag-configuration", - "title": "ESP-Driver:USB Serial/JTAG Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ETH_ENABLED", - "name": "ETH_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ETH_PHY_INTERFACE_RMII", - "name": "ETH_PHY_INTERFACE_RMII", - "range": null, - "title": "Reduced Media Independent Interface (RMII)", - "type": "bool" - } - ], - "depends_on": "ETH_USE_ESP32_EMAC", - "help": "Select the communication interface between MAC and PHY chip.", - "id": "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface", - "name": "ETH_PHY_INTERFACE", - "title": "PHY interface", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "MAC will get RMII clock from outside.\nNote that ESP32 only supports GPIO0 to input the RMII clock.", - "id": "ETH_RMII_CLK_INPUT", - "name": "ETH_RMII_CLK_INPUT", - "range": null, - "title": "Input RMII clock from external", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "ESP32 can generate RMII clock by internal APLL.\nThis clock can be routed to the external PHY device.\nESP32 supports to route the RMII clock to GPIO0/16/17.", - "id": "ETH_RMII_CLK_OUTPUT", - "name": "ETH_RMII_CLK_OUTPUT", - "range": null, - "title": "Output RMII clock from internal", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32 && ETH_PHY_INTERFACE_RMII && ETH_USE_ESP32_EMAC", - "help": "Select external or internal RMII clock.", - "id": "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode", - "name": "ETH_RMII_CLK_MODE", - "title": "RMII clock mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ETH_RMII_CLK_INPUT && ETH_USE_ESP32_EMAC", - "help": "ESP32 only supports GPIO0 to input the RMII clock.", - "id": "ETH_RMII_CLK_IN_GPIO", - "name": "ETH_RMII_CLK_IN_GPIO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", - "help": "GPIO0 can be set to output a pre-divided PLL clock. Enabling this option will configure\nGPIO0 to output a 50MHz clock. In fact this clock doesn't have directly relationship with\nEMAC peripheral. Sometimes this clock may not work well with your PHY chip.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", - "id": "ETH_RMII_CLK_OUTPUT_GPIO0", - "name": "ETH_RMII_CLK_OUTPUT_GPIO0", - "range": null, - "title": "Output RMII clock from GPIO0 (Experimental!)", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && !ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", - "help": "Set the GPIO number to output RMII Clock.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", - "id": "ETH_RMII_CLK_OUT_GPIO", - "name": "ETH_RMII_CLK_OUT_GPIO", - "range": null, - "title": "RMII clock GPIO number", - "type": "int" - }, - { - "children": [], - "depends_on": "ETH_USE_ESP32_EMAC", - "help": "Set the size of each buffer used by Ethernet MAC DMA.\n!! Important !! Make sure it is 64B aligned for ESP32P4!", - "id": "ETH_DMA_BUFFER_SIZE", - "name": "ETH_DMA_BUFFER_SIZE", - "range": null, - "title": "Ethernet DMA buffer size (Byte)", - "type": "int" - }, - { - "children": [], - "depends_on": "ETH_USE_ESP32_EMAC", - "help": "Number of DMA receive buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", - "id": "ETH_DMA_RX_BUFFER_NUM", - "name": "ETH_DMA_RX_BUFFER_NUM", - "range": null, - "title": "Amount of Ethernet DMA Rx buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ETH_USE_ESP32_EMAC", - "help": "Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", - "id": "ETH_DMA_TX_BUFFER_NUM", - "name": "ETH_DMA_TX_BUFFER_NUM", - "range": null, - "title": "Amount of Ethernet DMA Tx buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ETH_DMA_RX_BUFFER_NUM > 15 && ETH_USE_ESP32_EMAC", - "help": "Ethernet MAC engine on ESP32 doesn't feature a flow control logic.\nThe MAC driver can perform a software flow control if you enable this option.\nNote that, if the RX buffer number is small, enabling software flow control will\ncause obvious performance loss.", - "id": "ETH_SOFT_FLOW_CONTROL", - "name": "ETH_SOFT_FLOW_CONTROL", - "range": null, - "title": "Enable software flow control", - "type": "bool" - }, - { - "children": [], - "depends_on": "ETH_USE_ESP32_EMAC", - "help": "If enabled, functions related to RX/TX are placed into IRAM. It can improve Ethernet throughput.\nIf disabled, all functions are placed into FLASH.", - "id": "ETH_IRAM_OPTIMIZATION", - "name": "ETH_IRAM_OPTIMIZATION", - "range": null, - "title": "Enable IRAM optimization", - "type": "bool" - } - ], - "depends_on": "SOC_EMAC_SUPPORTED", - "help": "ESP32 integrates a 10/100M Ethernet MAC controller.", - "id": "ETH_USE_ESP32_EMAC", - "is_menuconfig": true, - "name": "ETH_USE_ESP32_EMAC", - "range": null, - "title": "Support ESP32 internal EMAC controller", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ETH_USE_SPI_ETHERNET", - "help": "DM9051 is a fast Ethernet controller with an SPI interface.\nIt's also integrated with a 10/100M PHY and MAC.\nSelect this to enable DM9051 driver.", - "id": "ETH_SPI_ETHERNET_DM9051", - "name": "ETH_SPI_ETHERNET_DM9051", - "range": null, - "title": "Use DM9051", - "type": "bool" - }, - { - "children": [], - "depends_on": "ETH_USE_SPI_ETHERNET", - "help": "W5500 is a HW TCP/IP embedded Ethernet controller.\nTCP/IP stack, 10/100 Ethernet MAC and PHY are embedded in a single chip.\nHowever the driver in ESP-IDF only enables the RAW MAC mode,\nmaking it compatible with the software TCP/IP stack.\nSay yes to enable W5500 driver.", - "id": "ETH_SPI_ETHERNET_W5500", - "name": "ETH_SPI_ETHERNET_W5500", - "range": null, - "title": "Use W5500 (MAC RAW)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ETH_USE_SPI_ETHERNET", - "help": "The KSZ8851SNL is a single-chip Fast Ethernet controller consisting of\na 10/100 physical layer transceiver (PHY), a MAC, and a Serial Peripheral Interface (SPI).\nSelect this to enable KSZ8851SNL driver.", - "id": "ETH_SPI_ETHERNET_KSZ8851SNL", - "name": "ETH_SPI_ETHERNET_KSZ8851SNL", - "range": null, - "title": "Use KSZ8851SNL", - "type": "bool" - } - ], - "depends_on": null, - "help": "ESP-IDF can also support some SPI-Ethernet modules.", - "id": "ETH_USE_SPI_ETHERNET", - "is_menuconfig": true, - "name": "ETH_USE_SPI_ETHERNET", - "range": null, - "title": "Support SPI to Ethernet Module", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ETH_USE_OPENETH", - "help": "Number of DMA receive buffers, each buffer is 1600 bytes.", - "id": "ETH_OPENETH_DMA_RX_BUFFER_NUM", - "name": "ETH_OPENETH_DMA_RX_BUFFER_NUM", - "range": null, - "title": "Number of Ethernet DMA Rx buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ETH_USE_OPENETH", - "help": "Number of DMA transmit buffers, each buffer is 1600 bytes.", - "id": "ETH_OPENETH_DMA_TX_BUFFER_NUM", - "name": "ETH_OPENETH_DMA_TX_BUFFER_NUM", - "range": null, - "title": "Number of Ethernet DMA Tx buffers", - "type": "int" - } - ], - "depends_on": null, - "help": "OpenCores Ethernet MAC driver can be used when an ESP-IDF application\nis executed in QEMU. This driver is not supported when running on a\nreal chip.", - "id": "ETH_USE_OPENETH", - "is_menuconfig": true, - "name": "ETH_USE_OPENETH", - "range": null, - "title": "Support OpenCores Ethernet MAC (for use with QEMU)", - "type": "menu" - }, - { - "children": [], - "depends_on": "ETH_ENABLED", - "help": "Prevents multiple accesses when Ethernet interface is used as shared resource and multiple\nfunctionalities might try to access it at a time.", - "id": "ETH_TRANSMIT_MUTEX", - "name": "ETH_TRANSMIT_MUTEX", - "range": null, - "title": "Enable Transmit Mutex", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ethernet", - "title": "Ethernet", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables collections of statistics in the event loop library such as the number of events posted\nto/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event\nloop queue, run time of event handlers, and number of times/run time of each event handler.", - "id": "ESP_EVENT_LOOP_PROFILING", - "name": "ESP_EVENT_LOOP_PROFILING", - "range": null, - "title": "Enable event loop profiling", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_EVENT_POST_FROM_ISR", - "help": "Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions\nesp_event_post and esp_event_post_to in IRAM.", - "id": "ESP_EVENT_POST_FROM_IRAM_ISR", - "name": "ESP_EVENT_POST_FROM_IRAM_ISR", - "range": null, - "title": "Support posting events from ISRs placed in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable posting events from interrupt handlers.", - "id": "ESP_EVENT_POST_FROM_ISR", - "name": "ESP_EVENT_POST_FROM_ISR", - "range": null, - "title": "Support posting events from ISRs", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-event-loop-library", - "title": "Event Loop Library", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_GDBSTUB_ENABLED", - "name": "ESP_GDBSTUB_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable builtin GDBStub.\nThis allows to debug the target device using serial port:\n- Run 'idf.py monitor'.\n- Wait for the device to initialize.\n- Press Ctrl+C to interrupt the execution and enter GDB attached to your device for debugging.\nNOTE: all UART input will be handled by GDBStub.", - "id": "ESP_SYSTEM_GDBSTUB_RUNTIME", - "name": "ESP_SYSTEM_GDBSTUB_RUNTIME", - "range": null, - "title": "GDBStub at runtime", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_GDBSTUB_SUPPORT_TASKS", - "help": "Set the number of tasks which GDB Stub will support.", - "id": "ESP_GDBSTUB_MAX_TASKS", - "name": "ESP_GDBSTUB_MAX_TASKS", - "range": null, - "title": "Maximum number of tasks supported by GDB Stub", - "type": "int" - } - ], - "depends_on": "ESP_GDBSTUB_ENABLED", - "help": "If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.\nThread list can be queried from GDB using 'info threads' command.\nNote that if GDB task lists were corrupted, this feature may not work.\nIf GDBStub fails, try disabling this feature.", - "id": "ESP_GDBSTUB_SUPPORT_TASKS", - "name": "ESP_GDBSTUB_SUPPORT_TASKS", - "range": null, - "title": "Enable listing FreeRTOS tasks through GDB Stub", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-gdb-stub", - "title": "GDB Stub", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "This is the stack size for the BT HID task.\nDefault is 2048 bytes.", - "id": "ESPHID_TASK_SIZE_BT", - "name": "ESPHID_TASK_SIZE_BT", - "range": [ - 2048, - 10240 - ], - "title": "Task stack size for ESP HID BR/EDR", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This is the stack size for the BLE HID task.\nDefault is 4096 bytes.", - "id": "ESPHID_TASK_SIZE_BLE", - "name": "ESPHID_TASK_SIZE_BLE", - "range": [ - 2048, - 10240 - ], - "title": "Task stack size for ESP HID BLE", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-hid", - "title": "ESP HID", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "This option will enable https protocol by linking esp-tls library and initializing SSL transport", - "id": "ESP_HTTP_CLIENT_ENABLE_HTTPS", - "name": "ESP_HTTP_CLIENT_ENABLE_HTTPS", - "range": null, - "title": "Enable https", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option will enable HTTP Basic Authentication. It is disabled by default as Basic\nauth uses unencrypted encoding, so it introduces a vulnerability when not using TLS", - "id": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", - "name": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", - "range": null, - "title": "Enable HTTP Basic Authentication", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option will enable HTTP Digest Authentication. It is enabled by default, but use of this\nconfiguration is not recommended as the password can be derived from the exchange, so it introduces\na vulnerability when not using TLS", - "id": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", - "name": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", - "range": null, - "title": "Enable HTTP Digest Authentication", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option will enable injection of a custom tcp_transport handle, so the http operation\nwill be performed on top of the user defined transport abstraction (if configured)", - "id": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", - "name": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", - "range": null, - "title": "Enable custom transport", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", - "id": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", - "name": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", - "range": null, - "title": "Time in millisecond to wait for posting event", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-http-client", - "title": "ESP HTTP client", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "This sets the maximum supported size of headers section in HTTP request packet to be processed by the\nserver", - "id": "HTTPD_MAX_REQ_HDR_LEN", - "name": "HTTPD_MAX_REQ_HDR_LEN", - "range": null, - "title": "Max HTTP Request Header Length", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the maximum supported size of HTTP request URI to be processed by the server", - "id": "HTTPD_MAX_URI_LEN", - "name": "HTTPD_MAX_URI_LEN", - "range": null, - "title": "Max HTTP URI Length", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the\nunderlying socket is closed. Please note that turning this off may cause multiple test failures", - "id": "HTTPD_ERR_RESP_NO_DELAY", - "name": "HTTPD_ERR_RESP_NO_DELAY", - "range": null, - "title": "Use TCP_NODELAY socket option when sending HTTP error responses", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the size of the temporary buffer used to receive and discard any remaining data that is\nreceived from the HTTP client in the request, but not processed as part of the server HTTP request\nhandler.\n\nIf the remaining data is larger than the available buffer size, the buffer will be filled in multiple\niterations. The buffer should be small enough to fit on the stack, but large enough to avoid excessive\niterations.", - "id": "HTTPD_PURGE_BUF_LEN", - "name": "HTTPD_PURGE_BUF_LEN", - "range": null, - "title": "Length of temporary buffer for purging data", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this will log discarded binary HTTP request data at Debug level.\nFor large content data this may not be desirable as it will clutter the log.", - "id": "HTTPD_LOG_PURGE_DATA", - "name": "HTTPD_LOG_PURGE_DATA", - "range": null, - "title": "Log purged content data at Debug level", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the WebSocket server support.", - "id": "HTTPD_WS_SUPPORT", - "name": "HTTPD_WS_SUPPORT", - "range": null, - "title": "WebSocket server support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This makes httpd_queue_work() API to wait until a message space is available on UDP control socket.\nIt internally uses a counting semaphore with count set to `LWIP_UDP_RECVMBOX_SIZE` to achieve this.\nThis config will slightly change API behavior to block until message gets delivered on control socket.", - "id": "HTTPD_QUEUE_WORK_BLOCKING", - "name": "HTTPD_QUEUE_WORK_BLOCKING", - "range": null, - "title": "httpd_queue_work as blocking API", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", - "id": "HTTPD_SERVER_EVENT_POST_TIMEOUT", - "name": "HTTPD_SERVER_EVENT_POST_TIMEOUT", - "range": null, - "title": "Time in millisecond to wait for posting event", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-http-server", - "title": "HTTP Server", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Exposes an additional callback whereby firmware data could be decrypted\nbefore being processed by OTA update component. This can help to integrate\nexternal encryption related format and removal of such encapsulation layer\nfrom firmware image.", - "id": "ESP_HTTPS_OTA_DECRYPT_CB", - "name": "ESP_HTTPS_OTA_DECRYPT_CB", - "range": null, - "title": "Provide decryption callback", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "It is highly recommended to keep HTTPS (along with server certificate validation) enabled.\nEnabling this option comes with potential risk of:\n- Non-encrypted communication channel with server\n- Accepting firmware upgrade image from server with fake identity", - "id": "ESP_HTTPS_OTA_ALLOW_HTTP", - "name": "ESP_HTTPS_OTA_ALLOW_HTTP", - "range": null, - "title": "Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", - "id": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", - "name": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", - "range": null, - "title": "Time in millisecond to wait for posting event", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-https-ota", - "title": "ESP HTTPS OTA", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER", - "help": "Enable ESP HTTPS server component", - "id": "ESP_HTTPS_SERVER_ENABLE", - "name": "ESP_HTTPS_SERVER_ENABLE", - "range": null, - "title": "Enable ESP_HTTPS_SERVER component", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", - "id": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", - "name": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", - "range": null, - "title": "Time in millisecond to wait for posting event", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-https-server", - "title": "ESP HTTPS server", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_0", - "name": "ESP32C3_REV_MIN_0", - "range": null, - "title": "Rev v0.0 (ECO0)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_1", - "name": "ESP32C3_REV_MIN_1", - "range": null, - "title": "Rev v0.1 (ECO1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_2", - "name": "ESP32C3_REV_MIN_2", - "range": null, - "title": "Rev v0.2 (ECO2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_3", - "name": "ESP32C3_REV_MIN_3", - "range": null, - "title": "Rev v0.3 (ECO3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_4", - "name": "ESP32C3_REV_MIN_4", - "range": null, - "title": "Rev v0.4 (ECO4)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_REV_MIN_101", - "name": "ESP32C3_REV_MIN_101", - "range": null, - "title": "Rev v1.1", - "type": "bool" - } - ], - "depends_on": null, - "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", - "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-c3-revision", - "name": "ESP32C3_REV_MIN", - "title": "Minimum Supported ESP32-C3 Revision", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_REV_MIN_FULL", - "name": "ESP32C3_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MIN_FULL", - "name": "ESP_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_REV_MAX_FULL", - "name": "ESP32C3_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MAX_FULL", - "name": "ESP_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", - "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "range": null, - "title": "Minimum Supported ESP32-C3 eFuse Block Revision", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_CI_BUILD", - "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", - "id": "ESP_REV_NEW_CHIP_TEST", - "name": "ESP_REV_NEW_CHIP_TEST", - "range": null, - "title": "Internal test mode", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-chip-revision", - "title": "Chip revision", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_BT", - "name": "ESP_MAC_ADDR_UNIVERSE_BT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_ETH", - "name": "ESP_MAC_ADDR_UNIVERSE_ETH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": "Two", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": "Four", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the number of universally administered (by IEEE) MAC addresses.\n\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\n\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\n\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\n\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)\n\nNote that ESP32-C3 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()\nAPI to return a MAC for Ethernet, this can only be used with an external MAC peripheral.", - "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "title": "Number of universally administered (by IEEE) MAC address", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP32C3_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", - "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "range": null, - "title": "Ignore MAC CRC error (not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", - "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "range": null, - "title": "Enable using custom mac as base mac", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-mac-config", - "title": "MAC Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", - "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", - "id": "ESP_SLEEP_POWER_DOWN_FLASH", - "name": "ESP_SLEEP_POWER_DOWN_FLASH", - "range": null, - "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", - "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up Flash CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", - "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up PSRAM CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", - "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "range": null, - "title": "Pull-up all SPI pins in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", - "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "range": null, - "title": "light sleep GPIO reset workaround", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS activeare) usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", - "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "range": [ - 0, - 5000 - ], - "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", - "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "range": null, - "title": "Check the cache safety of the sleep wakeup code in sleep process", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable esp sleep debug.", - "id": "ESP_SLEEP_DEBUG", - "name": "ESP_SLEEP_DEBUG", - "range": null, - "title": "esp sleep debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", - "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "range": null, - "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", - "id": "ESP_SLEEP_EVENT_CALLBACKS", - "name": "ESP_SLEEP_EVENT_CALLBACKS", - "range": null, - "title": "Enable registration of sleep event callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-sleep-config", - "title": "Sleep Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_RC", - "name": "RTC_CLK_SRC_INT_RC", - "range": null, - "title": "Internal 136 kHz RC oscillator", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_CRYS", - "name": "RTC_CLK_SRC_EXT_CRYS", - "range": null, - "title": "External 32 kHz crystal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_OSC", - "name": "RTC_CLK_SRC_EXT_OSC", - "range": null, - "title": "External 32 kHz oscillator at 32K_XP pin", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_8MD256", - "name": "RTC_CLK_SRC_INT_8MD256", - "range": null, - "title": "Internal 17.5 MHz oscillator, divided by 256", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose which clock is used as RTC clock source.", - "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", - "name": "RTC_CLK_SRC", - "title": "RTC clock source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", - "id": "RTC_CLK_CAL_CYCLES", - "name": "RTC_CLK_CAL_CYCLES", - "range": [ - 0, - 32766 - ], - "title": "Number of cycles for RTC_SLOW_CLK calibration", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-rtc-clock-config", - "title": "RTC Clock Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "PERIPH_CTRL_FUNC_IN_IRAM", - "name": "PERIPH_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place peripheral control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-peripheral-control", - "title": "Peripheral Control", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ETM_SUPPORTED", - "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", - "id": "ETM_ENABLE_DEBUG_LOG", - "name": "ETM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ETM_SUPPORTED", - "id": "component-config-hardware-settings-etm-configuration", - "title": "ETM Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GDMA_CTRL_FUNC_IN_IRAM", - "name": "GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GDMA control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "GDMA_ISR_IRAM_SAFE", - "name": "GDMA_ISR_IRAM_SAFE", - "range": null, - "title": "GDMA ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for GDMA driver.\nNote that, this option only controls the GDMA driver log, won't affect other drivers.", - "id": "GDMA_ENABLE_DEBUG_LOG", - "name": "GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-gdma-configurations", - "title": "GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DW_GDMA_ISR_IRAM_SAFE", - "name": "DW_GDMA_ISR_IRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "DW_GDMA_OBJ_DRAM_SAFE", - "name": "DW_GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", - "id": "DW_GDMA_ENABLE_DEBUG_LOG", - "name": "DW_GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-dw_gdma-configurations", - "title": "DW_GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", - "id": "DMA2D_OPERATION_FUNC_IN_IRAM", - "name": "DMA2D_OPERATION_FUNC_IN_IRAM", - "range": null, - "title": "Place 2D-DMA operation functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DMA2D_ISR_IRAM_SAFE", - "name": "DMA2D_ISR_IRAM_SAFE", - "range": null, - "title": "2D-DMA ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_DMA2D_SUPPORTED", - "id": "component-config-hardware-settings-2d-dma-configurations", - "title": "2D-DMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "XTAL_FREQ_40", - "name": "XTAL_FREQ_40", - "range": null, - "title": "40 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", - "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", - "name": "XTAL_FREQ", - "title": "Main XTAL frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "XTAL_FREQ", - "name": "XTAL_FREQ", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-main-xtal-config", - "title": "Main XTAL Config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", - "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", - "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", - "id": "ESP_CLK_RC32K_NOT_TO_USE", - "name": "ESP_CLK_RC32K_NOT_TO_USE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings", - "title": "Hardware Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "whether to enable the debug log message for LCD driver.\nNote that, this option only controls the LCD driver log, won't affect other drivers.", - "id": "LCD_ENABLE_DEBUG_LOG", - "name": "LCD_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LCD_RGB_SUPPORTED", - "help": "Ensure the LCD interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nIf you want the LCD driver to keep flushing the screen even when cache ops disabled,\nyou can enable this option. Note, this will also increase the IRAM usage.", - "id": "LCD_RGB_ISR_IRAM_SAFE", - "name": "LCD_RGB_ISR_IRAM_SAFE", - "range": null, - "title": "RGB LCD ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LCD_RGB_SUPPORTED", - "help": "Reset the GDMA channel every VBlank to stop permanent desyncs from happening.\nOnly need to enable it when in your application, the DMA can't deliver data\nas fast as the LCD consumes it.", - "id": "LCD_RGB_RESTART_IN_VSYNC", - "name": "LCD_RGB_RESTART_IN_VSYNC", - "range": null, - "title": "Always restart RGB LCD transmission in VSYNC", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MIPI_DSI_SUPPORTED", - "help": "Ensure the LCD interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nIf you want the LCD driver to keep flushing the screen even when cache ops disabled,\nyou can enable this option. Note, this will also increase the IRAM usage.", - "id": "LCD_DSI_ISR_IRAM_SAFE", - "name": "LCD_DSI_ISR_IRAM_SAFE", - "range": null, - "title": "DSI LCD ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-lcd-controller-configurations", - "title": "ESP-Driver:LCD Controller Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "help": "Max len in bytes per C2M chunk, operations with size over the max len will be\nsliced into multiple chunks.", - "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", - "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", - "range": null, - "title": "Max len in bytes per C2M chunk", - "type": "hex" - } - ], - "depends_on": "SOC_CACHE_WRITEBACK_SUPPORTED", - "help": "`esp_cache_msync` C2M direction takes critical sections, which means during\nthe operation, the interrupts are disabled. Whereas Cache writebacks for\nlarge buffers could be especially time intensive, and might cause interrupts\nto be disabled for a significant amount of time.\n\nSometimes you want other ISRs to be responded during this C2M process.\nThis option is to slice one C2M operation into multiple chunks,\nwith CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN max len. This will give you\na breath during the C2M process as sometimes the C2M process is quite long.\n\nNote if the buffer processed by the `esp_cache_msync` (C2M sliced) is interrupted by an ISR,\nand this ISR also accesses this buffer, this may lead to data coherence issue.", - "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "range": null, - "title": "Enable esp_cache_msync C2M chunked operation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-mm-memory-management-configurations", - "title": "ESP-MM: Memory Management Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\n\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\nbe started every time the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\nthe timer expires.", - "id": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", - "name": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", - "range": [ - 0, - 65535 - ], - "title": "IP Address lost timer interval (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "No implementation of ESP-NETIF functions is provided.\nThis option is used for adding a custom TCP/IP stack and defining related\nesp_netif functionality", - "id": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "name": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "range": null, - "title": "Use only ESP-NETIF headers", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ENABLE && ", - "help": "lwIP is a small independent implementation of the TCP/IP protocol suite.", - "id": "ESP_NETIF_TCPIP_LWIP", - "name": "ESP_NETIF_TCPIP_LWIP", - "range": null, - "title": "LwIP", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Dummy implementation of esp-netif functionality which connects driver transmit\nto receive function. This option is for testing purpose only", - "id": "ESP_NETIF_LOOPBACK", - "name": "ESP_NETIF_LOOPBACK", - "range": null, - "title": "Loopback", - "type": "bool" - } - ], - "depends_on": "!ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "help": "Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.", - "id": "component-config-esp-netif-adapter-tcp-ip-stack-library", - "name": "ESP_NETIF_USE_TCPIP_STACK_LIB", - "title": "TCP/IP Stack Library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", - "name": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable if esp_netif_transmit() and esp_netif_receive() should generate events. This can be useful\nto blink data traffic indication lights.", - "id": "ESP_NETIF_REPORT_DATA_TRAFFIC", - "name": "ESP_NETIF_REPORT_DATA_TRAFFIC", - "range": null, - "title": "Report data traffic via events", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable if esp_netif_receive() should return error code. This is useful to inform upper layers\nthat packet input to TCP/IP stack failed, so the upper layers could implement flow control.\nThis option is disabled by default due to backward compatibility and will be enabled in v6.0 (IDF-7194)", - "id": "ESP_NETIF_RECEIVE_REPORT_ERRORS", - "name": "ESP_NETIF_RECEIVE_REPORT_ERRORS", - "range": null, - "title": "Use esp_err_t to report errors from esp_netif_receive", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_NETIF_L2_TAP", - "help": "Maximum number of opened File descriptors (FD's) associated with ESP TAP device. ESP TAP FD's take up\na certain amount of memory, and allowing fewer FD's to be opened at the same time conserves memory.", - "id": "ESP_NETIF_L2_TAP_MAX_FDS", - "name": "ESP_NETIF_L2_TAP_MAX_FDS", - "range": null, - "title": "Maximum number of opened L2 TAP File descriptors", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_NETIF_L2_TAP", - "help": "Maximum number of frames queued in opened File descriptor. Once the queue is full, the newly arriving\nframes are dropped until the queue has enough room to accept incoming traffic (Tail Drop queue\nmanagement).", - "id": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", - "name": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", - "range": null, - "title": "Size of L2 TAP Rx queue", - "type": "int" - } - ], - "depends_on": null, - "help": "A user program can read/write link layer (L2) frames from/to ESP TAP device.\nThe ESP TAP device can be currently associated only with Ethernet physical interfaces.", - "id": "ESP_NETIF_L2_TAP", - "name": "ESP_NETIF_L2_TAP", - "range": null, - "title": "Enable netif L2 TAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_NETIF_TCPIP_LWIP", - "help": "Enable LwIP IEEE 802.1D bridge support in ESP-NETIF. Note that \"Number of clients store data in netif\"\n(LWIP_NUM_NETIF_CLIENT_DATA) option needs to be properly configured to be LwIP bridge available!", - "id": "ESP_NETIF_BRIDGE_EN", - "name": "ESP_NETIF_BRIDGE_EN", - "range": null, - "title": "Enable LwIP IEEE 802.1D bridge", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option to use the DNS server which belongs to the selected default network interface.\nThis feature collects DNS server and netif information from LWIP core modules.\nWhenever a new default netif is selected, global DNS servers in LWIP are updated with the netif\nrelated servers.", - "id": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", - "name": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", - "range": null, - "title": "Enable DNS server per interface", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-netif-adapter", - "title": "ESP NETIF Adapter", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_LINUX", - "help": "This option enables gathering host test statistics and SPI flash wear levelling simulation.", - "id": "ESP_PARTITION_ENABLE_STATS", - "name": "ESP_PARTITION_ENABLE_STATS", - "range": null, - "title": "Host test statistics enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX", - "help": "This option controls whether the partition implementation checks\nif the flash is erased before writing to it.\nThis is necessary for SPIFFS, which expects to be able to write without erasing first.", - "id": "ESP_PARTITION_ERASE_CHECK", - "name": "ESP_PARTITION_ERASE_CHECK", - "range": null, - "title": "Check if flash is erased before writing", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-partition-api-configuration", - "title": "Partition API Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_PHY_ENABLED", - "name": "ESP_PHY_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full\ncalibration will be performed and stored in NVS. Normally, only partial calibration will be performed.\nIf this option is disabled, full calibration will be performed.\n\nIf it's easy that your board calibrate bad data, choose 'n'.\nTwo cases for example, you should choose 'n':\n1.If your board is easy to be booted up with antenna disconnected.\n2.Because of your board design, each time when you do calibration, the result are too unstable.\nIf unsure, choose 'y'.", - "id": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", - "name": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", - "range": null, - "title": "Store phy calibration data in NVS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, PHY init data will be restored to default if\nit cannot be verified successfully to avoid endless bootloops.\n\nIf unsure, choose 'n'.", - "id": "ESP_PHY_DEFAULT_INIT_IF_INVALID", - "name": "ESP_PHY_DEFAULT_INIT_IF_INVALID", - "range": null, - "title": "Reset default PHY init data if invalid", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, multiple phy init data bin will embedded into app bin\nIf not enabled, multiple phy init data bin will still leave alone, and need to be flashed by users.", - "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", - "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", - "range": null, - "title": "Support embedded multiple phy init data bin to app bin", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, when an error occurs while the PHY init data is updated,\nthe program will terminate and restart.\nIf not enabled, the PHY init data will not be updated when an error occurs.", - "id": "ESP_PHY_INIT_DATA_ERROR", - "name": "ESP_PHY_INIT_DATA_ERROR", - "range": null, - "title": "Terminate operation when PHY init data error", - "type": "bool" - } - ], - "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, the corresponding PHY init data type can be automatically switched\naccording to the country code. China's PHY init data bin is used by default.\nCan be modified by country information in API esp_wifi_set_country().\nThe priority of switching the PHY init data type is:\n1. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_MANUAL.\n2. Country notified by the connected AP.\n3. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_AUTO.", - "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", - "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", - "range": null, - "title": "Support multiple PHY init data bin", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_SUPPORTED && ESP_PHY_ENABLED", - "help": "If enabled, PHY init data will be loaded from a partition.\nWhen using a custom partition table, make sure that PHY data\npartition is included (type: 'data', subtype: 'phy').\nWith default partition tables, this is done automatically.\nIf PHY init data is stored in a partition, it has to be flashed there,\notherwise runtime error will occur.\n\nIf this option is not enabled, PHY init data will be embedded\ninto the application binary.\n\nIf unsure, choose 'n'.", - "id": "ESP_PHY_INIT_DATA_IN_PARTITION", - "is_menuconfig": true, - "name": "ESP_PHY_INIT_DATA_IN_PARTITION", - "range": null, - "title": "Use a partition to store PHY init data", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Set maximum transmit power for WiFi radio. Actual transmit power for high\ndata rates may be lower than this setting.", - "id": "ESP_PHY_MAX_WIFI_TX_POWER", - "name": "ESP_PHY_MAX_WIFI_TX_POWER", - "range": [ - 10, - 20 - ], - "title": "Max WiFi TX power (dBm)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": null, - "id": "ESP_PHY_MAX_TX_POWER", - "name": "ESP_PHY_MAX_TX_POWER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_PM_SUPPORT_MAC_BB_PD && FREERTOS_USE_TICKLESS_IDLE && ESP_PHY_ENABLED", - "help": "If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered\ndown when PHY is disabled. Enabling this setting reduces power consumption\nby a small amount but increases RAM use by approximately 4 KB(Wi-Fi only),\n2 KB(Bluetooth only) or 5.3 KB(Wi-Fi + Bluetooth).", - "id": "ESP_PHY_MAC_BB_PD", - "name": "ESP_PHY_MAC_BB_PD", - "range": null, - "title": "Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_BROWNOUT_DET && ESP_PHY_ENABLED", - "help": "When brownout reset occurs, reduce PHY TX power to keep the code running.", - "id": "ESP_PHY_REDUCE_TX_POWER", - "name": "ESP_PHY_REDUCE_TX_POWER", - "range": null, - "title": "Reduce PHY TX power when brownout reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND && ESP_PHY_ENABLED", - "help": "On some ESP targets, the USB PHY can interfere with WiFi thus lowering WiFi performance.\nAs a result, on those affected ESP targets, the ESP PHY library's initialization will automatically\ndisable the USB PHY to get best WiFi performance.\nThis option controls whether or not the ESP PHY library will keep the USB PHY enabled on\ninitialization.\n\nNote: This option can be disabled to increase WiFi performance. However, disabling this option will\nalso mean that the USB PHY cannot be used while WiFi is enabled.", - "id": "ESP_PHY_ENABLE_USB", - "name": "ESP_PHY_ENABLE_USB", - "range": null, - "title": "Keep the USB PHY enabled when initializing WiFi", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If enabled, you can use RF certification test APIs.", - "id": "ESP_PHY_ENABLE_CERT_TEST", - "name": "ESP_PHY_ENABLE_CERT_TEST", - "range": null, - "title": "Enable RF certification test functions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_PARTIAL", - "name": "ESP_PHY_RF_CAL_PARTIAL", - "range": null, - "title": "Calibration partial", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_NONE", - "name": "ESP_PHY_RF_CAL_NONE", - "range": null, - "title": "Calibration none", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_FULL", - "name": "ESP_PHY_RF_CAL_FULL", - "range": null, - "title": "Calibration full", - "type": "bool" - } - ], - "depends_on": "ESP_PHY_ENABLED", - "help": "Select PHY calibration mode. During RF initialization, the partial calibration\nmethod is used by default for RF calibration. Full calibration takes about 100ms\nmore than partial calibration. If boot duration is not critical, it is suggested\nto use the full calibration method. No calibration method is only used when the\ndevice wakes up from deep sleep.", - "id": "component-config-phy-calibration-mode", - "name": "ESP_PHY_CALIBRATION_MODE", - "title": "Calibration mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": null, - "id": "ESP_PHY_CALIBRATION_MODE", - "name": "ESP_PHY_CALIBRATION_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_PHY_IMPROVE_RX_11B && ESP_PHY_ENABLED", - "help": "This is a workaround to improve Wi-Fi receive 11b pkts for some modules using AC-DC power supply with\nhigh interference, enable this option will sacrifice Wi-Fi OFDM receive performance.\nBut to guarantee 11b receive performance serves as a bottom line in this case.", - "id": "ESP_PHY_IMPROVE_RX_11B", - "name": "ESP_PHY_IMPROVE_RX_11B", - "range": null, - "title": "Improve Wi-Fi receive 11b pkts", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If enabled, there will be some logs while pll tracking", - "id": "ESP_PHY_PLL_TRACK_DEBUG", - "name": "ESP_PHY_PLL_TRACK_DEBUG", - "range": null, - "title": "Enable pll track logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Select to support record and query phy used time.", - "id": "ESP_PHY_RECORD_USED_TIME", - "name": "ESP_PHY_RECORD_USED_TIME", - "range": null, - "title": "Record PHY used time", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-phy", - "title": "PHY", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, startup code configures dynamic frequency scaling.\nMax CPU frequency is set to DEFAULT_CPU_FREQ_MHZ setting,\nmin frequency is set to XTAL frequency.\nIf disabled, DFS will not be active until the application\nconfigures it using esp_pm_configure function.", - "id": "PM_DFS_INIT_AUTO", - "name": "PM_DFS_INIT_AUTO", - "range": null, - "title": "Enable dynamic frequency scaling (DFS) at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, esp_pm_* functions will keep track of the amount of time\neach of the power management locks has been held, and esp_pm_dump_locks\nfunction will print this information.\nThis feature can be used to analyze which locks are preventing the chip\nfrom going into a lower power state, and see what time the chip spends\nin each power saving mode. This feature does incur some run-time\noverhead, so should typically be disabled in production builds.", - "id": "PM_PROFILING", - "name": "PM_PROFILING", - "range": null, - "title": "Enable profiling counters for PM locks", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, some GPIOs will be used to signal events such as RTOS ticks,\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\nfile for the list of GPIOs.\nThis feature is intended to be used when analyzing/debugging behavior\nof power management implementation, and should be kept disabled in\napplications.", - "id": "PM_TRACE", - "name": "PM_TRACE", - "range": null, - "title": "Enable debug tracing of PM using GPIOs", - "type": "bool" - } - ], - "depends_on": "(!FREERTOS_SMP && SOC_PM_SUPPORTED) || __DOXYGEN__", - "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", - "id": "PM_ENABLE", - "name": "PM_ENABLE", - "range": null, - "title": "Support for power management", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LIGHT_SLEEP_SUPPORTED", - "help": "If enabled, about 2.1KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 310us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", - "id": "PM_SLP_IRAM_OPT", - "name": "PM_SLP_IRAM_OPT", - "range": null, - "title": "Put lightsleep related codes in internal RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, about 180Bytes of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 20us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", - "id": "PM_RTOS_IDLE_OPT", - "name": "PM_RTOS_IDLE_OPT", - "range": null, - "title": "Put RTOS IDLE related codes in internal RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "This feature is intended to disable all GPIO pins at automantic sleep to get a lower power mode.\nIf enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA current.\nIf you want to specifically use some pins normally as chip wakes when chip sleeps,\nyou can call 'gpio_sleep_sel_dis' to disable this feature on those pins.\nYou can also keep this feature on and call 'gpio_sleep_set_direction' and 'gpio_sleep_set_pull_mode'\nto have a different GPIO configuration at sleep.\nWarning: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", - "id": "PM_SLP_DISABLE_GPIO", - "name": "PM_SLP_DISABLE_GPIO", - "range": null, - "title": "Disable all GPIO when chip at sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PM_SLP_DEFAULT_PARAMS_OPT", - "name": "PM_SLP_DEFAULT_PARAMS_OPT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (SOC_CPU_IN_TOP_DOMAIN && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP)", - "help": "This option is invisible to users, and it is only used for ci testing,\nenabling it in the application will increase the sleep and wake-up time overhead", - "id": "PM_CHECK_SLEEP_RETENTION_FRAME", - "name": "PM_CHECK_SLEEP_RETENTION_FRAME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "The value of this option determines the calibration interval of the RTC_FAST/SLOW clock during sleep when\npower management is enabled. When it is configured as N, the RTC_FAST/SLOW clock will be calibrated\nevery N times of lightsleep.\nDecreasing this value will increase the time the chip is in the active state, thereby increasing the\naverage power consumption of the chip.\nIncreasing this value can reduce the average power consumption, but when the external environment changes\ndrastically and the chip RTC_FAST/SLOW oscillator frequency drifts, it may cause system instability.", - "id": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", - "name": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", - "range": null, - "title": "Calibrate the RTC_FAST/SLOW clock every N times of light sleep", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "help": "Cache tag memory and CPU both belong to the CPU power domain.\nESP chips supports saving and restoring Cache tag memory before and after sleep,\nthis feature supports accesses to the external memory that was cached before sleep still\nbe cached when the CPU wakes up from a powerdowned CPU lightsleep.\nThis option controls the restore method for Cache tag memory in lightsleep.\nIf this option is enabled, the I/D-cache tag memory will be backuped to the internal RAM\nbefore sleep and restored upon wakeup.\nDepending on the the cache configuration, if this option is enabled,\nit will consume up to 9 KB of internal RAM.\nIf this option is disabled, all cached data won't be kept after sleep,\nthe DCache will be writeback before sleep and invalid all cached data after sleep,\nall accesses to external memory(Flash/PSRAM) will be cache missed after waking up,\nresulting in performance degradation due to increased memory accesses latency.", - "id": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", - "name": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", - "range": null, - "title": "Restore I/D-cache tag memory after power down CPU light sleep", - "type": "bool" - } - ], - "depends_on": "SOC_PM_SUPPORT_CPU_PD", - "help": "If enabled, the CPU will be powered down in light sleep,\nESP chips supports saving and restoring CPU's running context before and after light sleep,\nthe feature provides applications with seamless CPU powerdowned lightsleep without user awareness.\nBut this will takes up some internal memory.\nOn esp32c3 soc, enabling this option will consume 1.68 KB of internal RAM\nand will reduce sleep current consumption by about 100 uA.\nOn esp32s3 soc, enabling this option will consume 8.58 KB of internal RAM\nand will reduce sleep current consumption by about 650 uA.", - "id": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "name": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "range": null, - "title": "Power down CPU in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED", - "help": "If enabled, digital peripherals will be powered down in light sleep, it will reduce sleep\ncurrent consumption by about 100 uA. Chip will save/restore register context at sleep/wake\ntime to keep the system running. Enabling this option will increase static RAM and heap usage,\nthe actual cost depends on the peripherals you have initialized. In order to save/restore the\ncontext of the necessary hardware for FreeRTOS to run, it will need at least 4.55 KB free heap\nat sleep time. Otherwise sleep will not power down the peripherals.\n\nNote1: Please use this option with caution, the current IDF does not support the retention of\nall peripherals. When the digital peripherals are powered off and a sleep and wake-up is completed,\nthe peripherals that have not saved the running context are equivalent to performing a reset.\n!!! Please confirm the peripherals used in your application and their sleep retention support status\nbefore enabling this option, peripherals sleep retention driver support status is tracked in\npower_management.rst\n\nNote2: When this option is enabled simultaneously with FREERTOS_USE_TICKLESS_IDLE, since the UART will\nbe powered down, the uart FIFO will be flushed before sleep to avoid data loss, however, this has the\npotential to block the sleep process and cause the wakeup time to be skipped, which will cause the tick\nof freertos to not be compensated correctly when returning from sleep and cause the system to crash.\nTo avoid this, you can increase FREERTOS_IDLE_TIME_BEFORE_SLEEP threshold in menuconfig.", - "id": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "name": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "range": null, - "title": "Power down Digital Peripheral in light sleep (EXPERIMENTAL)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", - "name": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register entry and exit callbacks which are called before and after\nentering auto light sleep.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in callback and\nhence it is highly recommended to keep them as short as possible", - "id": "PM_LIGHT_SLEEP_CALLBACKS", - "name": "PM_LIGHT_SLEEP_CALLBACKS", - "range": null, - "title": "Enable registration of pm light sleep callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-power-management", - "title": "Power Management", - "type": "menu" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-esp-psram", - "title": "ESP PSRAM", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "help": "Place ISR ringbuf functions (like xRingbufferSendFromISR/xRingbufferReceiveFromISR) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled\nor from an IRAM interrupt context.\n\nThis option is not compatible with ESP-IDF drivers which are configured to\nrun the ISR from an IRAM context, e.g. CONFIG_UART_ISR_IN_IRAM.", - "id": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "name": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place ISR ringbuf functions into flash", - "type": "bool" - } - ], - "depends_on": null, - "help": "Place non-ISR ringbuf functions (like xRingbufferCreate/xRingbufferSend) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled.", - "id": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "name": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place non-ISR ringbuf functions into flash", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-ringbuf", - "title": "ESP Ringbuf", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "range": null, - "title": "Security level low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "range": null, - "title": "Security level medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "range": null, - "title": "Security level high", - "type": "bool" - } - ], - "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "Configure the DPA protection security level", - "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "title": "DPA protection level", - "type": "choice" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", - "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "range": null, - "title": "Enable crypto DPA protection at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "id": "component-config-esp-security-specific-crypto-dpa-protection", - "title": "Crypto DPA Protection", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", - "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": "Forcefully enable ECC constant time point multiplication operations", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-security-specific", - "title": "ESP Security Specific", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", - "range": null, - "title": "40 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", - "range": null, - "title": "80 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", - "range": null, - "title": "160 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "CPU frequency to be set on application startup.", - "id": "component-config-esp-system-settings-cpu-frequency", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "title": "CPU frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", - "id": "ESP_SYSTEM_PANIC_PRINT_HALT", - "name": "ESP_SYSTEM_PANIC_PRINT_HALT", - "range": null, - "title": "Print registers and halt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", - "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "range": null, - "title": "Print registers and reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Just resets the processor without outputting anything", - "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "range": null, - "title": "Silent reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_GDBSTUB_ENABLED && ", - "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", - "id": "ESP_SYSTEM_PANIC_GDBSTUB", - "name": "ESP_SYSTEM_PANIC_GDBSTUB", - "range": null, - "title": "GDBStub on panic", - "type": "bool" - } - ], - "depends_on": null, - "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", - "id": "component-config-esp-system-settings-panic-handler-behaviour", - "name": "ESP_SYSTEM_PANIC", - "title": "Panic handler behaviour", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", - "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "range": [ - 0, - 99 - ], - "title": "Panic reboot delay (Seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Only initialize and use the main core.", - "id": "ESP_SYSTEM_SINGLE_CORE_MODE", - "name": "ESP_SYSTEM_SINGLE_CORE_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_XTAL", - "name": "ESP_SYSTEM_RTC_EXT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_OSC", - "name": "ESP_SYSTEM_RTC_EXT_OSC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", - "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", - "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "range": null, - "title": "Bootstrap cycles for external 32kHz crystal", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": null, - "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", - "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "range": null, - "title": "Enable RTC fast memory for dynamic allocations", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT be used for production.", - "id": "ESP_SYSTEM_USE_EH_FRAME", - "name": "ESP_SYSTEM_USE_EH_FRAME", - "range": null, - "title": "Generate and use eh_frame for backtracing", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", - "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", - "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "range": null, - "title": "Make LP core reserved memory executable from HP core", - "type": "bool" - } - ], - "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "range": null, - "title": "Enable IRAM/DRAM split protection", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", - "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "range": null, - "title": "Lock memory protection settings", - "type": "bool" - } - ], - "depends_on": "SOC_MEMPROT_SUPPORTED", - "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE", - "range": null, - "title": "Enable memory protection", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-memory-protection", - "title": "Memory protection", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event queue size in different application.", - "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "range": null, - "title": "System event queue size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event task stack size in different application.", - "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "range": null, - "title": "Event loop task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", - "id": "ESP_MAIN_TASK_STACK_SIZE", - "name": "ESP_MAIN_TASK_STACK_SIZE", - "range": null, - "title": "Main task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU0", - "name": "ESP_MAIN_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU1", - "name": "ESP_MAIN_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", - "id": "component-config-esp-system-settings-main-task-core-affinity", - "name": "ESP_MAIN_TASK_AFFINITY", - "title": "Main task core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", - "id": "ESP_MINIMAL_SHARED_STACK_SIZE", - "name": "ESP_MINIMAL_SHARED_STACK_SIZE", - "range": null, - "title": "Minimal allowed size for shared stack", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_DEFAULT", - "name": "ESP_CONSOLE_UART_DEFAULT", - "range": null, - "title": "Default: UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", - "help": null, - "id": "ESP_CONSOLE_USB_CDC", - "name": "ESP_CONSOLE_USB_CDC", - "range": null, - "title": "USB CDC", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG", - "range": null, - "title": "USB Serial/JTAG Controller", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM", - "name": "ESP_CONSOLE_UART_CUSTOM", - "range": null, - "title": "Custom UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_NONE", - "name": "ESP_CONSOLE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", - "id": "component-config-esp-system-settings-channel-for-console-output", - "name": "ESP_CONSOLE_UART", - "title": "Channel for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_SECONDARY_NONE", - "name": "ESP_CONSOLE_SECONDARY_NONE", - "range": null, - "title": "No secondary console", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", - "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", - "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "range": null, - "title": "USB_SERIAL_JTAG PORT", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", - "id": "component-config-esp-system-settings-channel-for-console-secondary-output", - "name": "ESP_CONSOLE_SECONDARY", - "title": "Channel for console secondary output", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART", - "name": "ESP_CONSOLE_UART", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "range": null, - "title": "UART1", - "type": "bool" - } - ], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", - "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", - "name": "ESP_CONSOLE_UART_NUM", - "title": "UART peripheral to use for console output (0-1)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART_NUM", - "name": "ESP_CONSOLE_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_TX_GPIO", - "name": "ESP_CONSOLE_UART_TX_GPIO", - "range": null, - "title": "UART TX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_RX_GPIO", - "name": "ESP_CONSOLE_UART_RX_GPIO", - "range": null, - "title": "UART RX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART", - "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_BAUDRATE", - "name": "ESP_CONSOLE_UART_BAUDRATE", - "range": [ - 1200, - 4000000 - ], - "title": "UART console baud rate", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", - "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "range": null, - "title": "Size of USB CDC RX buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", - "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "range": null, - "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_INT_WDT", - "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", - "id": "ESP_INT_WDT_TIMEOUT_MS", - "name": "ESP_INT_WDT_TIMEOUT_MS", - "range": [ - 10, - 10000 - ], - "title": "Interrupt watchdog timeout (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", - "help": "Also detect if interrupts on CPU 1 are disabled for too long.", - "id": "ESP_INT_WDT_CHECK_CPU1", - "name": "ESP_INT_WDT_CHECK_CPU1", - "range": null, - "title": "Also watch CPU1 tick interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", - "id": "ESP_INT_WDT", - "name": "ESP_INT_WDT", - "range": null, - "title": "Interrupt watchdog", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_EN", - "help": null, - "id": "ESP_TASK_WDT_USE_ESP_TIMER", - "name": "ESP_TASK_WDT_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_PANIC", - "name": "ESP_TASK_WDT_PANIC", - "range": null, - "title": "Invoke panic handler on Task Watchdog timeout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_TIMEOUT_S", - "name": "ESP_TASK_WDT_TIMEOUT_S", - "range": [ - 1, - 60 - ], - "title": "Task Watchdog timeout period (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "range": null, - "title": "Watch CPU0 Idle Task", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", - "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "range": null, - "title": "Watch CPU1 Idle Task", - "type": "bool" - } - ], - "depends_on": "ESP_TASK_WDT_EN", - "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", - "id": "ESP_TASK_WDT_INIT", - "name": "ESP_TASK_WDT_INIT", - "range": null, - "title": "Initialize Task Watchdog Timer on startup", - "type": "bool" - } - ], - "depends_on": null, - "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_EN", - "name": "ESP_TASK_WDT_EN", - "range": null, - "title": "Enable Task Watchdog Timer", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", - "id": "ESP_XT_WDT_TIMEOUT", - "name": "ESP_XT_WDT_TIMEOUT", - "range": null, - "title": "XTAL32K watchdog timeout period", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", - "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "range": null, - "title": "Automatically switch to BACKUP32K_CLK when timer expires", - "type": "bool" - } - ], - "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", - "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", - "id": "ESP_XT_WDT", - "name": "ESP_XT_WDT", - "range": null, - "title": "Initialize XTAL32K watchdog timer on startup", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", - "id": "ESP_PANIC_HANDLER_IRAM", - "name": "ESP_PANIC_HANDLER_IRAM", - "range": null, - "title": "Place panic handler code in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", - "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", - "id": "ESP_DEBUG_STUBS_ENABLE", - "name": "ESP_DEBUG_STUBS_ENABLE", - "range": null, - "title": "OpenOCD debug stubs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", - "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "range": null, - "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", - "id": "ESP_DEBUG_OCDAWARE", - "name": "ESP_DEBUG_OCDAWARE", - "range": null, - "title": "Make exception and panic handlers JTAG/OCD aware", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ", - "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "range": null, - "title": "Level 5 interrupt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!BTDM_CTRL_HLI && ", - "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "range": null, - "title": "Level 4 interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL", - "title": "Interrupt level to use for Interrupt Watchdog and other system checks", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.51V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.64V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.76V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.92V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "3.10V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "3.27V", - "type": "bool" - } - ], - "depends_on": "ESP_BROWNOUT_DET", - "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", - "id": "component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", - "name": "ESP_BROWNOUT_DET_LVL_SEL", - "title": "Brownout voltage level", - "type": "choice" - } - ], - "depends_on": "!IDF_ENV_FPGA", - "help": "The ESP32-C3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", - "id": "ESP_BROWNOUT_DET", - "name": "ESP_BROWNOUT_DET", - "range": null, - "title": "Hardware brownout detect & reset", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_BROWNOUT_DET_LVL", - "name": "ESP_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-brownout-detector", - "title": "Brownout Detector", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", - "id": "ESP_SYSTEM_BROWNOUT_INTR", - "name": "ESP_SYSTEM_BROWNOUT_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", - "id": "ESP_SYSTEM_HW_STACK_GUARD", - "name": "ESP_SYSTEM_HW_STACK_GUARD", - "range": null, - "title": "Hardware stack guard", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", - "id": "ESP_SYSTEM_BBPLL_RECALIB", - "name": "ESP_SYSTEM_BBPLL_RECALIB", - "range": null, - "title": "Re-calibration BBPLL at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", - "id": "ESP_SYSTEM_HW_PC_RECORD", - "name": "ESP_SYSTEM_HW_PC_RECORD", - "range": null, - "title": "Hardware PC recording", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings", - "title": "ESP System Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", - "id": "ESP_IPC_TASK_STACK_SIZE", - "name": "ESP_IPC_TASK_STACK_SIZE", - "range": [ - 512, - 65536 - ], - "title": "Inter-Processor Call (IPC) task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE", - "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", - "id": "ESP_IPC_USES_CALLERS_PRIORITY", - "name": "ESP_IPC_USES_CALLERS_PRIORITY", - "range": null, - "title": "IPC runs at caller's priority", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", - "id": "ESP_IPC_ISR_ENABLE", - "name": "ESP_IPC_ISR_ENABLE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ipc-inter-processor-call-", - "title": "IPC (Inter-Processor Call)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "If enabled, esp_timer_dump will dump information such as number of times the timer was started,\nnumber of times the timer has triggered, and the total time it took for the callback to run.\nThis option has some effect on timer performance and the amount of memory used for timer\nstorage, and should only be used for debugging/testing purposes.", - "id": "ESP_TIMER_PROFILING", - "name": "ESP_TIMER_PROFILING", - "range": null, - "title": "Enable esp_timer profiling features", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_RTC_TIMER", - "name": "ESP_TIME_FUNCS_USE_RTC_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_ESP_TIMER", - "name": "ESP_TIME_FUNCS_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_NONE", - "name": "ESP_TIME_FUNCS_USE_NONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the stack size of \"timer_task\" task. This task is used\nto dispatch callbacks of timers created using ets_timer and esp_timer\nAPIs. If you are seing stack overflow errors in timer task, increase\nthis value.\n\nNote that this is not the same as FreeRTOS timer task. To configure\nFreeRTOS timer task size, see \"FreeRTOS timer task stack size\" option\nin \"FreeRTOS\".", - "id": "ESP_TIMER_TASK_STACK_SIZE", - "name": "ESP_TIMER_TASK_STACK_SIZE", - "range": [ - 2048, - 65536 - ], - "title": "High-resolution timer task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the interrupt priority level for esp_timer ISR.\nA higher value reduces interrupt latency by minimizing the timer processing delay.", - "id": "ESP_TIMER_INTERRUPT_LEVEL", - "name": "ESP_TIMER_INTERRUPT_LEVEL", - "range": [ - 1, - 1 - ], - "title": "Interrupt level", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This shows some hidden features of esp_timer.\nNote that they may break other features, use them with care.", - "id": "ESP_TIMER_SHOW_EXPERIMENTAL", - "name": "ESP_TIMER_SHOW_EXPERIMENTAL", - "range": null, - "title": "show esp_timer's experimental features", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY", - "name": "ESP_TIMER_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_CPU0", - "name": "ESP_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_CPU1", - "name": "ESP_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) esp_timer task is processed by CPU0.\n- \"CPU1\": esp_timer task is processed by CPU1.\n- \"No affinity\": esp_timer task can be processed by any CPU.", - "id": "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity", - "name": "ESP_TIMER_TASK_AFFINITY", - "title": "esp_timer task core affinity", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_CPU0", - "name": "ESP_TIMER_ISR_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_CPU1", - "name": "ESP_TIMER_ISR_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", - "name": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) timer interrupt is processed by CPU0.\n- \"CPU1\": timer interrupt is processed by CPU1.\n- \"No affinity\": timer interrupt can be processed by any CPU. It helps\nto reduce latency but there is a disadvantage it leads to the timer ISR\nrunning on every core. It increases the CPU time usage for timer ISRs\nby N on an N-core system.", - "id": "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity", - "name": "ESP_TIMER_ISR_AFFINITY", - "title": "timer interrupt core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also avalible).\n- ESP_TIMER_TASK - Timer callbacks are dispatched from a high-priority esp_timer task.\n- ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.\nThe ISR dispatch can be used, in some cases, when a callback is very simple\nor need a lower-latency.", - "id": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", - "name": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", - "range": null, - "title": "Support ISR dispatch method", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "ESP_TIMER_IMPL_TG0_LAC", - "name": "ESP_TIMER_IMPL_TG0_LAC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32", - "help": null, - "id": "ESP_TIMER_IMPL_SYSTIMER", - "name": "ESP_TIMER_IMPL_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-timer-high-resolution-timer-", - "title": "ESP Timer (High Resolution Timer)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_WIFI_ENABLED", - "name": "ESP_WIFI_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_CONTROLLER_TARGET", - "name": "ESP_WIFI_CONTROLLER_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_TARGET_ESP32", - "name": "ESP_WIFI_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "SOC_WIRELESS_HOST_SUPPORTED", - "help": null, - "id": "ESP_HOST_WIFI_ENABLED", - "name": "ESP_HOST_WIFI_ENABLED", - "range": null, - "title": "Host WiFi Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static rx buffers are allocated when esp_wifi_init is called, they are not freed\nuntil esp_wifi_deinit is called.\n\nWiFi hardware use these buffers to receive all 802.11 frames.\nA higher number may allow higher throughput but increases memory use. If ESP_WIFI_AMPDU_RX_ENABLED\nis enabled, this value is recommended to set equal or bigger than ESP_WIFI_RX_BA_WIN in order to\nachieve better throughput and compatibility with both stations and APs.", - "id": "ESP_WIFI_STATIC_RX_BUFFER_NUM", - "name": "ESP_WIFI_STATIC_RX_BUFFER_NUM", - "range": [ - 2, - 25 - ], - "title": "Max number of WiFi static RX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated\n(provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of\nthe received data frame.\n\nFor each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers\nit to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has\nsuccessfully received the data frame.\n\nFor some applications, WiFi data frames may be received faster than the application can\nprocess them. In these cases we may run out of memory if RX buffer number is unlimited (0).\n\nIf a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.", - "id": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", - "name": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", - "range": [ - 0, - 128 - ], - "title": "Max number of WiFi dynamic RX buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_STATIC_TX_BUFFER", - "name": "ESP_WIFI_STATIC_TX_BUFFER", - "range": null, - "title": "Static", - "type": "bool" - }, - { - "children": [], - "depends_on": "!(SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND) && ", - "help": null, - "id": "ESP_WIFI_DYNAMIC_TX_BUFFER", - "name": "ESP_WIFI_DYNAMIC_TX_BUFFER", - "range": null, - "title": "Dynamic", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select type of WiFi TX buffers:\n\nIf \"Static\" is selected, WiFi TX buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static TX buffer is fixed to about 1.6KB.\n\nIf \"Dynamic\" is selected, each WiFi TX buffer is allocated as needed when a data frame is\ndelivered to the Wifi driver from the TCP/IP stack. The buffer is freed after the data frame\nhas been sent by the WiFi driver. The size of each dynamic TX buffer depends on the length\nof each data frame sent by the TCP/IP layer.\n\nIf PSRAM is enabled, \"Static\" should be selected to guarantee enough WiFi TX buffers.\nIf PSRAM is disabled, \"Dynamic\" should be selected to improve the utilization of RAM.", - "id": "component-config-wi-fi-type-of-wifi-tx-buffers", - "name": "ESP_WIFI_TX_BUFFER", - "title": "Type of WiFi TX buffers", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_TX_BUFFER_TYPE", - "name": "ESP_WIFI_TX_BUFFER_TYPE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_STATIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static RX buffers are allocated when esp_wifi_init() is called, they are not released\nuntil esp_wifi_deinit() is called.\n\nFor each transmitted data frame from the higher layer TCP/IP stack, the WiFi driver makes a\ncopy of it in a TX buffer. For some applications especially UDP applications, the upper\nlayer can deliver frames faster than WiFi layer can transmit. In these cases, we may run out\nof TX buffers.", - "id": "ESP_WIFI_STATIC_TX_BUFFER_NUM", - "name": "ESP_WIFI_STATIC_TX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi static TX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi cache TX buffer number.\n\nFor each TX packet from uplayer, such as LWIP etc, WiFi driver needs to allocate a static TX\nbuffer and makes a copy of uplayer packet. If WiFi driver fails to allocate the static TX buffer,\nit caches the uplayer packets to a dedicated buffer queue, this option is used to configure the\nsize of the cached TX queue.", - "id": "ESP_WIFI_CACHE_TX_BUFFER_NUM", - "name": "ESP_WIFI_CACHE_TX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi cache TX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_DYNAMIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,\nit depends on the size of each transmitted data frame.\n\nFor each transmitted frame from the higher layer TCP/IP stack, the WiFi driver makes a copy\nof it in a TX buffer. For some applications, especially UDP applications, the upper layer\ncan deliver frames faster than WiFi layer can transmit. In these cases, we may run out of TX\nbuffers.", - "id": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", - "name": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", - "range": [ - 1, - 128 - ], - "title": "Max number of WiFi dynamic TX buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", - "name": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", - "range": null, - "title": "Static", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", - "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", - "range": null, - "title": "Dynamic", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select type of WiFi RX MGMT buffers:\n\nIf \"Static\" is selected, WiFi RX MGMT buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static RX MGMT buffer is fixed to about 500 Bytes.\n\nIf \"Dynamic\" is selected, each WiFi RX MGMT buffer is allocated as needed when a MGMT data frame is\nreceived. The MGMT buffer is freed after the MGMT data frame has been processed by the WiFi driver.", - "id": "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers", - "name": "ESP_WIFI_MGMT_RX_BUFFER", - "title": "Type of WiFi RX MGMT buffers", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", - "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi RX_MGMT buffers.\n\nFor Management buffers, the number of dynamic and static management buffers is the same.\nIn order to prevent memory fragmentation, the management buffer type should be set to static first.", - "id": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", - "name": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", - "range": [ - 1, - 10 - ], - "title": "Max number of WiFi RX MGMT buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_CSI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable CSI(Channel State Information) feature. CSI takes about\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM KB of RAM. If CSI is not used, it is better to disable\nthis feature in order to save memory.", - "id": "ESP_WIFI_CSI_ENABLED", - "name": "ESP_WIFI_CSI_ENABLED", - "range": null, - "title": "WiFi CSI(Channel State Information)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_AMPDU_TX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the size of WiFi Block Ack TX window. Generally a bigger value means higher throughput but\nmore memory. Most of time we should NOT change the default value unless special reason, e.g.\ntest the maximum UDP TX throughput with iperf etc. For iperf test in shieldbox, the recommended\nvalue is 9~12.", - "id": "ESP_WIFI_TX_BA_WIN", - "name": "ESP_WIFI_TX_BA_WIN", - "range": [ - 2, - 32 - ], - "title": "WiFi AMPDU TX BA window size", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable AMPDU TX feature", - "id": "ESP_WIFI_AMPDU_TX_ENABLED", - "name": "ESP_WIFI_AMPDU_TX_ENABLED", - "range": null, - "title": "WiFi AMPDU TX", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_AMPDU_RX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and better\ncompatibility but more memory. Most of time we should NOT change the default value unless special\nreason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the\nrecommended value is 9~12. If PSRAM is used and WiFi memory is preferred to allocate in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", - "id": "ESP_WIFI_RX_BA_WIN", - "name": "ESP_WIFI_RX_BA_WIN", - "range": [ - 2, - 32 - ], - "title": "WiFi AMPDU RX BA window size", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable AMPDU RX feature", - "id": "ESP_WIFI_AMPDU_RX_ENABLED", - "name": "ESP_WIFI_AMPDU_RX_ENABLED", - "range": null, - "title": "WiFi AMPDU RX", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_CACHE_TX_BUFFER_NUM >= 2 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable AMSDU TX feature", - "id": "ESP_WIFI_AMSDU_TX_ENABLED", - "name": "ESP_WIFI_AMSDU_TX_ENABLED", - "range": null, - "title": "WiFi AMSDU TX", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi NVS flash", - "id": "ESP_WIFI_NVS_ENABLED", - "name": "ESP_WIFI_NVS_ENABLED", - "range": null, - "title": "WiFi NVS flash", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_TASK_PINNED_TO_CORE_0", - "name": "ESP_WIFI_TASK_PINNED_TO_CORE_0", - "range": null, - "title": "Core 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_TASK_PINNED_TO_CORE_1", - "name": "ESP_WIFI_TASK_PINNED_TO_CORE_1", - "range": null, - "title": "Core 1", - "type": "bool" - } - ], - "depends_on": "!FREERTOS_UNICORE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Pinned WiFi task to core 0 or core 1.", - "id": "component-config-wi-fi-wifi-task-core-id", - "name": "ESP_WIFI_TASK_CORE_ID", - "title": "WiFi Task Core ID", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However\nthe default length of a beacon frame can simultaneously hold only five root node identifier structures,\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurrence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will\ndetect five of the root nodes, resolve the conflict, and re-detect more root nodes. This process will\nrepeat until all root node conflicts are resolved. However this process can generally take a very long\ntime.\n\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\ndetected simultaneously. Each additional root node will require 36 bytes and should be added on top of\nthe default beacon frame length of\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\nframe length as\n932 (752+36*5).\n\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be\nidentified more quickly.", - "id": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", - "name": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", - "range": [ - 752, - 1256 - ], - "title": "Max length of WiFi SoftAP Beacon", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the maximum number of Wi-Fi management short buffers. These buffers are dynamically allocated,\nwith their size determined by the length of the management packet to be sent. When a management\npacket is less than 64 bytes, the Wi-Fi driver classifies it as a short management packet and\nassigns it to one of these buffers.", - "id": "ESP_WIFI_MGMT_SBUF_NUM", - "name": "ESP_WIFI_MGMT_SBUF_NUM", - "range": [ - 6, - 32 - ], - "title": "WiFi mgmt short buffer number", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place frequently called Wi-Fi library functions in IRAM.\nWhen this option is disabled, more than 10Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", - "id": "ESP_WIFI_IRAM_OPT", - "name": "ESP_WIFI_IRAM_OPT", - "range": null, - "title": "WiFi IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place additional frequently called Wi-Fi library functions\nin IRAM. When this option is disabled, more than 5Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", - "id": "ESP_WIFI_EXTRA_IRAM_OPT", - "name": "ESP_WIFI_EXTRA_IRAM_OPT", - "range": null, - "title": "WiFi EXTRA IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place frequently called Wi-Fi library RX functions in IRAM.\nWhen this option is disabled, more than 17Kbytes of IRAM memory will be saved\nbut Wi-Fi performance will be reduced.", - "id": "ESP_WIFI_RX_IRAM_OPT", - "name": "ESP_WIFI_RX_IRAM_OPT", - "range": null, - "title": "WiFi RX IRAM speed optimization", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable SAE-PK", - "id": "ESP_WIFI_ENABLE_SAE_PK", - "name": "ESP_WIFI_ENABLE_SAE_PK", - "range": null, - "title": "Enable SAE-PK", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable SAE support in softAP mode.", - "id": "ESP_WIFI_SOFTAP_SAE_SUPPORT", - "name": "ESP_WIFI_SOFTAP_SAE_SUPPORT", - "range": null, - "title": "Enable WPA3 Personal(SAE) SoftAP", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide\nfor details.", - "id": "ESP_WIFI_ENABLE_WPA3_SAE", - "name": "ESP_WIFI_ENABLE_WPA3_SAE", - "range": null, - "title": "Enable WPA3-Personal", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to allow the device to establish OWE connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide\nfor details.", - "id": "ESP_WIFI_ENABLE_WPA3_OWE_STA", - "name": "ESP_WIFI_ENABLE_WPA3_OWE_STA", - "range": null, - "title": "Enable OWE STA", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place called Wi-Fi library TBTT process and receive beacon functions in IRAM.\nSome functions can be put in IRAM either by ESP_WIFI_IRAM_OPT and ESP_WIFI_RX_IRAM_OPT, or this one.\nIf already enabled ESP_WIFI_IRAM_OPT, the other 7.3KB IRAM memory would be taken by this option.\nIf already enabled ESP_WIFI_RX_IRAM_OPT, the other 1.3KB IRAM memory would be taken by this option.\nIf neither of them are enabled, the other 7.4KB IRAM memory would be taken by this option.\nWi-Fi power-save mode average current would be reduced if this option is enabled.", - "id": "ESP_WIFI_SLP_IRAM_OPT", - "name": "ESP_WIFI_SLP_IRAM_OPT", - "range": null, - "title": "WiFi SLP IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station enters the active state,\nit will work for at least ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME. If a data packet is received or sent\nduring this period, the time will be refreshed. If the time is up, but the station still has packets\nto receive or send, the time will also be refreshed. unit: milliseconds.", - "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", - "range": [ - 8, - 60 - ], - "title": "Minimum active time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. If no packet has been\nsent within ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME, a null data packet will be sent\nto maintain the connection with the AP. unit: seconds.", - "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", - "range": [ - 10, - 60 - ], - "title": "Maximum keep alive time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station knows through the beacon\nthat AP will send broadcast packet, it will wait for ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME\nbefore entering the sleep process. If a broadcast packet is received with more data bits, the time\nwill refreshed. unit: milliseconds.", - "id": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", - "range": [ - 10, - 30 - ], - "title": "Minimum wait broadcast data time", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": null, - "id": "ESP_WIFI_FTM_INITIATOR_SUPPORT", - "name": "ESP_WIFI_FTM_INITIATOR_SUPPORT", - "range": null, - "title": "FTM Initiator support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": null, - "id": "ESP_WIFI_FTM_RESPONDER_SUPPORT", - "name": "ESP_WIFI_FTM_RESPONDER_SUPPORT", - "range": null, - "title": "FTM Responder support", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_FTM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable feature Fine Timing Measurement for calculating WiFi Round-Trip-Time (RTT).", - "id": "ESP_WIFI_FTM_ENABLE", - "name": "ESP_WIFI_FTM_ENABLE", - "range": null, - "title": "WiFi FTM", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable power_management for station when disconnected.\nChip will do modem-sleep when rf module is not in use any more.", - "id": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", - "name": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", - "range": null, - "title": "Power Management for station at disconnected", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable GCMP support. GCMP support is compulsory for WiFi Suite-B support.", - "id": "ESP_WIFI_GCMP_SUPPORT", - "name": "ESP_WIFI_GCMP_SUPPORT", - "range": null, - "title": "WiFi GCMP Support(GCMP128 and GCMP256)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.", - "id": "ESP_WIFI_GMAC_SUPPORT", - "name": "ESP_WIFI_GMAC_SUPPORT", - "range": null, - "title": "WiFi GMAC Support(GMAC128 and GMAC256)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "WiFi module can be compiled without SoftAP to save code size.", - "id": "ESP_WIFI_SOFTAP_SUPPORT", - "name": "ESP_WIFI_SOFTAP_SUPPORT", - "range": null, - "title": "WiFi SoftAP Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_MAC_BB_PD && SOC_PM_SUPPORT_BEACON_WAKEUP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "The wifi modem automatically receives the beacon frame during light sleep.", - "id": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", - "name": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", - "range": null, - "title": "WiFi modem automatically receives the beacon", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Timeout time for close rf phy when beacon loss occurs, Unit: 1024 microsecond.", - "id": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", - "name": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", - "range": null, - "title": "Beacon loss timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Maximum number of consecutive lost beacons allowed, WiFi keeps Rx state when\nthe number of consecutive beacons lost is greater than the given threshold.", - "id": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", - "name": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", - "range": null, - "title": "Maximum number of consecutive lost beacons allowed", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Delta early time for rf phy on, When the beacon is lost, the next rf phy on will\nbe earlier the time specified by the configuration item, Unit: 32 microsecond.", - "id": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", - "name": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", - "range": null, - "title": "Delta early time for RF PHY on", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Delta timeout time for rf phy off, When the beacon is lost, the next rf phy off will\nbe delayed for the time specified by the configuration item. Unit: 1024 microsecond.", - "id": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", - "name": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", - "range": null, - "title": "Delta timeout time for RF PHY off", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Enable wifi sleep optimization when beacon loss occurs and immediately enter\nsleep mode when the WiFi module detects beacon loss.", - "id": "ESP_WIFI_SLP_BEACON_LOST_OPT", - "name": "ESP_WIFI_SLP_BEACON_LOST_OPT", - "range": null, - "title": "Wifi sleep optimize when beacon lost", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Maximum number of encrypted peers supported by espnow.\nThe number of hardware keys for encryption is fixed. And the espnow and SoftAP share the same\nhardware keys. So this configuration will affect the maximum connection number of SoftAP.\nMaximum espnow encrypted peers number + maximum number of connections of SoftAP = Max hardware\nkeys number. When using ESP mesh, this value should be set to a maximum of 6.", - "id": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", - "name": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", - "range": [ - 0, - 17 - ], - "title": "Maximum espnow encrypt peers number", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_NAN_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable WiFi Aware (NAN) feature.", - "id": "ESP_WIFI_NAN_ENABLE", - "name": "ESP_WIFI_NAN_ENABLE", - "range": null, - "title": "WiFi Aware", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_MBEDTLS_TLS_CLIENT && IDF_EXPERIMENTAL_FEATURES && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to support EAP with TLS v1.3.\nThis configuration still supports compatibility with EAP-TLS v1.2.\nPlease note that enabling this configuration will cause every application which\nuses TLS go for TLS1.3 if server supports that. TLS1.3 is still in development in mbedtls\nand there may be interoperability issues with this. Please modify your application to set\nmax version as TLS1.2 if you want to enable TLS1.3 only for WiFi connection.", - "id": "ESP_WIFI_EAP_TLS1_3", - "name": "ESP_WIFI_EAP_TLS1_3", - "range": null, - "title": "Enable EAP-TLS v1.3 Support for WiFi Enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to use MbedTLS TLS client for WPA2 enterprise connection.\nPlease note that from MbedTLS-3.0 onwards, MbedTLS does not support SSL-3.0\nTLS-v1.0, TLS-v1.1 versions. In case your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibility with older TLS versions.", - "id": "ESP_WIFI_MBEDTLS_TLS_CLIENT", - "name": "ESP_WIFI_MBEDTLS_TLS_CLIENT", - "range": null, - "title": "Use MbedTLS TLS client for WiFi Enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable the use of MbedTLS crypto APIs.\nThe internal crypto support within the supplicant is limited\nand may not suffice for all new security features, including WPA3.\n\nIt is recommended to always keep this option enabled. Additionally,\nnote that MbedTLS can leverage hardware acceleration if available,\nresulting in significantly faster cryptographic operations.", - "id": "ESP_WIFI_MBEDTLS_CRYPTO", - "name": "ESP_WIFI_MBEDTLS_CRYPTO", - "range": null, - "title": "Use MbedTLS crypto APIs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_WAPI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable WAPI-PSK\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).", - "id": "ESP_WIFI_WAPI_PSK", - "name": "ESP_WIFI_WAPI_PSK", - "range": null, - "title": "Enable WAPI PSK support", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 192 bit NSA suite-B.\nThis is necessary to support WPA3 192 bit security.", - "id": "ESP_WIFI_SUITE_B_192", - "name": "ESP_WIFI_SUITE_B_192", - "range": null, - "title": "Enable NSA suite B support with 192 bit key", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 802.11k APIs(RRM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with RRM enabled in sta config\nto make device ready for network assisted roaming.\nRRM: Radio measurements enable STAs to understand the radio environment,\nit enables STAs to observe and gather data on radio link performance\nand on the radio environment. Current implementation adds beacon report,\nlink measurement, neighbor report.", - "id": "ESP_WIFI_RRM_SUPPORT", - "name": "ESP_WIFI_RRM_SUPPORT", - "range": null, - "title": "Enable 802.11k APIs Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 802.11v APIs(BTM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with BTM enabled in sta config\nto make device ready for network assisted roaming.\nBTM: BSS transition management enables an AP to request a station to transition\nto a specific AP, or to indicate to a station a set of preferred APs.", - "id": "ESP_WIFI_WNM_SUPPORT", - "name": "ESP_WIFI_WNM_SUPPORT", - "range": null, - "title": "Enable 802.11v APIs Support", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).", - "id": "ESP_WIFI_11KV_SUPPORT", - "name": "ESP_WIFI_11KV_SUPPORT", - "range": null, - "title": "Enable 802.11k, 802.11v APIs Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_RRM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Keep scan results in cache, if not enabled, those\nwill be flushed immediately.", - "id": "ESP_WIFI_SCAN_CACHE", - "name": "ESP_WIFI_SCAN_CACHE", - "range": null, - "title": "Keep scan results in cache", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Multiband operation certification support.", - "id": "ESP_WIFI_MBO_SUPPORT", - "name": "ESP_WIFI_MBO_SUPPORT", - "range": null, - "title": "Enable Multi Band Operation Certification Support", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "WiFi RSSI threshold to trigger roaming value in dBm (-99 to -1). Values under -30 dbm\nmight lead to a flood of low rssi events. This interferes with normal functioning and\nTX/Rx performance.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", - "range": null, - "title": "WiFi RSSI threshold to trigger roaming", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Decide the offset by which to decrease the Low RSSI threshold set by ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD\nafter each failed attempt to roam. This allows for the station to keep scanning for better AP's after\nthe Low RSSI threshold is reached in a stepped manner, rather than only attempting to roam the first time\nthe current AP's RSSI breaches the set RSSI threshold.\nSetting 0 here may cause station to be flooded with low rssi events,\ntherefore that's not recommended to be kept.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", - "range": null, - "title": "Offset by which to reset the RSSI Threshold after attempt to roam.", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable to use a RSSI threshold to trigger roaming.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", - "range": null, - "title": "Use Low RSSI to trigger roaming.", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Threshold at which the station will begin scanning to find an AP with better RSSI.", - "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", - "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", - "range": null, - "title": "Threshold at which to begin periodic scanning for a better AP.", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Intervals at which station will periodically scan to check if better AP is available", - "id": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", - "name": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", - "range": null, - "title": "Time intervals (in seconds) at which station will initiate a scan", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Minimum RSSI difference b/w current AP and a potential roaming candidate AP\nto trigger a roaming attempt.", - "id": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", - "name": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", - "range": null, - "title": "RSSI difference b/w current AP and candidate AP to initiate connection", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Conduct periodic scans periodically to check if a better AP is available.", - "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", - "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", - "range": null, - "title": "Conduct periodic scans to check if a better AP is available", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-triggers", - "title": "Roaming triggers", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Roaming between APs that do not support 802.11v.\nThis will allow station to roam even when connection is not BTM supported,\nby forcefully disconnecting from current AP and connecting to better AP.", - "id": "ESP_WIFI_ROAMING_LEGACY_ROAMING", - "name": "ESP_WIFI_ROAMING_LEGACY_ROAMING", - "range": null, - "title": "Support Legacy roaming approach", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ROAMING_LEGACY_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Retry threshold after which the station should stop using Network Assisted\nroaming methods and start using legacy roaming instead.", - "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", - "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", - "range": null, - "title": "Retry count after which to switch to legacy roaming", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_WNM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Roaming between APs using network assisted Roaming.\nThis involves BSS Transition Management mechanisms outlined in 802.11v.\nNote that this moves the responsibility to the AP's network, and hence isn't\nguaranteed to cause the station to attempt to roam each time.", - "id": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", - "name": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", - "range": null, - "title": "Support Network Assisted roaming using 802.11v", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-methods", - "title": "Roaming Methods", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Minimum duration of active scanning per channel in milliseconds.", - "id": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", - "name": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", - "range": null, - "title": "Minimum duration (in milliseconds) of station's per channel active scan", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Maximum duration of active scanning per channel in milliseconds.", - "id": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", - "name": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", - "range": null, - "title": "Maximum duration (in milliseconds) of station's per channel active scan time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "If connected, duration for which the station will return to it's home channel for Tx/Rx of\nframes stored in buffers between scanning on consecutive channels.", - "id": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", - "name": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", - "range": null, - "title": "Home channel dwell time scanning between consecutive channels", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Channels your wireless network operates on to allow for faster scanning.\nSpecify the channels(between 1-14) in a comma separated manner.", - "id": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", - "name": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", - "range": null, - "title": "Preferred channel list for scanning", - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Duration for which the results from the most recent scans can be used\nby the roaming app for determining the roaming candidates.", - "id": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", - "name": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", - "range": null, - "title": "Scan results expiry window (in seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Max candidates that can be considered while scanning as a part of the\nnetwork at one time.", - "id": "ESP_WIFI_ROAMING_MAX_CANDIDATES", - "name": "ESP_WIFI_ROAMING_MAX_CANDIDATES", - "range": null, - "title": "Max Candidates in the network", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-scan-configuration", - "title": "Scan Configuration", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Time to wait (in seconds) by station before registering for the RSSI event again\nor start continuous montoring to find better AP.", - "id": "ESP_WIFI_ROAMING_BACKOFF_TIME", - "name": "ESP_WIFI_ROAMING_BACKOFF_TIME", - "range": null, - "title": "Default time to wait between subsequent roaming attempts.", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable this to send periodic neighbor report requests to the AP.\nThese neighbor report requests provide information about other APs in the same managed\nnetwork. This information is used for more intelligent roaming.", - "id": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", - "name": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", - "range": null, - "title": "Time interval (in seconds) between neighbor report requests to an AP", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "The RSSI threshold beyond which we start sending periodic neighbor report requests.", - "id": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", - "name": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", - "range": null, - "title": "Threshold for sending periodic neighbor report requests", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_RRM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "This option will enable station to keep sending RRM neighbor list request to AP and\nupdate its internal list.", - "id": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", - "name": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", - "range": null, - "title": "Send periodic neighbor report request to AP for internal list updation", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app", - "title": "Configure roaming App", - "type": "menu" - } - ], - "depends_on": "IDF_EXPERIMENTAL_FEATURES && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Espressif's roaming app to allow for efficient Wi-Fi roaming.\nThis includes configurable periodic environment scans, maintaining a cache of the\nbest APs, handling low rssi events etc.\n\nRisk Warning\nPlease note that this feature is still experimental and enabling this potentially can\nlead to unpredictable scanning, connection and roaming attempts.\nWe are still working on tuning and optimising this feature to ensure reliable and stable use.", - "id": "ESP_WIFI_ENABLE_ROAMING_APP", - "name": "ESP_WIFI_ENABLE_ROAMING_APP", - "range": null, - "title": "Advanced support for Wi-Fi Roaming (Experimental)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Easy Connect Support.", - "id": "ESP_WIFI_DPP_SUPPORT", - "name": "ESP_WIFI_DPP_SUPPORT", - "range": null, - "title": "Enable DPP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Fast Transition Support.", - "id": "ESP_WIFI_11R_SUPPORT", - "name": "ESP_WIFI_11R_SUPPORT", - "range": null, - "title": "Enable 802.11R (Fast Transition) Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable WPS registrar support in softAP mode.", - "id": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", - "name": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", - "range": null, - "title": "Add WPS Registrar support in SoftAP mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category\nwill use 346 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_TX_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_TX_STATS", - "range": null, - "title": "Enable Wi-Fi transmission statistics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WIFI_RX_STATS && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", - "range": null, - "title": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi reception statistics. Total support 2 access category. Each access category\nwill use 190 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_RX_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_RX_STATS", - "range": null, - "title": "Enable Wi-Fi reception statistics", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the maximum number of queue that can be aggregated by the STA in the A-MPDU carried in the\nHE TB PPDU.", - "id": "ESP_WIFI_TX_HETB_QUEUE_NUM", - "name": "ESP_WIFI_TX_HETB_QUEUE_NUM", - "range": null, - "title": "WiFi TX HE TB QUEUE number for STA HE TB PPDU transmission", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs.", - "id": "ESP_WIFI_ENABLE_DUMP_HESIGB", - "name": "ESP_WIFI_ENABLE_DUMP_HESIGB", - "range": null, - "title": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump MU CFO.", - "id": "ESP_WIFI_ENABLE_DUMP_MU_CFO", - "name": "ESP_WIFI_ENABLE_DUMP_MU_CFO", - "range": null, - "title": "Enable Wi-Fi dump MU CFO", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump NDPA frames.", - "id": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", - "name": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", - "range": null, - "title": "Enable Wi-Fi dump NDPA frames", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump BFRP frames.", - "id": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", - "name": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", - "range": null, - "title": "Enable Wi-Fi dump BFRP frames", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workarounds with various APs.\nEnabling this may cause inter operability issues with some APs.", - "id": "ESP_WIFI_WPS_STRICT", - "name": "ESP_WIFI_WPS_STRICT", - "range": null, - "title": "Strictly validate all WPS attributes", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilities to get the\nconfiguration in passphrase mode.\nNot recommended to be used since WPS credentials should not\nbe shared to other devices, making it in readable format increases\nthat risk, also passphrase requires pbkdf2 to convert in psk.", - "id": "ESP_WIFI_WPS_PASSPHRASE", - "name": "ESP_WIFI_WPS_PASSPHRASE", - "range": null, - "title": "Get WPA2 passphrase in WPS config", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "id": "component-config-wi-fi-wps-configuration-options", - "title": "WPS Configuration Options", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to print logging information from WPA supplicant,\nthis includes handshake information and key hex dumps depending\non the project logging level.\n\nEnabling this could increase the build size ~60kb\ndepending on the project logging level.", - "id": "ESP_WIFI_DEBUG_PRINT", - "name": "ESP_WIFI_DEBUG_PRINT", - "range": null, - "title": "Print debug messages from WPA Supplicant", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this to enable unity test for DPP.", - "id": "ESP_WIFI_TESTING_OPTIONS", - "name": "ESP_WIFI_TESTING_OPTIONS", - "range": null, - "title": "Add DPP testing code", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this configuration to free dynamic buffers during WiFi enterprise connection.\nThis will enable chip to reduce heap consumption during WiFi enterprise connection.", - "id": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", - "name": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", - "range": null, - "title": "Free dynamic buffers during WiFi enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this to enable/disable enterprise connection support.\n\ndisabling this will reduce binary size.\ndisabling this will disable the use of any esp_wifi_sta_wpa2_ent_* (as APIs will be meaningless)\n\nNote that when using bigger certificates on low-power chips without crypto\nhardware acceleration, it is recommended to adjust the task watchdog timer (TWDT)\nif it is enabled. For precise information on timing requirements, you can check\nperformance numbers at https://github.com/espressif/mbedtls/wiki/Performance-Numbers.", - "id": "ESP_WIFI_ENTERPRISE_SUPPORT", - "name": "ESP_WIFI_ENTERPRISE_SUPPORT", - "range": null, - "title": "Enable enterprise option", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-wi-fi", - "title": "Wi-Fi", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_ENABLE_TO_FLASH", - "name": "ESP_COREDUMP_ENABLE_TO_FLASH", - "range": null, - "title": "Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_ENABLE_TO_UART", - "name": "ESP_COREDUMP_ENABLE_TO_UART", - "range": null, - "title": "UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_ENABLE_TO_NONE", - "name": "ESP_COREDUMP_ENABLE_TO_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select place to store core dump: flash, uart or none (to disable core dumps generation).\n\nCore dumps to Flash are not available if PSRAM is used for task stacks.\n\nIf core dump is configured to be stored in flash and custom partition table is used add\ncorresponding entry to your CSV. For examples, please see predefined partition table CSV descriptions\nin the components/partition_table directory.", - "id": "component-config-core-dump-data-destination", - "name": "ESP_COREDUMP_TO_FLASH_OR_UART", - "title": "Data destination", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_DATA_FORMAT_BIN", - "name": "ESP_COREDUMP_DATA_FORMAT_BIN", - "range": null, - "title": "Binary format", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_DATA_FORMAT_ELF", - "name": "ESP_COREDUMP_DATA_FORMAT_ELF", - "range": null, - "title": "ELF format", - "type": "bool" - } - ], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", - "help": "Select the data format for core dump.", - "id": "component-config-core-dump-core-dump-data-format", - "name": "ESP_COREDUMP_DATA_FORMAT", - "title": "Core dump data format", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_CHECKSUM_CRC32", - "name": "ESP_COREDUMP_CHECKSUM_CRC32", - "range": null, - "title": "Use CRC32 for integrity verification", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF && ", - "help": null, - "id": "ESP_COREDUMP_CHECKSUM_SHA256", - "name": "ESP_COREDUMP_CHECKSUM_SHA256", - "range": null, - "title": "Use SHA256 for integrity verification", - "type": "bool" - } - ], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", - "help": "Select the integrity check for the core dump.", - "id": "component-config-core-dump-core-dump-data-integrity-check", - "name": "ESP_COREDUMP_CHECKSUM", - "title": "Core dump data integrity check", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF", - "help": "Storing these sections can help with easier debugging and troubleshooting.\nHowever, additional storage space will be required in the core dump partition.\nAt least 128KB should be reserved, but the actual amount required may vary based\non the application's DRAM usage.\nNote that sections located in external RAM will not be stored.", - "id": "ESP_COREDUMP_CAPTURE_DRAM", - "name": "ESP_COREDUMP_CAPTURE_DRAM", - "range": null, - "title": "Include whole .bss and .data sections and heap data into core dump file", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH", - "help": "When enabled, if any data are found on the flash core dump partition,\nthey will be checked by calculating their checksum.", - "id": "ESP_COREDUMP_CHECK_BOOT", - "name": "ESP_COREDUMP_CHECK_BOOT", - "range": null, - "title": "Check core dump data integrity on boot", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disable core dump module.", - "id": "ESP_COREDUMP_ENABLE", - "name": "ESP_COREDUMP_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE", - "help": "Enable/disable coredump logs. Logs strings from espcoredump component are\nplaced in DRAM. Disabling these helps to save ~5KB of internal memory.", - "id": "ESP_COREDUMP_LOGS", - "name": "ESP_COREDUMP_LOGS", - "range": null, - "title": "Enable coredump logs for debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE", - "help": "Maximum number of tasks snapshots in core dump.", - "id": "ESP_COREDUMP_MAX_TASKS_NUM", - "name": "ESP_COREDUMP_MAX_TASKS_NUM", - "range": null, - "title": "Maximum number of tasks", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", - "help": "Config delay (in ms) before printing core dump to UART.\nDelay can be interrupted by pressing Enter key.", - "id": "ESP_COREDUMP_UART_DELAY", - "name": "ESP_COREDUMP_UART_DELAY", - "range": null, - "title": "Delay before print to UART", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH", - "help": "Don't overwrite an existing core dump already present in flash.\nEnable this option to only keep the first of multiple core dumps.\n\nIf enabled, the core dump partition must be erased before the first\ncore dump can be written.", - "id": "ESP_COREDUMP_FLASH_NO_OVERWRITE", - "name": "ESP_COREDUMP_FLASH_NO_OVERWRITE", - "range": null, - "title": "Don't overwrite existing core dump", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Force the use of a custom DRAM stack for coredump when Task stacks can be in PSRAM.", - "id": "ESP_COREDUMP_USE_STACK_SIZE", - "name": "ESP_COREDUMP_USE_STACK_SIZE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_ENABLE", - "help": "Size of the memory to be reserved for core dump stack. If 0 core dump process will run on\nthe stack of crashed task/ISR, otherwise special stack will be allocated.\nTo ensure that core dump itself will not overflow task/ISR stack set this to the value around 1300-1800\ndepending on the chosen checksum calculation method. SHA256 method needs more stack space than CRC32.\nNOTE: It eats DRAM.", - "id": "ESP_COREDUMP_STACK_SIZE", - "name": "ESP_COREDUMP_STACK_SIZE", - "range": null, - "title": "Reserved stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF && ESP_COREDUMP_ENABLE_TO_FLASH && IDF_TARGET_ARCH_RISCV", - "help": "Size of the buffer that would be reserved for extracting backtrace info summary.\nThis buffer will contain the stack dump of the crashed task. This dump is useful in generating backtrace", - "id": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", - "name": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", - "range": null, - "title": "Size of the stack dump buffer", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_DECODE_INFO", - "name": "ESP_COREDUMP_DECODE_INFO", - "range": null, - "title": "Decode and show summary (info_corefile)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COREDUMP_DECODE_DISABLE", - "name": "ESP_COREDUMP_DECODE_DISABLE", - "range": null, - "title": "Don't decode", - "type": "bool" - } - ], - "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", - "help": null, - "id": "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor", - "name": "ESP_COREDUMP_DECODE", - "title": "Handling of UART core dumps in IDF Monitor", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_COREDUMP_DECODE", - "name": "ESP_COREDUMP_DECODE", - "range": null, - "title": null, - "type": "string" - } - ], - "depends_on": null, - "id": "component-config-core-dump", - "title": "Core dump", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Number of volumes (logical drives) to use.", - "id": "FATFS_VOLUME_COUNT", - "name": "FATFS_VOLUME_COUNT", - "range": [ - 1, - 10 - ], - "title": "Number of volumes", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_LFN_NONE", - "name": "FATFS_LFN_NONE", - "range": null, - "title": "No long filenames", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_LFN_HEAP", - "name": "FATFS_LFN_HEAP", - "range": null, - "title": "Long filename buffer in heap", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_LFN_STACK", - "name": "FATFS_LFN_STACK", - "range": null, - "title": "Long filename buffer on stack", - "type": "bool" - } - ], - "depends_on": null, - "help": "Support long filenames in FAT. Long filename data increases\nmemory usage. FATFS can be configured to store the buffer for\nlong filename data in stack or heap.", - "id": "component-config-fat-filesystem-support-long-filename-support", - "name": "FATFS_LONG_FILENAMES", - "title": "Long filename support", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_SECTOR_512", - "name": "FATFS_SECTOR_512", - "range": null, - "title": "512", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_SECTOR_4096", - "name": "FATFS_SECTOR_4096", - "range": null, - "title": "4096", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify the size of the sector in bytes for FATFS partition generator.", - "id": "component-config-fat-filesystem-support-sector-size", - "name": "FATFS_SECTOR_SIZE", - "title": "Sector size", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_DYNAMIC", - "name": "FATFS_CODEPAGE_DYNAMIC", - "range": null, - "title": "Dynamic (all code pages supported)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_437", - "name": "FATFS_CODEPAGE_437", - "range": null, - "title": "US (CP437)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_720", - "name": "FATFS_CODEPAGE_720", - "range": null, - "title": "Arabic (CP720)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_737", - "name": "FATFS_CODEPAGE_737", - "range": null, - "title": "Greek (CP737)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_771", - "name": "FATFS_CODEPAGE_771", - "range": null, - "title": "KBL (CP771)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_775", - "name": "FATFS_CODEPAGE_775", - "range": null, - "title": "Baltic (CP775)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_850", - "name": "FATFS_CODEPAGE_850", - "range": null, - "title": "Latin 1 (CP850)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_852", - "name": "FATFS_CODEPAGE_852", - "range": null, - "title": "Latin 2 (CP852)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_855", - "name": "FATFS_CODEPAGE_855", - "range": null, - "title": "Cyrillic (CP855)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_857", - "name": "FATFS_CODEPAGE_857", - "range": null, - "title": "Turkish (CP857)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_860", - "name": "FATFS_CODEPAGE_860", - "range": null, - "title": "Portuguese (CP860)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_861", - "name": "FATFS_CODEPAGE_861", - "range": null, - "title": "Icelandic (CP861)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_862", - "name": "FATFS_CODEPAGE_862", - "range": null, - "title": "Hebrew (CP862)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_863", - "name": "FATFS_CODEPAGE_863", - "range": null, - "title": "Canadian French (CP863)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_864", - "name": "FATFS_CODEPAGE_864", - "range": null, - "title": "Arabic (CP864)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_865", - "name": "FATFS_CODEPAGE_865", - "range": null, - "title": "Nordic (CP865)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_866", - "name": "FATFS_CODEPAGE_866", - "range": null, - "title": "Russian (CP866)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_869", - "name": "FATFS_CODEPAGE_869", - "range": null, - "title": "Greek 2 (CP869)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_932", - "name": "FATFS_CODEPAGE_932", - "range": null, - "title": "Japanese (DBCS) (CP932)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_936", - "name": "FATFS_CODEPAGE_936", - "range": null, - "title": "Simplified Chinese (DBCS) (CP936)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_949", - "name": "FATFS_CODEPAGE_949", - "range": null, - "title": "Korean (DBCS) (CP949)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_CODEPAGE_950", - "name": "FATFS_CODEPAGE_950", - "range": null, - "title": "Traditional Chinese (DBCS) (CP950)", - "type": "bool" - } - ], - "depends_on": null, - "help": "OEM code page used for file name encodings.\n\nIf \"Dynamic\" is selected, code page can be chosen at runtime using\nf_setcp function. Note that choosing this option will increase\napplication size by ~480kB.", - "id": "component-config-fat-filesystem-support-oem-code-page", - "name": "FATFS_CHOOSE_CODEPAGE", - "title": "OEM Code Page", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FATFS_CODEPAGE", - "name": "FATFS_CODEPAGE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "!FATFS_LFN_NONE", - "help": "Maximum long filename length. Can be reduced to save RAM.", - "id": "FATFS_MAX_LFN", - "name": "FATFS_MAX_LFN", - "range": null, - "title": "Max long filename length", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_API_ENCODING_ANSI_OEM", - "name": "FATFS_API_ENCODING_ANSI_OEM", - "range": null, - "title": "API uses ANSI/OEM encoding", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_API_ENCODING_UTF_8", - "name": "FATFS_API_ENCODING_UTF_8", - "range": null, - "title": "API uses UTF-8 encoding", - "type": "bool" - } - ], - "depends_on": "!FATFS_LFN_NONE", - "help": "Choose encoding for character and string arguments/returns when using\nFATFS APIs. The encoding of arguments will usually depend on text\neditor settings.", - "id": "component-config-fat-filesystem-support-api-character-encoding", - "name": "FATFS_API_ENCODING", - "title": "API character encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This option sets the FATFS configuration value _FS_LOCK.\nThe option _FS_LOCK switches file lock function to control duplicated file open\nand illegal operation to open objects.\n\n* 0: Disable file lock function. To avoid volume corruption, application\nshould avoid illegal open, remove and rename to the open objects.\n\n* >0: Enable file lock function. The value defines how many files/sub-directories\ncan be opened simultaneously under file lock control.\n\nNote that the file lock control is independent of re-entrancy.", - "id": "FATFS_FS_LOCK", - "name": "FATFS_FS_LOCK", - "range": [ - 0, - 65535 - ], - "title": "Number of simultaneously open files protected by lock function", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This option sets FATFS configuration value _FS_TIMEOUT, scaled to milliseconds.\nSets the number of milliseconds FATFS will wait to acquire a mutex when\noperating on an open file. For example, if one task is performing a lengthy\noperation, another task will wait for the first task to release the lock,\nand time out after amount of time set by this option.", - "id": "FATFS_TIMEOUT_MS", - "name": "FATFS_TIMEOUT_MS", - "range": null, - "title": "Timeout for acquiring a file lock, ms", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This option affects FATFS configuration value _FS_TINY.\n\nIf this option is set, _FS_TINY is 0, and each open file has its own cache,\nsize of the cache is equal to the _MAX_SS variable (512 or 4096 bytes).\nThis option uses more RAM if more than 1 file is open, but needs less reads\nand writes to the storage for some operations.\n\nIf this option is not set, _FS_TINY is 1, and single cache is used for\nall open files, size is also equal to _MAX_SS variable. This reduces the\namount of heap used when multiple files are open, but increases the number\nof read and write operations which FATFS needs to make.", - "id": "FATFS_PER_FILE_CACHE", - "name": "FATFS_PER_FILE_CACHE", - "range": null, - "title": "Use separate cache for each file", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC", - "help": "When the option is enabled, internal buffers used by FATFS will be allocated\nfrom external RAM. If the allocation from external RAM fails, the buffer will\nbe allocated from the internal RAM.\nDisable this option if optimizing for performance. Enable this option if\noptimizing for internal memory size.", - "id": "FATFS_ALLOC_PREFER_EXTRAM", - "name": "FATFS_ALLOC_PREFER_EXTRAM", - "range": null, - "title": "Prefer external RAM when allocating FATFS buffers", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The fast seek feature enables fast backward/long seek operations without\nFAT access by using an in-memory CLMT (cluster link map table).\nPlease note, fast-seek is only allowed for read-mode files, if a\nfile is opened in write-mode, the seek mechanism will automatically fallback\nto the default implementation.", - "id": "FATFS_USE_FASTSEEK", - "name": "FATFS_USE_FASTSEEK", - "range": null, - "title": "Enable fast seek algorithm when using lseek function through VFS FAT", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_USE_STRFUNC_NONE", - "name": "FATFS_USE_STRFUNC_NONE", - "range": null, - "title": "0:Disable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", - "name": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", - "range": null, - "title": "1:Enable without LF-CRLF conversion", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", - "name": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", - "range": null, - "title": "2:Enable with LF-CRLF conversion", - "type": "bool" - } - ], - "depends_on": null, - "help": "These are specialized alternatives to stdio functions for working\ndirectly with FATFS without VFS. Legacy code may need functions,\nbut for new development, it is advised to use stdio under VFS.\n\n0: Disable. FF_PRINT_LLI, FF_PRINT_FLOAT and FF_STRF_ENCODE have no effect.\n1: Enable without LF-CRLF conversion.\n2: Enable with LF-CRLF conversion.", - "id": "component-config-fat-filesystem-support-enable-string-functions-f_gets-f_putc-f_puts-and-f_printf-", - "name": "FATFS_USE_STRFUNC_CHOICE", - "title": "Enable string functions, f_gets(), f_putc(), f_puts() and f_printf()", - "type": "choice" - }, - { - "children": [], - "depends_on": "!FATFS_USE_STRFUNC_NONE", - "help": null, - "id": "FATFS_PRINT_LLI", - "name": "FATFS_PRINT_LLI", - "range": null, - "title": "Make fatfs f_printf() support long long argument", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FATFS_USE_STRFUNC_NONE", - "help": null, - "id": "FATFS_PRINT_FLOAT", - "name": "FATFS_PRINT_FLOAT", - "range": null, - "title": "Make fatfs f_printf() support floating point argument", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_STRF_ENCODE_ANSI", - "name": "FATFS_STRF_ENCODE_ANSI", - "range": null, - "title": "0:ANSI/OEM in current CP", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_STRF_ENCODE_UTF16LE", - "name": "FATFS_STRF_ENCODE_UTF16LE", - "range": null, - "title": "1:Unicode in UTF-16LE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_STRF_ENCODE_UTF16BE", - "name": "FATFS_STRF_ENCODE_UTF16BE", - "range": null, - "title": "2:Unicode in UTF-16BE", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FATFS_STRF_ENCODE_UTF8", - "name": "FATFS_STRF_ENCODE_UTF8", - "range": null, - "title": "3:Unicode in UTF-8", - "type": "bool" - } - ], - "depends_on": "!FATFS_LFN_NONE && !FATFS_USE_STRFUNC_NONE", - "help": "When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character\nencoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE\nto be read/written via those functions.\n0: ANSI/OEM in current CP\n1: Unicode in UTF-16LE\n2: Unicode in UTF-16BE\n3: Unicode in UTF-8", - "id": "component-config-fat-filesystem-support-fatfs-string-functions-convert-character-encoding", - "name": "FATFS_STRF_ENCODE_CHOICE", - "title": "FatFS string functions: convert character encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": "FATFS_USE_FASTSEEK", - "help": "If fast seek algorithm is enabled, this defines the size of\nCLMT buffer used by this algorithm in 32-bit word units.\nThis value should be chosen based on prior knowledge of\nmaximum elements of each file entry would store.", - "id": "FATFS_FAST_SEEK_BUFFER_SIZE", - "name": "FATFS_FAST_SEEK_BUFFER_SIZE", - "range": null, - "title": "Fast seek CLMT buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If set to 0, the 'newlib' library's default size (BLKSIZ) is used (128 B).\nIf set to a non-zero value, the value is used as the block size.\nDefault file buffer size is set to this value\nand the buffer is allocated when first attempt of reading/writing to a file is made.\nIncreasing this value improves fread() speed, however the heap usage is increased as well.\n\nNOTE: The block size value is shared by all the filesystem functions\naccessing target media for given file descriptor!\nSee 'Improving I/O performance' section of 'Maximizing Execution Speed' documentation page\nfor more details.", - "id": "FATFS_VFS_FSTAT_BLKSIZE", - "name": "FATFS_VFS_FSTAT_BLKSIZE", - "range": null, - "title": "Default block size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables automatic calling of f_sync() to flush recent file changes after each call of vfs_fat_write(),\nvfs_fat_pwrite(), vfs_fat_link(), vfs_fat_truncate() and vfs_fat_ftruncate() functions.\nThis feature improves file-consistency and size reporting accuracy for the FatFS,\nat a price on decreased performance due to frequent disk operations", - "id": "FATFS_IMMEDIATE_FSYNC", - "name": "FATFS_IMMEDIATE_FSYNC", - "range": null, - "title": "Enable automatic f_sync", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Allows FATFS volume label to be specified using f_setlabel", - "id": "FATFS_USE_LABEL", - "name": "FATFS_USE_LABEL", - "range": null, - "title": "Use FATFS volume label", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the whole link operation (including file copying) is performed under lock.\nThis ensures that the link operation is atomic, but may cause performance for large files.\nIt may create less fragmented file copy.", - "id": "FATFS_LINK_LOCK", - "name": "FATFS_LINK_LOCK", - "range": null, - "title": "Perform the whole link operation under lock", - "type": "bool" - }, - { - "children": [], - "depends_on": "CONFIG_WL_SECTOR_SIZE_4096", - "help": "If enabled, the buffers used by FATFS will be allocated separately from the rest of the structure.\nThis option is useful when using multiple FATFS instances with different\nsector sizes, as the buffers will be allocated according to the sector size.\nIf disabled, the greatest sector size will be used for all FATFS instances.\n(In most cases, this would be the sector size of Wear Levelling library)\nThis might cause more memory to be used than necessary.", - "id": "FATFS_USE_DYN_BUFFERS", - "name": "FATFS_USE_DYN_BUFFERS", - "range": null, - "title": "Use dynamic buffers", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-fat-filesystem-support", - "title": "FAT Filesystem support", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32P4", - "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", - "id": "FREERTOS_SMP", - "name": "FREERTOS_SMP", - "range": null, - "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", - "id": "FREERTOS_UNICORE", - "name": "FREERTOS_UNICORE", - "range": null, - "title": "Run FreeRTOS only on first core", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", - "id": "FREERTOS_HZ", - "name": "FREERTOS_HZ", - "range": [ - 1, - 1000 - ], - "title": "configTICK_RATE_HZ", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", - "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", - "id": "FREERTOS_OPTIMIZED_SCHEDULER", - "name": "FREERTOS_OPTIMIZED_SCHEDULER", - "range": null, - "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "range": null, - "title": "No checking", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "range": null, - "title": "Check by stack pointer value (Method 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "range": null, - "title": "Check using canary bytes (Method 2)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", - "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", - "name": "FREERTOS_CHECK_STACKOVERFLOW", - "title": "configCHECK_FOR_STACK_OVERFLOW", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", - "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "range": [ - 1, - 256 - ], - "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", - "id": "FREERTOS_IDLE_TASK_STACKSIZE", - "name": "FREERTOS_IDLE_TASK_STACKSIZE", - "range": [ - 768, - 32768 - ], - "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_IDLE_HOOK", - "name": "FREERTOS_USE_IDLE_HOOK", - "range": null, - "title": "configUSE_IDLE_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SMP", - "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", - "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "range": null, - "title": "Use FreeRTOS minimal idle hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_TICK_HOOK", - "name": "FREERTOS_USE_TICK_HOOK", - "range": null, - "title": "configUSE_TICK_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", - "id": "FREERTOS_MAX_TASK_NAME_LEN", - "name": "FREERTOS_MAX_TASK_NAME_LEN", - "range": [ - 1, - 256 - ], - "title": "configMAX_TASK_NAME_LEN", - "type": "int" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX", - "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", - "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "range": null, - "title": "configENABLE_BACKWARD_COMPATIBILITY", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", - "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "range": null, - "title": "configTIMER_SERVICE_TASK_NAME", - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", - "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", - "type": "choice" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": null, - "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", - "id": "FREERTOS_TIMER_TASK_PRIORITY", - "name": "FREERTOS_TIMER_TASK_PRIORITY", - "range": [ - 1, - 25 - ], - "title": "configTIMER_TASK_PRIORITY", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", - "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "range": [ - 1536, - 32768 - ], - "title": "configTIMER_TASK_STACK_DEPTH", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", - "id": "FREERTOS_TIMER_QUEUE_LENGTH", - "name": "FREERTOS_TIMER_QUEUE_LENGTH", - "range": [ - 5, - 20 - ], - "title": "configTIMER_QUEUE_LENGTH", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", - "id": "FREERTOS_USE_TIMERS", - "name": "FREERTOS_USE_TIMERS", - "range": null, - "title": "configUSE_TIMERS", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", - "id": "FREERTOS_QUEUE_REGISTRY_SIZE", - "name": "FREERTOS_QUEUE_REGISTRY_SIZE", - "range": [ - 0, - 20 - ], - "title": "configQUEUE_REGISTRY_SIZE", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", - "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "range": [ - 1, - 32 - ], - "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TRACE_FACILITY", - "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", - "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "range": null, - "title": "configUSE_STATS_FORMATTING_FUNCTIONS", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", - "id": "FREERTOS_USE_TRACE_FACILITY", - "name": "FREERTOS_USE_TRACE_FACILITY", - "range": null, - "title": "configUSE_TRACE_FACILITY", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", - "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "range": null, - "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", - "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "range": null, - "title": "Enable display of xCoreID in vTaskList", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "range": null, - "title": "uint32_t", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "range": null, - "title": "uint64_t", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", - "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", - "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", - "title": "configRUN_TIME_COUNTER_TYPE", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", - "id": "FREERTOS_GENERATE_RUN_TIME_STATS", - "name": "FREERTOS_GENERATE_RUN_TIME_STATS", - "range": null, - "title": "configGENERATE_RUN_TIME_STATS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", - "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "range": null, - "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "type": "int" - } - ], - "depends_on": "PM_ENABLE", - "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", - "id": "FREERTOS_USE_TICKLESS_IDLE", - "name": "FREERTOS_USE_TICKLESS_IDLE", - "range": null, - "title": "configUSE_TICKLESS_IDLE", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", - "id": "FREERTOS_USE_APPLICATION_TASK_TAG", - "name": "FREERTOS_USE_APPLICATION_TASK_TAG", - "range": null, - "title": "configUSE_APPLICATION_TASK_TAG", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-kernel", - "title": "Kernel", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", - "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", - "id": "FREERTOS_TASK_FUNCTION_WRAPPER", - "name": "FREERTOS_TASK_FUNCTION_WRAPPER", - "range": null, - "title": "Wrap task functions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", - "id": "FREERTOS_WATCHPOINT_END_OF_STACK", - "name": "FREERTOS_WATCHPOINT_END_OF_STACK", - "range": null, - "title": "Enable stack overflow debug watchpoint", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", - "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", - "id": "FREERTOS_TLSP_DELETION_CALLBACKS", - "name": "FREERTOS_TLSP_DELETION_CALLBACKS", - "range": null, - "title": "Enable thread local storage pointers deletion callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", - "id": "FREERTOS_TASK_PRE_DELETION_HOOK", - "name": "FREERTOS_TASK_PRE_DELETION_HOOK", - "range": null, - "title": "Enable task pre-deletion hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", - "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "range": null, - "title": "Enable static task clean up hook (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP", - "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", - "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "range": null, - "title": "Check that mutex semaphore is given by owner task", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", - "id": "FREERTOS_ISR_STACKSIZE", - "name": "FREERTOS_ISR_STACKSIZE", - "range": [ - 1536, - 32768 - ], - "title": "ISR stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", - "id": "FREERTOS_INTERRUPT_BACKTRACE", - "name": "FREERTOS_INTERRUPT_BACKTRACE", - "range": null, - "title": "Enable backtrace from interrupt to task context", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", - "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", - "id": "FREERTOS_FPU_IN_ISR", - "name": "FREERTOS_FPU_IN_ISR", - "range": null, - "title": "Use float in Level 1 ISR", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_CORETIMER", - "name": "FREERTOS_TICK_SUPPORT_CORETIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 0", - "id": "FREERTOS_CORETIMER_0", - "name": "FREERTOS_CORETIMER_0", - "range": null, - "title": "Timer 0 (int 6, level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 1", - "id": "FREERTOS_CORETIMER_1", - "name": "FREERTOS_CORETIMER_1", - "range": null, - "title": "Timer 1 (int 15, level 3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 1 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "range": null, - "title": "SYSTIMER 0 (level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 3 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "range": null, - "title": "SYSTIMER 0 (level 3)", - "type": "bool" - } - ], - "depends_on": null, - "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", - "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", - "name": "FREERTOS_CORETIMER", - "title": "Tick timer source (Xtensa Only)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_SYSTIMER", - "name": "FREERTOS_SYSTICK_USES_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_CCOUNT", - "name": "FREERTOS_SYSTICK_USES_CCOUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "range": null, - "title": "Use ESP TIMER for run time stats", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", - "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "range": null, - "title": "Use CPU Clock for run time stats", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", - "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", - "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", - "name": "FREERTOS_RUN_TIME_STATS_CLK", - "title": "Choose the clock source for run time stats", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", - "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions into Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", - "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "range": null, - "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-port", - "title": "Port", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", - "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", - "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "range": null, - "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-extra", - "title": "Extra", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_PORT", - "name": "FREERTOS_PORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NO_AFFINITY", - "name": "FREERTOS_NO_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", - "id": "FREERTOS_DEBUG_OCDAWARE", - "name": "FREERTOS_DEBUG_OCDAWARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_PANIC_HANDLER_IRAM", - "help": null, - "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NUMBER_OF_CORES", - "name": "FREERTOS_NUMBER_OF_CORES", - "range": [ - 1, - 2 - ], - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-freertos", - "title": "FreeRTOS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_ASSERTION_EQUALS_SYSTEM", - "name": "HAL_ASSERTION_EQUALS_SYSTEM", - "range": null, - "title": "Same as system assertion level", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", - "help": null, - "id": "HAL_ASSERTION_DISABLE", - "name": "HAL_ASSERTION_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", - "help": null, - "id": "HAL_ASSERTION_SILENT", - "name": "HAL_ASSERTION_SILENT", - "range": null, - "title": "Silent", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", - "help": null, - "id": "HAL_ASSERTION_ENABLE", - "name": "HAL_ASSERTION_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "title": "Default HAL assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_DEFAULT_ASSERTION_LEVEL", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_NONE", - "name": "HAL_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_ERROR", - "name": "HAL_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_WARN", - "name": "HAL_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_INFO", - "name": "HAL_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_DEBUG", - "name": "HAL_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_VERBOSE", - "name": "HAL_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", - "help": "Specify how much output to see in HAL logs.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", - "name": "HAL_LOG_LEVEL", - "title": "HAL layer log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_LOG_LEVEL", - "name": "HAL_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_SYSTIMER_USE_ROM_IMPL", - "name": "HAL_SYSTIMER_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of SysTimer HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_WDT", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_WDT_USE_ROM_IMPL", - "name": "HAL_WDT_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of WDT HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_MASTER_ISR_IN_IRAM", - "help": "Enable this option to place SPI master hal layer functions into IRAM.", - "id": "HAL_SPI_MASTER_FUNC_IN_IRAM", - "name": "HAL_SPI_MASTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_SLAVE_ISR_IN_IRAM", - "help": "Enable this option to place SPI slave hal layer functions into IRAM.", - "id": "HAL_SPI_SLAVE_FUNC_IN_IRAM", - "name": "HAL_SPI_SLAVE_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32H2", - "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", - "id": "HAL_ECDSA_GEN_SIG_CM", - "name": "HAL_ECDSA_GEN_SIG_CM", - "range": null, - "title": "Enable countermeasure for ECDSA signature generation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", - "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_DISABLED", - "name": "HEAP_POISONING_DISABLED", - "range": null, - "title": "Basic (no poisoning)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_LIGHT", - "name": "HEAP_POISONING_LIGHT", - "range": null, - "title": "Light impact", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_COMPREHENSIVE", - "name": "HEAP_POISONING_COMPREHENSIVE", - "range": null, - "title": "Comprehensive", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\n\nSee the \"Heap Memory Debugging\" page of the IDF documentation\nfor a description of each level of heap corruption detection.", - "id": "component-config-heap-memory-debugging-heap-corruption-detection", - "name": "HEAP_CORRUPTION_DETECTION", - "title": "Heap corruption detection", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_OFF", - "name": "HEAP_TRACING_OFF", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_STANDALONE", - "name": "HEAP_TRACING_STANDALONE", - "range": null, - "title": "Standalone", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_TOHOST", - "name": "HEAP_TRACING_TOHOST", - "range": null, - "title": "Host-based", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables the heap tracing API defined in esp_heap_trace.h.\n\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\nSo it's best to keep it disabled unless tracing is being used.", - "id": "component-config-heap-memory-debugging-heap-tracing", - "name": "HEAP_TRACING_DEST", - "title": "Heap tracing", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disables heap tracing API.", - "id": "HEAP_TRACING", - "name": "HEAP_TRACING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "HEAP_TRACING", - "help": "Number of stack frames to save when tracing heap operation callers.\n\nMore stack frames uses more memory in the heap trace buffer (and slows down allocation), but\ncan provide useful information.", - "id": "HEAP_TRACING_STACK_DEPTH", - "name": "HEAP_TRACING_STACK_DEPTH", - "range": null, - "title": "Heap tracing stack depth", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enable the user to implement function hooks triggered for each successful allocation and free.", - "id": "HEAP_USE_HOOKS", - "name": "HEAP_USE_HOOKS", - "range": null, - "title": "Use allocation and free hooks", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables tracking the task responsible for each heap allocation.\n\nThis function depends on heap poisoning being enabled and adds four more bytes of overhead for each block\nallocated.", - "id": "HEAP_TASK_TRACKING", - "name": "HEAP_TASK_TRACKING", - "range": null, - "title": "Enable heap task tracking", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "HEAP_TRACE_HASH_MAP", - "help": "When enabled this configuration forces the hash map to be placed in external RAM.", - "id": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", - "name": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", - "range": null, - "title": "Place hash map in external RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "HEAP_TRACE_HASH_MAP", - "help": "Defines the number of entries in the heap trace hashmap. Each entry takes 8 bytes.\nThe bigger this number is, the better the performance. Recommended range: 200 - 2000.", - "id": "HEAP_TRACE_HASH_MAP_SIZE", - "name": "HEAP_TRACE_HASH_MAP_SIZE", - "range": null, - "title": "The number of entries in the hash map", - "type": "int" - } - ], - "depends_on": "HEAP_TRACING_STANDALONE", - "help": "Enable this flag to use a hash map to increase performance in handling\nheap trace records.\n\nHeap trace standalone supports storing records as a list, or a list + hash map.\n\nUsing only a list takes less memory, but calls to 'free' will get slower as the\nlist grows. This is particularly affected when using HEAP_TRACE_ALL mode.\n\nBy using a list + hash map, calls to 'free' remain fast, at the cost of\nadditional memory to store the hash map.", - "id": "HEAP_TRACE_HASH_MAP", - "name": "HEAP_TRACE_HASH_MAP", - "range": null, - "title": "Use hash map mechanism to access heap trace records", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When enabled, if a memory allocation operation fails it will cause a system abort.", - "id": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", - "name": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", - "range": null, - "title": "Abort if memory allocation fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HEAP_TLSF", - "help": "Enable this flag to use heap functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HEAP_TLSF_USE_ROM_IMPL", - "name": "HEAP_TLSF_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of heap tlsf library", - "type": "bool" - }, - { - "children": [], - "depends_on": "!HEAP_TLSF_USE_ROM_IMPL", - "help": "Enable this flag to save up RAM space by placing the heap component in the flash memory\n\nNote that it is only safe to enable this configuration if no functions from esp_heap_caps.h\nor esp_heap_trace.h are called from ISR.", - "id": "HEAP_PLACE_FUNCTION_INTO_FLASH", - "name": "HEAP_PLACE_FUNCTION_INTO_FLASH", - "range": null, - "title": "Force the entire heap component to be placed in flash memory", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-heap-memory-debugging", - "title": "Heap memory debugging", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "The number of 802.15.4 receive buffers", - "id": "IEEE802154_RX_BUFFER_SIZE", - "name": "IEEE802154_RX_BUFFER_SIZE", - "range": null, - "title": "The number of 802.15.4 receive buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense only", - "id": "IEEE802154_CCA_CARRIER", - "name": "IEEE802154_CCA_CARRIER", - "range": null, - "title": "Carrier sense only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Energy above threshold", - "id": "IEEE802154_CCA_ED", - "name": "IEEE802154_CCA_ED", - "range": null, - "title": "Energy above threshold", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense OR energy above threshold", - "id": "IEEE802154_CCA_CARRIER_OR_ED", - "name": "IEEE802154_CCA_CARRIER_OR_ED", - "range": null, - "title": "Carrier sense OR energy above threshold", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense AND energy above threshold", - "id": "IEEE802154_CCA_CARRIER_AND_ED", - "name": "IEEE802154_CCA_CARRIER_AND_ED", - "range": null, - "title": "Carrier sense AND energy above threshold", - "type": "bool" - } - ], - "depends_on": "IEEE802154_ENABLED", - "help": "configure the CCA mode", - "id": "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode", - "name": "IEEE802154_CCA_MODE", - "title": "Clear Channel Assessment (CCA) mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": null, - "id": "IEEE802154_CCA_MODE", - "name": "IEEE802154_CCA_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "set the CCA threshold, in dB", - "id": "IEEE802154_CCA_THRESHOLD", - "name": "IEEE802154_CCA_THRESHOLD", - "range": null, - "title": "CCA detection threshold", - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "set the pending table size", - "id": "IEEE802154_PENDING_TABLE_SIZE", - "name": "IEEE802154_PENDING_TABLE_SIZE", - "range": null, - "title": "Pending table size", - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enable IEEE802154 multi-pan", - "id": "IEEE802154_MULTI_PAN_ENABLE", - "name": "IEEE802154_MULTI_PAN_ENABLE", - "range": null, - "title": "Enable multi-pan feature for frame filter", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enabling this option increases throughput by ~5% at the expense of ~2.1k\nIRAM code size increase.", - "id": "IEEE802154_TIMING_OPTIMIZATION", - "name": "IEEE802154_TIMING_OPTIMIZATION", - "range": null, - "title": "Enable throughput optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE && IEEE802154_ENABLED", - "help": "Enabling this option allows the IEEE802.15.4 module to be powered down during automatic light sleep,\nwhich reduces current consumption.", - "id": "IEEE802154_SLEEP_ENABLE", - "name": "IEEE802154_SLEEP_ENABLE", - "range": null, - "title": "Enable IEEE802154 light sleep", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to count IEEE802154 rx buffer when allocating or freeing.", - "id": "IEEE802154_RX_BUFFER_STATISTIC", - "name": "IEEE802154_RX_BUFFER_STATISTIC", - "range": null, - "title": "Rx buffer statistic", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to print more information when assert.", - "id": "IEEE802154_ASSERT", - "name": "IEEE802154_ASSERT", - "range": null, - "title": "Enrich the assert information", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_EVENT", - "help": "set the record event table size", - "id": "IEEE802154_RECORD_EVENT_SIZE", - "name": "IEEE802154_RECORD_EVENT_SIZE", - "range": null, - "title": "Record event table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record event, when assert, the recorded event will be printed.", - "id": "IEEE802154_RECORD_EVENT", - "name": "IEEE802154_RECORD_EVENT", - "range": null, - "title": "Enable record event information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_STATE", - "help": "set the record state table size", - "id": "IEEE802154_RECORD_STATE_SIZE", - "name": "IEEE802154_RECORD_STATE_SIZE", - "range": null, - "title": "Record state table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record state, when assert, the recorded state will be printed.", - "id": "IEEE802154_RECORD_STATE", - "name": "IEEE802154_RECORD_STATE", - "range": null, - "title": "Enable record state information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_CMD", - "help": "set the record command table size", - "id": "IEEE802154_RECORD_CMD_SIZE", - "name": "IEEE802154_RECORD_CMD_SIZE", - "range": null, - "title": "Record command table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record the command, when assert, the recorded\ncommand will be printed.", - "id": "IEEE802154_RECORD_CMD", - "name": "IEEE802154_RECORD_CMD", - "range": null, - "title": "Enable record command information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_ABORT", - "help": "set the record abort table size", - "id": "IEEE802154_RECORD_ABORT_SIZE", - "name": "IEEE802154_RECORD_ABORT_SIZE", - "range": null, - "title": "Record abort table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record the abort, when assert, the recorded\nabort will be printed.", - "id": "IEEE802154_RECORD_ABORT", - "name": "IEEE802154_RECORD_ABORT", - "range": null, - "title": "Enable record abort information for debugging", - "type": "bool" - } - ], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to add some probe codes in the driver, and record these information.", - "id": "IEEE802154_RECORD", - "name": "IEEE802154_RECORD", - "range": null, - "title": "Record the information with IEEE802154 state and event", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to record the tx and rx", - "id": "IEEE802154_TXRX_STATISTIC", - "name": "IEEE802154_TXRX_STATISTIC", - "range": null, - "title": "Enable record tx/rx packets information for debugging", - "type": "bool" - } - ], - "depends_on": "IEEE802154_ENABLED", - "help": "Enabling this option allows different kinds of IEEE802154 debug output.\nAll IEEE802154 debug features increase the size of the final binary.", - "id": "IEEE802154_DEBUG", - "is_menuconfig": true, - "name": "IEEE802154_DEBUG", - "range": null, - "title": "Enable IEEE802154 Debug", - "type": "menu" - } - ], - "depends_on": null, - "help": null, - "id": "IEEE802154_ENABLED", - "name": "IEEE802154_ENABLED", - "range": null, - "title": "IEEE802154 Enable", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ieee-802-15-4", - "title": "IEEE 802.15.4", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_NONE", - "name": "LOG_DEFAULT_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_ERROR", - "name": "LOG_DEFAULT_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_WARN", - "name": "LOG_DEFAULT_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_INFO", - "name": "LOG_DEFAULT_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_DEBUG", - "name": "LOG_DEFAULT_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_VERBOSE", - "name": "LOG_DEFAULT_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", - "id": "component-config-log-log-level-default-log-verbosity", - "name": "LOG_DEFAULT_LEVEL", - "title": "Default log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_DEFAULT_LEVEL", - "name": "LOG_DEFAULT_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_MAXIMUM_EQUALS_DEFAULT", - "name": "LOG_MAXIMUM_EQUALS_DEFAULT", - "range": null, - "title": "Same as default", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_ERROR", - "name": "LOG_MAXIMUM_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_WARN", - "name": "LOG_MAXIMUM_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_INFO", - "name": "LOG_MAXIMUM_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_DEBUG", - "name": "LOG_MAXIMUM_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_VERBOSE", - "name": "LOG_MAXIMUM_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", - "id": "component-config-log-log-level-maximum-log-verbosity", - "name": "LOG_MAXIMUM_LEVEL", - "title": "Maximum log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MAXIMUM_LEVEL", - "name": "LOG_MAXIMUM_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", - "id": "LOG_MASTER_LEVEL", - "name": "LOG_MASTER_LEVEL", - "range": null, - "title": "Enable global master log level", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", - "id": "LOG_DYNAMIC_LEVEL_CONTROL", - "name": "LOG_DYNAMIC_LEVEL_CONTROL", - "range": null, - "title": "Enable dynamic log level changes at runtime", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", - "id": "LOG_TAG_LEVEL_IMPL_NONE", - "name": "LOG_TAG_LEVEL_IMPL_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", - "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "range": null, - "title": "Linked List", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "range": null, - "title": "Cache + Linked List", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", - "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", - "name": "LOG_TAG_LEVEL_IMPL", - "title": "Method of tag level checks", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", - "id": "LOG_TAG_LEVEL_CACHE_ARRAY", - "name": "LOG_TAG_LEVEL_CACHE_ARRAY", - "range": null, - "title": "Array", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", - "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "range": null, - "title": "Binary Min-Heap", - "type": "bool" - } - ], - "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", - "id": "component-config-log-log-level-level-settings-cache-implementation", - "name": "LOG_TAG_LEVEL_CACHE_IMPL", - "title": "Cache implementation", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "range": null, - "title": "Log Tag Cache Size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-log-log-level-level-settings", - "title": "Level Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log-log-level", - "title": "Log Level", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "LOG_COLORS", - "name": "LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_NONE", - "name": "LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_RTOS", - "name": "LOG_TIMESTAMP_SOURCE_RTOS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "range": null, - "title": "System Time (HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "NO_SYMBOL && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "range": null, - "title": "System Time (YY-MM-DD HH:MM:SS.sss)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", - "id": "component-config-log-format-timestamp", - "name": "LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-log-format", - "title": "Format", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Builds normally if selected. Excludes LwIP from build if unselected, even if it is a\ndependency of a component or application.\nSome applications can switch their IP stacks, e.g., when switching between chip\nand Linux targets (LwIP stack vs. Linux IP stack). Since the LwIP dependency cannot\neasily be excluded based on a Kconfig option, it has to be a dependency in all cases.\nThis switch allows the LwIP stack to be built selectively, even if it is a dependency.", - "id": "LWIP_ENABLE", - "name": "LWIP_ENABLE", - "range": null, - "title": "Enable LwIP stack", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The default name this device will report to other devices on the network.\nCould be updated at runtime with esp_netif_set_hostname()", - "id": "LWIP_LOCAL_HOSTNAME", - "name": "LWIP_LOCAL_HOSTNAME", - "range": null, - "title": "Local netif hostname", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, standard POSIX APIs: if_indextoname(), if_nametoindex()\ncould be used to convert network interface index to name\ninstead of IDF specific esp-netif APIs (such as esp_netif_get_netif_impl_name())", - "id": "LWIP_NETIF_API", - "name": "LWIP_NETIF_API", - "range": null, - "title": "Enable usage of standard POSIX APIs in LWIP", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "LWIP tcpip task priority. In case of high throughput, this parameter\ncould be changed up to (configMAX_PRIORITIES-1).", - "id": "LWIP_TCPIP_TASK_PRIO", - "name": "LWIP_TCPIP_TASK_PRIO", - "range": [ - 1, - 24 - ], - "title": "LWIP TCP/IP Task Priority", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_TCPIP_CORE_LOCKING", - "help": "when LWIP_TCPIP_CORE_LOCKING is enabled, this lets tcpip_input() grab the\nmutex for input packets as well, instead of allocating a message and passing\nit to tcpip_thread.", - "id": "LWIP_TCPIP_CORE_LOCKING_INPUT", - "name": "LWIP_TCPIP_CORE_LOCKING_INPUT", - "range": null, - "title": "Enable tcpip core locking input", - "type": "bool" - } - ], - "depends_on": null, - "help": "If Enable tcpip core locking,Creates a global mutex that is held\nduring TCPIP thread operations.Can be locked by client code to perform\nlwIP operations without changing into TCPIP thread using callbacks.\nSee LOCK_TCPIP_CORE() and UNLOCK_TCPIP_CORE().\n\nIf disable tcpip core locking,TCP IP will perform tasks through context switching", - "id": "LWIP_TCPIP_CORE_LOCKING", - "name": "LWIP_TCPIP_CORE_LOCKING", - "range": null, - "title": "Enable tcpip core locking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable to check that the project does not violate lwip thread safety.\nIf enabled, all lwip functions that require thread awareness run an assertion\nto verify that the TCP/IP core functionality is either locked or accessed\nfrom the correct thread.", - "id": "LWIP_CHECK_THREAD_SAFETY", - "name": "LWIP_CHECK_THREAD_SAFETY", - "range": null, - "title": "Checks that lwip API runs in expected context", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, standard API such as gethostbyname\nsupport .local addresses by sending one shot multicast mDNS\nquery", - "id": "LWIP_DNS_SUPPORT_MDNS_QUERIES", - "name": "LWIP_DNS_SUPPORT_MDNS_QUERIES", - "range": null, - "title": "Enable mDNS queries in resolving host name", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, all traffic from layer2(WIFI Driver) will be\ncopied to a new buffer before sending it to layer3(LWIP stack), freeing\nthe layer2 buffer.\nPlease be notified that the total layer2 receiving buffer is fixed and\nESP32 currently supports 25 layer2 receiving buffer, when layer2 buffer\nruns out of memory, then the incoming packets will be dropped in hardware.\nThe layer3 buffer is allocated from the heap, so the total layer3 receiving\nbuffer depends on the available heap size, when heap runs out of memory,\nno copy will be sent to layer3 and packet will be dropped in layer2.\nPlease make sure you fully understand the impact of this feature before\nenabling it.", - "id": "LWIP_L2_TO_L3_COPY", - "name": "LWIP_L2_TO_L3_COPY", - "range": null, - "title": "Enable copy between Layer2 and Layer3 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, some functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve UDP/TCP throughput by >10% for single core mode,\nit doesn't help too much for dual core mode. On the other hand, it needs about\n10KB IRAM for these optimizations.\n\nIf this feature is disabled, all lwip functions will be put into FLASH.", - "id": "LWIP_IRAM_OPTIMIZATION", - "name": "LWIP_IRAM_OPTIMIZATION", - "range": null, - "title": "Enable LWIP IRAM optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, some tcp part functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve TCP throughput. On the other hand, it needs about 17KB\nIRAM for these optimizations.", - "id": "LWIP_EXTRA_IRAM_OPTIMIZATION", - "name": "LWIP_EXTRA_IRAM_OPTIMIZATION", - "range": null, - "title": "Enable LWIP IRAM optimization for TCP part", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, IGMP and MLD6 timers will be activated only\nwhen joining groups or receiving QUERY packets.\n\nThis feature will reduce the power consumption for applications which do not\nuse IGMP and MLD6.", - "id": "LWIP_TIMERS_ONDEMAND", - "name": "LWIP_TIMERS_ONDEMAND", - "range": null, - "title": "Enable LWIP Timers on demand", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ND6", - "help": "This option is used to set the the router flag for the NA packets.\nWhen enabled, the router flag in NA packet will always set to 1,\notherwise, never set router flag for NA packets.", - "id": "LWIP_FORCE_ROUTER_FORWARDING", - "name": "LWIP_FORCE_ROUTER_FORWARDING", - "range": null, - "title": "LWIP Force Router Forwarding Enable/Disable", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "This option is used to disable the Network Discovery Protocol (NDP) if it is not required.\nPlease use this option with caution, as the NDP is essential for IPv6 functionality within a local network.", - "id": "LWIP_ND6", - "name": "LWIP_ND6", - "range": null, - "title": "LWIP NDP6 Enable/Disable", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nSockets take up a certain amount of memory, and allowing fewer\nsockets to be open at the same time conserves memory. Specify\nthe maximum amount of sockets here. The valid value is from 1\nto 253. If using value above 61, update CMakeLists defining\nFD_SETSIZE to the number of sockets used plus the\nexpected open files (minimum of +3 for stdout, stderr and stdin).", - "id": "LWIP_MAX_SOCKETS", - "name": "LWIP_MAX_SOCKETS", - "range": [ - 1, - 253 - ], - "title": "Max number of open sockets", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This option is deprecated. Do not use this option, use VFS_SUPPORT_SELECT instead.", - "id": "LWIP_USE_ONLY_LWIP_SELECT", - "name": "LWIP_USE_ONLY_LWIP_SELECT", - "range": null, - "title": "Support LWIP socket select() only (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows SO_LINGER processing.\nl_onoff = 1,l_linger can set the timeout.\n\nIf l_linger=0, When a connection is closed, TCP will terminate the connection.\nThis means that TCP will discard any data packets stored in the socket send buffer\nand send an RST to the peer.\n\nIf l_linger!=0,Then closesocket() calls to block the process until\nthe remaining data packets has been sent or timed out.", - "id": "LWIP_SO_LINGER", - "name": "LWIP_SO_LINGER", - "range": null, - "title": "Enable SO_LINGER processing", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SO_REUSE", - "help": "Enabling this option means that any incoming broadcast or multicast\npacket will be copied to all of the local sockets that it matches\n(may be more than one if SO_REUSEADDR is set on the socket.)\n\nThis increases memory overhead as the packets need to be copied,\nhowever they are only copied per matching socket. You can safely\ndisable it if you don't plan to receive broadcast or multicast\ntraffic on more than one socket at a time.", - "id": "LWIP_SO_REUSE_RXTOALL", - "name": "LWIP_SO_REUSE_RXTOALL", - "range": null, - "title": "SO_REUSEADDR copies broadcast/multicast to all matches", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows binding to a port which remains in\nTIME_WAIT.", - "id": "LWIP_SO_REUSE", - "name": "LWIP_SO_REUSE", - "range": null, - "title": "Enable SO_REUSEADDR option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows checking for available data on a netconn.", - "id": "LWIP_SO_RCVBUF", - "name": "LWIP_SO_RCVBUF", - "range": null, - "title": "Enable SO_RCVBUF option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows checking for the destination address\nof a received IPv4 Packet.", - "id": "LWIP_NETBUF_RECVINFO", - "name": "LWIP_NETBUF_RECVINFO", - "range": null, - "title": "Enable IP_PKTINFO option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set value for Time-To-Live used by transport layers.", - "id": "LWIP_IP_DEFAULT_TTL", - "name": "LWIP_IP_DEFAULT_TTL", - "range": [ - 1, - 255 - ], - "title": "The value for Time-To-Live used by transport layers", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows fragmenting outgoing IP4 packets if their size\nexceeds MTU.", - "id": "LWIP_IP4_FRAG", - "name": "LWIP_IP4_FRAG", - "range": null, - "title": "Enable fragment outgoing IP4 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows fragmenting outgoing IP6 packets if their size\nexceeds MTU.", - "id": "LWIP_IP6_FRAG", - "name": "LWIP_IP6_FRAG", - "range": null, - "title": "Enable fragment outgoing IP6 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows reassemblying incoming fragmented IP4 packets.", - "id": "LWIP_IP4_REASSEMBLY", - "name": "LWIP_IP4_REASSEMBLY", - "range": null, - "title": "Enable reassembly incoming fragmented IP4 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows reassemblying incoming fragmented IP6 packets.", - "id": "LWIP_IP6_REASSEMBLY", - "name": "LWIP_IP6_REASSEMBLY", - "range": null, - "title": "Enable reassembly incoming fragmented IP6 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the maximum amount of pbufs waiting to be reassembled.", - "id": "LWIP_IP_REASS_MAX_PBUFS", - "name": "LWIP_IP_REASS_MAX_PBUFS", - "range": [ - 10, - 100 - ], - "title": "The maximum amount of pbufs waiting to be reassembled", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "LWIP_IPV4_NAPT", - "help": "Enabling this option allows Port Forwarding or Port mapping.", - "id": "LWIP_IPV4_NAPT_PORTMAP", - "name": "LWIP_IPV4_NAPT_PORTMAP", - "range": null, - "title": "Enable NAT Port Mapping", - "type": "bool" - } - ], - "depends_on": "LWIP_IP_FORWARD", - "help": "Enabling this option allows Network Address and Port Translation.", - "id": "LWIP_IPV4_NAPT", - "name": "LWIP_IPV4_NAPT", - "range": null, - "title": "Enable NAT", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows packets forwarding across multiple interfaces.", - "id": "LWIP_IP_FORWARD", - "name": "LWIP_IP_FORWARD", - "range": null, - "title": "Enable IP forwarding", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows LWIP statistics", - "id": "LWIP_STATS", - "name": "LWIP_STATS", - "range": null, - "title": "Enable LWIP statistics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ESP_GRATUITOUS_ARP", - "help": "Set the timer interval for gratuitous ARP. The default value is 60s", - "id": "LWIP_GARP_TMR_INTERVAL", - "name": "LWIP_GARP_TMR_INTERVAL", - "range": null, - "title": "GARP timer interval(seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enable this option allows to send gratuitous ARP periodically.\n\nThis option solve the compatibility issues.If the ARP table of the AP is old, and the AP\ndoesn't send ARP request to update it's ARP table, this will lead to the STA sending IP packet fail.\nThus we send gratuitous ARP periodically to let AP update it's ARP table.", - "id": "LWIP_ESP_GRATUITOUS_ARP", - "name": "LWIP_ESP_GRATUITOUS_ARP", - "range": null, - "title": "Send gratuitous ARP periodically", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ESP_MLDV6_REPORT", - "help": "Set the timer interval for mldv6 report. The default value is 30s", - "id": "LWIP_MLDV6_TMR_INTERVAL", - "name": "LWIP_MLDV6_TMR_INTERVAL", - "range": null, - "title": "mldv6 report timer interval(seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enable this option allows to send mldv6 report periodically.\n\nThis option solve the issue that failed to receive multicast data.\nSome routers fail to forward multicast packets.\nTo solve this problem, send multicast mdlv6 report to routers regularly.", - "id": "LWIP_ESP_MLDV6_REPORT", - "name": "LWIP_ESP_MLDV6_REPORT", - "range": null, - "title": "Send mldv6 report periodically", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCPIP task receive mail box size. Generally bigger value means higher throughput\nbut more memory. The value should be bigger than UDP/TCP mail box size.", - "id": "LWIP_TCPIP_RECVMBOX_SIZE", - "name": "LWIP_TCPIP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "TCPIP task receive mail box size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "!LWIP_AUTOIP && ", - "help": null, - "id": "LWIP_DHCP_DOES_ARP_CHECK", - "name": "LWIP_DHCP_DOES_ARP_CHECK", - "range": null, - "title": "DHCP provides simple ARP check", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_DHCP_DOES_ACD_CHECK", - "name": "LWIP_DHCP_DOES_ACD_CHECK", - "range": null, - "title": "DHCP provides Address Conflict Detection (ACD)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", - "name": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", - "range": null, - "title": "DHCP does not detect conflict on the offered IP", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Choose the preferred way of DHCP client to check if the offered address\nis available:\n* Using Address Conflict Detection (ACD) module assures that the offered IP address\nis properly probed and announced before binding in DHCP. This conforms to RFC5227,\nbut takes several seconds.\n* Using ARP check, we only send two ARP requests to check for replies. This process\nlasts 1 - 2 seconds.\n* No conflict detection: We directly bind the offered address.", - "id": "component-config-lwip-choose-how-dhcp-validates-offered-ip", - "name": "LWIP_DHCP_CHECKS_OFFERED_ADDRESS", - "title": "Choose how DHCP validates offered IP", - "type": "choice" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "This option could be used to disable DHCP client identification with its MAC address.\n(Client id is used by DHCP servers to uniquely identify clients and are included\nin the DHCP packets as an option 61)\nSet this option to \"y\" in order to exclude option 61 from DHCP packets.", - "id": "LWIP_DHCP_DISABLE_CLIENT_ID", - "name": "LWIP_DHCP_DISABLE_CLIENT_ID", - "range": null, - "title": "DHCP: Disable Use of HW address as client identification", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "This option could be used to disable DHCP client vendor class identification.\nSet this option to \"y\" in order to exclude option 60 from DHCP packets.", - "id": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", - "name": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", - "range": null, - "title": "DHCP: Disable Use of vendor class identification", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "When this option is enabled, DHCP client tries to re-obtain last valid IP address obtained from DHCP\nserver. Last valid DHCP configuration is stored in nvs and restored after reset/power-up. If IP is still\navailable, there is no need for sending discovery message to DHCP server and save some time.", - "id": "LWIP_DHCP_RESTORE_LAST_IP", - "name": "LWIP_DHCP_RESTORE_LAST_IP", - "range": null, - "title": "DHCP: Restore last IP obtained from DHCP server", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Set total length of outgoing DHCP option msg. Generally bigger value means it can carry more\noptions and values. If your code meets LWIP_ASSERT due to option value is too long.\nPlease increase the LWIP_DHCP_OPTIONS_LEN value.", - "id": "LWIP_DHCP_OPTIONS_LEN", - "name": "LWIP_DHCP_OPTIONS_LEN", - "range": [ - 68, - 255 - ], - "title": "DHCP total option length", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Number of clients that may store data in client_data member array of struct netif.", - "id": "LWIP_NUM_NETIF_CLIENT_DATA", - "name": "LWIP_NUM_NETIF_CLIENT_DATA", - "range": [ - 0, - 256 - ], - "title": "Number of clients store data in netif", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set DHCP coarse interval in seconds.\nA higher value will be less precise but cost less power consumption.", - "id": "LWIP_DHCP_COARSE_TIMER_SECS", - "name": "LWIP_DHCP_COARSE_TIMER_SECS", - "range": [ - 1, - 10 - ], - "title": "DHCP coarse timer interval(s)", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "The DHCP server is calculating lease time multiplying the sent\nand received times by this number of seconds per unit.\nThe default is 60, that equals one minute.", - "id": "LWIP_DHCPS_LEASE_UNIT", - "name": "LWIP_DHCPS_LEASE_UNIT", - "range": [ - 1, - 3600 - ], - "title": "Multiplier for lease time, in seconds", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "The maximum number of DHCP clients that are connected to the server.\nAfter this number is exceeded, DHCP server removes of the oldest device\nfrom it's address pool, without notification.", - "id": "LWIP_DHCPS_MAX_STATION_NUM", - "name": "LWIP_DHCPS_MAX_STATION_NUM", - "range": [ - 1, - 64 - ], - "title": "Maximum number of stations", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "Enabling this option allows DHCP server to support temporary static ARP entries\nfor DHCP Client. This will help the DHCP server to send the DHCP OFFER and DHCP ACK using IP unicast.", - "id": "LWIP_DHCPS_STATIC_ENTRIES", - "name": "LWIP_DHCPS_STATIC_ENTRIES", - "range": null, - "title": "Enable ARP static entries", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "This allows the DNS option to be optional in the DHCP offers,\ndepending on the server's runtime configuration.\nWhen enabled, the DHCP server will always add the DNS option to DHCP responses.\nIf a DNS server is not explicitly configured, the server's IP address will be used\nas the fallback for the DNS option.\nWhen disabled, the DHCP server will only include the DNS option in responses\nif a DNS server has been explicitly configured.\nThis option will be removed in IDF v6.x", - "id": "LWIP_DHCPS_ADD_DNS", - "name": "LWIP_DHCPS_ADD_DNS", - "range": null, - "title": "Always add DNS option in DHCP responses", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows the device to run the DHCP server\n(to dynamically assign IPv4 addresses to clients).", - "id": "LWIP_DHCPS", - "name": "LWIP_DHCPS", - "range": null, - "title": "DHCPS: Enable IPv4 Dynamic Host Configuration Protocol Server (DHCPS)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-dhcp-server", - "title": "DHCP server", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "DHCP client will send this many probes before self-assigning a\nlink local address.\n\nFrom LWIP help: \"This can be set as low as 1 to get an AutoIP\naddress very quickly, but you should be prepared to handle a\nchanging IP address when DHCP overrides AutoIP.\" (In the case of\nESP-IDF, this means multiple SYSTEM_EVENT_STA_GOT_IP events.)", - "id": "LWIP_AUTOIP_TRIES", - "name": "LWIP_AUTOIP_TRIES", - "range": null, - "title": "DHCP Probes before self-assigning IPv4 LL address", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "If the AUTOIP functionality detects this many IP conflicts while\nself-assigning an address, it will go into a rate limited mode.", - "id": "LWIP_AUTOIP_MAX_CONFLICTS", - "name": "LWIP_AUTOIP_MAX_CONFLICTS", - "range": null, - "title": "Max IP conflicts before rate limiting", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "If rate limiting self-assignment requests, wait this long between\neach request.", - "id": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", - "name": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", - "range": null, - "title": "Rate limited interval (seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows the device to self-assign an address\nin the 169.256/16 range if none is assigned statically or via DHCP.\n\nSee RFC 3927.", - "id": "LWIP_AUTOIP", - "is_menuconfig": true, - "name": "LWIP_AUTOIP", - "range": null, - "title": "Enable IPV4 Link-Local Addressing (AUTOIP)", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable IPv4 stack. If you want to use IPv6 only TCP/IP stack, disable this.", - "id": "LWIP_IPV4", - "name": "LWIP_IPV4", - "range": null, - "title": "Enable IPv4", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows the devices to IPV6 stateless address autoconfiguration (SLAAC).\n\nSee RFC 4862.", - "id": "LWIP_IPV6_AUTOCONFIG", - "name": "LWIP_IPV6_AUTOCONFIG", - "range": null, - "title": "Enable IPV6 stateless address autoconfiguration (SLAAC)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "The maximum number of IPv6 addresses on each interface. Any additional\naddresses will be discarded.", - "id": "LWIP_IPV6_NUM_ADDRESSES", - "name": "LWIP_IPV6_NUM_ADDRESSES", - "range": null, - "title": "Number of IPv6 addresses on each network interface", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Forwarding IPv6 packets between interfaces is only required when acting as\na router.", - "id": "LWIP_IPV6_FORWARD", - "name": "LWIP_IPV6_FORWARD", - "range": null, - "title": "Enable IPv6 forwarding between interfaces", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable IPv6 function. If not use IPv6 function, set this option to n.\nIf disabling LWIP_IPV6 then some other components (asio) will\nno longer be available.", - "id": "LWIP_IPV6", - "name": "LWIP_IPV6", - "range": null, - "title": "Enable IPv6", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6_AUTOCONFIG", - "help": "Use IPv6 Router Advertisement Recursive DNS Server Option (as per RFC 6106) to\ncopy a defined maximum number of DNS servers to the DNS module.\nSet this option to a number of desired DNS servers advertised in the RA protocol.\nThis feature is disabled when set to 0.", - "id": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", - "name": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", - "range": null, - "title": "Use IPv6 Router Advertisement Recursive DNS Server Option", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6_AUTOCONFIG", - "help": "Enable DHCPv6 for IPv6 stateless address autoconfiguration.\nNote that the dhcpv6 client has to be started using dhcp6_enable_stateless(netif);\nNote that the stateful address autoconfiguration is not supported.", - "id": "LWIP_IPV6_DHCP6", - "name": "LWIP_IPV6_DHCP6", - "range": null, - "title": "Enable DHCPv6 stateless address autoconfiguration", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable callbacks when the network interface is up/down and addresses are changed.", - "id": "LWIP_NETIF_STATUS_CALLBACK", - "name": "LWIP_NETIF_STATUS_CALLBACK", - "range": null, - "title": "Enable status callback for network interfaces", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_NETIF_LOOPBACK", - "help": "Configure the maximum number of packets which can be queued for\nloopback on a given interface. Reducing this number may cause packets\nto be dropped, but will avoid filling memory with queued packet data.", - "id": "LWIP_LOOPBACK_MAX_PBUFS", - "name": "LWIP_LOOPBACK_MAX_PBUFS", - "range": [ - 0, - 16 - ], - "title": "Max queued loopback packets per interface", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option means that if a packet is sent with a destination\naddress equal to the interface's own IP address, it will \"loop back\" and\nbe received by this interface.\nDisabling this option disables support of loopback interface in lwIP", - "id": "LWIP_NETIF_LOOPBACK", - "is_menuconfig": true, - "name": "LWIP_NETIF_LOOPBACK", - "range": null, - "title": "Support per-interface loopback", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously active TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew TCP connections after the limit is reached.", - "id": "LWIP_MAX_ACTIVE_TCP", - "name": "LWIP_MAX_ACTIVE_TCP", - "range": [ - 1, - 1024 - ], - "title": "Maximum active TCP Connections", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously listening TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew listening TCP connections after the limit is reached.", - "id": "LWIP_MAX_LISTENING_TCP", - "name": "LWIP_MAX_LISTENING_TCP", - "range": [ - 1, - 1024 - ], - "title": "Maximum listening TCP Connections", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Speed up the TCP retransmission interval. If disabled,\nit is recommended to change the number of SYN retransmissions to 6,\nand TCP initial rto time to 3000.", - "id": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", - "name": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", - "range": null, - "title": "TCP high speed retransmissions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of retransmissions of data segments.", - "id": "LWIP_TCP_MAXRTX", - "name": "LWIP_TCP_MAXRTX", - "range": [ - 3, - 12 - ], - "title": "Maximum number of retransmissions of data segments", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of retransmissions of SYN segments.", - "id": "LWIP_TCP_SYNMAXRTX", - "name": "LWIP_TCP_SYNMAXRTX", - "range": [ - 3, - 12 - ], - "title": "Maximum number of retransmissions of SYN segments", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment size for TCP transmission.\n\nCan be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.\nIPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460\nIPv6 TCP_MSS Range: 1220<= TCP_MSS <= 1440", - "id": "LWIP_TCP_MSS", - "name": "LWIP_TCP_MSS", - "range": [ - 536, - 1460 - ], - "title": "Maximum Segment Size (MSS)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP timer interval in milliseconds.\n\nCan be used to speed connections on bad networks.\nA lower value will redeliver unacked packets faster.", - "id": "LWIP_TCP_TMR_INTERVAL", - "name": "LWIP_TCP_TMR_INTERVAL", - "range": null, - "title": "TCP timer interval(ms)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment lifetime in milliseconds.", - "id": "LWIP_TCP_MSL", - "name": "LWIP_TCP_MSL", - "range": null, - "title": "Maximum segment lifetime (MSL)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment lifetime in milliseconds.", - "id": "LWIP_TCP_FIN_WAIT_TIMEOUT", - "name": "LWIP_TCP_FIN_WAIT_TIMEOUT", - "range": null, - "title": "Maximum FIN segment lifetime", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set default send buffer size for new TCP sockets.\n\nPer-socket send buffer size can be changed at runtime\nwith lwip_setsockopt(s, TCP_SNDBUF, ...).\n\nThis value must be at least 2x the MSS size, and the default\nis 4x the default MSS size.\n\nSetting a smaller default SNDBUF size can save some RAM, but\nwill decrease performance.", - "id": "LWIP_TCP_SND_BUF_DEFAULT", - "name": "LWIP_TCP_SND_BUF_DEFAULT", - "range": [ - 2440, - 65535 - ], - "title": "Default send buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set default TCP receive window size for new TCP sockets.\n\nPer-socket receive window size can be changed at runtime\nwith lwip_setsockopt(s, TCP_WINDOW, ...).\n\nSetting a smaller default receive window size can save some RAM,\nbut will significantly decrease performance.", - "id": "LWIP_TCP_WND_DEFAULT", - "name": "LWIP_TCP_WND_DEFAULT", - "range": [ - 2440, - 65535 - ], - "title": "Default receive window size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP receive mail box size. Generally bigger value means higher throughput\nbut more memory. The recommended value is: LWIP_TCP_WND_DEFAULT/TCP_MSS + 2, e.g. if\nLWIP_TCP_WND_DEFAULT=14360, TCP_MSS=1436, then the recommended receive mail box size is\n(14360/1436 + 2) = 12.\n\nTCP receive mail box is a per socket mail box, when the application receives packets\nfrom TCP socket, LWIP core firstly posts the packets to TCP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nLWIP_TCP_RECCVMBOX_SIZE packets for each TCP socket, so the maximum possible cached TCP packets\nfor all TCP sockets is LWIP_TCP_RECCVMBOX_SIZE multiples the maximum TCP socket number. In other\nwords, the bigger LWIP_TCP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receive mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", - "id": "LWIP_TCP_RECVMBOX_SIZE", - "name": "LWIP_TCP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "Default TCP receive mail box size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP accept mail box size. Generally bigger value means supporting larger backlogs\nbut more memory. The recommended value is 6, but applications can set it to a lower value\nif listening servers are meant to have a smaller backlog.\n\nTCP accept mail box is a per socket mail box, when the application listens for connections\nwith a given listening TCP socket. If the mailbox is full, LWIP will send a RST packet and\nthe client will fail to connect.", - "id": "LWIP_TCP_ACCEPTMBOX_SIZE", - "name": "LWIP_TCP_ACCEPTMBOX_SIZE", - "range": [ - 1, - 64 - ], - "title": "Default TCP accept mail box size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "The timeout value is TCP_OOSEQ_TIMEOUT * RTO.", - "id": "LWIP_TCP_OOSEQ_TIMEOUT", - "name": "LWIP_TCP_OOSEQ_TIMEOUT", - "range": [ - 1, - 30 - ], - "title": "Timeout for each pbuf queued in TCP OOSEQ, in RTOs.", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "If LWIP_TCP_OOSEQ_MAX_PBUFS = 0, TCP will not control the number of OOSEQ pbufs.\n\nIn a poor network environment, many out-of-order tcp pbufs will be received.\nThese out-of-order pbufs will be cached in the TCP out-of-order queue which will\ncause Wi-Fi/Ethernet fail to release RX buffer in time.\nIt is possible that all RX buffers for MAC layer are used by OOSEQ.\n\nControl the number of out-of-order pbufs to ensure\nthat the MAC layer has enough RX buffer to receive packets.\n\nIn the Wi-Fi scenario, recommended OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nIn the Ethernet scenario,recommended Ethernet OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ETH_DMA_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nWithin the recommended value range, the larger the value, the better the performance.\n\nMAX_TCP_NUMBER represent Maximum number of TCP connections in Wi-Fi(STA+SoftAP) and Ethernet scenario.", - "id": "LWIP_TCP_OOSEQ_MAX_PBUFS", - "name": "LWIP_TCP_OOSEQ_MAX_PBUFS", - "range": [ - 0, - 12 - ], - "title": "The maximum number of pbufs queued on OOSEQ per pcb", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "TCP will support sending selective acknowledgements (SACKs).", - "id": "LWIP_TCP_SACK_OUT", - "name": "LWIP_TCP_SACK_OUT", - "range": null, - "title": "Support sending selective acknowledgements", - "type": "bool" - } - ], - "depends_on": null, - "help": "Queue incoming out-of-order segments for later use.\n\nDisable this option to save some RAM during TCP sessions, at the expense\nof increased retransmissions if segments arrive out of order.", - "id": "LWIP_TCP_QUEUE_OOSEQ", - "name": "LWIP_TCP_QUEUE_OOSEQ", - "range": null, - "title": "Queue incoming out-of-order segments", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_MSS", - "name": "LWIP_TCP_OVERSIZE_MSS", - "range": null, - "title": "MSS", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_QUARTER_MSS", - "name": "LWIP_TCP_OVERSIZE_QUARTER_MSS", - "range": null, - "title": "25% MSS", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_DISABLE", - "name": "LWIP_TCP_OVERSIZE_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allows enabling \"oversize\" allocation of TCP transmission pbufs ahead of time,\nwhich can reduce the length of pbuf chains used for transmission.\n\nThis will not make a difference to sockets where Nagle's algorithm\nis disabled.\n\nDefault value of MSS is fine for most applications, 25% MSS may save\nsome RAM when only transmitting small amounts of data. Disabled will\nhave worst performance and fragmentation characteristics, but uses\nleast RAM overall.", - "id": "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size", - "name": "LWIP_TCP_OVERSIZE", - "title": "Pre-allocate transmit PBUF size", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_WND_SCALE", - "help": "Enable this feature to support TCP window scaling.", - "id": "LWIP_TCP_RCV_SCALE", - "name": "LWIP_TCP_RCV_SCALE", - "range": null, - "title": "Set TCP receiving window scaling factor", - "type": "int" - } - ], - "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND", - "help": "Enable this feature to support TCP window scaling.", - "id": "LWIP_WND_SCALE", - "name": "LWIP_WND_SCALE", - "range": null, - "title": "Support TCP window scale", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set default TCP rto time for a reasonable initial rto.\nIn bad network environment, recommend set value of rto time to 1500.", - "id": "LWIP_TCP_RTO_TIME", - "name": "LWIP_TCP_RTO_TIME", - "range": null, - "title": "Default TCP rto time", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-tcp", - "title": "TCP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of active UDP \"connections\" (ie\nUDP sockets sending/receiving data).\nThe practical maximum limit is determined by available\nheap memory at runtime.", - "id": "LWIP_MAX_UDP_PCBS", - "name": "LWIP_MAX_UDP_PCBS", - "range": [ - 1, - 1024 - ], - "title": "Maximum active UDP control blocks", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set UDP receive mail box size. The recommended value is 6.\n\nUDP receive mail box is a per socket mail box, when the application receives packets\nfrom UDP socket, LWIP core firstly posts the packets to UDP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nUDP_RECCVMBOX_SIZE packets for each UDP socket, so the maximum possible cached UDP packets\nfor all UDP sockets is UDP_RECCVMBOX_SIZE multiples the maximum UDP socket number. In other\nwords, the bigger UDP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receive mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", - "id": "LWIP_UDP_RECVMBOX_SIZE", - "name": "LWIP_UDP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "Default UDP receive mail box size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-udp", - "title": "UDP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received IP messages", - "id": "LWIP_CHECKSUM_CHECK_IP", - "name": "LWIP_CHECKSUM_CHECK_IP", - "range": null, - "title": "Enable LWIP IP checksums", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received UDP messages", - "id": "LWIP_CHECKSUM_CHECK_UDP", - "name": "LWIP_CHECKSUM_CHECK_UDP", - "range": null, - "title": "Enable LWIP UDP checksums", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received ICMP messages", - "id": "LWIP_CHECKSUM_CHECK_ICMP", - "name": "LWIP_CHECKSUM_CHECK_ICMP", - "range": null, - "title": "Enable LWIP ICMP checksums", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-checksums", - "title": "Checksums", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Configure TCP/IP task stack size, used by LWIP to process multi-threaded TCP/IP operations.\nSetting this stack too small will result in stack overflow crashes.", - "id": "LWIP_TCPIP_TASK_STACK_SIZE", - "name": "LWIP_TCPIP_TASK_STACK_SIZE", - "range": [ - 2048, - 65536 - ], - "title": "TCP/IP Task Stack Size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", - "name": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_CPU0", - "name": "LWIP_TCPIP_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_CPU1", - "name": "LWIP_TCPIP_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allows setting LwIP tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.\nCurrently this applies to \"TCP/IP\" task and \"Ping\" task.", - "id": "component-config-lwip-tcp-ip-task-affinity", - "name": "LWIP_TCPIP_TASK_AFFINITY", - "title": "TCP/IP task affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY", - "name": "LWIP_TCPIP_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Config max number of IPv6 packets to queue during MAC resolution.", - "id": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", - "name": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", - "range": [ - 3, - 20 - ], - "title": "Max number of IPv6 packets to queue during MAC resolution", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Config max number of entries in IPv6 neighbor cache", - "id": "LWIP_IPV6_ND6_NUM_NEIGHBORS", - "name": "LWIP_IPV6_ND6_NUM_NEIGHBORS", - "range": [ - 3, - 10 - ], - "title": "Max number of entries in IPv6 neighbor cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 on-link prefixes cache", - "id": "LWIP_IPV6_ND6_NUM_PREFIXES", - "name": "LWIP_IPV6_ND6_NUM_PREFIXES", - "range": null, - "title": "Max number of entries in IPv6 on-link prefixes cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 default routers cache", - "id": "LWIP_IPV6_ND6_NUM_ROUTERS", - "name": "LWIP_IPV6_ND6_NUM_ROUTERS", - "range": null, - "title": "Max number of entries in IPv6 default routers cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 destinations cache", - "id": "LWIP_IPV6_ND6_NUM_DESTINATIONS", - "name": "LWIP_IPV6_ND6_NUM_DESTINATIONS", - "range": null, - "title": "Max number of entries in IPv6 destinations cache", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV4", - "help": "Enable IPCP protocol in PPP negotiations, which assigns IPv4 addresses to the PPP client,\nas well as IPv4 DNS servers.\nYou can disable this if your modem supports IPv6 only.", - "id": "LWIP_PPP_ENABLE_IPV4", - "name": "LWIP_PPP_ENABLE_IPV4", - "range": null, - "title": "Enable IPV4 support for PPP connections (IPCP)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV6", - "help": "Enable IPV6 support in PPP for the local link between the DTE (processor) and DCE (modem).\nThere are some modems which do not support the IPV6 addressing in the local link.\nIf they are requested for IPV6CP negotiation, they may time out.\nThis would in turn fail the configuration for the whole link.\nIf your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.", - "id": "LWIP_PPP_ENABLE_IPV6", - "name": "LWIP_PPP_ENABLE_IPV6", - "range": null, - "title": "Enable IPV6 support for PPP connections (IPV6CP)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable to set a callback which is called on change of the internal PPP state machine.", - "id": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", - "name": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", - "range": null, - "title": "Enable Notify Phase Callback", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Password Authentication Protocol (PAP) support", - "id": "LWIP_PPP_PAP_SUPPORT", - "name": "LWIP_PPP_PAP_SUPPORT", - "range": null, - "title": "Enable PAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Challenge Handshake Authentication Protocol (CHAP) support", - "id": "LWIP_PPP_CHAP_SUPPORT", - "name": "LWIP_PPP_CHAP_SUPPORT", - "range": null, - "title": "Enable CHAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support", - "id": "LWIP_PPP_MSCHAP_SUPPORT", - "name": "LWIP_PPP_MSCHAP_SUPPORT", - "range": null, - "title": "Enable MSCHAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Microsoft Point-to-Point Encryption (MPPE) support", - "id": "LWIP_PPP_MPPE_SUPPORT", - "name": "LWIP_PPP_MPPE_SUPPORT", - "range": null, - "title": "Enable MPPE support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable to use PPP server", - "id": "LWIP_PPP_SERVER_SUPPORT", - "name": "LWIP_PPP_SERVER_SUPPORT", - "range": null, - "title": "Enable PPP server support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable support for VJ header compression.\nPlease disable this if you're using NAPT on PPP interface,\nsince the compressed IP header might not be correctly interpreted\nin NAT causing the compressed packet to be dropped.", - "id": "LWIP_PPP_VJ_HEADER_COMPRESSION", - "name": "LWIP_PPP_VJ_HEADER_COMPRESSION", - "range": null, - "title": "Enable VJ IP Header compression", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ENABLE_LCP_ECHO", - "help": "Interval in seconds between keepalive LCP echo requests, 0 to disable.", - "id": "LWIP_LCP_ECHOINTERVAL", - "name": "LWIP_LCP_ECHOINTERVAL", - "range": null, - "title": "Echo interval (s)", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_ENABLE_LCP_ECHO", - "help": "Number of consecutive unanswered echo requests before failure is indicated.", - "id": "LWIP_LCP_MAXECHOFAILS", - "name": "LWIP_LCP_MAXECHOFAILS", - "range": null, - "title": "Maximum echo failures", - "type": "int" - } - ], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable LCP echo keepalive requests", - "id": "LWIP_ENABLE_LCP_ECHO", - "name": "LWIP_ENABLE_LCP_ECHO", - "range": null, - "title": "Enable LCP ECHO", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable PPP debug log output", - "id": "LWIP_PPP_DEBUG_ON", - "name": "LWIP_PPP_DEBUG_ON", - "range": null, - "title": "Enable PPP debug log output", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && !LWIP_PPP_MPPE_SUPPORT && !LWIP_PPP_MSCHAP_SUPPORT", - "help": "This option uses mbedTLS crypto functions (instead of internal PolarSSL\nimplementation) for PPP authentication modes (PAP, CHAP, etc.).\nYou can use this option to address symbol duplication issues, since\nthe internal functions are not namespaced (e.g. md5_init()).", - "id": "LWIP_USE_EXTERNAL_MBEDTLS", - "name": "LWIP_USE_EXTERNAL_MBEDTLS", - "range": null, - "title": "Use mbedTLS instead of internal polarSSL", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable PPP stack. Now only PPP over serial is possible.", - "id": "LWIP_PPP_SUPPORT", - "is_menuconfig": true, - "name": "LWIP_PPP_SUPPORT", - "range": null, - "title": "Enable PPP support", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SLIP_SUPPORT", - "help": "Enable SLIP debug log output", - "id": "LWIP_SLIP_DEBUG_ON", - "name": "LWIP_SLIP_DEBUG_ON", - "range": null, - "title": "Enable SLIP debug log output", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable SLIP stack. Now only SLIP over serial is possible.\n\nSLIP over serial support is experimental and unsupported.", - "id": "LWIP_SLIP_SUPPORT", - "is_menuconfig": true, - "name": "LWIP_SLIP_SUPPORT", - "range": null, - "title": "Enable SLIP support (new/experimental)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ICMP module for check network stability", - "id": "LWIP_ICMP", - "name": "LWIP_ICMP", - "range": null, - "title": "ICMP: Enable ICMP", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_ICMP6 || LWIP_ICMP", - "help": null, - "id": "LWIP_MULTICAST_PING", - "name": "LWIP_MULTICAST_PING", - "range": null, - "title": "Respond to multicast pings", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_ICMP", - "help": null, - "id": "LWIP_BROADCAST_PING", - "name": "LWIP_BROADCAST_PING", - "range": null, - "title": "Respond to broadcast pings", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-icmp", - "title": "ICMP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously active LWIP\nRAW protocol control blocks. The practical maximum\nlimit is determined by available heap memory at runtime.", - "id": "LWIP_MAX_RAW_PCBS", - "name": "LWIP_MAX_RAW_PCBS", - "range": [ - 1, - 1024 - ], - "title": "Maximum LWIP RAW PCBs", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-lwip-raw-api", - "title": "LWIP RAW API", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Set maximum number of NTP servers used by LwIP SNTP module.\nFirst argument of sntp_setserver/sntp_setservername functions\nis limited to this value.", - "id": "LWIP_SNTP_MAX_SERVERS", - "name": "LWIP_SNTP_MAX_SERVERS", - "range": [ - 1, - 16 - ], - "title": "Maximum number of NTP servers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DHCP_GET_NTP_SRV", - "help": "Set maximum number of NTP servers acquired via DHCP-offer.\nShould be less or equal to \"Maximum number of NTP servers\", any extra servers would be just ignored.", - "id": "LWIP_DHCP_MAX_NTP_SERVERS", - "name": "LWIP_DHCP_MAX_NTP_SERVERS", - "range": null, - "title": "Maximum number of NTP servers acquired via DHCP", - "type": "int" - } - ], - "depends_on": null, - "help": "If enabled, LWIP will add 'NTP' to Parameter-Request Option sent via DHCP-request.\nDHCP server might reply with an NTP server address in option 42.\nSNTP callback for such replies should be set accordingly (see sntp_servermode_dhcp() func.)", - "id": "LWIP_DHCP_GET_NTP_SRV", - "name": "LWIP_DHCP_GET_NTP_SRV", - "range": null, - "title": "Request NTP servers from DHCP", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option allows you to set the time update period via SNTP.\nDefault is 1 hour. Must not be below 15 seconds by specification.\n(SNTPv4 RFC 4330 enforces a minimum update time of 15 seconds).", - "id": "LWIP_SNTP_UPDATE_DELAY", - "name": "LWIP_SNTP_UPDATE_DELAY", - "range": [ - 15000, - 4294967295 - ], - "title": "Request interval to update time (ms)", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SNTP_STARTUP_DELAY", - "help": "RFC 4330 recommends a startup delay before sending the initial request.\nLWIP calculates this delay to a random number of milliseconds between 0 and this value.", - "id": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", - "name": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", - "range": [ - 100, - 300000 - ], - "title": "Maximum startup delay (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "It is recommended (RFC 4330) to delay the initial request after by a random timeout from 1 to 5 minutes\nto reduce potential load of NTP servers after simultaneous power-up of many devices.\nThis option disables this initial delay. Please use this option with care, it could improve\na single device responsiveness but might cause peaks on the network after reset.\nAnother option to address responsiveness of devices while using the initial random delay\nis to adjust LWIP_SNTP_MAXIMUM_STARTUP_DELAY.", - "id": "LWIP_SNTP_STARTUP_DELAY", - "name": "LWIP_SNTP_STARTUP_DELAY", - "range": null, - "title": "Enable SNTP startup delay", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-sntp", - "title": "SNTP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Maximum number of IP addresses that can be returned by DNS queries for a single host.", - "id": "LWIP_DNS_MAX_HOST_IP", - "name": "LWIP_DNS_MAX_HOST_IP", - "range": null, - "title": "Maximum number of IP addresses per host", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of DNS servers.\nIf fallback DNS servers are supported,\nthe number of DNS servers needs to be greater than or equal to 3.", - "id": "LWIP_DNS_MAX_SERVERS", - "name": "LWIP_DNS_MAX_SERVERS", - "range": [ - 1, - 4 - ], - "title": "Maximum number of DNS servers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "help": "This option allows you to config dns fallback server address.", - "id": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", - "name": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", - "range": null, - "title": "DNS fallback server address", - "type": "string" - } - ], - "depends_on": "LWIP_DNS_MAX_SERVERS >= 3", - "help": "Enable this feature to support DNS fallback server.", - "id": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "name": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "range": null, - "title": "Enable DNS fallback server support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option allows collecting DNS server settings per netif using\nconfigurable callback function.\nIt's typically used with CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF\nwhich configures a callback to collect the DNS info on esp_netif layer.", - "id": "LWIP_DNS_SETSERVER_WITH_NETIF", - "name": "LWIP_DNS_SETSERVER_WITH_NETIF", - "range": null, - "title": "Enable DNS server settings with netif", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-dns", - "title": "DNS", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of ports a bridge can consists of.", - "id": "LWIP_BRIDGEIF_MAX_PORTS", - "name": "LWIP_BRIDGEIF_MAX_PORTS", - "range": [ - 1, - 63 - ], - "title": "Maximum number of bridge ports", - "type": "int" - }, - { - "children": [], - "depends_on": "!COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "help": "Enable this option keeps LWIP assertion checks enabled.\nIt is recommended to keep this option enabled.\n\nIf asserts are disabled for the entire project, they are also disabled\nfor LWIP and this option is ignored.", - "id": "LWIP_ESP_LWIP_ASSERT", - "name": "LWIP_ESP_LWIP_ASSERT", - "range": null, - "title": "Enable LWIP ASSERT checks", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_NONE", - "name": "LWIP_HOOK_TCP_ISN_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_DEFAULT", - "name": "LWIP_HOOK_TCP_ISN_DEFAULT", - "range": null, - "title": "Default implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_CUSTOM", - "name": "LWIP_HOOK_TCP_ISN_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables to define a TCP ISN hook to randomize initial sequence\nnumber in TCP connection.\nThe default TCP ISN algorithm used in IDF (standardized in RFC 6528)\nproduces ISN by combining an MD5 of the new TCP id and a stable\nsecret with the current time.\nThis is because the lwIP implementation (`tcp_next_iss`) is not\nvery strong, as it does not take into consideration any platform\nspecific entropy source.\n\nSet to LWIP_HOOK_TCP_ISN_CUSTOM to provide custom implementation.\nSet to LWIP_HOOK_TCP_ISN_NONE to use lwIP implementation.", - "id": "component-config-lwip-hooks-tcp-isn-hook", - "name": "LWIP_HOOK_TCP_ISN", - "title": "TCP ISN Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_NONE", - "name": "LWIP_HOOK_IP6_ROUTE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_DEFAULT", - "name": "LWIP_HOOK_IP6_ROUTE_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_CUSTOM", - "name": "LWIP_HOOK_IP6_ROUTE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-route-hook", - "name": "LWIP_HOOK_IP6_ROUTE", - "title": "IPv6 route Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_NONE", - "name": "LWIP_HOOK_ND6_GET_GW_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_DEFAULT", - "name": "LWIP_HOOK_ND6_GET_GW_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_CUSTOM", - "name": "LWIP_HOOK_ND6_GET_GW_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-get-gateway-hook", - "name": "LWIP_HOOK_ND6_GET_GW", - "title": "IPv6 get gateway Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 source address selection.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-source-address-selection-hook", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR", - "title": "IPv6 source address selection Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables custom DNS resolve hook (without callback).\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-netconn-external-resolve-hook", - "name": "LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE", - "title": "Netconn external resolve Hook", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This hidden option helps configure the DNS external resolve\nhook for external components like OpenThread. It ensures that\n`LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM` is selected without directly\nadding a dependency in the choice construct.", - "id": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", - "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", - "name": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", - "name": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables custom DNS resolve hook (with callback).\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-dns-external-resolve-hook", - "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE", - "title": "DNS external resolve Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_NONE", - "name": "LWIP_HOOK_IP6_INPUT_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_DEFAULT", - "name": "LWIP_HOOK_IP6_INPUT_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_CUSTOM", - "name": "LWIP_HOOK_IP6_INPUT_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 packet input.\nSetting this to \"default\" provides weak IDF implementation,\nwhich drops all incoming IPv6 traffic if the interface has no link local address.\n(this default implementation is \"weak\" and could be still overwritten\nin the application if some additional IPv6 input packet filtering is needed)\nSetting this to \"none\" removes this default filter and conforms to the lwIP\nimplementation (which accepts multicasts even if the interface has no link local address)\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-packet-input", - "name": "LWIP_HOOK_IP6_INPUT", - "title": "IPv6 packet input", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-lwip-hooks", - "title": "Hooks", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": "Enabling this option routes all enabled LWIP debugs through ESP_LOGD.", - "id": "LWIP_DEBUG_ESP_LOG", - "name": "LWIP_DEBUG_ESP_LOG", - "range": null, - "title": "Route LWIP debugs through ESP_LOG interface", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_NETIF_DEBUG", - "name": "LWIP_NETIF_DEBUG", - "range": null, - "title": "Enable netif debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_PBUF_DEBUG", - "name": "LWIP_PBUF_DEBUG", - "range": null, - "title": "Enable pbuf debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_ETHARP_DEBUG", - "name": "LWIP_ETHARP_DEBUG", - "range": null, - "title": "Enable etharp debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_API_LIB_DEBUG", - "name": "LWIP_API_LIB_DEBUG", - "range": null, - "title": "Enable api lib debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_SOCKETS_DEBUG", - "name": "LWIP_SOCKETS_DEBUG", - "range": null, - "title": "Enable socket debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_IP_DEBUG", - "name": "LWIP_IP_DEBUG", - "range": null, - "title": "Enable IP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG && LWIP_ICMP", - "help": null, - "id": "LWIP_ICMP_DEBUG", - "name": "LWIP_ICMP_DEBUG", - "range": null, - "title": "Enable ICMP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DHCP_STATE_DEBUG", - "name": "LWIP_DHCP_STATE_DEBUG", - "range": null, - "title": "Enable DHCP state tracking", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DHCP_DEBUG", - "name": "LWIP_DHCP_DEBUG", - "range": null, - "title": "Enable DHCP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_IP6_DEBUG", - "name": "LWIP_IP6_DEBUG", - "range": null, - "title": "Enable IP6 debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_ICMP6_DEBUG", - "name": "LWIP_ICMP6_DEBUG", - "range": null, - "title": "Enable ICMP6 debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_TCP_DEBUG", - "name": "LWIP_TCP_DEBUG", - "range": null, - "title": "Enable TCP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_UDP_DEBUG", - "name": "LWIP_UDP_DEBUG", - "range": null, - "title": "Enable UDP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_SNTP_DEBUG", - "name": "LWIP_SNTP_DEBUG", - "range": null, - "title": "Enable SNTP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DNS_DEBUG", - "name": "LWIP_DNS_DEBUG", - "range": null, - "title": "Enable DNS debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG && LWIP_IPV4_NAPT", - "help": null, - "id": "LWIP_NAPT_DEBUG", - "name": "LWIP_NAPT_DEBUG", - "range": null, - "title": "Enable NAPT debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_DEBUG", - "name": "LWIP_BRIDGEIF_DEBUG", - "range": null, - "title": "Enable bridge generic debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_FDB_DEBUG", - "name": "LWIP_BRIDGEIF_FDB_DEBUG", - "range": null, - "title": "Enable bridge FDB debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_FW_DEBUG", - "name": "LWIP_BRIDGEIF_FW_DEBUG", - "range": null, - "title": "Enable bridge forwarding debug messages", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows different kinds of lwIP debug output.\n\nAll lwIP debug features increase the size of the final binary.", - "id": "LWIP_DEBUG", - "is_menuconfig": true, - "name": "LWIP_DEBUG", - "range": null, - "title": "Enable LWIP Debug", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-lwip", - "title": "LWIP", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_INTERNAL_MEM_ALLOC", - "name": "MBEDTLS_INTERNAL_MEM_ALLOC", - "range": null, - "title": "Internal memory", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": null, - "id": "MBEDTLS_EXTERNAL_MEM_ALLOC", - "name": "MBEDTLS_EXTERNAL_MEM_ALLOC", - "range": null, - "title": "External SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEFAULT_MEM_ALLOC", - "name": "MBEDTLS_DEFAULT_MEM_ALLOC", - "range": null, - "title": "Default alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CUSTOM_MEM_ALLOC", - "name": "MBEDTLS_CUSTOM_MEM_ALLOC", - "range": null, - "title": "Custom alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", - "help": "Allows to use IRAM memory region as 8bit accessible region.\n\nTLS input and output buffers will be allocated in IRAM section which is 32bit aligned\nmemory. Every unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", - "id": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", - "name": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", - "range": null, - "title": "Internal IRAM", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allocation strategy for mbedTLS, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free() using\n mbedtls_platform_set_calloc_free() function\n- Internal IRAM memory wherever applicable else internal DRAM\n\nRecommended mode here is always internal (*), since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.\n\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\nSPIRAM contents provided hardware flash encryption feature is enabled.\nIn that case, using external SPIRAM allocation strategy is also safe choice\nfrom security perspective.", - "id": "component-config-mbedtls-memory-allocation-strategy", - "name": "MBEDTLS_MEM_ALLOC_MODE", - "title": "Memory allocation strategy", - "type": "choice" - }, - { - "children": [], - "depends_on": "!MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "Maximum TLS message length (in bytes) supported by mbedTLS.\n\n16384 is the default and this value is required to comply\nfully with TLS standards.\n\nHowever you can set a lower value in order to save RAM. This\nis safe if the other end of the connection supports Maximum\nFragment Length Negotiation Extension (max_fragment_length,\nsee RFC6066) or you know for certain that it will never send a\nmessage longer than a certain number of bytes.\n\nIf the value is set too low, symptoms are a failed TLS\nhandshake or a return value of MBEDTLS_ERR_SSL_INVALID_RECORD\n(-0x7200).", - "id": "MBEDTLS_SSL_MAX_CONTENT_LEN", - "name": "MBEDTLS_SSL_MAX_CONTENT_LEN", - "range": null, - "title": "TLS maximum message content length", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "This defines maximum incoming fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", - "id": "MBEDTLS_SSL_IN_CONTENT_LEN", - "name": "MBEDTLS_SSL_IN_CONTENT_LEN", - "range": [ - 512, - 16384 - ], - "title": "TLS maximum incoming fragment length", - "type": "int" - }, - { - "children": [], - "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "This defines maximum outgoing fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", - "id": "MBEDTLS_SSL_OUT_CONTENT_LEN", - "name": "MBEDTLS_SSL_OUT_CONTENT_LEN", - "range": [ - 512, - 16384 - ], - "title": "TLS maximum outgoing fragment length", - "type": "int" - } - ], - "depends_on": null, - "help": "If enabled, this option allows customizing TLS in/out fragment length\nin asymmetric way. Please note that enabling this with default values\nsaves 12KB of dynamic memory per TLS connection.", - "id": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "name": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "range": null, - "title": "Asymmetric in/out fragment length", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "help": "Free CA certificate after its usage in the handshake process.\nThis option will decrease the heap footprint for the TLS handshake, but may lead to a problem:\nIf the respective ssl object needs to perform the TLS handshake again,\nthe CA certificate should once again be registered to the ssl object.", - "id": "MBEDTLS_DYNAMIC_FREE_CA_CERT", - "name": "MBEDTLS_DYNAMIC_FREE_CA_CERT", - "range": null, - "title": "Free SSL CA certificate after its usage", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_DYNAMIC_BUFFER", - "help": "Free private key and DHM data after its usage in handshake process.\n\nThe option will decrease heap cost when handshake, but also lead to problem:\n\nBecause all certificate, private key and DHM data are freed so users should register\ncertificate and private key to ssl config object again.", - "id": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "name": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "range": null, - "title": "Free private key and DHM data after its usage", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX && !MBEDTLS_SSL_PROTO_DTLS && !MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "help": "Using dynamic TX/RX buffer. After enabling this option, mbedTLS will\nallocate TX buffer when need to send data and then free it if all data\nis sent, allocate RX buffer when need to receive data and then free it\nwhen all data is used or read by upper layer.\n\nBy default, when SSL is initialized, mbedTLS also allocate TX and\nRX buffer with the default value of \"MBEDTLS_SSL_OUT_CONTENT_LEN\" or\n\"MBEDTLS_SSL_IN_CONTENT_LEN\", so to save more heap, users can set\nthe options to be an appropriate value.", - "id": "MBEDTLS_DYNAMIC_BUFFER", - "name": "MBEDTLS_DYNAMIC_BUFFER", - "range": null, - "title": "Using dynamic TX/RX buffer", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_WARN", - "name": "MBEDTLS_DEBUG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_INFO", - "name": "MBEDTLS_DEBUG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_DEBUG", - "name": "MBEDTLS_DEBUG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_VERBOSE", - "name": "MBEDTLS_DEBUG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_DEBUG", - "help": "Set mbedTLS debugging level", - "id": "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level", - "name": "MBEDTLS_DEBUG_LEVEL", - "title": "Set mbedTLS debugging level", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enable mbedTLS debugging functions at compile time.\n\nIf this option is enabled, you can include\n\"mbedtls/esp_debug.h\" and call mbedtls_esp_enable_debug_log()\nat runtime in order to enable mbedTLS debug output via the ESP\nlog mechanism.", - "id": "MBEDTLS_DEBUG", - "name": "MBEDTLS_DEBUG", - "range": null, - "title": "Enable mbedTLS debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL", - "name": "MBEDTLS_DEBUG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", - "name": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", - "range": null, - "title": "TLS 1.3 middlebox compatibility mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", - "range": null, - "title": "TLS 1.3 PSK key exchange mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", - "range": null, - "title": "TLS 1.3 ephemeral key exchange mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", - "range": null, - "title": "TLS 1.3 PSK ephemeral key exchange mode", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "id": "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations", - "title": "TLS 1.3 related configurations", - "type": "menu" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_KEEP_PEER_CERTIFICATE && !MBEDTLS_DYNAMIC_BUFFER", - "help": null, - "id": "MBEDTLS_SSL_PROTO_TLS1_3", - "name": "MBEDTLS_SSL_PROTO_TLS1_3", - "range": null, - "title": "Support TLS 1.3 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This enables the SSL buffer to be resized automatically\nbased on the negotiated maximum fragment length in each direction.", - "id": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "name": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "range": null, - "title": "Variable SSL buffer length", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECDH_C && MBEDTLS_ECP_RESTARTABLE", - "help": "Use the legacy ECDH context format.\nDefine this option only if you enable MBEDTLS_ECP_RESTARTABLE or if you\nwant to access ECDH context fields directly.", - "id": "MBEDTLS_ECDH_LEGACY_CONTEXT", - "name": "MBEDTLS_ECDH_LEGACY_CONTEXT", - "range": null, - "title": "Use a backward compatible ECDH context (Experimental)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables users to configure the set of trusted certificates\nthrough a callback instead of a linked list.\n\nSee mbedTLS documentation for required API and more details.", - "id": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", - "name": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", - "range": null, - "title": "Enable trusted certificate callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C", - "help": "Enable serialization of the TLS context structures\nThis is a local optimization in handling a single, potentially long-lived connection.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", - "name": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", - "range": null, - "title": "Enable serialization of the TLS context structures", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Keep the peer's certificate after completion of the handshake.\nDisabling this option will save about 4kB of heap and some code size.\n\nSee mbedTLS documentation for required API and more details.", - "id": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", - "name": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", - "range": null, - "title": "Keep peer certificate after handshake completion", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_X509_CRL_PARSE_C", - "help": "Enable PKCS number 7 core for using PKCS number 7-formatted signatures.", - "id": "MBEDTLS_PKCS7_C", - "name": "MBEDTLS_PKCS7_C", - "range": null, - "title": "Enable PKCS number 7", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID", - "help": "Controls the use of record plaintext padding in TLS 1.3 and\nwhen using the Connection ID extension in DTLS 1.2.\n\nThe padding will always be chosen so that the length of the\npadded plaintext is a multiple of the value of this option.\n\nNotes:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", - "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", - "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", - "range": null, - "title": "Record plaintext padding", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", - "help": "Maximum length of CIDs used for incoming DTLS messages", - "id": "MBEDTLS_SSL_CID_IN_LEN_MAX", - "name": "MBEDTLS_SSL_CID_IN_LEN_MAX", - "range": null, - "title": "Maximum length of CIDs used for incoming DTLS messages", - "type": "int" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", - "help": "Maximum length of CIDs used for outgoing DTLS messages", - "id": "MBEDTLS_SSL_CID_OUT_LEN_MAX", - "name": "MBEDTLS_SSL_CID_OUT_LEN_MAX", - "range": null, - "title": "Maximum length of CIDs used for outgoing DTLS messages", - "type": "int" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "help": "Enable support for the DTLS Connection ID extension which allows to\nidentify DTLS connections across changes in the underlying transport.", - "id": "MBEDTLS_SSL_DTLS_CONNECTION_ID", - "name": "MBEDTLS_SSL_DTLS_CONNECTION_ID", - "range": null, - "title": "Support for the DTLS Connection ID extension", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "help": "Enable support for negotiation of DTLS-SRTP (RFC 5764) through the use_srtp extension.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SSL_DTLS_SRTP", - "name": "MBEDTLS_SSL_DTLS_SRTP", - "range": null, - "title": "Enable support for negotiation of DTLS-SRTP (RFC 5764)", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "id": "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations", - "title": "DTLS-based configurations", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-mbedtls-v3-x-related", - "title": "mbedTLS v3.x related", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", - "range": null, - "title": "Use the full default certificate bundle", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Use only the most common certificates from the default bundles, reducing the size with 50%,\nwhile still having around 99% coverage.", - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", - "range": null, - "title": "Use only the most common certificates from the default bundles", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "range": null, - "title": "Do not use the default certificate bundle", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options", - "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", - "title": "Default certificate bundle options", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "help": "Name of the custom certificate directory or file. This path is evaluated\nrelative to the project root directory.", - "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", - "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", - "range": null, - "title": "Custom certificate bundle path", - "type": "string" - } - ], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "range": null, - "title": "Add custom certificates to the default bundle", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && !MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "help": "Include the deprecated list of root certificates in the bundle.\nThis list gets updated when a certificate is removed from the Mozilla's\nNSS root certificate store. This config can be enabled if you would like\nto ensure that none of the certificates that were deployed in the product\nare affected because of the update to bundle. In turn, enabling this\nconfig keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be be removed in ESP-IDF (next) major release", - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", - "range": null, - "title": "Add deprecated root certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", - "range": null, - "title": "Maximum no of certificates allowed in certificate bundle", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable support for large number of default root certificates\n\nWhen enabled this option allows user to store default as well\nas customer specific root certificates in compressed format rather\nthan storing full certificate. For the root certificates the public key and the subject name\nwill be stored.", - "id": "MBEDTLS_CERTIFICATE_BUNDLE", - "name": "MBEDTLS_CERTIFICATE_BUNDLE", - "range": null, - "title": "Enable trusted root certificate bundle", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-certificate-bundle", - "title": "Certificate Bundle", - "type": "menu" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", - "id": "MBEDTLS_ECP_RESTARTABLE", - "name": "MBEDTLS_ECP_RESTARTABLE", - "range": null, - "title": "Enable mbedTLS ecp restartable", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_DES_C", - "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", - "id": "MBEDTLS_CMAC_C", - "name": "MBEDTLS_CMAC_C", - "range": null, - "title": "Enable CMAC mode for block ciphers", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_AES_USE_INTERRUPT", - "help": "This config helps to set the interrupt priority level for the AES peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", - "id": "MBEDTLS_AES_INTERRUPT_LEVEL", - "name": "MBEDTLS_AES_INTERRUPT_LEVEL", - "range": [ - 0, - 3 - ], - "title": "AES hardware interrupt level", - "type": "int" - } - ], - "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", - "help": "Use an interrupt to coordinate long AES operations.\n\nThis allows other code to run on the CPU while an AES operation is pending.\nOtherwise the CPU busy-waits.", - "id": "MBEDTLS_AES_USE_INTERRUPT", - "name": "MBEDTLS_AES_USE_INTERRUPT", - "range": null, - "title": "Use interrupt for long AES operations", - "type": "bool" - } - ], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_AES_SUPPORTED", - "help": "Enable hardware accelerated AES encryption & decryption.\n\nNote that if the ESP32 CPU is running at 240MHz, hardware AES does not\noffer any speed boost over software AES.", - "id": "MBEDTLS_HARDWARE_AES", - "name": "MBEDTLS_HARDWARE_AES", - "range": null, - "title": "Enable hardware AES acceleration", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nhardware AES encryption/decryption operations.", - "id": "component-config-mbedtls-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "help": "Enables the pseudo round function of the AES peripheral.\nEnabling this would impact the performance of the AES operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide.", - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Enable AES hardware's pseudo round function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_AES_SUPPORT_GCM && MBEDTLS_HARDWARE_AES", - "help": "Enable partially hardware accelerated GCM. GHASH calculation is still done\nin software.\n\nIf MBEDTLS_HARDWARE_GCM is disabled and MBEDTLS_HARDWARE_AES is enabled then\nmbedTLS will still use the hardware accelerated AES block operation, but\non a single block at a time.", - "id": "MBEDTLS_HARDWARE_GCM", - "name": "MBEDTLS_HARDWARE_GCM", - "range": null, - "title": "Enable partially hardware accelerated GCM", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_AES", - "help": "Enable this config to support fallback to software definitions for a non-AES\ncipher GCM operation as we support hardware acceleration only for AES cipher.\nSome of the non-AES ciphers used in a GCM operation are DES, ARIA, CAMELLIA,\nCHACHA20, BLOWFISH.\n\nIf this config is disabled, performing a non-AES cipher GCM operation with\nthe config MBEDTLS_HARDWARE_AES enabled will result in calculation of an\nAES-GCM operation instead for the given input values and thus could lead\nto failure in certificate validation which would ultimately lead to a SSL\nhandshake failure.\n\nThis config being by-default enabled leads to an increase in binary size\nfootprint of ~2.5KB.\nIn case you are sure that your use case (for example, client and server\nconfigurations in case of a TLS handshake) would not involve any GCM\noperations using a non-AES cipher, you can safely disable this config,\nleading to reduction in binary size footprint.", - "id": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", - "name": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", - "range": null, - "title": "Enable support for non-AES ciphers in GCM operation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_MPI", - "help": "Fallback to software implementation for RSA key lengths\nlarger than SOC_RSA_MAX_BIT_LEN. If this is not active\nthen the ESP will be unable to process keys greater\nthan SOC_RSA_MAX_BIT_LEN.", - "id": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", - "name": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", - "range": null, - "title": "Fallback to software implementation for larger MPI values", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_MPI_USE_INTERRUPT", - "help": "This config helps to set the interrupt priority level for the MPI peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", - "id": "MBEDTLS_MPI_INTERRUPT_LEVEL", - "name": "MBEDTLS_MPI_INTERRUPT_LEVEL", - "range": [ - 0, - 3 - ], - "title": "MPI hardware interrupt level", - "type": "int" - } - ], - "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI", - "help": "Use an interrupt to coordinate long MPI operations.\n\nThis allows other code to run on the CPU while an MPI operation is pending.\nOtherwise the CPU busy-waits.", - "id": "MBEDTLS_MPI_USE_INTERRUPT", - "name": "MBEDTLS_MPI_USE_INTERRUPT", - "range": null, - "title": "Use interrupt for MPI exp-mod operations", - "type": "bool" - } - ], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED", - "help": "Enable hardware accelerated multiple precision integer operations.\n\nHardware accelerated multiplication, modulo multiplication,\nand modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.\n\nThese operations are used by RSA.", - "id": "MBEDTLS_HARDWARE_MPI", - "name": "MBEDTLS_HARDWARE_MPI", - "range": null, - "title": "Enable hardware MPI (bignum) acceleration", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED", - "help": "Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\n\nDue to a hardware limitation, on the ESP32 hardware acceleration is only\nguaranteed if SHA digests are calculated one at a time. If more\nthan one SHA digest is calculated at the same time, one will\nbe calculated fully in hardware and the rest will be calculated\n(at least partially calculated) in software. This happens automatically.\n\nSHA hardware acceleration is faster than software in some situations but\nslower in others. You should benchmark to find the best setting for you.", - "id": "MBEDTLS_HARDWARE_SHA", - "name": "MBEDTLS_HARDWARE_SHA", - "range": null, - "title": "Enable hardware SHA acceleration", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECC", - "help": "Fallback to software implementation of ECC point multiplication and point verification\nfor curves not supported in hardware.", - "id": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", - "name": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", - "range": null, - "title": "Fallback to software implementation for curves not supported in hardware", - "type": "bool" - } - ], - "depends_on": "SOC_ECC_SUPPORTED", - "help": "Enable hardware accelerated ECC point multiplication and point verification for points\non curve SECP192R1 and SECP256R1 in mbedTLS", - "id": "MBEDTLS_HARDWARE_ECC", - "name": "MBEDTLS_HARDWARE_ECC", - "range": null, - "title": "Enable hardware ECC acceleration", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Use ROM MD5 in mbedTLS.", - "id": "MBEDTLS_ROM_MD5", - "name": "MBEDTLS_ROM_MD5", - "range": null, - "title": "Use MD5 implementation in ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "help": "The ECDSA peripheral before ESP32-H2 v1.2 does not offer constant time ECDSA sign operation.\nThis time can be observed through power profiling of the device,\nmaking the ECDSA private key vulnerable to side-channel timing attacks.\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nIt is highly recommended to also enable Secure Boot for the device in addition to this countermeasure\nso that only trusted software can execute on the device.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", - "range": null, - "title": "Mask original ECDSA sign operation under dummy sign operations", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "help": "This option adds a delay after the actual ECDSA signature operation\nso that the entire operation appears to be constant time for the software.\nThis fix helps in protecting the device only in case of remote timing attack on the ECDSA private key.\nFor e.g., When an interface is exposed by the device to perform ECDSA signature\nof an arbitrary message.\nThe signature time would appear to be constant to the external entity after enabling\nthis option.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", - "range": null, - "title": "Make ECDSA signature operation pseudo constant time for software", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "id": "component-config-mbedtls-enable-ecdsa-signing-using-on-chip-ecdsa-peripheral-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral", - "title": "Enable Software Countermeasure for ECDSA signing using on-chip ECDSA peripheral", - "type": "menu" - } - ], - "depends_on": "SOC_ECDSA_SUPPORTED", - "help": "Enable hardware accelerated ECDSA peripheral to sign data\non curve SECP192R1 and SECP256R1 in mbedTLS.\n\nNote that for signing, the private key has to be burnt in an efuse key block\nwith key purpose set to ECDSA_KEY.\nIf no key is burnt, it will report an error\n\nThe key should be burnt in little endian format. espefuse.py utility handles it internally\nbut care needs to be taken while burning using esp_efuse APIs", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN", - "range": null, - "title": "Enable ECDSA signing using on-chip ECDSA peripheral", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ECDSA_SUPPORTED", - "help": "Enable hardware accelerated ECDSA peripheral to verify signature\non curve SECP192R1 and SECP256R1 in mbedTLS.", - "id": "MBEDTLS_HARDWARE_ECDSA_VERIFY", - "name": "MBEDTLS_HARDWARE_ECDSA_VERIFY", - "range": null, - "title": "Enable ECDSA signature verification using on-chip ECDSA peripheral", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", - "id": "MBEDTLS_ATCA_HW_ECDSA_SIGN", - "name": "MBEDTLS_ATCA_HW_ECDSA_SIGN", - "range": null, - "title": "Enable hardware ECDSA sign acceleration when using ATECC608A", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", - "id": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", - "name": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", - "range": null, - "title": "Enable hardware ECDSA verify acceleration when using ATECC608A", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HAVE_TIME", - "help": "Enabling this config will provide users with a function\n\"mbedtls_platform_set_time()\" that allows to set an alternative\ntime function pointer.", - "id": "MBEDTLS_PLATFORM_TIME_ALT", - "name": "MBEDTLS_PLATFORM_TIME_ALT", - "range": null, - "title": "Enable mbedtls time support: platform-specific", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HAVE_TIME", - "help": "Enables X.509 certificate expiry checks in mbedTLS.\n\nIf this option is disabled (default) then X.509 certificate\n\"valid from\" and \"valid to\" timestamp fields are ignored.\n\nIf this option is enabled, these fields are compared with the\ncurrent system date and time. The time is retrieved using the\nstandard time() and gmtime() functions. If the certificate is not\nvalid for the current system time then verification will fail with\ncode MBEDTLS_X509_BADCERT_FUTURE or MBEDTLS_X509_BADCERT_EXPIRED.\n\nEnabling this option requires adding functionality in the firmware\nto set the system clock to a valid timestamp before using TLS. The\nrecommended way to do this is via ESP-IDF's SNTP functionality, but\nany method can be used.\n\nIn the case where only a small number of certificates are trusted by\nthe device, please carefully consider the tradeoffs of enabling this\noption. There may be undesired consequences, for example if all\ntrusted certificates expire while the device is offline and a TLS\nconnection is required to update. Or if an issue with the SNTP\nserver means that the system time is invalid for an extended period\nafter a reset.", - "id": "MBEDTLS_HAVE_TIME_DATE", - "name": "MBEDTLS_HAVE_TIME_DATE", - "range": null, - "title": "Enable mbedtls certificate expiry check", - "type": "bool" - } - ], - "depends_on": "!ESP_TIME_FUNCS_USE_NONE", - "help": "Enable use of time.h functions (time() and gmtime()) by mbedTLS.\n\nThis option doesn't require the system time to be correct, but enables\nfunctionality that requires relative timekeeping - for example periodic\nexpiry of TLS session tickets or session cache entries.\n\nDisabling this option will save some firmware size, particularly if\nthe rest of the firmware doesn't call any standard timekeeeping\nfunctions.", - "id": "MBEDTLS_HAVE_TIME", - "name": "MBEDTLS_HAVE_TIME", - "range": null, - "title": "Enable mbedtls time support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Standard ECDSA is \"fragile\" in the sense that lack of entropy when signing\nmay result in a compromise of the long-term signing key.", - "id": "MBEDTLS_ECDSA_DETERMINISTIC", - "name": "MBEDTLS_ECDSA_DETERMINISTIC", - "range": null, - "title": "Enable deterministic ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable MBEDTLS_SHA512_C adds support for SHA-384 and SHA-512.", - "id": "MBEDTLS_SHA512_C", - "name": "MBEDTLS_SHA512_C", - "range": null, - "title": "Enable the SHA-384 and SHA-512 cryptographic hash algorithms", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling MBEDTLS_SHA3_C adds support for SHA3.\nEnabling this configuration option increases the flash footprint\nby almost 4KB.", - "id": "MBEDTLS_SHA3_C", - "name": "MBEDTLS_SHA3_C", - "range": null, - "title": "Enable the SHA3 cryptographic hash algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", - "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", - "range": null, - "title": "Server & Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_SERVER_ONLY", - "name": "MBEDTLS_TLS_SERVER_ONLY", - "range": null, - "title": "Server", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_CLIENT_ONLY", - "name": "MBEDTLS_TLS_CLIENT_ONLY", - "range": null, - "title": "Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_DISABLED", - "name": "MBEDTLS_TLS_DISABLED", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "mbedTLS can be compiled with protocol support for the TLS\nserver, TLS client, or both server and client.\n\nReducing the number of TLS roles supported saves code size.", - "id": "component-config-mbedtls-tls-protocol-role", - "name": "MBEDTLS_TLS_MODE", - "title": "TLS Protocol Role", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_SERVER", - "name": "MBEDTLS_TLS_SERVER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_CLIENT", - "name": "MBEDTLS_TLS_CLIENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_ENABLED", - "name": "MBEDTLS_TLS_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", - "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", - "id": "MBEDTLS_KEY_EXCHANGE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_PSK", - "range": null, - "title": "Enable PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", - "range": null, - "title": "Enable DHE-PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", - "range": null, - "title": "Enable ECDHE-PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", - "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", - "range": null, - "title": "Enable RSA-PSK based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\n\nLeaving this options disabled will save code size if they are not used.", - "id": "MBEDTLS_PSK_MODES", - "name": "MBEDTLS_PSK_MODES", - "range": null, - "title": "Enable pre-shared-key ciphersuites", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_RSA", - "range": null, - "title": "Enable RSA-only based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", - "range": null, - "title": "Enable DHE-RSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", - "range": null, - "title": "Enable ECDHE-RSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDHE-ECDSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", - "range": null, - "title": "Enable ECDHE-ECDSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDH-ECDSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", - "range": null, - "title": "Enable ECDH-ECDSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDH-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", - "range": null, - "title": "Enable ECDH-RSA based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", - "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", - "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", - "range": null, - "title": "Support Elliptic Curve based ciphersuites", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", - "name": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", - "range": null, - "title": "Enable ECJPAKE based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED", - "id": "component-config-mbedtls-tls-key-exchange-methods", - "title": "TLS Key Exchange Methods", - "type": "menu" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2", - "help": "The two main uses of renegotiation are (1) refresh keys on long-lived\nconnections and (2) client authentication after the initial handshake.\nIf you don't need renegotiation, disabling it will save code size and\nreduce the possibility of abuse/vulnerability.", - "id": "MBEDTLS_SSL_RENEGOTIATION", - "name": "MBEDTLS_SSL_RENEGOTIATION", - "range": null, - "title": "Support TLS renegotiation", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": null, - "id": "MBEDTLS_SSL_PROTO_TLS1_2", - "name": "MBEDTLS_SSL_PROTO_TLS1_2", - "range": null, - "title": "Support TLS 1.2 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Provisions for GM/T SSL 1.1 support", - "id": "MBEDTLS_SSL_PROTO_GMTSSL1_1", - "name": "MBEDTLS_SSL_PROTO_GMTSSL1_1", - "range": null, - "title": "Support GM/T SSL 1.1 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_2", - "help": "Requires TLS 1.2 to be enabled for DTLS 1.2", - "id": "MBEDTLS_SSL_PROTO_DTLS", - "name": "MBEDTLS_SSL_PROTO_DTLS", - "range": null, - "title": "Support DTLS protocol (all versions)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Disabling this option will save some code size if it is not needed.", - "id": "MBEDTLS_SSL_ALPN", - "name": "MBEDTLS_SSL_ALPN", - "range": null, - "title": "Support ALPN (Application Layer Protocol Negotiation)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", - "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", - "range": null, - "title": "TLS: Client Support for RFC 5077 SSL session tickets", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C)", - "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", - "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", - "range": null, - "title": "TLS: Server Support for RFC 5077 SSL session tickets", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_AES_C", - "name": "MBEDTLS_AES_C", - "range": null, - "title": "AES block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_CAMELLIA_C", - "name": "MBEDTLS_CAMELLIA_C", - "range": null, - "title": "Camellia block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the DES block cipher to support 3DES-based TLS ciphersuites.\n\n3DES is vulnerable to the Sweet32 attack and should only be enabled\nif absolutely necessary.", - "id": "MBEDTLS_DES_C", - "name": "MBEDTLS_DES_C", - "range": null, - "title": "DES block cipher (legacy, insecure)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", - "id": "MBEDTLS_BLOWFISH_C", - "name": "MBEDTLS_BLOWFISH_C", - "range": null, - "title": "Blowfish block cipher (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the XTEA block cipher.", - "id": "MBEDTLS_XTEA_C", - "name": "MBEDTLS_XTEA_C", - "range": null, - "title": "XTEA block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", - "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", - "id": "MBEDTLS_CCM_C", - "name": "MBEDTLS_CCM_C", - "range": null, - "title": "CCM (Counter with CBC-MAC) block cipher modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", - "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", - "id": "MBEDTLS_GCM_C", - "name": "MBEDTLS_GCM_C", - "range": null, - "title": "GCM (Galois/Counter) block cipher modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C", - "help": "Enable NIST key wrapping and key wrapping padding.", - "id": "MBEDTLS_NIST_KW_C", - "name": "MBEDTLS_NIST_KW_C", - "range": null, - "title": "NIST key wrapping (KW) and KW padding (KWP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-symmetric-ciphers", - "title": "Symmetric Ciphers", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable the RIPEMD-160 hash algorithm.", - "id": "MBEDTLS_RIPEMD160_C", - "name": "MBEDTLS_RIPEMD160_C", - "range": null, - "title": "Enable RIPEMD-160 hash algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable decoding/parsing of PEM formatted certificates.\n\nIf your certificates are all in the simpler DER format, disabling\nthis option will save some code size.", - "id": "MBEDTLS_PEM_PARSE_C", - "name": "MBEDTLS_PEM_PARSE_C", - "range": null, - "title": "Read & Parse PEM formatted certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", - "id": "MBEDTLS_PEM_WRITE_C", - "name": "MBEDTLS_PEM_WRITE_C", - "range": null, - "title": "Write PEM formatted certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Support for parsing X.509 Certificate Revocation Lists.", - "id": "MBEDTLS_X509_CRL_PARSE_C", - "name": "MBEDTLS_X509_CRL_PARSE_C", - "range": null, - "title": "X.509 CRL parsing", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Support for parsing X.509 Certificate Signing Requests", - "id": "MBEDTLS_X509_CSR_PARSE_C", - "name": "MBEDTLS_X509_CSR_PARSE_C", - "range": null, - "title": "X.509 CSR parsing", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-certificates", - "title": "Certificates", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enhance support for reading EC keys using variants of SEC1 not allowed by\nRFC 5915 and RFC 5480.", - "id": "MBEDTLS_PK_PARSE_EC_EXTENDED", - "name": "MBEDTLS_PK_PARSE_EC_EXTENDED", - "range": null, - "title": "Enhance support for reading EC keys", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable the support for parsing public keys of type Short Weierstrass\n(MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX) which are using the\ncompressed point format. This parsing is done through ECP module's functions.", - "id": "MBEDTLS_PK_PARSE_EC_COMPRESSED", - "name": "MBEDTLS_PK_PARSE_EC_COMPRESSED", - "range": null, - "title": "Enable the support for parsing public keys of type Short Weierstrass", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "MBEDTLS_ECP_C", - "is_menuconfig": true, - "name": "MBEDTLS_ECP_C", - "range": null, - "title": "Elliptic Curve Ciphers", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable DHM. Needed to use DHE-xxx TLS ciphersuites.\n\nNote that the security of Diffie-Hellman key exchanges depends on\na suitable prime being used for the exchange. Please see detailed\nwarning text about this in file `mbedtls/dhm.h` file.", - "id": "MBEDTLS_DHM_C", - "name": "MBEDTLS_DHM_C", - "range": null, - "title": "Diffie-Hellman-Merkle key exchange (DHM)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ECDH_C", - "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECDSA_C", - "name": "MBEDTLS_ECDSA_C", - "range": null, - "title": "Elliptic Curve DSA", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECDH_C", - "name": "MBEDTLS_ECDH_C", - "range": null, - "title": "Elliptic Curve Diffie-Hellman (ECDH)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECJPAKE_C", - "name": "MBEDTLS_ECJPAKE_C", - "range": null, - "title": "Elliptic curve J-PAKE", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP192R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", - "range": null, - "title": "Enable SECP192R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP224R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", - "range": null, - "title": "Enable SECP224R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP256R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", - "range": null, - "title": "Enable SECP256R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP384R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", - "range": null, - "title": "Enable SECP384R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP521R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", - "range": null, - "title": "Enable SECP521R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP192K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", - "range": null, - "title": "Enable SECP192K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP224K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", - "range": null, - "title": "Enable SECP224K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP256K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", - "range": null, - "title": "Enable SECP256K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", - "range": null, - "title": "Enable BP256R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", - "range": null, - "title": "Enable BP384R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", - "range": null, - "title": "Enable BP512R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for CURVE25519 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", - "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", - "range": null, - "title": "Enable CURVE25519 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.", - "id": "MBEDTLS_ECP_NIST_OPTIM", - "name": "MBEDTLS_ECP_NIST_OPTIM", - "range": null, - "title": "NIST 'modulo p' optimisations", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "This configuration option enables optimizations to speedup (about 3 ~ 4 times) the ECP\nfixed point multiplication using pre-computed tables in the flash memory.\nEnabling this configuration option increases the flash footprint\n(about 29KB if all Elliptic Curve selected) in the application binary.\n\n# end of Elliptic Curve options", - "id": "MBEDTLS_ECP_FIXED_POINT_OPTIM", - "name": "MBEDTLS_ECP_FIXED_POINT_OPTIM", - "range": null, - "title": "Enable fixed-point multiplication optimisations", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support for Poly1305 MAC algorithm.", - "id": "MBEDTLS_POLY1305_C", - "name": "MBEDTLS_POLY1305_C", - "range": null, - "title": "Poly1305 MAC algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_C", - "help": "Enable support for ChaCha20-Poly1305 AEAD algorithm.", - "id": "MBEDTLS_CHACHAPOLY_C", - "name": "MBEDTLS_CHACHAPOLY_C", - "range": null, - "title": "ChaCha20-Poly1305 AEAD algorithm", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable support for Chacha20 stream cipher.", - "id": "MBEDTLS_CHACHA20_C", - "name": "MBEDTLS_CHACHA20_C", - "range": null, - "title": "Chacha20 stream cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support for the Hashed Message Authentication Code\n(HMAC)-based key derivation function (HKDF).", - "id": "MBEDTLS_HKDF_C", - "name": "MBEDTLS_HKDF_C", - "range": null, - "title": "HKDF algorithm (RFC 5869)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_THREADING_C", - "help": "Enable threading alt to allow your own alternate threading implementation.", - "id": "MBEDTLS_THREADING_ALT", - "name": "MBEDTLS_THREADING_ALT", - "range": null, - "title": "Enable threading alternate implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_THREADING_C", - "help": "Enable the pthread wrapper layer for the threading layer.", - "id": "MBEDTLS_THREADING_PTHREAD", - "name": "MBEDTLS_THREADING_PTHREAD", - "range": null, - "title": "Enable threading pthread implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "If you do intend to use contexts between threads, you will need to enable\nthis layer to prevent race conditions.", - "id": "MBEDTLS_THREADING_C", - "name": "MBEDTLS_THREADING_C", - "range": null, - "title": "Enable the threading abstraction layer", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables mbedtls_strerror() for converting error codes to error strings.\nDisabling this config can save some code/rodata size as the error\nstring conversion implementation is replaced with an empty stub.", - "id": "MBEDTLS_ERROR_STRINGS", - "name": "MBEDTLS_ERROR_STRINGS", - "range": null, - "title": "Enable error code to error string conversion", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", - "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF.\n\nThis configuration option saves flash footprint in the application binary.\nNote that the version of mbedtls crypto algorithm library in ROM(ECO1~ECO3) is v2.16.12,\nand the version of mbedtls crypto algorithm library in ROM(ECO4) is v3.6.0.\nWe have done the security analysis of the mbedtls revision in ROM (ECO1~ECO4)\nand ensured that affected symbols have been patched (removed). If in the future\nmbedtls revisions there are security issues that also affects the version in\nROM (ECO1~ECO4) then we shall patch the relevant symbols. This would increase\nthe flash footprint and hence care must be taken to keep some reserved space\nfor the application binary in flash layout.", - "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL", - "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of the crypto algorithm", - "type": "bool" - }, - { - "children": [], - "depends_on": "(VFS_SUPPORT_IO && VFS_SUPPORT_DIR) || IDF_TARGET_LINUX", - "help": "This option enables functions in mbedTLS that use the filesystem.\nIt uses the default filesystem support for the target,\nwhich is added through vfs component for ESP32 based targets or by\nthe host system when the target is Linux.", - "id": "MBEDTLS_FS_IO", - "name": "MBEDTLS_FS_IO", - "range": null, - "title": "Enable functions that use the filesystem", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls", - "title": "mbedTLS", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "If not, this library will use MQTT protocol 3.1", - "id": "MQTT_PROTOCOL_311", - "name": "MQTT_PROTOCOL_311", - "range": null, - "title": "Enable MQTT protocol 3.1.1", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If not, this library will not support MQTT 5.0", - "id": "MQTT_PROTOCOL_5", - "name": "MQTT_PROTOCOL_5", - "range": null, - "title": "Enable MQTT protocol 5.0", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable MQTT transport over SSL with mbedtls", - "id": "MQTT_TRANSPORT_SSL", - "name": "MQTT_TRANSPORT_SSL", - "range": null, - "title": "Enable MQTT over SSL", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_SSL", - "help": "Enable MQTT transport over Websocket Secure.", - "id": "MQTT_TRANSPORT_WEBSOCKET_SECURE", - "name": "MQTT_TRANSPORT_WEBSOCKET_SECURE", - "range": null, - "title": "Enable MQTT over Websocket Secure", - "type": "bool" - } - ], - "depends_on": "WS_TRANSPORT", - "help": "Enable MQTT transport over Websocket.", - "id": "MQTT_TRANSPORT_WEBSOCKET", - "name": "MQTT_TRANSPORT_WEBSOCKET", - "range": null, - "title": "Enable MQTT over Websocket", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set this to true for the message id (2.3.1 Packet Identifier) to be generated\nas an incremental number rather then a random value (used by default)", - "id": "MQTT_MSG_ID_INCREMENTAL", - "name": "MQTT_MSG_ID_INCREMENTAL", - "range": null, - "title": "Use Incremental Message Id", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set this to true to avoid publishing (enqueueing messages) if the client is disconnected.\nThe MQTT client tries to publish all messages by default, even in the disconnected state\n(where the qos1 and qos2 packets are stored in the internal outbox to be published later)\nThe MQTT_SKIP_PUBLISH_IF_DISCONNECTED option allows applications to override this behaviour\nand not enqueue publish packets in the disconnected state.", - "id": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", - "name": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", - "range": null, - "title": "Skip publish if disconnected", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set this to true to post events for all messages which were deleted from the outbox\nbefore being correctly sent and confirmed.", - "id": "MQTT_REPORT_DELETED_MESSAGES", - "name": "MQTT_REPORT_DELETED_MESSAGES", - "range": null, - "title": "Report deleted messages", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "Default MQTT over TCP port", - "id": "MQTT_TCP_DEFAULT_PORT", - "name": "MQTT_TCP_DEFAULT_PORT", - "range": null, - "title": "Default MQTT over TCP port", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_SSL", - "help": "Default MQTT over SSL port", - "id": "MQTT_SSL_DEFAULT_PORT", - "name": "MQTT_SSL_DEFAULT_PORT", - "range": null, - "title": "Default MQTT over SSL port", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET", - "help": "Default MQTT over Websocket port", - "id": "MQTT_WS_DEFAULT_PORT", - "name": "MQTT_WS_DEFAULT_PORT", - "range": null, - "title": "Default MQTT over Websocket port", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_WEBSOCKET_SECURE", - "help": "Default MQTT over Websocket Secure port", - "id": "MQTT_WSS_DEFAULT_PORT", - "name": "MQTT_WSS_DEFAULT_PORT", - "range": null, - "title": "Default MQTT over Websocket Secure port", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "This buffer size using for both transmit and receive", - "id": "MQTT_BUFFER_SIZE", - "name": "MQTT_BUFFER_SIZE", - "range": null, - "title": "Default MQTT Buffer Size", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "MQTT task stack size", - "id": "MQTT_TASK_STACK_SIZE", - "name": "MQTT_TASK_STACK_SIZE", - "range": null, - "title": "MQTT task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "Default config employs API locks to protect internal structures. It is possible to disable\nthese locks if the user code doesn't access MQTT API from multiple concurrent tasks", - "id": "MQTT_DISABLE_API_LOCKS", - "name": "MQTT_DISABLE_API_LOCKS", - "range": null, - "title": "Disable API locks", - "type": "bool" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "MQTT task priority. Higher number denotes higher priority.", - "id": "MQTT_TASK_PRIORITY", - "name": "MQTT_TASK_PRIORITY", - "range": null, - "title": "MQTT task priority", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "Timeout when polling underlying transport for read.", - "id": "MQTT_POLL_READ_TIMEOUT_MS", - "name": "MQTT_POLL_READ_TIMEOUT_MS", - "range": null, - "title": "MQTT transport poll read timeut", - "type": "int" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "A value higher than 1 enables multiple queued events.", - "id": "MQTT_EVENT_QUEUE_SIZE", - "name": "MQTT_EVENT_QUEUE_SIZE", - "range": null, - "title": "Number of queued events.", - "type": "int" - } - ], - "depends_on": null, - "help": "Custom MQTT configurations.", - "id": "MQTT_USE_CUSTOM_CONFIG", - "name": "MQTT_USE_CUSTOM_CONFIG", - "range": null, - "title": "MQTT Using custom configurations", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MQTT_USE_CORE_0", - "name": "MQTT_USE_CORE_0", - "range": null, - "title": "Core 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MQTT_USE_CORE_1", - "name": "MQTT_USE_CORE_1", - "range": null, - "title": "Core 1", - "type": "bool" - } - ], - "depends_on": "MQTT_TASK_CORE_SELECTION_ENABLED", - "help": null, - "id": "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-", - "name": "MQTT_TASK_CORE_SELECTION", - "title": "Core to use ?", - "type": "choice" - } - ], - "depends_on": null, - "help": "This will enable core selection", - "id": "MQTT_TASK_CORE_SELECTION_ENABLED", - "name": "MQTT_TASK_CORE_SELECTION_ENABLED", - "range": null, - "title": "Enable MQTT task core selection", - "type": "bool" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "Set to true to use external memory for outbox data.", - "id": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", - "name": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", - "range": null, - "title": "Use external memory for outbox data", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set to true if a specific implementation of message outbox is needed (e.g. persistent outbox in NVM or\nsimilar).\nNote: Implementation of the custom outbox must be added to the mqtt component. These CMake commands\ncould be used to append the custom implementation to lib-mqtt sources:\nidf_component_get_property(mqtt mqtt COMPONENT_LIB)\nset_property(TARGET ${mqtt} PROPERTY SOURCES ${PROJECT_DIR}/custom_outbox.c APPEND)", - "id": "MQTT_CUSTOM_OUTBOX", - "name": "MQTT_CUSTOM_OUTBOX", - "range": null, - "title": "Enable custom outbox implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "MQTT_USE_CUSTOM_CONFIG", - "help": "Messages which stays in the outbox longer than this value before being published will be discarded.", - "id": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", - "name": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", - "range": null, - "title": "Outbox message expired timeout[ms]", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-mqtt-configurations", - "title": "ESP-MQTT Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", - "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_LF", - "name": "NEWLIB_STDOUT_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDOUT_LINE_ENDING_CR", - "name": "NEWLIB_STDOUT_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option allows configuring the desired line endings sent to UART\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-newlib-line-ending-for-uart-output", - "name": "NEWLIB_STDOUT_LINE_ENDING", - "title": "Line ending for UART output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", - "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_LF", - "name": "NEWLIB_STDIN_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_STDIN_LINE_ENDING_CR", - "name": "NEWLIB_STDIN_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option allows configuring which input sequence on UART produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-newlib-line-ending-for-uart-input", - "name": "NEWLIB_STDIN_LINE_ENDING", - "title": "Line ending for UART input", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", - "id": "NEWLIB_NANO_FORMAT", - "name": "NEWLIB_NANO_FORMAT", - "range": null, - "title": "Enable 'nano' formatting options for printf/scanf family", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", - "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", - "range": null, - "title": "RTC and high-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_RTC", - "name": "NEWLIB_TIME_SYSCALL_USE_RTC", - "range": null, - "title": "RTC", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_HRT", - "name": "NEWLIB_TIME_SYSCALL_USE_HRT", - "range": null, - "title": "High-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "NEWLIB_TIME_SYSCALL_USE_NONE", - "name": "NEWLIB_TIME_SYSCALL_USE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", - "id": "component-config-newlib-timers-used-for-gettimeofday-function", - "name": "NEWLIB_TIME_SYSCALL", - "title": "Timers used for gettimeofday function", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-newlib", - "title": "Newlib", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED || SOC_HMAC_SUPPORTED", - "help": "This option enables encryption for NVS. When enabled, XTS-AES is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition (enabling flash encryption is mandatory here)\nor to be derived from an HMAC key burnt in eFuse.", - "id": "NVS_ENCRYPTION", - "name": "NVS_ENCRYPTION", - "range": null, - "title": "Enable NVS encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "Enabling this will ignore \"encrypted\" flag for NVS partitions. NVS encryption\nscheme is different than hardware flash encryption and hence it is not recommended\nto have \"encrypted\" flag for NVS partitions. This was not being checked in pre v4.3\nIDF. Hence, if you have any devices where this flag is kept enabled in partition\ntable then enabling this config will allow to have same behavior as pre v4.3 IDF.", - "id": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", - "name": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", - "range": null, - "title": "NVS partition encrypted flag compatible with ESP-IDF before v4.3", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option switches error checking type between assertions (y) or return codes (n).", - "id": "NVS_ASSERT_ERROR_CHECK", - "name": "NVS_ASSERT_ERROR_CHECK", - "range": null, - "title": "Use assertions for error checking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option will switch the nvs_set() family of functions to the legacy mode:\nwhen called repeatedly with the same key but different data type, the existing value\nin the NVS remains active and the new value is just stored, actually not accessible through\ncorresponding nvs_get() call for the key given. Use this option only when your application\nrelies on such NVS API behaviour.", - "id": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", - "name": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", - "range": null, - "title": "Enable legacy nvs_set function behavior when same key is reused with different data types", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)", - "help": "Enabling this option lets NVS library try to allocate page cache and key hash list in SPIRAM\ninstead of internal RAM. It can help applications using large nvs partitions or large number\nof keys to save heap space in internal RAM. SPIRAM heap allocation negatively impacts speed\nof NVS operations as the CPU accesses NVS cache via SPI instead of direct access to the internal RAM.", - "id": "NVS_ALLOCATE_CACHE_IN_SPIRAM", - "name": "NVS_ALLOCATE_CACHE_IN_SPIRAM", - "range": null, - "title": "Prefers allocation of in-memory cache structures in SPI connected PSRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-nvs", - "title": "NVS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED && ", - "help": "Protect the NVS Encryption Keys using Flash Encryption\nRequires a separate 'nvs_keys' partition (which will be encrypted by flash encryption)\nfor storing the NVS encryption keys", - "id": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", - "name": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", - "range": null, - "title": "Using Flash Encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_HMAC_SUPPORTED && ", - "help": "Derive and protect the NVS Encryption Keys using the HMAC peripheral\nRequires the specified eFuse block (NVS_SEC_HMAC_EFUSE_KEY_ID or the v2 API argument)\nto be empty or pre-written with a key with the purpose ESP_EFUSE_KEY_PURPOSE_HMAC_UP", - "id": "NVS_SEC_KEY_PROTECT_USING_HMAC", - "name": "NVS_SEC_KEY_PROTECT_USING_HMAC", - "range": null, - "title": "Using HMAC peripheral", - "type": "bool" - } - ], - "depends_on": "NVS_ENCRYPTION", - "help": "This choice defines the default NVS encryption keys protection scheme;\nwhich will be used for the default NVS partition.\nUsers can use the corresponding scheme registration APIs to register other\nschemes for the default as well as other NVS partitions.", - "id": "component-config-nvs-security-provider-nvs-encryption-key-protection-scheme", - "name": "NVS_SEC_KEY_PROTECTION_SCHEME", - "title": "NVS Encryption: Key Protection Scheme", - "type": "choice" - }, - { - "children": [], - "depends_on": "NVS_SEC_KEY_PROTECT_USING_HMAC", - "help": "eFuse block key ID storing the HMAC key for deriving the NVS encryption keys\n\nNote: The eFuse block key ID required by the HMAC scheme\n(CONFIG_NVS_SEC_KEY_PROTECT_USING_HMAC) is set using this config when the default\nNVS partition is initialized with nvs_flash_init(). The eFuse block key ID can\nalso be set at runtime by passing the appropriate value to the NVS security scheme\nregistration APIs.", - "id": "NVS_SEC_HMAC_EFUSE_KEY_ID", - "name": "NVS_SEC_HMAC_EFUSE_KEY_ID", - "range": null, - "title": "eFuse key ID storing the HMAC key", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-nvs-security-provider", - "title": "NVS Security Provider", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread package name.", - "id": "OPENTHREAD_PACKAGE_NAME", - "name": "OPENTHREAD_PACKAGE_NAME", - "range": null, - "title": "OpenThread package name", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread platform information.", - "id": "OPENTHREAD_PLATFORM_INFO", - "name": "OPENTHREAD_PLATFORM_INFO", - "range": null, - "title": "platform information", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-version-message", - "title": "Thread Version Message", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(ESP_CONSOLE_UART_DEFAULT || ESP_CONSOLE_UART_CUSTOM) && ", - "help": null, - "id": "OPENTHREAD_CONSOLE_TYPE_UART", - "name": "OPENTHREAD_CONSOLE_TYPE_UART", - "range": null, - "title": "OpenThread console type UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "(ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG) && ", - "help": null, - "id": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", - "name": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", - "range": null, - "title": "OpenThread console type USB Serial/JTAG Controller", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select OpenThread console type", - "id": "component-config-openthread-openthread-thread-console-openthread-console-type", - "name": "OPENTHREAD_CONSOLE_TYPE", - "title": "OpenThread console type", - "type": "choice" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Command-Line Interface in OpenThread.", - "id": "OPENTHREAD_CLI", - "name": "OPENTHREAD_CLI", - "range": null, - "title": "Enable Openthread Command-Line Interface", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-console", - "title": "Thread Console", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_NAME", - "name": "OPENTHREAD_NETWORK_NAME", - "range": null, - "title": "OpenThread network name", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "A string in the format \"
/\", where `
` is an IPv6\naddress and `` is a prefix length. For example \"fd00:db8:a0:0::/64\"", - "id": "OPENTHREAD_MESH_LOCAL_PREFIX", - "name": "OPENTHREAD_MESH_LOCAL_PREFIX", - "range": null, - "title": "OpenThread mesh local prefix, format
/", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_CHANNEL", - "name": "OPENTHREAD_NETWORK_CHANNEL", - "range": null, - "title": "OpenThread network channel", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_PANID", - "name": "OPENTHREAD_NETWORK_PANID", - "range": null, - "title": "OpenThread network pan id", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread network extended pan id in hex string format", - "id": "OPENTHREAD_NETWORK_EXTPANID", - "name": "OPENTHREAD_NETWORK_EXTPANID", - "range": null, - "title": "OpenThread extended pan id", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread network network key in hex string format", - "id": "OPENTHREAD_NETWORK_MASTERKEY", - "name": "OPENTHREAD_NETWORK_MASTERKEY", - "range": null, - "title": "OpenThread network key", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread pre-shared commissioner key in hex string format", - "id": "OPENTHREAD_NETWORK_PSKC", - "name": "OPENTHREAD_NETWORK_PSKC", - "range": null, - "title": "OpenThread pre-shared commissioner key", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-operational-dataset", - "title": "Thread Operational Dataset", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to enable Full Thread Device which can act as router and leader in a Thread network.", - "id": "OPENTHREAD_FTD", - "name": "OPENTHREAD_FTD", - "range": null, - "title": "Full Thread Device", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable Minimal Thread Device which can only act as end device in a Thread network.\nThis will reduce the code size of the OpenThread stack.", - "id": "OPENTHREAD_MTD", - "name": "OPENTHREAD_MTD", - "range": null, - "title": "Minimal Thread Device", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable Radio Only Device which can only forward 15.4 packets to the host.\nThe OpenThread stack will be run on the host and OpenThread will have minimal footprint on the\nradio only device.", - "id": "OPENTHREAD_RADIO", - "name": "OPENTHREAD_RADIO", - "range": null, - "title": "Radio Only Device", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "OpenThread can be configured to different device types (FTD, MTD, Radio)", - "id": "component-config-openthread-openthread-thread-core-features-thread-device-type", - "name": "OPENTHREAD_DEVICE_TYPE", - "title": "Thread device type", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "help": "Configure the port number of TREL service.", - "id": "OPENTHREAD_TREL_PORT", - "name": "OPENTHREAD_TREL_PORT", - "range": null, - "title": "The port of openthread trel service", - "type": "int" - } - ], - "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "help": "Select this option to enable Thread Radio Encapsulation Link.", - "id": "OPENTHREAD_RADIO_TREL", - "name": "OPENTHREAD_RADIO_TREL", - "range": null, - "title": "Enable Thread Radio Encapsulation Link (TREL)", - "type": "bool" - } - ], - "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-trel-radio-link", - "title": "Thread Trel Radio Link", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to use the native 15.4 radio.", - "id": "OPENTHREAD_RADIO_NATIVE", - "name": "OPENTHREAD_RADIO_NATIVE", - "range": null, - "title": "Native 15.4 radio", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to connect to a Radio Co-Processor via UART.", - "id": "OPENTHREAD_RADIO_SPINEL_UART", - "name": "OPENTHREAD_RADIO_SPINEL_UART", - "range": null, - "title": "Connect via UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to connect to a Radio Co-Processor via SPI.", - "id": "OPENTHREAD_RADIO_SPINEL_SPI", - "name": "OPENTHREAD_RADIO_SPINEL_SPI", - "range": null, - "title": "Connect via SPI", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to disable the Thread radio based on 15.4 link.", - "id": "OPENTHREAD_RADIO_154_NONE", - "name": "OPENTHREAD_RADIO_154_NONE", - "range": null, - "title": "Disable the Thread radio based on 15.4 link", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Configure how OpenThread connects to the 15.4 radio", - "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-config-the-thread-radio-type-with-15-4-link", - "name": "OPENTHREAD_RADIO_TYPE", - "title": "Config the Thread radio type with 15.4 link", - "type": "choice" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link", - "title": "Thread 15.4 Radio Link", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to enable UART connection to host.", - "id": "OPENTHREAD_RCP_UART", - "name": "OPENTHREAD_RCP_UART", - "range": null, - "title": "UART RCP", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable SPI connection to host.", - "id": "OPENTHREAD_RCP_SPI", - "name": "OPENTHREAD_RCP_SPI", - "range": null, - "title": "SPI RCP", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "help": null, - "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-the-rcp-transport-type", - "name": "OPENTHREAD_RCP_TRANSPORT", - "title": "The RCP transport type", - "type": "choice" - }, - { - "children": [], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "help": "Select this to enable OpenThread NCP vendor commands.", - "id": "OPENTHREAD_NCP_VENDOR_HOOK", - "name": "OPENTHREAD_NCP_VENDOR_HOOK", - "range": null, - "title": "Enable vendor command for RCP", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature", - "title": "Thread Radio Co-Processor Feature", - "type": "menu" - }, - { - "children": [], - "depends_on": "OPENTHREAD_FTD && OPENTHREAD_ENABLED", - "help": "Select this option to enable border router features in OpenThread.", - "id": "OPENTHREAD_BORDER_ROUTER", - "name": "OPENTHREAD_BORDER_ROUTER", - "range": null, - "title": "Enable Border Router", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", - "name": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", - "range": null, - "title": "The size of max commissioning joiner entries", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-commissioner-commissioner-configurations", - "title": "Commissioner Configurations", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable commissioner in OpenThread. This will enable the device to act as a\ncommissioner in the Thread network. A commissioner checks the pre-shared key from a joining device\nwith the Thread commissioning protocol and shares the network parameter with the joining device\nupon success.", - "id": "OPENTHREAD_COMMISSIONER", - "name": "OPENTHREAD_COMMISSIONER", - "range": null, - "title": "Enable Commissioner", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Joiner in OpenThread. This allows a device to join the\nThread network with a pre-shared key using the Thread commissioning protocol.", - "id": "OPENTHREAD_JOINER", - "name": "OPENTHREAD_JOINER", - "range": null, - "title": "Enable Joiner", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", - "help": "Set the max buffer size of service entries in the SRP client service pool.", - "id": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", - "name": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", - "range": null, - "title": "Specifies number of service entries in the SRP client service pool", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-srp-client-srp-client-configurations", - "title": "SRP Client Configurations", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable SRP Client in OpenThread.\nThis allows a device to register SRP services to SRP Server.", - "id": "OPENTHREAD_SRP_CLIENT", - "name": "OPENTHREAD_SRP_CLIENT", - "range": null, - "title": "Enable SRP Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable DNS Client in OpenThread.", - "id": "OPENTHREAD_DNS_CLIENT", - "name": "OPENTHREAD_DNS_CLIENT", - "range": null, - "title": "Enable DNS Client", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", - "help": "Set the DNS server IPv4 address.", - "id": "OPENTHREAD_DNS_SERVER_ADDR", - "name": "OPENTHREAD_DNS_SERVER_ADDR", - "range": null, - "title": "DNS server address (IPv4)", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-dns64-client-dns64-client-configurations", - "title": "DNS64 Client Configurations", - "type": "menu" - } - ], - "depends_on": "LWIP_IPV4 && OPENTHREAD_ENABLED", - "help": "Select this option to acquire NAT64 address from dns servers.", - "id": "OPENTHREAD_DNS64_CLIENT", - "name": "OPENTHREAD_DNS64_CLIENT", - "range": null, - "title": "Enable DNS64 Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable link metrics feature", - "id": "OPENTHREAD_LINK_METRICS", - "name": "OPENTHREAD_LINK_METRICS", - "range": null, - "title": "Enable link metrics feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable mac filter feature", - "id": "OPENTHREAD_MACFILTER_ENABLE", - "name": "OPENTHREAD_MACFILTER_ENABLE", - "range": null, - "title": "Enable mac filter feature", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", - "help": "The current accuracy of the clock used for scheduling CSL operations", - "id": "OPENTHREAD_CSL_ACCURACY", - "name": "OPENTHREAD_CSL_ACCURACY", - "range": null, - "title": "The current CSL rx/tx scheduling drift, in units of \u00b1 ppm", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", - "help": "The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.", - "id": "OPENTHREAD_CSL_UNCERTAIN", - "name": "OPENTHREAD_CSL_UNCERTAIN", - "range": null, - "title": "The CSL Uncertainty in units of 10 us.", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", - "help": "Select this option to set rx on when sleep in CSL feature, only for debug", - "id": "OPENTHREAD_CSL_DEBUG_ENABLE", - "name": "OPENTHREAD_CSL_DEBUG_ENABLE", - "range": null, - "title": "Enable CSL debug", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_CSL_ENABLE && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-csl-feature-csl-configurations", - "title": "CSL Configurations", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable CSL feature", - "id": "OPENTHREAD_CSL_ENABLE", - "name": "OPENTHREAD_CSL_ENABLE", - "range": null, - "title": "Enable CSL feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable time synchronization feature, the devices in the same Thread network could\nsync to the same network time.", - "id": "OPENTHREAD_TIME_SYNC", - "name": "OPENTHREAD_TIME_SYNC", - "range": null, - "title": "Enable the time synchronization service feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": "Select this option to enable the radio statistics feature, you can use radio\ncommand to print some radio Statistics information.", - "id": "OPENTHREAD_RADIO_STATS_ENABLE", - "name": "OPENTHREAD_RADIO_STATS_ENABLE", - "range": null, - "title": "Enable Radio Statistics feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable OpenThread radio capability rx on when idle.\nDo not support this feature when SW coexistence is enabled.", - "id": "OPENTHREAD_RX_ON_WHEN_IDLE", - "name": "OPENTHREAD_RX_ON_WHEN_IDLE", - "range": null, - "title": "Enable OpenThread radio capability rx on when idle", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag\ncommands in the OpenThread command line. These commands allow users to manipulate low-level\nfeatures of the storage and 15.4 radio.", - "id": "OPENTHREAD_DIAG", - "name": "OPENTHREAD_DIAG", - "range": null, - "title": "Enable diag", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "help": "Select this option to allocate buffer from PSRAM for Thread", - "id": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", - "name": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", - "range": null, - "title": "Allocate memory from PSRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "help": "If enabled, the message pool is managed by platform defined logic.", - "id": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", - "name": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", - "range": null, - "title": "Allocate message pool buffer from PSRAM", - "type": "bool" - } - ], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-memory-allocation", - "title": "Thread Memory Allocation", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", - "name": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", - "range": null, - "title": "Timeout (in seconds) for a address notification response after sending an address query.", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", - "name": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", - "range": null, - "title": "Initial retry delay for address query (in seconds).", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", - "name": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", - "range": null, - "title": "Maximum retry delay for address query (in seconds).", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-thread-address-query-config", - "title": "Thread Address Query Config", - "type": "menu" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PREFERRED_CHANNEL_MASK", - "name": "OPENTHREAD_PREFERRED_CHANNEL_MASK", - "range": null, - "title": "Preferred channel mask", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", - "name": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", - "range": null, - "title": "Supported channel mask", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NUM_MESSAGE_BUFFERS", - "name": "OPENTHREAD_NUM_MESSAGE_BUFFERS", - "range": null, - "title": "The number of openthread message buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The device's XTAL accuracy, in ppm.", - "id": "OPENTHREAD_XTAL_ACCURACY", - "name": "OPENTHREAD_XTAL_ACCURACY", - "range": null, - "title": "The accuracy of the XTAL", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_MLE_MAX_CHILDREN", - "name": "OPENTHREAD_MLE_MAX_CHILDREN", - "range": null, - "title": "The size of max MLE children entries", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", - "name": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", - "range": null, - "title": "The size of max TMF address cache entries", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Set the OpenThread UART buffer size.", - "id": "OPENTHREAD_UART_BUFFER_SIZE", - "name": "OPENTHREAD_UART_BUFFER_SIZE", - "range": null, - "title": "The uart received buffer size of openthread", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", - "id": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "name": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "range": null, - "title": "Maximum backoffs times before declaring a channel access failure.", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters", - "title": "OpenThread Stack Parameters", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features", - "title": "Thread Core Features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable dynamic log level control for OpenThread", - "id": "OPENTHREAD_LOG_LEVEL_DYNAMIC", - "name": "OPENTHREAD_LOG_LEVEL_DYNAMIC", - "range": null, - "title": "Enable dynamic log level control", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_NONE", - "name": "OPENTHREAD_LOG_LEVEL_NONE", - "range": null, - "title": "No logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_CRIT", - "name": "OPENTHREAD_LOG_LEVEL_CRIT", - "range": null, - "title": "Error logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_WARN", - "name": "OPENTHREAD_LOG_LEVEL_WARN", - "range": null, - "title": "Warning logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_NOTE", - "name": "OPENTHREAD_LOG_LEVEL_NOTE", - "range": null, - "title": "Notice logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_INFO", - "name": "OPENTHREAD_LOG_LEVEL_INFO", - "range": null, - "title": "Info logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_DEBG", - "name": "OPENTHREAD_LOG_LEVEL_DEBG", - "range": null, - "title": "Debug logs", - "type": "bool" - } - ], - "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", - "help": "Select OpenThread log level.", - "id": "component-config-openthread-openthread-thread-log-openthread-log-verbosity", - "name": "OPENTHREAD_LOG_LEVEL", - "title": "OpenThread log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL", - "name": "OPENTHREAD_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-log", - "title": "Thread Log", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "help": "Please use relative paths with respect to the project folder.", - "id": "OPENTHREAD_CUSTOM_HEADER_PATH", - "name": "OPENTHREAD_CUSTOM_HEADER_PATH", - "range": null, - "title": "Path of custom header file", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "help": "Name of custom header file.", - "id": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", - "name": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", - "range": null, - "title": "Name of custom header file", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-extensioned-features-use-a-header-file-defined-by-customer-openthread-custom-header-config", - "title": "OpenThread Custom Header Config", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "This option allows users to tailor the values of openthread macros according to their requirements.\nThe openthread submodule contains numerous macros, each with a default value set. In the Kconfig of\nESP openthread, users can set specific openthread parameters, which will be applied for certain\nopenthread macros in the openthread-core-esp32x-xxx-config.h file. During compilation, the values\nspecified in openthread-core-esp32x-xxx-config.h will replace the default settings in the openthread\nsubmodule. However, Kconfig does not cover all openthread macros, particularly those typically\nusing default values. For such macros, users can enable the OPENTHREAD_HEADER_CUSTOM option in the\nKconfig and provide a custom header file. Macros defined in the custom header file will have the\nhighest priority.", - "id": "OPENTHREAD_HEADER_CUSTOM", - "name": "OPENTHREAD_HEADER_CUSTOM", - "range": null, - "title": "Use a header file defined by customer", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-extensioned-features", - "title": "Thread Extensioned Features", - "type": "menu" - } - ], - "depends_on": null, - "help": "Select this option to enable OpenThread and show the submenu with OpenThread configuration choices.", - "id": "OPENTHREAD_ENABLED", - "name": "OPENTHREAD_ENABLED", - "range": null, - "title": "OpenThread", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Select this option to enable the OpenThread Radio Spinel for external protocol stack, such as Zigbee.", - "id": "OPENTHREAD_SPINEL_ONLY", - "name": "OPENTHREAD_SPINEL_ONLY", - "range": null, - "title": "Enable OpenThread External Radio Spinel feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED || OPENTHREAD_SPINEL_ONLY", - "help": null, - "id": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", - "name": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", - "range": null, - "title": "The size of openthread spinel rx frame buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_SPINEL_ONLY", - "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", - "id": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "name": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "range": null, - "title": "Maximum backoffs times before declaring a channel access failure.", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-openthread-openthread-spinel", - "title": "OpenThread Spinel", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-openthread", - "title": "OpenThread", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable support of security version 0.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", - "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", - "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", - "range": null, - "title": "Support protocomm security version 0 (no security)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support of security version 1.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", - "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", - "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", - "range": null, - "title": "Support protocomm security version 1 (Curve25519 key exchange + AES-CTR encryption/decryption)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support of security version 2.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", - "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", - "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", - "range": null, - "title": "Support protocomm security version 2 (SRP6a-based key exchange + AES-GCM encryption/decryption)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support of security patch version. This is a hidden config option\nkept for external components like \"network_provisioning\" to find out if\nprotocomm component support security patch version. This config option\nalso indicates availability of a new API `protocomm_get_sec_version`.\nPlease refer to Protocomm documentation in ESP-IDF Programming guide for\nmore details.", - "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION", - "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_ENABLED", - "help": "Keep BT on after calling protocomm_ble_stop", - "id": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", - "name": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", - "help": "Terminate connection after calling protocomm_ble_stop", - "id": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", - "name": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-protocomm", - "title": "Protocomm", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Priority used to create new tasks with default pthread parameters.", - "id": "PTHREAD_TASK_PRIO_DEFAULT", - "name": "PTHREAD_TASK_PRIO_DEFAULT", - "range": [ - 0, - 255 - ], - "title": "Default task priority", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Stack size used to create new tasks with default pthread parameters.", - "id": "PTHREAD_TASK_STACK_SIZE_DEFAULT", - "name": "PTHREAD_TASK_STACK_SIZE_DEFAULT", - "range": null, - "title": "Default task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Minimum allowed pthread stack size set in attributes passed to pthread_create", - "id": "PTHREAD_STACK_MIN", - "name": "PTHREAD_STACK_MIN", - "range": null, - "title": "Minimum allowed pthread stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", - "name": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_0", - "name": "PTHREAD_DEFAULT_CORE_0", - "range": null, - "title": "Core 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_1", - "name": "PTHREAD_DEFAULT_CORE_1", - "range": null, - "title": "Core 1", - "type": "bool" - } - ], - "depends_on": "!FREERTOS_UNICORE", - "help": "The default core to which pthreads are pinned.", - "id": "component-config-pthreads-default-pthread-core-affinity", - "name": "PTHREAD_TASK_CORE_DEFAULT", - "title": "Default pthread core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PTHREAD_TASK_CORE_DEFAULT", - "name": "PTHREAD_TASK_CORE_DEFAULT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The default name of pthreads.", - "id": "PTHREAD_TASK_NAME_DEFAULT", - "name": "PTHREAD_TASK_NAME_DEFAULT", - "range": null, - "title": "Default name of pthreads", - "type": "string" - } - ], - "depends_on": null, - "id": "component-config-pthreads", - "title": "PThreads", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "help": null, - "id": "MMU_PAGE_SIZE_8KB", - "name": "MMU_PAGE_SIZE_8KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_16KB", - "name": "MMU_PAGE_SIZE_16KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_32KB", - "name": "MMU_PAGE_SIZE_32KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_64KB", - "name": "MMU_PAGE_SIZE_64KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_MODE", - "name": "MMU_PAGE_MODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE", - "name": "MMU_PAGE_SIZE", - "range": null, - "title": null, - "type": "hex" - } - ], - "depends_on": null, - "id": "component-config-soc-settings-mmu-config", - "title": "MMU Config", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-soc-settings", - "title": "SoC Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", - "id": "SPI_FLASH_BROWNOUT_RESET_XMC", - "name": "SPI_FLASH_BROWNOUT_RESET_XMC", - "range": null, - "title": "Enable sending reset when brownout for XMC flash chips", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", - "id": "SPI_FLASH_BROWNOUT_RESET", - "name": "SPI_FLASH_BROWNOUT_RESET", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", - "title": "SPI Flash behavior when brownout", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Invisible for users.", - "id": "SPI_FLASH_UNDER_HIGH_FREQ", - "name": "SPI_FLASH_UNDER_HIGH_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_ENA", - "name": "SPI_FLASH_HPM_ENA", - "range": null, - "title": "Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_AUTO", - "name": "SPI_FLASH_HPM_AUTO", - "range": null, - "title": "Auto (Not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DIS", - "name": "SPI_FLASH_HPM_DIS", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32S3 && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", - "name": "SPI_FLASH_HPM", - "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", - "id": "SPI_FLASH_HPM_ON", - "name": "SPI_FLASH_HPM_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_AUTO", - "name": "SPI_FLASH_HPM_DC_AUTO", - "range": null, - "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_DISABLE", - "name": "SPI_FLASH_HPM_DC_DISABLE", - "range": null, - "title": "Disable (READ DOCS FIRST)", - "type": "bool" - } - ], - "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", - "name": "SPI_FLASH_HPM_DC", - "title": "Support HPM using DC (READ DOCS FIRST)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", - "id": "SPI_FLASH_HPM_DC_ON", - "name": "SPI_FLASH_HPM_DC_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", - "id": "SPI_FLASH_AUTO_SUSPEND", - "name": "SPI_FLASH_AUTO_SUSPEND", - "range": null, - "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", - "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "range": [ - 20, - 100 - ], - "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", - "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "range": null, - "title": "Enable XMC-C series flash chip suspend feature anyway", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", - "id": "SPI_FLASH_SOFTWARE_RESUME", - "name": "SPI_FLASH_SOFTWARE_RESUME", - "range": null, - "title": "Resume flash program/erase form suspend state by software control", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", - "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "range": null, - "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", - "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "range": null, - "title": "Check flash status automatically after flash suspend", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", - "title": "Optional and Experimental Features (READ DOCS FIRST)", - "type": "menu" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration", - "title": "Main Flash configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", - "id": "SPI_FLASH_LOG_FAILED_WRITE", - "name": "SPI_FLASH_LOG_FAILED_WRITE", - "range": null, - "title": "Log errors if verification fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", - "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "range": null, - "title": "Log warning if writing zero bits to ones", - "type": "bool" - } - ], - "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.", - "id": "SPI_FLASH_VERIFY_WRITE", - "name": "SPI_FLASH_VERIFY_WRITE", - "range": null, - "title": "Verify SPI flash writes", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", - "id": "SPI_FLASH_ENABLE_COUNTERS", - "name": "SPI_FLASH_ENABLE_COUNTERS", - "range": null, - "title": "Enable operation counters", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", - "id": "SPI_FLASH_ROM_DRIVER_PATCH", - "name": "SPI_FLASH_ROM_DRIVER_PATCH", - "range": null, - "title": "Enable SPI flash ROM driver patched functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SPI_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", - "id": "SPI_FLASH_ROM_IMPL", - "name": "SPI_FLASH_ROM_IMPL", - "range": null, - "title": "Use esp_flash implementation in ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "range": null, - "title": "Aborts", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "range": null, - "title": "Fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "range": null, - "title": "Allowed", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", - "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", - "name": "SPI_FLASH_DANGEROUS_WRITE", - "title": "Writing to dangerous flash regions", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", - "id": "SPI_FLASH_SHARE_SPI1_BUS", - "name": "SPI_FLASH_SHARE_SPI1_BUS", - "range": null, - "title": "Support other devices attached to SPI1 bus", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", - "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "range": null, - "title": "Bypass a block erase and always do sector erase", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", - "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "range": null, - "title": "Duration of erasing to yield CPUs (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Defines how many ticks will be before returning to continue a erasing.", - "id": "SPI_FLASH_ERASE_YIELD_TICKS", - "name": "SPI_FLASH_ERASE_YIELD_TICKS", - "range": null, - "title": "CPU release time (tick) for an erase operation", - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", - "id": "SPI_FLASH_YIELD_DURING_ERASE", - "name": "SPI_FLASH_YIELD_DURING_ERASE", - "range": null, - "title": "Enables yield operation during flash erase", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", - "id": "SPI_FLASH_WRITE_CHUNK_SIZE", - "name": "SPI_FLASH_WRITE_CHUNK_SIZE", - "range": [ - 256, - 8192 - ], - "title": "Flash write chunk size", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", - "id": "SPI_FLASH_SIZE_OVERRIDE", - "name": "SPI_FLASH_SIZE_OVERRIDE", - "range": null, - "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", - "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "range": null, - "title": "Flash timeout checkout disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", - "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "range": null, - "title": "Override default chip driver list", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_XMC_SUPPORTED", - "name": "SPI_FLASH_VENDOR_XMC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_GD_SUPPORTED", - "name": "SPI_FLASH_VENDOR_GD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", - "name": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", - "name": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", - "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_BOYA_SUPPORTED", - "name": "SPI_FLASH_VENDOR_BOYA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_TH_SUPPORTED", - "name": "SPI_FLASH_VENDOR_TH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "range": null, - "title": "ISSI", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "range": null, - "title": "MXIC", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", - "id": "SPI_FLASH_SUPPORT_GD_CHIP", - "name": "SPI_FLASH_SUPPORT_GD_CHIP", - "range": null, - "title": "GigaDevice", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "range": null, - "title": "Winbond", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "range": null, - "title": "BOYA", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_TH_CHIP", - "name": "SPI_FLASH_SUPPORT_TH_CHIP", - "range": null, - "title": "TH", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "range": null, - "title": "mxic (opi)", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver-auto-detect-flash-chips", - "title": "Auto-detect flash chips", - "type": "menu" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", - "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "range": null, - "title": "Enable encrypted partition read/write operations", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver", - "title": "SPI Flash driver", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Define maximum number of partitions that can be mounted.", - "id": "SPIFFS_MAX_PARTITIONS", - "name": "SPIFFS_MAX_PARTITIONS", - "range": [ - 1, - 10 - ], - "title": "Maximum Number of Partitions", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SPIFFS_CACHE", - "help": "Enables memory write caching for file descriptors in hydrogen.", - "id": "SPIFFS_CACHE_WR", - "name": "SPIFFS_CACHE_WR", - "range": null, - "title": "Enable SPIFFS Write Caching", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIFFS_CACHE", - "help": "Enable/disable statistics on caching. Debug/test purpose only.", - "id": "SPIFFS_CACHE_STATS", - "name": "SPIFFS_CACHE_STATS", - "range": null, - "title": "Enable SPIFFS Cache Statistics", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables/disable memory read caching of nucleus file system\noperations.", - "id": "SPIFFS_CACHE", - "name": "SPIFFS_CACHE", - "range": null, - "title": "Enable SPIFFS Cache", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-spiffs-configuration-spiffs-cache-configuration", - "title": "SPIFFS Cache Configuration", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Always check header of each accessed page to ensure consistent state.\nIf enabled it will increase number of reads from flash, especially\nif cache is disabled.", - "id": "SPIFFS_PAGE_CHECK", - "name": "SPIFFS_PAGE_CHECK", - "range": null, - "title": "Enable SPIFFS Page Check", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Define maximum number of GC runs to perform to reach desired free pages.", - "id": "SPIFFS_GC_MAX_RUNS", - "name": "SPIFFS_GC_MAX_RUNS", - "range": [ - 1, - 10000 - ], - "title": "Set Maximum GC Runs", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enable/disable statistics on gc. Debug/test purpose only.", - "id": "SPIFFS_GC_STATS", - "name": "SPIFFS_GC_STATS", - "range": null, - "title": "Enable SPIFFS GC Statistics", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Logical page size of SPIFFS partition, in bytes. Must be multiple\nof flash page size (which is usually 256 bytes).\nLarger page sizes reduce overhead when storing large files, and\nimprove filesystem performance when reading large files.\nSmaller page sizes reduce overhead when storing small (< page size)\nfiles.", - "id": "SPIFFS_PAGE_SIZE", - "name": "SPIFFS_PAGE_SIZE", - "range": [ - 256, - 1024 - ], - "title": "SPIFFS logical page size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Object name maximum length. Note that this length include the\nzero-termination character, meaning maximum string of characters\ncan at most be SPIFFS_OBJ_NAME_LEN - 1.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", - "id": "SPIFFS_OBJ_NAME_LEN", - "name": "SPIFFS_OBJ_NAME_LEN", - "range": [ - 1, - 256 - ], - "title": "Set SPIFFS Maximum Name Length", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is enabled, symbolic links are taken into account\nduring partition image creation.", - "id": "SPIFFS_FOLLOW_SYMLINKS", - "name": "SPIFFS_FOLLOW_SYMLINKS", - "range": null, - "title": "Enable symbolic links for image creation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIFFS_USE_MAGIC", - "help": "If this option is enabled, the magic will also be dependent\non the length of the filesystem. For example, a filesystem\nconfigured and formatted for 4 megabytes will not be accepted\nfor mounting with a configuration defining the filesystem as 2 megabytes.", - "id": "SPIFFS_USE_MAGIC_LENGTH", - "name": "SPIFFS_USE_MAGIC_LENGTH", - "range": null, - "title": "Enable SPIFFS Filesystem Length Magic", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable this to have an identifiable spiffs filesystem.\nThis will look for a magic in all sectors to determine if this\nis a valid spiffs system or not at mount time.", - "id": "SPIFFS_USE_MAGIC", - "name": "SPIFFS_USE_MAGIC", - "range": null, - "title": "Enable SPIFFS Filesystem Magic", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option sets the number of extra bytes stored in the file header.\nThese bytes can be used in an application-specific manner.\nSet this to at least 4 bytes to enable support for saving file\nmodification time.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", - "id": "SPIFFS_META_LENGTH", - "name": "SPIFFS_META_LENGTH", - "range": null, - "title": "Size of per-file metadata field", - "type": "int" - }, - { - "children": [], - "depends_on": "SPIFFS_META_LENGTH >= 4", - "help": "If enabled, then the first 4 bytes of per-file metadata will be used\nto store file modification time (mtime), accessible through\nstat/fstat functions.\nModification time is updated when the file is opened.", - "id": "SPIFFS_USE_MTIME", - "name": "SPIFFS_USE_MTIME", - "range": null, - "title": "Save file modification time", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIFFS_META_LENGTH >= 8", - "help": "If this option is not set, the time field is 32 bits (up to 2106 year),\notherwise it is 64 bits and make sure it matches SPIFFS_META_LENGTH.\nIf the chip already has the spiffs image with the time field = 32 bits\nthen this option cannot be applied in this case.\nErase it first before using this option.\nTo resolve the Y2K38 problem for the spiffs, use a toolchain with\n64-bit time_t support.", - "id": "SPIFFS_MTIME_WIDE_64_BITS", - "name": "SPIFFS_MTIME_WIDE_64_BITS", - "range": null, - "title": "The time field occupies 64 bits in the image instead of 32 bits", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enabling this option will print general debug messages to the console.", - "id": "SPIFFS_DBG", - "name": "SPIFFS_DBG", - "range": null, - "title": "Enable general SPIFFS debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option will print API debug messages to the console.", - "id": "SPIFFS_API_DBG", - "name": "SPIFFS_API_DBG", - "range": null, - "title": "Enable SPIFFS API debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option will print GC debug messages to the console.", - "id": "SPIFFS_GC_DBG", - "name": "SPIFFS_GC_DBG", - "range": null, - "title": "Enable SPIFFS Garbage Cleaner debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIFFS_CACHE", - "help": "Enabling this option will print cache debug messages to the console.", - "id": "SPIFFS_CACHE_DBG", - "name": "SPIFFS_CACHE_DBG", - "range": null, - "title": "Enable SPIFFS Cache debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option will print Filesystem Check debug messages\nto the console.", - "id": "SPIFFS_CHECK_DBG", - "name": "SPIFFS_CHECK_DBG", - "range": null, - "title": "Enable SPIFFS Filesystem Check debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option to enable SPIFFS_vis function in the API.", - "id": "SPIFFS_TEST_VISUALISATION", - "name": "SPIFFS_TEST_VISUALISATION", - "range": null, - "title": "Enable SPIFFS Filesystem Visualization", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-spiffs-configuration-debug-configuration", - "title": "Debug Configuration", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-spiffs-configuration", - "title": "SPIFFS Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "WS_TRANSPORT", - "help": "Size of the buffer used for constructing the HTTP Upgrade request during connect", - "id": "WS_BUFFER_SIZE", - "name": "WS_BUFFER_SIZE", - "range": null, - "title": "Websocket transport buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": "WS_TRANSPORT", - "help": "If enable this option, websocket transport buffer will be freed after connection\nsucceed to save more heap.", - "id": "WS_DYNAMIC_BUFFER", - "name": "WS_DYNAMIC_BUFFER", - "range": null, - "title": "Using dynamic websocket transport buffer", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable support for creating websocket transport.", - "id": "WS_TRANSPORT", - "name": "WS_TRANSPORT", - "range": null, - "title": "Enable Websocket Transport", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-tcp-transport-websocket", - "title": "Websocket", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-tcp-transport", - "title": "TCP Transport", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_ULP_FSM_SUPPORTED && ", - "help": null, - "id": "ULP_COPROC_TYPE_FSM", - "name": "ULP_COPROC_TYPE_FSM", - "range": null, - "title": "ULP FSM (Finite State Machine)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RISCV_COPROC_SUPPORTED && ", - "help": null, - "id": "ULP_COPROC_TYPE_RISCV", - "name": "ULP_COPROC_TYPE_RISCV", - "range": null, - "title": "ULP RISC-V", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LP_CORE_SUPPORTED && ", - "help": null, - "id": "ULP_COPROC_TYPE_LP_CORE", - "name": "ULP_COPROC_TYPE_LP_CORE", - "range": null, - "title": "LP core RISC-V", - "type": "bool" - } - ], - "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Choose the ULP Coprocessor type: ULP FSM (Finite State Machine) or ULP RISC-V.", - "id": "component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type", - "name": "ULP_COPROC_TYPE", - "title": "ULP Co-processor type", - "type": "choice" - }, - { - "children": [], - "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Bytes of memory to reserve for ULP Co-processor firmware & data.\nData is reserved at the beginning of RTC slow memory.", - "id": "ULP_COPROC_RESERVE_MEM", - "name": "ULP_COPROC_RESERVE_MEM", - "range": null, - "title": "RTC slow memory reserved for coprocessor", - "type": "int" - } - ], - "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", - "help": "Enable this feature if you plan to use the ULP Co-processor.\nOnce this option is enabled, further ULP co-processor configuration will appear in the menu.", - "id": "ULP_COPROC_ENABLED", - "name": "ULP_COPROC_ENABLED", - "range": null, - "title": "Enable Ultra Low Power (ULP) Co-processor", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Turn on this setting to enabled interrupts on the ULP RISC-V core.", - "id": "ULP_RISCV_INTERRUPT_ENABLE", - "name": "ULP_RISCV_INTERRUPT_ENABLE", - "range": null, - "title": "Enable ULP RISC-V interrupts", - "type": "bool" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "The accuracy of the bitbanged UART driver is limited, it is not\nrecommend to increase the value above 19200.", - "id": "ULP_RISCV_UART_BAUDRATE", - "name": "ULP_RISCV_UART_BAUDRATE", - "range": null, - "title": "Baudrate used by the bitbanged ULP RISC-V UART driver", - "type": "int" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Set the ULP RISC-V I2C read/write timeout. Set this value to -1\nif the ULP RISC-V I2C read and write APIs should wait forever.\nPlease note that the tick rate of the ULP co-processor would be\ndifferent than the OS tick rate of the main core and therefore\ncan have different timeout value depending on which core the API\nis invoked on.", - "id": "ULP_RISCV_I2C_RW_TIMEOUT", - "name": "ULP_RISCV_I2C_RW_TIMEOUT", - "range": null, - "title": "Set timeout for ULP RISC-V I2C transaction timeout in ticks.", - "type": "int" - } - ], - "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "id": "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings", - "title": "ULP RISC-V Settings", - "type": "menu" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Size of the shared memory defined in ulp_lp_core_memory_shared.c.\nSize should be kept in-sync with the size of the struct defined there.", - "id": "ULP_SHARED_MEM", - "name": "ULP_SHARED_MEM", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_LP_CORE && ESP_ROM_HAS_LP_ROM && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Set this option to enable printf functionality from LP ROM. This option\ncan help reduce the LP core binary size by not linking printf functionality\nfrom RAM code.\nNote: For LP ROM prints to work properly, make sure that the LP core boots\nfrom the LP ROM.", - "id": "ULP_ROM_PRINT_ENABLE", - "name": "ULP_ROM_PRINT_ENABLE", - "range": null, - "title": "Enable print utilities from LP ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_LP_CORE && SOC_ULP_LP_UART_SUPPORTED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Set this option to enable panic handler functionality. If this option is\nenabled then the LP Core will output a panic dump over LP UART,\nsimilar to what the main core does. Output depends on LP UART already being\ninitialized and configured.\nDisabling this option will reduce the LP core binary size by not\nlinking in panic handler functionality.", - "id": "ULP_PANIC_OUTPUT_ENABLE", - "name": "ULP_PANIC_OUTPUT_ENABLE", - "range": null, - "title": "Enable panic handler which outputs over LP UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Set this option to route lp_core_printf to the console HP-UART.\nThis allows you to easily view print outputs from the LP core, without\nhaving to connect to the LP-UART. This option comes with the following\nlimitations:\n\n1. There is no mutual exclusion between the HP-Core and the LP-Core accessing\nthe HP-UART, which means that if both cores are logging heavily the output\nstrings might get mangled together.\n2. The HP-UART can only work while the HP-Core is running, which means that\nif the HP-Core is in deep sleep, the LP-Core will not be able to print to the\nconsole HP-UART.\n\nDue to these limitations it is only recommended to use this option for easy debugging.\nFor more serious use-cases you should use the LP-UART.", - "id": "ULP_HP_UART_CONSOLE_PRINT", - "name": "ULP_HP_UART_CONSOLE_PRINT", - "range": null, - "title": "Route lp_core_printf to the console HP-UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", - "help": "Enable this feature to avoid resetting LP core in sleep mode when debugger is attached,\notherwise configured HW breakpoints and dcsr.ebreak* bits will be missed.\nThis is a workaround until it will be fixed in HW.", - "id": "ULP_NORESET_UNDER_DEBUG", - "name": "ULP_NORESET_UNDER_DEBUG", - "range": null, - "title": "Avoid resetting LP core when debugger is attached", - "type": "bool" - } - ], - "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", - "id": "component-config-ultra-low-power-ulp-co-processor-ulp-debugging-options", - "title": "ULP Debugging Options", - "type": "menu" - } - ], - "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", - "id": "component-config-ultra-low-power-ulp-co-processor", - "title": "Ultra Low Power (ULP) Co-processor", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "If not set, assertions on float arguments will not be available.", - "id": "UNITY_ENABLE_FLOAT", - "name": "UNITY_ENABLE_FLOAT", - "range": null, - "title": "Support for float type", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If not set, assertions on double arguments will not be available.", - "id": "UNITY_ENABLE_DOUBLE", - "name": "UNITY_ENABLE_DOUBLE", - "range": null, - "title": "Support for double type", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If not set, assertions on 64-bit integer types will always fail.\nIf this feature is enabled, take care not to pass pointers (which are 32 bit)\nto UNITY_ASSERT_EQUAL, as that will cause pointer-to-int-cast warnings.", - "id": "UNITY_ENABLE_64BIT", - "name": "UNITY_ENABLE_64BIT", - "range": null, - "title": "Support for 64-bit integer types", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If set, Unity will colorize test results using console escape sequences.", - "id": "UNITY_ENABLE_COLOR", - "name": "UNITY_ENABLE_COLOR", - "range": null, - "title": "Colorize test output", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If set, then the following features will be available:\n\n- TEST_CASE macro which performs automatic registration of test functions\n- Functions to run registered test functions: unity_run_all_tests,\n unity_run_tests_with_filter, unity_run_single_test_by_name.\n- Interactive menu which lists test cases and allows choosing the tests to\n be run, available via unity_run_menu function.\n\nDisable if a different test registration mechanism is used.", - "id": "UNITY_ENABLE_IDF_TEST_RUNNER", - "name": "UNITY_ENABLE_IDF_TEST_RUNNER", - "range": null, - "title": "Include ESP-IDF test registration/running helpers", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If set, unity_fixture.h header file and associated source files are part of\nthe build. These provide an optional set of macros and functions to\nimplement test groups.", - "id": "UNITY_ENABLE_FIXTURE", - "name": "UNITY_ENABLE_FIXTURE", - "range": null, - "title": "Include Unity test fixture", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If set, the unity framework will print the backtrace information before\njumping back to the test menu. The jumping is usually occurs in assert\nfunctions such as TEST_ASSERT, TEST_FAIL etc.", - "id": "UNITY_ENABLE_BACKTRACE_ON_FAIL", - "name": "UNITY_ENABLE_BACKTRACE_ON_FAIL", - "range": null, - "title": "Print a backtrace when a unit test fails", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-unity-unit-testing-library", - "title": "Unity unit testing library", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "Each USB device attached is allocated a dedicated buffer for its OUT/IN transfers to/from the device's\ncontrol endpoint. The maximum size of that buffer is determined by this option. The limited size of the\ntransfer buffer have the following implications:\n- The maximum length of control transfers is limited\n- Device's with configuration descriptors larger than this limit cannot be supported", - "id": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", - "name": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", - "range": null, - "title": "Largest size (in bytes) of transfers to/from default endpoints", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "USB_HOST_HW_BUFFER_BIAS_BALANCED", - "name": "USB_HOST_HW_BUFFER_BIAS_BALANCED", - "range": null, - "title": "Balanced", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "USB_HOST_HW_BUFFER_BIAS_IN", - "name": "USB_HOST_HW_BUFFER_BIAS_IN", - "range": null, - "title": "Bias IN", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", - "name": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", - "range": null, - "title": "Periodic OUT", - "type": "bool" - } - ], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "The underlying hardware has size adjustable FIFOs to cache USB packets on reception (IN) or for\ntransmission (OUT). The size of these FIFOs will affect the largest MPS (maximum packet size) and the\nmaximum number of packets that can be cached at any one time. The hardware contains the following\nFIFOS: RX (for all IN packets), Non-periodic TX (for Bulk and Control OUT packets), and Periodic TX\n(for Interrupt and Isochronous OUT packets). This configuration option allows biasing the FIFO sizes\ntowards a particular use case, which may be necessary for devices that have endpoints with large MPS.\nThe MPS limits for each biasing are listed below:\n\nBalanced:\n- IN (all transfer types), 408 bytes\n- OUT non-periodic (Bulk/Control), 192 bytes (i.e., 3 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 192 bytes\n\nBias IN:\n- IN (all transfer types), 600 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 128 bytes\n\nBias Periodic OUT:\n- IN (all transfer types), 128 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 600 bytes", - "id": "component-config-usb-otg-hardware-fifo-size-biasing", - "name": "USB_HOST_HW_BUFFER_BIAS", - "title": "Hardware FIFO size biasing", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "On connection of a USB device, the USB 2.0 specification requires\na \"debounce interval with a minimum duration of 100ms\" to allow the connection to stabilize\n(see USB 2.0 chapter 7.1.7.3 for more details).\nDuring the debounce interval, no new connection/disconnection events are registered.\n\nThe default value is set to 250 ms to be safe.", - "id": "USB_HOST_DEBOUNCE_DELAY_MS", - "name": "USB_HOST_DEBOUNCE_DELAY_MS", - "range": null, - "title": "Debounce delay in ms", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "The reset signaling can be generated on any Hub or Host Controller port by request from\nthe USB System Software. The USB 2.0 specification requires that \"the reset signaling must\nbe driven for a minimum of 10ms\" (see USB 2.0 chapter 7.1.7.5 for more details).\nAfter the reset, the hub port will transition to the Enabled state (refer to Section 11.5).\n\nThe default value is set to 30 ms to be safe.", - "id": "USB_HOST_RESET_HOLD_MS", - "name": "USB_HOST_RESET_HOLD_MS", - "range": null, - "title": "Reset hold in ms", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", - "id": "USB_HOST_RESET_RECOVERY_MS", - "name": "USB_HOST_RESET_RECOVERY_MS", - "range": null, - "title": "Reset recovery delay in ms", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "\"After successful completion of the Status stage, the device is allowed a SetAddress()\nrecovery interval of 2 ms. At the end of this interval, the device must be able to accept\nSetup packets addressed to the new address. Also, at the end of the recovery interval, the\ndevice must not respond to tokens sent to the old address (unless, of course, the old and new\naddress is the same).\" See USB 2.0 chapter 9.2.6.3 for more details.\n\nThe default value is set to 10 ms to be safe.", - "id": "USB_HOST_SET_ADDR_RECOVERY_MS", - "name": "USB_HOST_SET_ADDR_RECOVERY_MS", - "range": null, - "title": "SetAddress() recovery time in ms", - "type": "int" - } - ], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "id": "component-config-usb-otg-hub-driver-configuration-root-port-configuration", - "title": "Root Port configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "Enables support for connecting multiple Hubs simultaneously.", - "id": "USB_HOST_HUB_MULTI_LEVEL", - "name": "USB_HOST_HUB_MULTI_LEVEL", - "range": null, - "title": "Support multiple Hubs", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_EXPERIMENTAL_FEATURES && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "Enables support of Low-speed devices, connected through the external Hub.", - "id": "USB_HOST_EXT_PORT_SUPPORT_LS", - "name": "USB_HOST_EXT_PORT_SUPPORT_LS", - "range": null, - "title": "Support LS", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_EXPERIMENTAL_FEATURES && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "Amount of attempts to reset the device.\n\nThe default value is 1.", - "id": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", - "name": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", - "id": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", - "name": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", - "range": null, - "title": "Reset recovery delay in ms", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "Custom value of delay from the time the power-on sequence begins on a port\nuntil power is good on that port.\nValue 0 is used for a hub with no power switches.\n\nThe default value is 100 ms.", - "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", - "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", - "range": null, - "title": "PwrOn2PwrGood delay in ms", - "type": "int" - } - ], - "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "help": "Enables the possibility to configure custom time for the power-on sequence on a port\nuntil power is good on that port.\n\nWhen enabled, applies the custom PwrOn2PwrGood delay.\nWhen disabled, applies the PwrOn2PwrGood value from the Hub Descriptor.", - "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", - "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", - "range": null, - "title": "Custom bPwrOn2PwrGood value", - "type": "bool" - } - ], - "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", - "id": "component-config-usb-otg-hub-driver-configuration-support-hubs-downstream-port-configuration", - "title": "Downstream Port configuration", - "type": "menu" - } - ], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "Enables support of external Hubs.", - "id": "USB_HOST_HUBS_SUPPORTED", - "name": "USB_HOST_HUBS_SUPPORTED", - "range": null, - "title": "Support Hubs", - "type": "bool" - } - ], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "id": "component-config-usb-otg-hub-driver-configuration", - "title": "Hub Driver Configuration", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": "The enumeration filter callback is called before enumeration of each newly attached device.\nThis callback allows users to control whether a device should be enumerated, and what configuration\nnumber to use when enumerating a device.\n\nIf enabled, the enumeration filter callback can be set via 'usb_host_config_t' when calling\n'usb_host_install()'.", - "id": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", - "name": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", - "range": null, - "title": "Enable enumeration filter callback", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "help": null, - "id": "USB_OTG_SUPPORTED", - "name": "USB_OTG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "SOC_USB_OTG_SUPPORTED", - "id": "component-config-usb-otg", - "title": "USB-OTG", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "If enabled, the following functions are provided by the VFS component.\n\nstat, link, unlink, rename, utime, access, truncate, rmdir, mkdir,\nopendir, closedir, readdir, readdir_r, seekdir, telldir, rewinddir\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.", - "id": "VFS_SUPPORT_DIR", - "name": "VFS_SUPPORT_DIR", - "range": null, - "title": "Provide directory related functions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_SELECT", - "help": "Select() related functions might produce an inconveniently lot of\ndebug outputs when one sets the default log level to DEBUG or higher.\nIt is possible to suppress these debug outputs by enabling this\noption.", - "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", - "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", - "range": null, - "title": "Suppress select() related debug outputs", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_SELECT", - "help": "If enabled, VFS driver select() callback function will be placed in IRAM.", - "id": "VFS_SELECT_IN_RAM", - "name": "VFS_SELECT_IN_RAM", - "range": null, - "title": "Make VFS driver select() callbacks IRAM-safe", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT", - "help": "If enabled, select function is provided by the VFS component, and can be used\non peripheral file descriptors (such as UART) and sockets at the same time.\n\nIf disabled, the default select implementation will be provided by LWIP for\nsockets only.\n\nDisabling this option can reduce code size if support for \"select\" on UART file\ndescriptors is not required.", - "id": "VFS_SUPPORT_SELECT", - "name": "VFS_SUPPORT_SELECT", - "range": null, - "title": "Provide select function", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Disabling this option can save memory when the support for termios.h is not required.", - "id": "VFS_SUPPORT_TERMIOS", - "name": "VFS_SUPPORT_TERMIOS", - "range": null, - "title": "Provide termios.h functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Define maximum number of virtual filesystems that can be registered.", - "id": "VFS_MAX_COUNT", - "name": "VFS_MAX_COUNT", - "range": [ - 1, - 20 - ], - "title": "Maximum Number of Virtual Filesystems", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Define maximum number of host filesystem mount points.", - "id": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", - "name": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", - "range": null, - "title": "Host FS: Maximum number of the host filesystem mount points", - "type": "int" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "id": "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-", - "title": "Host File System I/O (Semihosting)", - "type": "menu" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "If enabled, /dev/null VFS will be automatically initialized at startup.", - "id": "VFS_INITIALIZE_DEV_NULL", - "name": "VFS_INITIALIZE_DEV_NULL", - "range": null, - "title": "Initialize /dev/null VFS", - "type": "bool" - } - ], - "depends_on": null, - "help": "If enabled, the following functions are provided by the VFS component.\n\nopen, close, read, write, pread, pwrite, lseek, fstat, fsync, ioctl, fcntl\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.\n\nNote that the following functions can still be used with socket file descriptors\nwhen this option is disabled:\n\nclose, read, write, ioctl, fcntl.", - "id": "VFS_SUPPORT_IO", - "name": "VFS_SUPPORT_IO", - "range": null, - "title": "Provide basic I/O functions", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-virtual-file-system", - "title": "Virtual file system", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "WL_SECTOR_SIZE_512", - "name": "WL_SECTOR_SIZE_512", - "range": null, - "title": "512", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "WL_SECTOR_SIZE_4096", - "name": "WL_SECTOR_SIZE_4096", - "range": null, - "title": "4096", - "type": "bool" - } - ], - "depends_on": null, - "help": "Sector size used by wear levelling library.\nYou can set default sector size or size that will\nfit to the flash device sector size.\n\nWith sector size set to 4096 bytes, wear levelling library is more\nefficient. However if FAT filesystem is used on top of wear levelling\nlibrary, it will need more temporary storage: 4096 bytes for each\nmounted filesystem and 4096 bytes for each opened file.\n\nWith sector size set to 512 bytes, wear levelling library will perform\nmore operations with flash memory, but less RAM will be used by FAT\nfilesystem library (512 bytes for the filesystem and 512 bytes for each\nfile opened).", - "id": "component-config-wear-levelling-wear-levelling-library-sector-size", - "name": "WL_SECTOR_SIZE", - "title": "Wear Levelling library sector size", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "WL_SECTOR_SIZE", - "name": "WL_SECTOR_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "WL_SECTOR_MODE_PERF", - "name": "WL_SECTOR_MODE_PERF", - "range": null, - "title": "Performance", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "WL_SECTOR_MODE_SAFE", - "name": "WL_SECTOR_MODE_SAFE", - "range": null, - "title": "Safety", - "type": "bool" - } - ], - "depends_on": "WL_SECTOR_SIZE_512", - "help": "Specify the mode to store data into flash:\n\n- In Performance mode a data will be stored to the RAM and then\n stored back to the flash. Compared to the Safety mode, this operation is\n faster, but if power will be lost when erase sector operation is in\n progress, then the data from complete flash device sector will be lost.\n\n- In Safety mode data from complete flash device sector will be read from\n flash, modified, and then stored back to flash.\n Compared to the Performance mode, this operation is slower, but if\n power is lost during erase sector operation, then the data from full\n flash device sector will not be lost.", - "id": "component-config-wear-levelling-sector-store-mode", - "name": "WL_SECTOR_MODE", - "title": "Sector store mode", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "WL_SECTOR_MODE", - "name": "WL_SECTOR_MODE", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-wear-levelling", - "title": "Wear Levelling", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager", - "id": "WIFI_PROV_SCAN_MAX_ENTRIES", - "name": "WIFI_PROV_SCAN_MAX_ENTRIES", - "range": [ - 1, - 255 - ], - "title": "Max Wi-Fi Scan Result Entries", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to\na Wi-Fi network successfully.", - "id": "WIFI_PROV_AUTOSTOP_TIMEOUT", - "name": "WIFI_PROV_AUTOSTOP_TIMEOUT", - "range": [ - 5, - 600 - ], - "title": "Provisioning auto-stop timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_ENABLED", - "help": "This option is applicable only when provisioning transport is BLE.", - "id": "WIFI_PROV_BLE_BONDING", - "name": "WIFI_PROV_BLE_BONDING", - "range": null, - "title": "Enable BLE bonding", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Used to enable Secure connection support when provisioning transport is BLE.", - "id": "WIFI_PROV_BLE_SEC_CONN", - "name": "WIFI_PROV_BLE_SEC_CONN", - "range": null, - "title": "Enable BLE Secure connection flag", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_ENABLED", - "help": "Used to enforce link encryption when attempting to read / write characteristic", - "id": "WIFI_PROV_BLE_FORCE_ENCRYPTION", - "name": "WIFI_PROV_BLE_FORCE_ENCRYPTION", - "range": null, - "title": "Force Link Encryption during characteristic Read / Write", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_ENABLED", - "help": "Used to enable support Notification in BLE descriptors of prov* characteristics", - "id": "WIFI_PROV_BLE_NOTIFY", - "name": "WIFI_PROV_BLE_NOTIFY", - "range": null, - "title": "Add support for Notification for provisioning BLE descriptors", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", - "help": null, - "id": "WIFI_PROV_DISCONNECT_AFTER_PROV", - "name": "WIFI_PROV_DISCONNECT_AFTER_PROV", - "range": null, - "title": "Terminate connection after provisioning is done", - "type": "bool" - } - ], - "depends_on": "BT_ENABLED", - "help": null, - "id": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", - "name": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", - "range": null, - "title": "Keep BT on after provisioning is done", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.", - "id": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", - "name": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", - "range": null, - "title": "All Channel Scan", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Scan will end after an AP matching with the SSID has been detected.", - "id": "WIFI_PROV_STA_FAST_SCAN", - "name": "WIFI_PROV_STA_FAST_SCAN", - "range": null, - "title": "Fast Scan", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method", - "name": "WIFI_PROV_STA_SCAN_METHOD", - "title": "Wifi Provisioning Scan Method", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-wi-fi-provisioning-manager", - "title": "Wi-Fi Provisioning Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "By default only error logs are enabled.\nThis config option enables the capture of all log types (errors/warnings/events).", - "id": "APP_INSIGHTS_ENABLE_LOG_TYPE_ALL", - "name": "APP_INSIGHTS_ENABLE_LOG_TYPE_ALL", - "range": null, - "title": "Enable all diagnostics log type", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-app-insights", - "title": "App Insights", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "IO_GLITCH_FILTER_TIME_MS", - "name": "IO_GLITCH_FILTER_TIME_MS", - "range": [ - 10, - 100 - ], - "title": "IO glitch filter timer ms (10~100)", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-gpio-button", - "title": "GPIO Button", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "WS2812_LED_ENABLE", - "help": "Set the WS2812 RGB LED GPIO.", - "id": "WS2812_LED_GPIO", - "name": "WS2812_LED_GPIO", - "range": null, - "title": "WS2812 LED GPIO", - "type": "int" - } - ], - "depends_on": null, - "help": "Disable the WS2812 RGB LED.", - "id": "WS2812_LED_ENABLE", - "name": "WS2812_LED_ENABLE", - "range": null, - "title": "Enable RGB LED", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ws2812-rgb-led", - "title": "WS2812 RGB LED", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Select this option to enable MD5 hashsum check after flashing.", - "id": "SERIAL_FLASHER_MD5_ENABLED", - "name": "SERIAL_FLASHER_MD5_ENABLED", - "range": null, - "title": "Enable MD5 check", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SERIAL_FLASHER_INTERFACE_UART", - "name": "SERIAL_FLASHER_INTERFACE_UART", - "range": null, - "title": "UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SERIAL_FLASHER_INTERFACE_SPI", - "name": "SERIAL_FLASHER_INTERFACE_SPI", - "range": null, - "title": "SPI (Only supports downloading to RAM)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SERIAL_FLASHER_INTERFACE_USB", - "name": "SERIAL_FLASHER_INTERFACE_USB", - "range": null, - "title": "USB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SERIAL_FLASHER_INTERFACE_SDIO", - "name": "SERIAL_FLASHER_INTERFACE_SDIO", - "range": null, - "title": "SDIO (Experimental, Only supports downloading to RAM)", - "type": "bool" - } - ], - "depends_on": null, - "help": "esp-serial-flasher can work with UART and SPI interfaces.", - "id": "component-config-esp-serial-flasher-hardware-interface-to-use-for-firmware-download", - "name": "SERIAL_FLASHER_INTERFACE", - "title": "Hardware interface to use for firmware download", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SERIAL_FLASHER_RESET_HOLD_TIME_MS", - "name": "SERIAL_FLASHER_RESET_HOLD_TIME_MS", - "range": null, - "title": "Time for which the reset pin is asserted when doing a hard reset", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SERIAL_FLASHER_BOOT_HOLD_TIME_MS", - "name": "SERIAL_FLASHER_BOOT_HOLD_TIME_MS", - "range": null, - "title": "Time for which the boot pin is asserted when doing a hard reset", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SERIAL_FLASHER_DEBUG_TRACE", - "name": "SERIAL_FLASHER_DEBUG_TRACE", - "range": null, - "title": "Enable debug tracing output (only transfer data tracing is supported at the time)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SERIAL_FLASHER_WRITE_BLOCK_RETRIES", - "name": "SERIAL_FLASHER_WRITE_BLOCK_RETRIES", - "range": null, - "title": "Number of retries when writing blocks either to target flash or RAM", - "type": "int" - }, - { - "children": [], - "depends_on": "SERIAL_FLASHER_INTERFACE_UART", - "help": "Enable this option if there is an inverting connection between\nthe output of the serial-flasher and the reset pin of the ESP chip.", - "id": "SERIAL_FLASHER_RESET_INVERT", - "name": "SERIAL_FLASHER_RESET_INVERT", - "range": null, - "title": "Invert reset signal", - "type": "bool" - }, - { - "children": [], - "depends_on": "SERIAL_FLASHER_INTERFACE_UART", - "help": "Enable this option if there is an inverting connection between\nthe output of the serial-flasher and the boot pin of the ESP chip.", - "id": "SERIAL_FLASHER_BOOT_INVERT", - "name": "SERIAL_FLASHER_BOOT_INVERT", - "range": null, - "title": "Invert boot signal", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-serial-flasher", - "title": "ESP serial flasher", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "DIAG_DATA_STORE_RTC", - "name": "DIAG_DATA_STORE_RTC", - "range": null, - "title": "RTC memory", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Just a placeholder. This data store type is not supported as of now", - "id": "DIAG_DATA_STORE_FLASH", - "name": "DIAG_DATA_STORE_FLASH", - "range": null, - "title": "Flash", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option configures the place to store diagnostics data: RTC memory or Flash.\n\nFlash store needs an additional patition table entry.\nNOTE: Diagnostics data partition must be encrypted if Flash Encryption is enabled.", - "id": "component-config-diagnostics-data-store-diagnostics-data-store-destination", - "name": "DIAG_DATA_STORE_RTC_OR_FLASH", - "title": "Diagnostics data store destination", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Enables debug prints for diagnostics data store", - "id": "DIAG_DATA_STORE_DBG_PRINTS", - "name": "DIAG_DATA_STORE_DBG_PRINTS", - "range": null, - "title": "Enable data store debug prints", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Data store has facility to post an event when buffer is filled to a configured level.\nThis option configures the reporting watermark for critical and non critical data.", - "id": "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT", - "name": "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT", - "range": [ - 50, - 90 - ], - "title": "Reporting watermark percentage", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_DATA_STORE_RTC", - "help": "RTC data store is divided into two parts to store critical and non-critical data.\nThis option configures the total size of data store.\nNOTE: On ESP32 devices, from esp-idf release v4.3 and onwards we can use all 8K RTC memory,\nso max range is specified as 7K. On releases before v4.3 we can only access maximum 4K RTC memory and\nRTC store uses few bytes for its operation so default for ESP32 is set to 3K.", - "id": "RTC_STORE_DATA_SIZE", - "name": "RTC_STORE_DATA_SIZE", - "range": [ - 512, - 7168 - ], - "title": "RTC store data size", - "type": "int" - }, - { - "children": [], - "depends_on": "DIAG_DATA_STORE_RTC", - "help": "This option configures the size of critical data buffer and remaining is used for\nnon critical data buffer.", - "id": "RTC_STORE_CRITICAL_DATA_SIZE", - "name": "RTC_STORE_CRITICAL_DATA_SIZE", - "range": [ - 512, - 6144 - ], - "title": "Maximum size of critical data store", - "type": "int" - } - ], - "depends_on": "DIAG_DATA_STORE_RTC", - "id": "component-config-diagnostics-data-store-rtc-store", - "title": "RTC Store", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_DATA_STORE_FLASH", - "help": "Diagnostics data is stored in this partition", - "id": "FLASH_STORE_PARTITION_LABEL", - "name": "FLASH_STORE_PARTITION_LABEL", - "range": null, - "title": "Diagnostics data partition name", - "type": "string" - } - ], - "depends_on": "DIAG_DATA_STORE_FLASH", - "id": "component-config-diagnostics-data-store-flash-store", - "title": "Flash Store", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-diagnostics-data-store", - "title": "Diagnostics data store", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "DIAG_LOG_MSG_ARG_FORMAT_TLV", - "name": "DIAG_LOG_MSG_ARG_FORMAT_TLV", - "range": null, - "title": "Format arguments as TLV", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "DIAG_LOG_MSG_ARG_FORMAT_STRING", - "name": "DIAG_LOG_MSG_ARG_FORMAT_STRING", - "range": null, - "title": "Format arguments as string", - "type": "bool" - } - ], - "depends_on": null, - "help": "For error/warning/event logs, diagnostics module collects program counter, timestamp,\ntag, RO data pointer and log arguments. Log arguments are stored in statically allocated buffer.\nThis option configures how to format and store log arguments in buffer.\nLog arguments can be formatted as TLV or complete log string formatted using vsnprintf.\n\nIf \"TLV\" is selected, buffer contains arguments formatted as TLV.\nType - 1 byte for the type of argument, please check esp_diag_arg_type_t.\nLength - 1 byte for the size of argument, size is calculated using sizeof operator.\nValue - Size bytes for the value.\n\nIf \"STRING\" is selected, buffer contains the entire string formatted using vsnprintf.", - "id": "component-config-diagnostics-diagnostics-log-argument-format", - "name": "DIAG_LOG_MSG_ARG_FORMAT", - "title": "Diagnostics log argument format", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Log arguments are stored in a static allocated buffer.\nThis option configures the maximum size of buffer for storing log arguments.", - "id": "DIAG_LOG_MSG_ARG_MAX_SIZE", - "name": "DIAG_LOG_MSG_ARG_MAX_SIZE", - "range": [ - 32, - 255 - ], - "title": "Maximum size of diagnostics log argument buffer", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Every Wi-Fi log printed on the console adds three diagnostics logs.\nFor some users, Wi-Fi logs may not be that useful.\nBy default, diagnostics drops Wi-Fi logs. Set this config option to \"n\" for recording Wi-Fi logs.", - "id": "DIAG_LOG_DROP_WIFI_LOGS", - "name": "DIAG_LOG_DROP_WIFI_LOGS", - "range": null, - "title": "Drop Wi-Fi logs", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables wrapping of esp_log_write and esp_log_writev APIs using `--wrap` gcc option.\nEnable this option when direct log access is required.\n\nNote: This option is automatically selected when ESP Insights is enabled.", - "id": "DIAG_ENABLE_WRAP_LOG_FUNCTIONS", - "name": "DIAG_ENABLE_WRAP_LOG_FUNCTIONS", - "range": null, - "title": "Enable wrapping of log functions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_ENABLE_METRICS", - "help": "This option configures the maximum number of metrics that can be registered.", - "id": "DIAG_METRICS_MAX_COUNT", - "name": "DIAG_METRICS_MAX_COUNT", - "range": null, - "title": "Maximum number of metrics", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_ENABLE_HEAP_METRICS", - "help": "This option configures the time interval in seconds at which heap metrics are collected.\nMinimum allowed value is 30 seconds and maximum is 24 hours (86400 seconds).", - "id": "DIAG_HEAP_POLLING_INTERVAL", - "name": "DIAG_HEAP_POLLING_INTERVAL", - "range": [ - 30, - 86400 - ], - "title": "Heap metrics polling interval in seconds", - "type": "int" - } - ], - "depends_on": "DIAG_ENABLE_METRICS", - "help": "Enables the heap memory metrics. This collects free memory, largest free block,\nand minimum free memory for heaps in internal as well as external memory.", - "id": "DIAG_ENABLE_HEAP_METRICS", - "name": "DIAG_ENABLE_HEAP_METRICS", - "range": null, - "title": "Enable Heap Metrics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_ENABLE_WIFI_METRICS", - "help": "This option configures the time interval in seconds at which Wi-Fi metrics are collected.\nMinimum allowed value is 30 seconds and maximum is 24 hours (86400 seconds).", - "id": "DIAG_WIFI_POLLING_INTERVAL", - "name": "DIAG_WIFI_POLLING_INTERVAL", - "range": [ - 30, - 86400 - ], - "title": "Wi-Fi metrics polling interval in seconds", - "type": "int" - } - ], - "depends_on": "DIAG_ENABLE_METRICS", - "help": "Enables Wi-Fi metrics and collects Wi-Fi RSSI and minumum ever Wi-Fi RSSI.", - "id": "DIAG_ENABLE_WIFI_METRICS", - "name": "DIAG_ENABLE_WIFI_METRICS", - "range": null, - "title": "Enable Wi-Fi Metrics", - "type": "bool" - } - ], - "depends_on": null, - "help": "Diagnostics module supports recording and reporting metrics to cloud.\nThis option enables the diagnostics metrics and related functionality.", - "id": "DIAG_ENABLE_METRICS", - "name": "DIAG_ENABLE_METRICS", - "range": null, - "title": "Enable diagnostics metrics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_ENABLE_VARIABLES", - "help": "This option configures the maximum number of variables that can be registered.", - "id": "DIAG_VARIABLES_MAX_COUNT", - "name": "DIAG_VARIABLES_MAX_COUNT", - "range": null, - "title": "Maximum number of variables", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "DIAG_ENABLE_NETWORK_VARIABLES", - "help": "Enable more advanced network variables", - "id": "DIAG_MORE_NETWORK_VARS", - "name": "DIAG_MORE_NETWORK_VARS", - "range": null, - "title": "Enable More Advanced Network variables", - "type": "bool" - } - ], - "depends_on": "DIAG_ENABLE_VARIABLES", - "help": "Enables the Wi-Fi and IP address variables. Below variables are collected.\nFor Wi-Fi: SSID, BSSID, channel, auth mode, connection status, disconnection reason.\nFor IP: IPv4 address, netmask, and gateway of the device.", - "id": "DIAG_ENABLE_NETWORK_VARIABLES", - "name": "DIAG_ENABLE_NETWORK_VARIABLES", - "range": null, - "title": "Enable Network variables", - "type": "bool" - } - ], - "depends_on": null, - "help": "Variables are similar to metrics but they represent entities where their current value\nis much more important than over a period of time.\nThis option enables the diagnostics variables and related functionality", - "id": "DIAG_ENABLE_VARIABLES", - "name": "DIAG_ENABLE_VARIABLES", - "range": null, - "title": "Enable diagnostics variables", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Diagnostics component wraps the esp_log_write and esp_log_writev APIs using `--wrap` gcc option.\nThere can be scenario where another component also wants to wrap the logging functions.\nIn that case, enable this option and use the data ingestion APIs esp_diag_log_write and esp_diag_log_writev.", - "id": "DIAG_USE_EXTERNAL_LOG_WRAP", - "name": "DIAG_USE_EXTERNAL_LOG_WRAP", - "range": null, - "title": "Use external log wrapper", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-diagnostics", - "title": "Diagnostics", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_INSIGHTS_DEBUG_ENABLED", - "help": "Print pretty format json data for cbor messages\nIf this option is not enabled, hexdump will be presented instead of json data", - "id": "ESP_INSIGHTS_DEBUG_PRINT_JSON", - "name": "ESP_INSIGHTS_DEBUG_PRINT_JSON", - "range": null, - "title": "Dump CBOR decoded data instead of hexdump", - "type": "bool" - } - ], - "depends_on": "ESP_INSIGHTS_ENABLED", - "help": null, - "id": "ESP_INSIGHTS_DEBUG_ENABLED", - "name": "ESP_INSIGHTS_DEBUG_ENABLED", - "range": null, - "title": "Enable Insights debug prints", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable ESP Insights functionality.\n\nThis automatically selects log wrapping (DIAG_ENABLE_WRAP_LOG_FUNCTIONS) which is\nrequired for ESP Insights to capture log messages.", - "id": "ESP_INSIGHTS_ENABLED", - "name": "ESP_INSIGHTS_ENABLED", - "range": null, - "title": "Enable ESP Insights", - "type": "bool" - }, - { - "children": [], - "depends_on": "(ESP_COREDUMP_ENABLE_TO_FLASH && ESP_COREDUMP_DATA_FORMAT_ELF) || (ESP32_ENABLE_COREDUMP_TO_FLASH && ESP32_COREDUMP_DATA_FORMAT_ELF)", - "help": "This option enables core dump summary functionality in insights.\nIn case of crash, insights sends the core dump summary to cloud on next boot.\nOnce the core dump summary is sent to cloud, it is erased from flash partition of the device.", - "id": "ESP_INSIGHTS_COREDUMP_ENABLE", - "name": "ESP_INSIGHTS_COREDUMP_ENABLE", - "range": null, - "title": "Enable core dump summary support", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_INSIGHTS_TRANSPORT_MQTT", - "name": "ESP_INSIGHTS_TRANSPORT_MQTT", - "range": null, - "title": "MQTT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_INSIGHTS_TRANSPORT_HTTPS", - "name": "ESP_INSIGHTS_TRANSPORT_HTTPS", - "range": null, - "title": "HTTPS", - "type": "bool" - } - ], - "depends_on": null, - "help": "By default insights can send data to cloud using MQTT and HTTPS transports.\nThis option configures the default insights transport.\nInsights transport can be overridden using esp_insights_transport_register API.", - "id": "component-config-esp-insights-insights-default-transport", - "name": "ESP_INSIGHTS_TRANSPORT", - "title": "Insights default transport", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_INSIGHTS_ENABLED && ESP_INSIGHTS_TRANSPORT_MQTT", - "help": "Enabling this option adds control of certain insights options remotely.\nWhen enabled, the available configurations, should be shown on the dashboard\nand controllable from there.\nPlease note, the feature is only available with RainMaker MQTT nodes for now.", - "id": "ESP_INSIGHTS_CMD_RESP_ENABLED", - "name": "ESP_INSIGHTS_CMD_RESP_ENABLED", - "range": null, - "title": "Enable command response module", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_INSIGHTS_TRANSPORT_HTTPS", - "help": null, - "id": "ESP_INSIGHTS_TRANSPORT_HTTPS_HOST", - "name": "ESP_INSIGHTS_TRANSPORT_HTTPS_HOST", - "range": null, - "title": "Insights https host", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "Minimum interval between two consecutive cloud posts.\nThere is a dynamic logic to decide the next timeout when the insights data will be reported.\nIt depends on whether the data was sent or not during the previous timeout.\nIf the data was sent, the next timeout is doubled and if not, it is halved.", - "id": "ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC", - "name": "ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC", - "range": null, - "title": "Insights cloud post min interval (sec)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Maximum interval between two consecutive cloud posts.\nThere is a dynamic logic to decide the next timeout when the insights data will be reported.\nIt depends on whether the data was sent or not during the previous timeout.\nIf the data was sent, the next timeout is doubled and if not, it is halved.", - "id": "ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC", - "name": "ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC", - "range": null, - "title": "Insights cloud post max interval (sec)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "For users already using older metadata, this provides an option to keep using the same.\nThis is important as the new metadata version (1.1), is not backwad compatible.", - "id": "ESP_INSIGHTS_META_VERSION_10", - "name": "ESP_INSIGHTS_META_VERSION_10", - "range": null, - "title": "Use older metadata format (1.0)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-insights", - "title": "ESP Insights", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "If enabled, the device will store the RCP image in its firmware and\ncompare the stored image version with the running RCP image upon boot. The RCP\nwill be automatically updated upon version mismatch.", - "id": "AUTO_UPDATE_RCP", - "name": "AUTO_UPDATE_RCP", - "range": null, - "title": "Update RCP automatically", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, an ota image will be generated during building.", - "id": "CREATE_OTA_IMAGE_WITH_RCP_FW", - "name": "CREATE_OTA_IMAGE_WITH_RCP_FW", - "range": null, - "title": "Create the OTA image with rcp for border router", - "type": "bool" - }, - { - "children": [], - "depends_on": "AUTO_UPDATE_RCP || CREATE_OTA_IMAGE_WITH_RCP_FW", - "help": "The source folder containing the RCP firmware.", - "id": "RCP_SRC_DIR", - "name": "RCP_SRC_DIR", - "range": null, - "title": "Source folder containing the RCP firmware", - "type": "string" - }, - { - "children": [], - "depends_on": "AUTO_UPDATE_RCP", - "help": "The name of RCP storage partition.", - "id": "RCP_PARTITION_NAME", - "name": "RCP_PARTITION_NAME", - "range": null, - "title": "Name of RCP storage partition", - "type": "string" - } - ], - "depends_on": null, - "id": "component-config-openthread-rcp-update", - "title": "OpenThread RCP Update", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32 && !IDF_TARGET_ESP32C2", - "help": "Enable the DS peripheral support. Not supported on esp32 and esp32c2.", - "id": "ESP_SECURE_CERT_DS_PERIPHERAL", - "name": "ESP_SECURE_CERT_DS_PERIPHERAL", - "range": null, - "title": "Enable DS peripheral support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables support for the legacy formats along with\nthe current format in the esp_secure_cert component.\nThe current format is\ncust_flash_tlv\nThe legacy formats are as follows:\ncust_flash\nnvs", - "id": "ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS", - "name": "ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS", - "range": null, - "title": "Enable support for legacy formats", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-secure-cert-manager", - "title": "ESP Secure Cert Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "You can access parent node of parsed json", - "id": "JSMN_PARENT_LINKS", - "name": "JSMN_PARENT_LINKS", - "range": null, - "title": "Enable parent links", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "In strict mode primitives are: numbers and booleans", - "id": "JSMN_STRICT", - "name": "JSMN_STRICT", - "range": null, - "title": "Enable strict mode", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Declar JSMN API as static (instead of extern)", - "id": "JSMN_STATIC", - "name": "JSMN_STATIC", - "range": null, - "title": "Declare JSMN API as static", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-jsmn", - "title": "jsmn", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Number of network interfaces to be served by the mDNS library.\nLowering this number helps to reduce some static RAM usage.", - "id": "MDNS_MAX_INTERFACES", - "name": "MDNS_MAX_INTERFACES", - "range": [ - 1, - 9 - ], - "title": "Max number of interfaces", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Services take up a certain amount of memory, and allowing fewer\nservices to be open at the same time conserves memory. Specify\nthe maximum amount of services here.", - "id": "MDNS_MAX_SERVICES", - "name": "MDNS_MAX_SERVICES", - "range": null, - "title": "Max number of services", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Allows setting mDNS task priority. Please do not set the task priority\nhigher than priorities of system tasks. Compile time warning/error\nwould be emitted if the chosen task priority were too high.", - "id": "MDNS_TASK_PRIORITY", - "name": "MDNS_TASK_PRIORITY", - "range": [ - 1, - 255 - ], - "title": "mDNS task priority", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Allows setting the length of mDNS action queue.", - "id": "MDNS_ACTION_QUEUE_LEN", - "name": "MDNS_ACTION_QUEUE_LEN", - "range": [ - 8, - 64 - ], - "title": "Maximum actions pending to the server", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Allows setting mDNS task stacksize.", - "id": "MDNS_TASK_STACK_SIZE", - "name": "MDNS_TASK_STACK_SIZE", - "range": null, - "title": "mDNS task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MDNS_TASK_AFFINITY_NO_AFFINITY", - "name": "MDNS_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MDNS_TASK_AFFINITY_CPU0", - "name": "MDNS_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "MDNS_TASK_AFFINITY_CPU1", - "name": "MDNS_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allows setting mDNS tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.", - "id": "component-config-mdns-mdns-task-affinity", - "name": "MDNS_TASK_AFFINITY", - "title": "mDNS task affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MDNS_TASK_AFFINITY", - "name": "MDNS_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": "mDNS task creates on the SPIRAM.\nThis option requires FreeRTOS component to allow creating\ntasks on the external memory.\nPlease read the documentation about FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "id": "MDNS_TASK_CREATE_FROM_SPIRAM", - "name": "MDNS_TASK_CREATE_FROM_SPIRAM", - "range": null, - "title": "mDNS task creates on the SPIRAM (READ HELP)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MDNS_TASK_CREATE_FROM_INTERNAL", - "name": "MDNS_TASK_CREATE_FROM_INTERNAL", - "range": null, - "title": "mDNS task creates on the internal RAM", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-mdns-mdns-memory-configuration-select-mdns-task-create-on-which-type-of-memory", - "name": "MDNS_TASK_MEMORY_ALLOC_FROM", - "title": "Select mDNS task create on which type of memory", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": null, - "id": "MDNS_MEMORY_ALLOC_SPIRAM", - "name": "MDNS_MEMORY_ALLOC_SPIRAM", - "range": null, - "title": "Allocate mDNS memory from SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MDNS_MEMORY_ALLOC_INTERNAL", - "name": "MDNS_MEMORY_ALLOC_INTERNAL", - "range": null, - "title": "Allocate mDNS memory from internal RAM", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-mdns-mdns-memory-configuration-select-mdns-memory-allocation-type", - "name": "MDNS_MEMORY_ALLOC_FROM", - "title": "Select mDNS memory allocation type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Enable to implement custom memory functions for mDNS library.\nThis option is useful when the application wants to use custom\nmemory allocation functions for mDNS library.", - "id": "MDNS_MEMORY_CUSTOM_IMPL", - "name": "MDNS_MEMORY_CUSTOM_IMPL", - "range": null, - "title": "Implement custom memory functions", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mdns-mdns-memory-configuration", - "title": "MDNS Memory Configuration", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Configures timeout for adding a new mDNS service. Adding a service\nfails if could not be completed within this time.", - "id": "MDNS_SERVICE_ADD_TIMEOUT_MS", - "name": "MDNS_SERVICE_ADD_TIMEOUT_MS", - "range": [ - 10, - 30000 - ], - "title": "mDNS adding service timeout (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Configures period of mDNS timer, which periodically transmits packets\nand schedules mDNS searches.", - "id": "MDNS_TIMER_PERIOD_MS", - "name": "MDNS_TIMER_PERIOD_MS", - "range": [ - 10, - 10000 - ], - "title": "mDNS timer period (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables optional mDNS networking implementation using BSD sockets\nin UDP multicast mode.\nThis option creates a new thread to serve receiving packets (TODO).\nThis option uses additional N sockets, where N is number of interfaces.", - "id": "MDNS_NETWORKING_SOCKET", - "name": "MDNS_NETWORKING_SOCKET", - "range": null, - "title": "Use BSD sockets for mDNS networking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable only if the querier and the responder share the same IP address.\nThis usually happens in test mode, where we may run multiple instances of\nresponders/queriers on the same interface.", - "id": "MDNS_SKIP_SUPPRESSING_OWN_QUERIES", - "name": "MDNS_SKIP_SUPPRESSING_OWN_QUERIES", - "range": null, - "title": "Skip suppressing our own packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable for the library to log received and sent mDNS packets to stdout.", - "id": "MDNS_ENABLE_DEBUG_PRINTS", - "name": "MDNS_ENABLE_DEBUG_PRINTS", - "range": null, - "title": "Enable debug prints of mDNS packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable for the console cli to be available on the device.", - "id": "MDNS_ENABLE_CONSOLE_CLI", - "name": "MDNS_ENABLE_CONSOLE_CLI", - "range": null, - "title": "Enable Command Line Interface on device console", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables support for IPv4 reverse lookup. If enabled, the mDNS library\nresponse to PTR queries of \"A.B.C.D.in-addr.arpa\" type.", - "id": "MDNS_RESPOND_REVERSE_QUERIES", - "name": "MDNS_RESPOND_REVERSE_QUERIES", - "range": null, - "title": "Enable responding to IPv4 reverse queries", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables adding multiple service instances under the same service type.", - "id": "MDNS_MULTIPLE_INSTANCE", - "name": "MDNS_MULTIPLE_INSTANCE", - "range": null, - "title": "Multiple instances under the same service type", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Set up mDNS for the default WiFi station.\nDisable this option if you do not need mDNS on default WiFi STA.", - "id": "MDNS_PREDEF_NETIF_STA", - "name": "MDNS_PREDEF_NETIF_STA", - "range": null, - "title": "Use predefined interface for WiFi Station", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set up mDNS for the default WiFi Access Point.\nDisable this option if you do not need mDNS on default WiFi AP.", - "id": "MDNS_PREDEF_NETIF_AP", - "name": "MDNS_PREDEF_NETIF_AP", - "range": null, - "title": "Use predefined interface for WiFi Access Point", - "type": "bool" - }, - { - "children": [], - "depends_on": "ETH_ENABLED", - "help": "Set up mDNS for the default Ethernet interface.\nDisable this option if you do not need mDNS on default Ethernet.", - "id": "MDNS_PREDEF_NETIF_ETH", - "name": "MDNS_PREDEF_NETIF_ETH", - "range": null, - "title": "Use predefined interface for Ethernet", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mdns-mdns-predefined-interfaces", - "title": "MDNS Predefined interfaces", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-mdns", - "title": "mDNS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(ESP_WIFI_ENABLED || ESP_WIFI_REMOTE_ENABLED) && ", - "help": null, - "id": "NETWORK_PROV_NETWORK_TYPE_WIFI", - "name": "NETWORK_PROV_NETWORK_TYPE_WIFI", - "range": null, - "title": "Network Type - Wi-Fi", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED && ", - "help": null, - "id": "NETWORK_PROV_NETWORK_TYPE_THREAD", - "name": "NETWORK_PROV_NETWORK_TYPE_THREAD", - "range": null, - "title": "Network Type - Thread", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-network-provisioning-manager-network-type", - "name": "NETWORK_PROV_NETWORK_TYPE", - "title": "Network Type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the maximum number of entries of network scan results that will be kept by the\nprovisioning manager", - "id": "NETWORK_PROV_SCAN_MAX_ENTRIES", - "name": "NETWORK_PROV_SCAN_MAX_ENTRIES", - "range": [ - 1, - 255 - ], - "title": "Max Network Scan Result Entries", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Time (in seconds) after which the network provisioning manager will auto-stop after connecting to\na network successfully.", - "id": "NETWORK_PROV_AUTOSTOP_TIMEOUT", - "name": "NETWORK_PROV_AUTOSTOP_TIMEOUT", - "range": [ - 5, - 600 - ], - "title": "Provisioning auto-stop timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "BT_ENABLED", - "help": "This option is applicable only when provisioning transport is BLE. Used to enable BLE bonding process\nwhere the information from the pairing process will be stored on the devices.", - "id": "NETWORK_PROV_BLE_BONDING", - "name": "NETWORK_PROV_BLE_BONDING", - "range": null, - "title": "Enable BLE bonding", - "type": "bool" - }, - { - "children": [], - "depends_on": "BT_NIMBLE_ENABLED", - "help": "Used to enable Secure connection support when provisioning transport is BLE.", - "id": "NETWORK_PROV_BLE_SEC_CONN", - "name": "NETWORK_PROV_BLE_SEC_CONN", - "range": null, - "title": "Enable BLE Secure connection flag", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Used to enforce link encryption when attempting to read / write characteristic", - "id": "NETWORK_PROV_BLE_FORCE_ENCRYPTION", - "name": "NETWORK_PROV_BLE_FORCE_ENCRYPTION", - "range": null, - "title": "Force Link Encryption during characteristic Read / Write", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV", - "help": null, - "id": "NETWORK_PROV_DISCONNECT_AFTER_PROV", - "name": "NETWORK_PROV_DISCONNECT_AFTER_PROV", - "range": null, - "title": "Terminate connection after provisioning is done", - "type": "bool" - } - ], - "depends_on": "BT_ENABLED", - "help": null, - "id": "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV", - "name": "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV", - "range": null, - "title": "Keep BT on after provisioning is done", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.", - "id": "NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN", - "name": "NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN", - "range": null, - "title": "All Channel Scan", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Scan will end after an AP matching with the SSID has been detected.", - "id": "NETWORK_PROV_WIFI_STA_FAST_SCAN", - "name": "NETWORK_PROV_WIFI_STA_FAST_SCAN", - "range": null, - "title": "Fast Scan", - "type": "bool" - } - ], - "depends_on": "NETWORK_PROV_NETWORK_TYPE_WIFI", - "help": null, - "id": "component-config-network-provisioning-manager-wifi-provisioning-scan-method", - "name": "NETWORK_PROV_WIFI_STA_SCAN_METHOD", - "title": "Wifi Provisioning Scan Method", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-network-provisioning-manager", - "title": "Network Provisioning Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_LIB_ESP_MQTT", - "name": "ESP_RMAKER_LIB_ESP_MQTT", - "range": null, - "title": "ESP-MQTT", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_LIB_AWS_IOT", - "name": "ESP_RMAKER_LIB_AWS_IOT", - "range": null, - "title": "AWS-IOT", - "type": "bool" - } - ], - "depends_on": null, - "help": "MQTT Library to be used", - "id": "component-config-esp-rainmaker-common-mqtt-library", - "name": "ESP_RMAKER_MQTT_GLUE_LIB", - "title": "MQTT Library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_RMAKER_MQTT_GLUE_LIB", - "name": "ESP_RMAKER_MQTT_GLUE_LIB", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_MQTT_PORT_443", - "name": "ESP_RMAKER_MQTT_PORT_443", - "range": null, - "title": "443", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_RMAKER_MQTT_PORT_8883", - "name": "ESP_RMAKER_MQTT_PORT_8883", - "range": null, - "title": "8883", - "type": "bool" - } - ], - "depends_on": null, - "help": "ESP RainMaker MQTT Broker can be connected to either on Port 8883 or port 443.\nPort 443 is recommended as it is generally not blocked by any firewalls,\nsince it is standard HTTPS port.", - "id": "component-config-esp-rainmaker-common-mqtt-port", - "name": "ESP_RMAKER_MQTT_PORT", - "title": "MQTT Port", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_RMAKER_MQTT_PORT", - "name": "ESP_RMAKER_MQTT_PORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Use persistent MQTT sessions. This improves reliability as QOS1 messages missed\nout due to some network issue are received after the MQTT reconnects. The broker\ncaches messages for a period of upto 1 hour. However, a side-effect of this is that\nmessages can be received at unexpected time. Enable this option only if it suits\nyour use case. Please read MQTT specs to understand more about persistent sessions\nand the cleanSession flag.", - "id": "ESP_RMAKER_MQTT_PERSISTENT_SESSION", - "name": "ESP_RMAKER_MQTT_PERSISTENT_SESSION", - "range": null, - "title": "Use Persisent MQTT sessions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_SEND_USERNAME", - "help": "Approved AWS product name. Please get in touch with your Espressif/AWS representative for more info.", - "id": "ESP_RMAKER_MQTT_PRODUCT_NAME", - "name": "ESP_RMAKER_MQTT_PRODUCT_NAME", - "range": null, - "title": "Product Name", - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_SEND_USERNAME", - "help": "Approved AWS product version. Please get in touch with your Espressif/AWS representative for more info.", - "id": "ESP_RMAKER_MQTT_PRODUCT_VERSION", - "name": "ESP_RMAKER_MQTT_PRODUCT_VERSION", - "range": null, - "title": "Product Version", - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_RMAKER_MQTT_SEND_USERNAME", - "help": "Product SKU. Please get in touch with your Espressif/AWS representative for more info.", - "id": "ESP_RMAKER_MQTT_PRODUCT_SKU", - "name": "ESP_RMAKER_MQTT_PRODUCT_SKU", - "range": null, - "title": "Product SKU", - "type": "string" - } - ], - "depends_on": null, - "help": "Send a Username during MQTT Connect. This is generally required only for tracking\nthe MQTT client types, platform, SDK, etc. in AWS.", - "id": "ESP_RMAKER_MQTT_SEND_USERNAME", - "name": "ESP_RMAKER_MQTT_SEND_USERNAME", - "range": null, - "title": "Send MQTT Username", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Use Certificate Bundle for server authentication. Enabling this is recommended to safeguard\nagainst any changes in the server certificates in future. This has an impact on the binary\nsize as well as heap requirement.", - "id": "ESP_RMAKER_MQTT_USE_CERT_BUNDLE", - "name": "ESP_RMAKER_MQTT_USE_CERT_BUNDLE", - "range": null, - "title": "Use Certificate Bundle", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This value controls the maximum number of topics that the device can subscribe to.", - "id": "ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS", - "name": "ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS", - "range": null, - "title": "Maximum number of MQTT Subscriptions", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "MQTT Keep Alive Interval. Note that it can take upto 1.5x of keep alive interval for a device\nto be reported by offline by the MQTT Broker. Change this only if required.", - "id": "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL", - "name": "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL", - "range": [ - 30, - 1200 - ], - "title": "MQTT Keep Alive Internal", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "(ESP_WIFI_ENABLED || ESP32_WIFI_ENABLED || ESP_WIFI_REMOTE_ENABLED) && ", - "help": null, - "id": "ESP_RMAKER_NETWORK_OVER_WIFI", - "name": "ESP_RMAKER_NETWORK_OVER_WIFI", - "range": null, - "title": "ESP RainMaker over Wi-Fi", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED && ", - "help": null, - "id": "ESP_RMAKER_NETWORK_OVER_THREAD", - "name": "ESP_RMAKER_NETWORK_OVER_THREAD", - "range": null, - "title": "ESP RainMaker over Thread", - "type": "bool" - } - ], - "depends_on": null, - "help": "Network protocol type over which the ESP RainMaker will run.", - "id": "component-config-esp-rainmaker-common-esp-rainmaker-network-type", - "name": "ESP_RMAKER_NETWORK_PROTOCOL_TYPE", - "title": "ESP RainMaker Network Type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Stack size for the ESP RainMaker Work Queue Task.", - "id": "ESP_RMAKER_WORK_QUEUE_TASK_STACK", - "name": "ESP_RMAKER_WORK_QUEUE_TASK_STACK", - "range": null, - "title": "ESP RainMaker Work Queue Task stack", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Priority for the ESP RainMaker Work Queue Task. Not recommended to be changed\nunless you really need it.", - "id": "ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY", - "name": "ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY", - "range": null, - "title": "ESP RainMaker Work Queue Task priority", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Factory NVS Partition name which will have the MQTT connectivity credentials.", - "id": "ESP_RMAKER_FACTORY_PARTITION_NAME", - "name": "ESP_RMAKER_FACTORY_PARTITION_NAME", - "range": null, - "title": "ESP RainMaker Factory Partition Name", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "Namespace in the Factory NVS Partition name which will have the MQTT\nconnectivity credentials.", - "id": "ESP_RMAKER_FACTORY_NAMESPACE", - "name": "ESP_RMAKER_FACTORY_NAMESPACE", - "range": null, - "title": "ESP RainMaker Factory Namespace", - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_RMAKER_ENCRYPT_FACTORY_PARTITION", - "help": "Label of the partition of subtype \"nvs_keys\" used for encrypting/decrypting Rainmaker factory partition.", - "id": "ESP_RMAKER_FACTORY_NVS_KEYS_PARTITION_NAME", - "name": "ESP_RMAKER_FACTORY_NVS_KEYS_PARTITION_NAME", - "range": null, - "title": "ESP Rainmaker Factory NVS keys partition label", - "type": "string" - } - ], - "depends_on": "NVS_ENCRYPTION", - "help": "Enable this option if the factory partition is pre-encrypted before flashing and the encryption keys\nare flashed in partition with subtype nvs_keys specified by CONFIG_ESP_RMAKER_FACTORY_NVS_KEYS_PARTITION_NAME.\nIf an unencrypted factory partition is flashed, the device would not be able to read its data and\nthe partition would be considered empty.\nIf nvs encryption keys are not flashed onto device, they would be auto-generated and any previous data\nin nvs/factory partition would become invalid.", - "id": "ESP_RMAKER_ENCRYPT_FACTORY_PARTITION", - "name": "ESP_RMAKER_ENCRYPT_FACTORY_PARTITION", - "range": null, - "title": "Encrypt Rainmaker Factory partition", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Default Timezone to use. Eg. \"Asia/Shanghai\", \"America/Los_Angeles\".\nCheck documentation for complete list of valid values. This value\nwill be used only if no timezone is set using the C APIs.", - "id": "ESP_RMAKER_DEF_TIMEZONE", - "name": "ESP_RMAKER_DEF_TIMEZONE", - "range": null, - "title": "Default Timezone", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "Default SNTP Server which is used for time synchronization.", - "id": "ESP_RMAKER_SNTP_SERVER_NAME", - "name": "ESP_RMAKER_SNTP_SERVER_NAME", - "range": null, - "title": "ESP RainMaker SNTP Server Name", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "Maximum number of commands supported by the command-response framework", - "id": "ESP_RMAKER_MAX_COMMANDS", - "name": "ESP_RMAKER_MAX_COMMANDS", - "range": null, - "title": "Maximum commands supported for command-response", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-esp-rainmaker-common", - "title": "ESP RainMaker Common", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config", - "title": "Component config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_SUPPORT_LS\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS", - "id": "IDF_EXPERIMENTAL_FEATURES", - "name": "IDF_EXPERIMENTAL_FEATURES", - "range": null, - "title": "Make experimental features visible", - "type": "bool" - } -] \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/config/sdkconfig.cmake b/RainMaker_Table-Lights/build/config/sdkconfig.cmake deleted file mode 100644 index 5fa588e8e..000000000 --- a/RainMaker_Table-Lights/build/config/sdkconfig.cmake +++ /dev/null @@ -1,1790 +0,0 @@ -# - # Automatically generated file. DO NOT EDIT. - # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file - # -set(CONFIG_SOC_ADC_SUPPORTED "y") -set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") -set(CONFIG_SOC_UART_SUPPORTED "y") -set(CONFIG_SOC_GDMA_SUPPORTED "y") -set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") -set(CONFIG_SOC_GPTIMER_SUPPORTED "y") -set(CONFIG_SOC_TWAI_SUPPORTED "y") -set(CONFIG_SOC_BT_SUPPORTED "y") -set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") -set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") -set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") -set(CONFIG_SOC_XT_WDT_SUPPORTED "y") -set(CONFIG_SOC_PHY_SUPPORTED "y") -set(CONFIG_SOC_WIFI_SUPPORTED "y") -set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") -set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") -set(CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG "y") -set(CONFIG_SOC_EFUSE_SUPPORTED "y") -set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") -set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") -set(CONFIG_SOC_I2S_SUPPORTED "y") -set(CONFIG_SOC_RMT_SUPPORTED "y") -set(CONFIG_SOC_SDM_SUPPORTED "y") -set(CONFIG_SOC_GPSPI_SUPPORTED "y") -set(CONFIG_SOC_LEDC_SUPPORTED "y") -set(CONFIG_SOC_I2C_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") -set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") -set(CONFIG_SOC_AES_SUPPORTED "y") -set(CONFIG_SOC_MPI_SUPPORTED "y") -set(CONFIG_SOC_SHA_SUPPORTED "y") -set(CONFIG_SOC_HMAC_SUPPORTED "y") -set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") -set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") -set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") -set(CONFIG_SOC_MEMPROT_SUPPORTED "y") -set(CONFIG_SOC_BOD_SUPPORTED "y") -set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") -set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") -set(CONFIG_SOC_WDT_SUPPORTED "y") -set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") -set(CONFIG_SOC_RNG_SUPPORTED "y") -set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") -set(CONFIG_SOC_PM_SUPPORTED "y") -set(CONFIG_SOC_XTAL_SUPPORT_40M "y") -set(CONFIG_SOC_AES_SUPPORT_DMA "y") -set(CONFIG_SOC_AES_GDMA "y") -set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") -set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") -set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") -set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") -set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") -set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") -set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") -set(CONFIG_SOC_ADC_PERIPH_NUM "2") -set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "5") -set(CONFIG_SOC_ADC_ATTEN_NUM "4") -set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") -set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") -set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") -set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") -set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") -set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") -set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") -set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") -set(CONFIG_SOC_ADC_SHARED_POWER "y") -set(CONFIG_SOC_APB_BACKUP_DMA "y") -set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") -set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") -set(CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE "0x4000") -set(CONFIG_SOC_CPU_CORES_NUM "1") -set(CONFIG_SOC_CPU_INTR_NUM "32") -set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") -set(CONFIG_SOC_CPU_HAS_CSR_PC "y") -set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "8") -set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "8") -set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") -set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") -set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") -set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") -set(CONFIG_SOC_AHB_GDMA_VERSION "1") -set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") -set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") -set(CONFIG_SOC_GPIO_PORT "1") -set(CONFIG_SOC_GPIO_PIN_COUNT "22") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") -set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") -set(CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP "y") -set(CONFIG_SOC_GPIO_IN_RANGE_MAX "21") -set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "21") -set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK "0") -set(CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT "6") -set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x3fffc0") -set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") -set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") -set(CONFIG_SOC_I2C_NUM "1") -set(CONFIG_SOC_HP_I2C_NUM "1") -set(CONFIG_SOC_I2C_FIFO_LEN "32") -set(CONFIG_SOC_I2C_CMD_REG_NUM "8") -set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") -set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") -set(CONFIG_SOC_I2C_SUPPORT_RTC "y") -set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") -set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") -set(CONFIG_SOC_I2S_NUM "1") -set(CONFIG_SOC_I2S_HW_VERSION_2 "y") -set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") -set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") -set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") -set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") -set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") -set(CONFIG_SOC_LEDC_TIMER_NUM "4") -set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") -set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") -set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") -set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") -set(CONFIG_SOC_MMU_PERIPH_NUM "1") -set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") -set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") -set(CONFIG_SOC_RMT_GROUPS "1") -set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") -set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") -set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") -set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") -set(CONFIG_SOC_RMT_SUPPORT_APB "y") -set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") -set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "108") -set(CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND "y") -set(CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND "y") -set(CONFIG_SOC_RTCIO_PIN_COUNT "0") -set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") -set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") -set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") -set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") -set(CONFIG_SOC_SHA_SUPPORT_DMA "y") -set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") -set(CONFIG_SOC_SHA_GDMA "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") -set(CONFIG_SOC_SDM_GROUPS "1") -set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_SPI_PERIPH_NUM "2") -set(CONFIG_SOC_SPI_MAX_CS_NUM "6") -set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") -set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") -set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") -set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") -set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") -set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") -set(CONFIG_SOC_SPI_SCT_REG_NUM "14") -set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") -set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") -set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") -set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") -set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") -set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") -set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") -set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") -set(CONFIG_SOC_TIMER_GROUPS "2") -set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") -set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") -set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") -set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") -set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") -set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") -set(CONFIG_SOC_TWAI_BRP_MIN "2") -set(CONFIG_SOC_TWAI_BRP_MAX "16384") -set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") -set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") -set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") -set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") -set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") -set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") -set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") -set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") -set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") -set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") -set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") -set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "512") -set(CONFIG_SOC_UART_NUM "2") -set(CONFIG_SOC_UART_HP_NUM "2") -set(CONFIG_SOC_UART_FIFO_LEN "128") -set(CONFIG_SOC_UART_BITRATE_MAX "5000000") -set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") -set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") -set(CONFIG_SOC_COEX_HW_PTI "y") -set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") -set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") -set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") -set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") -set(CONFIG_SOC_PM_SUPPORT_WIFI_PD "y") -set(CONFIG_SOC_PM_SUPPORT_BT_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") -set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") -set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") -set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") -set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") -set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") -set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") -set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") -set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") -set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") -set(CONFIG_SOC_WIFI_HW_TSF "y") -set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") -set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") -set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") -set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") -set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") -set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") -set(CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND "y") -set(CONFIG_SOC_BLE_SUPPORTED "y") -set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") -set(CONFIG_SOC_BLE_50_SUPPORTED "y") -set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") -set(CONFIG_SOC_BLUFI_SUPPORTED "y") -set(CONFIG_SOC_PHY_COMBO_MODULE "y") -set(CONFIG_IDF_CMAKE "y") -set(CONFIG_IDF_TOOLCHAIN "gcc") -set(CONFIG_IDF_TOOLCHAIN_GCC "y") -set(CONFIG_IDF_TARGET_ARCH_RISCV "y") -set(CONFIG_IDF_TARGET_ARCH "riscv") -set(CONFIG_IDF_TARGET "esp32c3") -set(CONFIG_IDF_INIT_VERSION "5.4.1") -set(CONFIG_IDF_TARGET_ESP32C3 "y") -set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x5") -set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") -set(CONFIG_APP_BUILD_TYPE_RAM "") -set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") -set(CONFIG_APP_BUILD_BOOTLOADER "y") -set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") -set(CONFIG_APP_REPRODUCIBLE_BUILD "") -set(CONFIG_APP_NO_BLOBS "") -set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") -set(CONFIG_BOOTLOADER_PROJECT_VER "1") -set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") -set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL "3") -set(CONFIG_BOOTLOADER_LOG_COLORS "") -set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") -set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") -set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") -set(CONFIG_BOOTLOADER_FACTORY_RESET "") -set(CONFIG_BOOTLOADER_APP_TEST "") -set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") -set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") -set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "y") -set(CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") -set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") -set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") -set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") -set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") -set(CONFIG_SECURE_BOOT "") -set(CONFIG_SECURE_FLASH_ENC_ENABLED "") -set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") -set(CONFIG_APP_COMPILE_TIME_DATE "y") -set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") -set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") -set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") -set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") -set(CONFIG_ESP_ROM_HAS_CRC_LE "y") -set(CONFIG_ESP_ROM_HAS_CRC_BE "y") -set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") -set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") -set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") -set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") -set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") -set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") -set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") -set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") -set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") -set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") -set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") -set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") -set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") -set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") -set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") -set(CONFIG_ESP_ROM_HAS_VERSION "y") -set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") -set(CONFIG_ESPTOOLPY_NO_STUB "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") -set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") -set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") -set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") -set(CONFIG_ESPTOOLPY_FLASHMODE "dio") -set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") -set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") -set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") -set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE "4MB") -set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") -set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") -set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") -set(CONFIG_ESPTOOLPY_BEFORE "default_reset") -set(CONFIG_ESPTOOLPY_AFTER_RESET "y") -set(CONFIG_ESPTOOLPY_AFTER_NORESET "") -set(CONFIG_ESPTOOLPY_AFTER "hard_reset") -set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") -set(CONFIG_PARTITION_TABLE_SINGLE_APP "") -set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") -set(CONFIG_PARTITION_TABLE_TWO_OTA "") -set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") -set(CONFIG_PARTITION_TABLE_CUSTOM "y") -set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_4mb_optimised.csv") -set(CONFIG_PARTITION_TABLE_FILENAME "partitions_4mb_optimised.csv") -set(CONFIG_PARTITION_TABLE_OFFSET "0xc000") -set(CONFIG_PARTITION_TABLE_MD5 "y") -set(CONFIG_EXAMPLE_BOARD_BUTTON_GPIO "9") -set(CONFIG_APP_NETWORK_PROV_SHOW_QR "y") -set(CONFIG_APP_NETWORK_PROV_MAX_POP_MISMATCH "5") -set(CONFIG_APP_NETWORK_PROV_TRANSPORT_SOFTAP "") -set(CONFIG_APP_NETWORK_PROV_TRANSPORT_BLE "y") -set(CONFIG_APP_NETWORK_PROV_TRANSPORT "2") -set(CONFIG_APP_NETWORK_RESET_PROV_ON_FAILURE "y") -set(CONFIG_APP_NETWORK_PROV_MAX_RETRY_CNT "5") -set(CONFIG_APP_NETWORK_SHOW_DEMO_INTRO_TEXT "") -set(CONFIG_APP_NETWORK_PROV_TIMEOUT_PERIOD "30") -set(CONFIG_APP_NETWORK_PROV_NAME_PREFIX "PROV") -set(CONFIG_APP_WIFI_PROV_COMPAT "y") -set(CONFIG_ESP_RMAKER_NO_CLAIM "") -set(CONFIG_ESP_RMAKER_SELF_CLAIM "y") -set(CONFIG_ESP_RMAKER_ASSISTED_CLAIM "") -set(CONFIG_ESP_RMAKER_USE_NVS "y") -set(CONFIG_ESP_RMAKER_CLAIM_TYPE "1") -set(CONFIG_ESP_RMAKER_CLAIM_SERVICE_BASE_URL "https://esp-claiming.rainmaker.espressif.com") -set(CONFIG_ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG "") -set(CONFIG_ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN "") -set(CONFIG_ESP_RMAKER_MQTT_HOST "a1p72mufdu6064-ats.iot.us-east-1.amazonaws.com") -set(CONFIG_ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS "y") -set(CONFIG_ESP_RMAKER_MQTT_ENABLE_BUDGETING "y") -set(CONFIG_ESP_RMAKER_MQTT_DEFAULT_BUDGET "100") -set(CONFIG_ESP_RMAKER_MQTT_MAX_BUDGET "1024") -set(CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD "5") -set(CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT "1") -set(CONFIG_ESP_RMAKER_MAX_PARAM_DATA_SIZE "1024") -set(CONFIG_ESP_RMAKER_DISABLE_USER_MAPPING_PROV "") -set(CONFIG_ESP_RMAKER_USER_ID_CHECK "y") -set(CONFIG_RMAKER_NAME_PARAM_CB "") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE "y") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE "y") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_HTTP_PORT "8080") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_STACK_SIZE "6144") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY_0 "") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY_1 "y") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY "1") -set(CONFIG_ESP_RMAKER_CONSOLE_UART_NUM_0 "y") -set(CONFIG_ESP_RMAKER_CONSOLE_UART_NUM_1 "") -set(CONFIG_ESP_RMAKER_CONSOLE_UART_NUM "0") -set(CONFIG_ESP_RMAKER_USE_CERT_BUNDLE "y") -set(CONFIG_ESP_RMAKER_OTA_AUTOFETCH "y") -set(CONFIG_ESP_RMAKER_OTA_AUTOFETCH_PERIOD "0") -set(CONFIG_ESP_RMAKER_SKIP_COMMON_NAME_CHECK "") -set(CONFIG_ESP_RMAKER_SKIP_VERSION_CHECK "") -set(CONFIG_ESP_RMAKER_SKIP_SECURE_VERSION_CHECK "") -set(CONFIG_ESP_RMAKER_SKIP_PROJECT_NAME_CHECK "") -set(CONFIG_ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE "1024") -set(CONFIG_ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD "90") -set(CONFIG_ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT "") -set(CONFIG_ESP_RMAKER_OTA_TIME_SUPPORT "y") -set(CONFIG_ESP_RMAKER_OTA_PROGRESS_SUPPORT "") -set(CONFIG_ESP_RMAKER_OTA_MAX_RETRIES "3") -set(CONFIG_ESP_RMAKER_OTA_RETRY_DELAY_MINUTES "5") -set(CONFIG_ESP_RMAKER_SCHEDULING_MAX_SCHEDULES "10") -set(CONFIG_ESP_RMAKER_SCENES_MAX_SCENES "10") -set(CONFIG_ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT "") -set(CONFIG_ESP_RMAKER_CMD_RESP_ENABLE "y") -set(CONFIG_ESP_RMAKER_CMD_RESP_TEST_ENABLE "") -set(CONFIG_ESP_RMAKER_USING_NETWORK_PROV "y") -set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") -set(CONFIG_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") -set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") -set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") -set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") -set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") -set(CONFIG_COMPILER_CXX_EXCEPTIONS "") -set(CONFIG_COMPILER_CXX_RTTI "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") -set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") -set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") -set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "") -set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") -set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") -set(CONFIG_COMPILER_DUMP_RTL_FILES "") -set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") -set(CONFIG_COMPILER_RT_LIB_NAME "gcc") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") -set(CONFIG_COMPILER_STATIC_ANALYZER "") -set(CONFIG_APPTRACE_DEST_JTAG "") -set(CONFIG_APPTRACE_DEST_NONE "y") -set(CONFIG_APPTRACE_DEST_UART1 "") -set(CONFIG_APPTRACE_DEST_USB_CDC "") -set(CONFIG_APPTRACE_DEST_UART_NONE "y") -set(CONFIG_APPTRACE_UART_TASK_PRIO "1") -set(CONFIG_APPTRACE_LOCK_ENABLE "y") -set(CONFIG_BT_ENABLED "y") -set(CONFIG_BT_BLUEDROID_ENABLED "") -set(CONFIG_BT_NIMBLE_ENABLED "y") -set(CONFIG_BT_CONTROLLER_ONLY "") -set(CONFIG_BT_CONTROLLER_ENABLED "y") -set(CONFIG_BT_CONTROLLER_DISABLED "") -set(CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL "y") -set(CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT "") -set(CONFIG_BT_NIMBLE_LOG_LEVEL_NONE "") -set(CONFIG_BT_NIMBLE_LOG_LEVEL_ERROR "") -set(CONFIG_BT_NIMBLE_LOG_LEVEL_WARNING "") -set(CONFIG_BT_NIMBLE_LOG_LEVEL_INFO "y") -set(CONFIG_BT_NIMBLE_LOG_LEVEL_DEBUG "") -set(CONFIG_BT_NIMBLE_LOG_LEVEL "1") -set(CONFIG_BT_NIMBLE_MAX_CONNECTIONS "3") -set(CONFIG_BT_NIMBLE_MAX_BONDS "3") -set(CONFIG_BT_NIMBLE_MAX_CCCDS "8") -set(CONFIG_BT_NIMBLE_L2CAP_COC_MAX_NUM "0") -set(CONFIG_BT_NIMBLE_PINNED_TO_CORE "0") -set(CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE "4096") -set(CONFIG_BT_NIMBLE_ROLE_CENTRAL "y") -set(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL "y") -set(CONFIG_BT_NIMBLE_ROLE_BROADCASTER "y") -set(CONFIG_BT_NIMBLE_ROLE_OBSERVER "y") -set(CONFIG_BT_NIMBLE_NVS_PERSIST "") -set(CONFIG_BT_NIMBLE_SMP_ID_RESET "") -set(CONFIG_BT_NIMBLE_SECURITY_ENABLE "y") -set(CONFIG_BT_NIMBLE_SM_LEGACY "y") -set(CONFIG_BT_NIMBLE_SM_SC "y") -set(CONFIG_BT_NIMBLE_SM_SC_DEBUG_KEYS "") -set(CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION "y") -set(CONFIG_BT_NIMBLE_SM_LVL "0") -set(CONFIG_BT_NIMBLE_SM_SC_ONLY "0") -set(CONFIG_BT_NIMBLE_DEBUG "") -set(CONFIG_BT_NIMBLE_DYNAMIC_SERVICE "") -set(CONFIG_BT_NIMBLE_SVC_GAP_DEVICE_NAME "nimble") -set(CONFIG_BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN "31") -set(CONFIG_BT_NIMBLE_ATT_PREFERRED_MTU "256") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEARANCE "0x0") -set(CONFIG_BT_NIMBLE_MSYS_1_BLOCK_COUNT "12") -set(CONFIG_BT_NIMBLE_MSYS_1_BLOCK_SIZE "256") -set(CONFIG_BT_NIMBLE_MSYS_2_BLOCK_COUNT "24") -set(CONFIG_BT_NIMBLE_MSYS_2_BLOCK_SIZE "320") -set(CONFIG_BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT "24") -set(CONFIG_BT_NIMBLE_TRANSPORT_ACL_SIZE "255") -set(CONFIG_BT_NIMBLE_TRANSPORT_EVT_SIZE "70") -set(CONFIG_BT_NIMBLE_TRANSPORT_EVT_COUNT "30") -set(CONFIG_BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT "8") -set(CONFIG_BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT "1") -set(CONFIG_BT_NIMBLE_GATT_MAX_PROCS "4") -set(CONFIG_BT_NIMBLE_HS_FLOW_CTRL "") -set(CONFIG_BT_NIMBLE_RPA_TIMEOUT "900") -set(CONFIG_BT_NIMBLE_MESH "") -set(CONFIG_BT_NIMBLE_CRYPTO_STACK_MBEDTLS "y") -set(CONFIG_BT_NIMBLE_HS_STOP_TIMEOUT_MS "2000") -set(CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT "y") -set(CONFIG_BT_NIMBLE_MAX_CONN_REATTEMPT "3") -set(CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT "y") -set(CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY "y") -set(CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY "y") -set(CONFIG_BT_NIMBLE_EXT_ADV "") -set(CONFIG_BT_NIMBLE_EXT_SCAN "y") -set(CONFIG_BT_NIMBLE_ENABLE_PERIODIC_SYNC "y") -set(CONFIG_BT_NIMBLE_MAX_PERIODIC_SYNCS "0") -set(CONFIG_BT_NIMBLE_GATT_CACHING "") -set(CONFIG_BT_NIMBLE_WHITELIST_SIZE "12") -set(CONFIG_BT_NIMBLE_TEST_THROUGHPUT_TEST "") -set(CONFIG_BT_NIMBLE_BLUFI_ENABLE "") -set(CONFIG_BT_NIMBLE_USE_ESP_TIMER "y") -set(CONFIG_BT_NIMBLE_LEGACY_VHCI_ENABLE "y") -set(CONFIG_BT_NIMBLE_BLE_GATT_BLOB_TRANSFER "") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE "") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP "y") -set(CONFIG_BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP "") -set(CONFIG_BT_NIMBLE_SVC_GAP_CAR_SUPP "") -set(CONFIG_BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION "-1") -set(CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE "") -set(CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO "0") -set(CONFIG_BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL "") -set(CONFIG_BT_NIMBLE_HID_SERVICE "") -set(CONFIG_BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY "") -set(CONFIG_BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME "") -set(CONFIG_BT_NIMBLE_SVC_DIS_SERIAL_NUMBER "") -set(CONFIG_BT_NIMBLE_SVC_DIS_HARDWARE_REVISION "") -set(CONFIG_BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION "") -set(CONFIG_BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION "") -set(CONFIG_BT_NIMBLE_SVC_DIS_SYSTEM_ID "") -set(CONFIG_BT_NIMBLE_SVC_DIS_PNP_ID "") -set(CONFIG_BT_NIMBLE_SVC_DIS_INCLUDED "") -set(CONFIG_BT_NIMBLE_VS_SUPPORT "") -set(CONFIG_BT_NIMBLE_ENC_ADV_DATA "") -set(CONFIG_BT_NIMBLE_HIGH_DUTY_ADV_ITVL "") -set(CONFIG_BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN "") -set(CONFIG_BT_NIMBLE_HOST_QUEUE_CONG_CHECK "") -set(CONFIG_BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT "") -set(CONFIG_UART_HW_FLOWCTRL_DISABLE "y") -set(CONFIG_UART_HW_FLOWCTRL_CTS_RTS "") -set(CONFIG_BT_NIMBLE_HCI_UART_FLOW_CTRL "0") -set(CONFIG_BT_NIMBLE_HCI_UART_RTS_PIN "19") -set(CONFIG_BT_NIMBLE_HCI_UART_CTS_PIN "23") -set(CONFIG_BT_NIMBLE_EATT_CHAN_NUM "0") -set(CONFIG_BT_NIMBLE_SUBRATE "") -set(CONFIG_BT_CTRL_MODE_EFF "1") -set(CONFIG_BT_CTRL_BLE_MAX_ACT "6") -set(CONFIG_BT_CTRL_BLE_MAX_ACT_EFF "6") -set(CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB "0") -set(CONFIG_BT_CTRL_PINNED_TO_CORE "0") -set(CONFIG_BT_CTRL_HCI_MODE_VHCI "y") -set(CONFIG_BT_CTRL_HCI_MODE_UART_H4 "") -set(CONFIG_BT_CTRL_HCI_TL "1") -set(CONFIG_BT_CTRL_ADV_DUP_FILT_MAX "30") -set(CONFIG_BT_BLE_CCA_MODE_NONE "y") -set(CONFIG_BT_BLE_CCA_MODE_HW "") -set(CONFIG_BT_BLE_CCA_MODE_SW "") -set(CONFIG_BT_BLE_CCA_MODE "0") -set(CONFIG_BT_CTRL_HW_CCA_VAL "20") -set(CONFIG_BT_CTRL_HW_CCA_EFF "0") -set(CONFIG_BT_CTRL_CE_LENGTH_TYPE_ORIG "y") -set(CONFIG_BT_CTRL_CE_LENGTH_TYPE_CE "") -set(CONFIG_BT_CTRL_CE_LENGTH_TYPE_SD "") -set(CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF "0") -set(CONFIG_BT_CTRL_TX_ANTENNA_INDEX_0 "y") -set(CONFIG_BT_CTRL_TX_ANTENNA_INDEX_1 "") -set(CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF "0") -set(CONFIG_BT_CTRL_RX_ANTENNA_INDEX_0 "y") -set(CONFIG_BT_CTRL_RX_ANTENNA_INDEX_1 "") -set(CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF "0") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N24 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N21 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N18 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N15 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N12 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N9 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N6 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N3 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N0 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P3 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P6 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P9 "y") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P12 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P15 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P18 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P20 "") -set(CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF "11") -set(CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP "y") -set(CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM "100") -set(CONFIG_BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD "20") -set(CONFIG_BT_CTRL_BLE_SCAN_DUPL "y") -set(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DEVICE "y") -set(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA "") -set(CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE "") -set(CONFIG_BT_CTRL_SCAN_DUPL_TYPE "0") -set(CONFIG_BT_CTRL_SCAN_DUPL_CACHE_SIZE "100") -set(CONFIG_BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD "0") -set(CONFIG_BT_CTRL_BLE_MESH_SCAN_DUPL_EN "") -set(CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN "") -set(CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS "y") -set(CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF "0") -set(CONFIG_BT_CTRL_MODEM_SLEEP "") -set(CONFIG_BT_CTRL_SLEEP_MODE_EFF "0") -set(CONFIG_BT_CTRL_SLEEP_CLOCK_EFF "0") -set(CONFIG_BT_CTRL_HCI_TL_EFF "1") -set(CONFIG_BT_CTRL_AGC_RECORRECT_EN "") -set(CONFIG_BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX "") -set(CONFIG_BT_BLE_ADV_DATA_LENGTH_ZERO_AUX "") -set(CONFIG_BT_CTRL_CHAN_ASS_EN "y") -set(CONFIG_BT_CTRL_LE_PING_EN "y") -set(CONFIG_BT_CTRL_BLE_LLCP_CONN_UPDATE "") -set(CONFIG_BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE "") -set(CONFIG_BT_CTRL_BLE_LLCP_PHY_UPDATE "") -set(CONFIG_BT_CTRL_RUN_IN_FLASH_ONLY "") -set(CONFIG_BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS "") -set(CONFIG_BT_ALARM_MAX_NUM "50") -set(CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED "") -set(CONFIG_BT_HCI_LOG_DEBUG_EN "") -set(CONFIG_BLE_MESH "") -set(CONFIG_CONSOLE_SORTED_HELP "") -set(CONFIG_TWAI_ISR_IN_IRAM "") -set(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM "y") -set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_EFUSE_CUSTOM_TABLE "") -set(CONFIG_EFUSE_VIRTUAL "") -set(CONFIG_EFUSE_MAX_BLK_LEN "256") -set(CONFIG_ESP_TLS_USING_MBEDTLS "y") -set(CONFIG_ESP_TLS_USE_DS_PERIPHERAL "y") -set(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS "") -set(CONFIG_ESP_TLS_SERVER_SESSION_TICKETS "") -set(CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK "") -set(CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL "") -set(CONFIG_ESP_TLS_PSK_VERIFICATION "") -set(CONFIG_ESP_TLS_INSECURE "") -set(CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM "") -set(CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE "") -set(CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 "") -set(CONFIG_ADC_ONESHOT_FORCE_USE_ADC2_ON_C3 "") -set(CONFIG_ADC_ENABLE_DEBUG_LOG "") -set(CONFIG_ESP_COEX_ENABLED "y") -set(CONFIG_ESP_COEX_SW_COEXIST_ENABLE "y") -set(CONFIG_ESP_COEX_POWER_MANAGEMENT "") -set(CONFIG_ESP_COEX_GPIO_DEBUG "") -set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") -set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") -set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") -set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") -set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") -set(CONFIG_I2C_ISR_IRAM_SAFE "") -set(CONFIG_I2C_ENABLE_DEBUG_LOG "") -set(CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 "") -set(CONFIG_I2S_ISR_IRAM_SAFE "") -set(CONFIG_I2S_ENABLE_DEBUG_LOG "") -set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") -set(CONFIG_RMT_ISR_IRAM_SAFE "") -set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") -set(CONFIG_RMT_ENABLE_DEBUG_LOG "") -set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") -set(CONFIG_SDM_ENABLE_DEBUG_LOG "") -set(CONFIG_SPI_MASTER_IN_IRAM "") -set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") -set(CONFIG_SPI_SLAVE_IN_IRAM "") -set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") -set(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG "") -set(CONFIG_UART_ISR_IN_IRAM "") -set(CONFIG_USJ_ENABLE_USB_SERIAL_JTAG "y") -set(CONFIG_ETH_ENABLED "y") -set(CONFIG_ETH_USE_SPI_ETHERNET "y") -set(CONFIG_ETH_SPI_ETHERNET_DM9051 "") -set(CONFIG_ETH_SPI_ETHERNET_W5500 "") -set(CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL "") -set(CONFIG_ETH_USE_OPENETH "") -set(CONFIG_ETH_TRANSMIT_MUTEX "") -set(CONFIG_ESP_EVENT_LOOP_PROFILING "") -set(CONFIG_ESP_EVENT_POST_FROM_ISR "y") -set(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR "y") -set(CONFIG_ESP_GDBSTUB_ENABLED "y") -set(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME "") -set(CONFIG_ESP_GDBSTUB_SUPPORT_TASKS "y") -set(CONFIG_ESP_GDBSTUB_MAX_TASKS "32") -set(CONFIG_ESPHID_TASK_SIZE_BT "2048") -set(CONFIG_ESPHID_TASK_SIZE_BLE "4096") -set(CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS "y") -set(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH "") -set(CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH "") -set(CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT "") -set(CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT "2000") -set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "512") -set(CONFIG_HTTPD_MAX_URI_LEN "512") -set(CONFIG_HTTPD_ERR_RESP_NO_DELAY "y") -set(CONFIG_HTTPD_PURGE_BUF_LEN "32") -set(CONFIG_HTTPD_LOG_PURGE_DATA "") -set(CONFIG_HTTPD_WS_SUPPORT "") -set(CONFIG_HTTPD_QUEUE_WORK_BLOCKING "") -set(CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT "2000") -set(CONFIG_ESP_HTTPS_OTA_DECRYPT_CB "") -set(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP "") -set(CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT "2000") -set(CONFIG_ESP_HTTPS_SERVER_ENABLE "y") -set(CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT "2000") -set(CONFIG_ESP32C3_REV_MIN_0 "") -set(CONFIG_ESP32C3_REV_MIN_1 "") -set(CONFIG_ESP32C3_REV_MIN_2 "") -set(CONFIG_ESP32C3_REV_MIN_3 "y") -set(CONFIG_ESP32C3_REV_MIN_4 "") -set(CONFIG_ESP32C3_REV_MIN_101 "") -set(CONFIG_ESP32C3_REV_MIN_FULL "3") -set(CONFIG_ESP_REV_MIN_FULL "3") -set(CONFIG_ESP32C3_REV_MAX_FULL "199") -set(CONFIG_ESP_REV_MAX_FULL "199") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO "") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") -set(CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES "4") -set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") -set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") -set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") -set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") -set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") -set(CONFIG_ESP_SLEEP_DEBUG "") -set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") -set(CONFIG_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") -set(CONFIG_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_ISR_IRAM_SAFE "") -set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") -set(CONFIG_XTAL_FREQ_40 "y") -set(CONFIG_XTAL_FREQ "40") -set(CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM "y") -set(CONFIG_LCD_ENABLE_DEBUG_LOG "") -set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") -set(CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION "") -set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") -set(CONFIG_ESP_NETIF_LOOPBACK "") -set(CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API "y") -set(CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC "y") -set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "") -set(CONFIG_ESP_NETIF_L2_TAP "") -set(CONFIG_ESP_NETIF_BRIDGE_EN "") -set(CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF "") -set(CONFIG_ESP_PHY_ENABLED "y") -set(CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE "y") -set(CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION "") -set(CONFIG_ESP_PHY_MAX_WIFI_TX_POWER "20") -set(CONFIG_ESP_PHY_MAX_TX_POWER "20") -set(CONFIG_ESP_PHY_REDUCE_TX_POWER "") -set(CONFIG_ESP_PHY_ENABLE_USB "y") -set(CONFIG_ESP_PHY_ENABLE_CERT_TEST "") -set(CONFIG_ESP_PHY_RF_CAL_PARTIAL "y") -set(CONFIG_ESP_PHY_RF_CAL_NONE "") -set(CONFIG_ESP_PHY_RF_CAL_FULL "") -set(CONFIG_ESP_PHY_CALIBRATION_MODE "0") -set(CONFIG_ESP_PHY_PLL_TRACK_DEBUG "") -set(CONFIG_ESP_PHY_RECORD_USED_TIME "") -set(CONFIG_PM_ENABLE "") -set(CONFIG_PM_SLP_IRAM_OPT "") -set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") -set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") -set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") -set(CONFIG_ESP_SYSTEM_PANIC_GDBSTUB "") -set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") -set(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE "y") -set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") -set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") -set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") -set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") -set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") -set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") -set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") -set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") -set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") -set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") -set(CONFIG_ESP_CONSOLE_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") -set(CONFIG_ESP_CONSOLE_UART "y") -set(CONFIG_ESP_CONSOLE_UART_NUM "0") -set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") -set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_ESP_INT_WDT "y") -set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_ESP_TASK_WDT_EN "y") -set(CONFIG_ESP_TASK_WDT_INIT "y") -set(CONFIG_ESP_TASK_WDT_PANIC "") -set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP_PANIC_HANDLER_IRAM "") -set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP_DEBUG_OCDAWARE "y") -set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") -set(CONFIG_ESP_BROWNOUT_DET "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL "7") -set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") -set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") -set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") -set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_ESP_TIMER_PROFILING "") -set(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER "y") -set(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER "y") -set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_TIMER_INTERRUPT_LEVEL "1") -set(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL "") -set(CONFIG_ESP_TIMER_TASK_AFFINITY "0x0") -set(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") -set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") -set(CONFIG_ESP_TIMER_IMPL_SYSTIMER "y") -set(CONFIG_ESP_WIFI_ENABLED "y") -set(CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM "10") -set(CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM "32") -set(CONFIG_ESP_WIFI_STATIC_TX_BUFFER "") -set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER "y") -set(CONFIG_ESP_WIFI_TX_BUFFER_TYPE "1") -set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM "32") -set(CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER "y") -set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER "") -set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF "0") -set(CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF "5") -set(CONFIG_ESP_WIFI_CSI_ENABLED "") -set(CONFIG_ESP_WIFI_AMPDU_TX_ENABLED "y") -set(CONFIG_ESP_WIFI_TX_BA_WIN "6") -set(CONFIG_ESP_WIFI_AMPDU_RX_ENABLED "y") -set(CONFIG_ESP_WIFI_RX_BA_WIN "6") -set(CONFIG_ESP_WIFI_NVS_ENABLED "y") -set(CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN "752") -set(CONFIG_ESP_WIFI_MGMT_SBUF_NUM "32") -set(CONFIG_ESP_WIFI_IRAM_OPT "y") -set(CONFIG_ESP_WIFI_EXTRA_IRAM_OPT "") -set(CONFIG_ESP_WIFI_RX_IRAM_OPT "y") -set(CONFIG_ESP_WIFI_ENABLE_WPA3_SAE "y") -set(CONFIG_ESP_WIFI_ENABLE_SAE_PK "y") -set(CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT "y") -set(CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA "y") -set(CONFIG_ESP_WIFI_SLP_IRAM_OPT "") -set(CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME "50") -set(CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME "10") -set(CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME "15") -set(CONFIG_ESP_WIFI_FTM_ENABLE "") -set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") -set(CONFIG_ESP_WIFI_GCMP_SUPPORT "") -set(CONFIG_ESP_WIFI_GMAC_SUPPORT "y") -set(CONFIG_ESP_WIFI_SOFTAP_SUPPORT "y") -set(CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT "") -set(CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM "7") -set(CONFIG_ESP_WIFI_MBEDTLS_CRYPTO "y") -set(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT "y") -set(CONFIG_ESP_WIFI_WAPI_PSK "") -set(CONFIG_ESP_WIFI_SUITE_B_192 "") -set(CONFIG_ESP_WIFI_11KV_SUPPORT "") -set(CONFIG_ESP_WIFI_MBO_SUPPORT "") -set(CONFIG_ESP_WIFI_DPP_SUPPORT "") -set(CONFIG_ESP_WIFI_11R_SUPPORT "") -set(CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR "") -set(CONFIG_ESP_WIFI_WPS_STRICT "") -set(CONFIG_ESP_WIFI_WPS_PASSPHRASE "") -set(CONFIG_ESP_WIFI_DEBUG_PRINT "") -set(CONFIG_ESP_WIFI_TESTING_OPTIONS "") -set(CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT "y") -set(CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER "") -set(CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH "") -set(CONFIG_ESP_COREDUMP_ENABLE_TO_UART "") -set(CONFIG_ESP_COREDUMP_ENABLE_TO_NONE "y") -set(CONFIG_FATFS_VOLUME_COUNT "2") -set(CONFIG_FATFS_LFN_NONE "y") -set(CONFIG_FATFS_LFN_HEAP "") -set(CONFIG_FATFS_LFN_STACK "") -set(CONFIG_FATFS_SECTOR_512 "") -set(CONFIG_FATFS_SECTOR_4096 "y") -set(CONFIG_FATFS_CODEPAGE_DYNAMIC "") -set(CONFIG_FATFS_CODEPAGE_437 "y") -set(CONFIG_FATFS_CODEPAGE_720 "") -set(CONFIG_FATFS_CODEPAGE_737 "") -set(CONFIG_FATFS_CODEPAGE_771 "") -set(CONFIG_FATFS_CODEPAGE_775 "") -set(CONFIG_FATFS_CODEPAGE_850 "") -set(CONFIG_FATFS_CODEPAGE_852 "") -set(CONFIG_FATFS_CODEPAGE_855 "") -set(CONFIG_FATFS_CODEPAGE_857 "") -set(CONFIG_FATFS_CODEPAGE_860 "") -set(CONFIG_FATFS_CODEPAGE_861 "") -set(CONFIG_FATFS_CODEPAGE_862 "") -set(CONFIG_FATFS_CODEPAGE_863 "") -set(CONFIG_FATFS_CODEPAGE_864 "") -set(CONFIG_FATFS_CODEPAGE_865 "") -set(CONFIG_FATFS_CODEPAGE_866 "") -set(CONFIG_FATFS_CODEPAGE_869 "") -set(CONFIG_FATFS_CODEPAGE_932 "") -set(CONFIG_FATFS_CODEPAGE_936 "") -set(CONFIG_FATFS_CODEPAGE_949 "") -set(CONFIG_FATFS_CODEPAGE_950 "") -set(CONFIG_FATFS_CODEPAGE "437") -set(CONFIG_FATFS_FS_LOCK "0") -set(CONFIG_FATFS_TIMEOUT_MS "10000") -set(CONFIG_FATFS_PER_FILE_CACHE "y") -set(CONFIG_FATFS_USE_FASTSEEK "") -set(CONFIG_FATFS_USE_STRFUNC_NONE "y") -set(CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV "") -set(CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV "") -set(CONFIG_FATFS_VFS_FSTAT_BLKSIZE "0") -set(CONFIG_FATFS_IMMEDIATE_FSYNC "") -set(CONFIG_FATFS_USE_LABEL "") -set(CONFIG_FATFS_LINK_LOCK "y") -set(CONFIG_FREERTOS_SMP "") -set(CONFIG_FREERTOS_UNICORE "y") -set(CONFIG_FREERTOS_HZ "100") -set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") -set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") -set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") -set(CONFIG_FREERTOS_USE_IDLE_HOOK "") -set(CONFIG_FREERTOS_USE_TICK_HOOK "") -set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") -set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") -set(CONFIG_FREERTOS_USE_TIMERS "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") -set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") -set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") -set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "3120") -set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") -set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") -set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") -set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") -set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") -set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") -set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") -set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") -set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") -set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") -set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") -set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") -set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") -set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") -set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") -set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") -set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") -set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") -set(CONFIG_FREERTOS_PORT "y") -set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") -set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") -set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") -set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") -set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") -set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") -set(CONFIG_HAL_ASSERTION_DISABLE "") -set(CONFIG_HAL_ASSERTION_SILENT "") -set(CONFIG_HAL_ASSERTION_ENABLE "") -set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") -set(CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM "y") -set(CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM "y") -set(CONFIG_HEAP_POISONING_DISABLED "y") -set(CONFIG_HEAP_POISONING_LIGHT "") -set(CONFIG_HEAP_POISONING_COMPREHENSIVE "") -set(CONFIG_HEAP_TRACING_OFF "y") -set(CONFIG_HEAP_TRACING_STANDALONE "") -set(CONFIG_HEAP_TRACING_TOHOST "") -set(CONFIG_HEAP_USE_HOOKS "") -set(CONFIG_HEAP_TASK_TRACKING "") -set(CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS "") -set(CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH "") -set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") -set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") -set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") -set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") -set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") -set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") -set(CONFIG_LOG_DEFAULT_LEVEL "3") -set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") -set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") -set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") -set(CONFIG_LOG_MAXIMUM_LEVEL "3") -set(CONFIG_LOG_MASTER_LEVEL "") -set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") -set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") -set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") -set(CONFIG_LOG_COLORS "") -set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") -set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") -set(CONFIG_LWIP_ENABLE "y") -set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") -set(CONFIG_LWIP_NETIF_API "") -set(CONFIG_LWIP_TCPIP_TASK_PRIO "18") -set(CONFIG_LWIP_TCPIP_CORE_LOCKING "") -set(CONFIG_LWIP_CHECK_THREAD_SAFETY "") -set(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES "y") -set(CONFIG_LWIP_L2_TO_L3_COPY "") -set(CONFIG_LWIP_IRAM_OPTIMIZATION "") -set(CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION "") -set(CONFIG_LWIP_TIMERS_ONDEMAND "y") -set(CONFIG_LWIP_ND6 "y") -set(CONFIG_LWIP_FORCE_ROUTER_FORWARDING "") -set(CONFIG_LWIP_MAX_SOCKETS "10") -set(CONFIG_LWIP_USE_ONLY_LWIP_SELECT "") -set(CONFIG_LWIP_SO_LINGER "") -set(CONFIG_LWIP_SO_REUSE "y") -set(CONFIG_LWIP_SO_REUSE_RXTOALL "y") -set(CONFIG_LWIP_SO_RCVBUF "") -set(CONFIG_LWIP_NETBUF_RECVINFO "") -set(CONFIG_LWIP_IP_DEFAULT_TTL "64") -set(CONFIG_LWIP_IP4_FRAG "y") -set(CONFIG_LWIP_IP6_FRAG "y") -set(CONFIG_LWIP_IP4_REASSEMBLY "") -set(CONFIG_LWIP_IP6_REASSEMBLY "") -set(CONFIG_LWIP_IP_REASS_MAX_PBUFS "10") -set(CONFIG_LWIP_IP_FORWARD "") -set(CONFIG_LWIP_STATS "") -set(CONFIG_LWIP_ESP_GRATUITOUS_ARP "y") -set(CONFIG_LWIP_GARP_TMR_INTERVAL "60") -set(CONFIG_LWIP_ESP_MLDV6_REPORT "y") -set(CONFIG_LWIP_MLDV6_TMR_INTERVAL "40") -set(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE "32") -set(CONFIG_LWIP_DHCP_DOES_ARP_CHECK "y") -set(CONFIG_LWIP_DHCP_DOES_ACD_CHECK "") -set(CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP "") -set(CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID "") -set(CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID "y") -set(CONFIG_LWIP_DHCP_RESTORE_LAST_IP "") -set(CONFIG_LWIP_DHCP_OPTIONS_LEN "68") -set(CONFIG_LWIP_NUM_NETIF_CLIENT_DATA "0") -set(CONFIG_LWIP_DHCP_COARSE_TIMER_SECS "1") -set(CONFIG_LWIP_DHCPS "y") -set(CONFIG_LWIP_DHCPS_LEASE_UNIT "60") -set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") -set(CONFIG_LWIP_DHCPS_STATIC_ENTRIES "y") -set(CONFIG_LWIP_DHCPS_ADD_DNS "y") -set(CONFIG_LWIP_AUTOIP "") -set(CONFIG_LWIP_IPV4 "y") -set(CONFIG_LWIP_IPV6 "y") -set(CONFIG_LWIP_IPV6_AUTOCONFIG "") -set(CONFIG_LWIP_IPV6_NUM_ADDRESSES "3") -set(CONFIG_LWIP_IPV6_FORWARD "") -set(CONFIG_LWIP_NETIF_STATUS_CALLBACK "") -set(CONFIG_LWIP_NETIF_LOOPBACK "y") -set(CONFIG_LWIP_LOOPBACK_MAX_PBUFS "8") -set(CONFIG_LWIP_MAX_ACTIVE_TCP "16") -set(CONFIG_LWIP_MAX_LISTENING_TCP "16") -set(CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION "y") -set(CONFIG_LWIP_TCP_MAXRTX "12") -set(CONFIG_LWIP_TCP_SYNMAXRTX "12") -set(CONFIG_LWIP_TCP_MSS "1440") -set(CONFIG_LWIP_TCP_TMR_INTERVAL "250") -set(CONFIG_LWIP_TCP_MSL "60000") -set(CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT "20000") -set(CONFIG_LWIP_TCP_SND_BUF_DEFAULT "5760") -set(CONFIG_LWIP_TCP_WND_DEFAULT "5760") -set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") -set(CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE "6") -set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") -set(CONFIG_LWIP_TCP_OOSEQ_TIMEOUT "6") -set(CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS "4") -set(CONFIG_LWIP_TCP_SACK_OUT "") -set(CONFIG_LWIP_TCP_OVERSIZE_MSS "y") -set(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS "") -set(CONFIG_LWIP_TCP_OVERSIZE_DISABLE "") -set(CONFIG_LWIP_TCP_RTO_TIME "1500") -set(CONFIG_LWIP_MAX_UDP_PCBS "16") -set(CONFIG_LWIP_UDP_RECVMBOX_SIZE "6") -set(CONFIG_LWIP_CHECKSUM_CHECK_IP "") -set(CONFIG_LWIP_CHECKSUM_CHECK_UDP "") -set(CONFIG_LWIP_CHECKSUM_CHECK_ICMP "y") -set(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE "3072") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 "") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY "0x7fffffff") -set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") -set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") -set(CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES "5") -set(CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS "3") -set(CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS "10") -set(CONFIG_LWIP_PPP_SUPPORT "") -set(CONFIG_LWIP_SLIP_SUPPORT "") -set(CONFIG_LWIP_ICMP "y") -set(CONFIG_LWIP_MULTICAST_PING "") -set(CONFIG_LWIP_BROADCAST_PING "") -set(CONFIG_LWIP_MAX_RAW_PCBS "16") -set(CONFIG_LWIP_SNTP_MAX_SERVERS "1") -set(CONFIG_LWIP_DHCP_GET_NTP_SRV "") -set(CONFIG_LWIP_SNTP_UPDATE_DELAY "3600000") -set(CONFIG_LWIP_SNTP_STARTUP_DELAY "y") -set(CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY "5000") -set(CONFIG_LWIP_DNS_MAX_HOST_IP "1") -set(CONFIG_LWIP_DNS_MAX_SERVERS "3") -set(CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT "") -set(CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF "") -set(CONFIG_LWIP_BRIDGEIF_MAX_PORTS "7") -set(CONFIG_LWIP_ESP_LWIP_ASSERT "y") -set(CONFIG_LWIP_HOOK_TCP_ISN_NONE "") -set(CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT "y") -set(CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_NONE "y") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT "") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM "") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_NONE "y") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT "") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE "y") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT "") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM "") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE "y") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT "") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM "") -set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE "y") -set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_INPUT_NONE "") -set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "y") -set(CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM "") -set(CONFIG_LWIP_DEBUG "") -set(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC "y") -set(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC "") -set(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC "") -set(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN "y") -set(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN "16384") -set(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN "4096") -set(CONFIG_MBEDTLS_DYNAMIC_BUFFER "y") -set(CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA "y") -set(CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT "y") -set(CONFIG_MBEDTLS_DEBUG "") -set(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH "") -set(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK "") -set(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION "") -set(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE "y") -set(CONFIG_MBEDTLS_PKCS7_C "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE "") -set(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS "200") -set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") -set(CONFIG_MBEDTLS_CMAC_C "y") -set(CONFIG_MBEDTLS_HARDWARE_AES "y") -set(CONFIG_MBEDTLS_AES_USE_INTERRUPT "y") -set(CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL "0") -set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") -set(CONFIG_MBEDTLS_HARDWARE_MPI "y") -set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "y") -set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") -set(CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL "0") -set(CONFIG_MBEDTLS_HARDWARE_SHA "y") -set(CONFIG_MBEDTLS_ROM_MD5 "y") -set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN "") -set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY "") -set(CONFIG_MBEDTLS_HAVE_TIME "y") -set(CONFIG_MBEDTLS_PLATFORM_TIME_ALT "") -set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") -set(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC "y") -set(CONFIG_MBEDTLS_SHA512_C "y") -set(CONFIG_MBEDTLS_SHA3_C "") -set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") -set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") -set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") -set(CONFIG_MBEDTLS_TLS_DISABLED "") -set(CONFIG_MBEDTLS_TLS_SERVER "y") -set(CONFIG_MBEDTLS_TLS_CLIENT "y") -set(CONFIG_MBEDTLS_TLS_ENABLED "y") -set(CONFIG_MBEDTLS_PSK_MODES "") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") -set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") -set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") -set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") -set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") -set(CONFIG_MBEDTLS_SSL_ALPN "y") -set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") -set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") -set(CONFIG_MBEDTLS_AES_C "y") -set(CONFIG_MBEDTLS_CAMELLIA_C "") -set(CONFIG_MBEDTLS_DES_C "") -set(CONFIG_MBEDTLS_BLOWFISH_C "") -set(CONFIG_MBEDTLS_XTEA_C "") -set(CONFIG_MBEDTLS_CCM_C "y") -set(CONFIG_MBEDTLS_GCM_C "y") -set(CONFIG_MBEDTLS_NIST_KW_C "") -set(CONFIG_MBEDTLS_RIPEMD160_C "") -set(CONFIG_MBEDTLS_PEM_PARSE_C "y") -set(CONFIG_MBEDTLS_PEM_WRITE_C "y") -set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") -set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") -set(CONFIG_MBEDTLS_ECP_C "y") -set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") -set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") -set(CONFIG_MBEDTLS_DHM_C "") -set(CONFIG_MBEDTLS_ECDH_C "y") -set(CONFIG_MBEDTLS_ECDSA_C "y") -set(CONFIG_MBEDTLS_ECJPAKE_C "") -set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") -set(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM "") -set(CONFIG_MBEDTLS_POLY1305_C "") -set(CONFIG_MBEDTLS_CHACHA20_C "") -set(CONFIG_MBEDTLS_HKDF_C "") -set(CONFIG_MBEDTLS_THREADING_C "") -set(CONFIG_MBEDTLS_ERROR_STRINGS "y") -set(CONFIG_MBEDTLS_FS_IO "y") -set(CONFIG_MQTT_PROTOCOL_311 "y") -set(CONFIG_MQTT_PROTOCOL_5 "") -set(CONFIG_MQTT_TRANSPORT_SSL "y") -set(CONFIG_MQTT_TRANSPORT_WEBSOCKET "y") -set(CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE "y") -set(CONFIG_MQTT_MSG_ID_INCREMENTAL "") -set(CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED "") -set(CONFIG_MQTT_REPORT_DELETED_MESSAGES "") -set(CONFIG_MQTT_USE_CUSTOM_CONFIG "") -set(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED "") -set(CONFIG_MQTT_CUSTOM_OUTBOX "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") -set(CONFIG_NEWLIB_NANO_FORMAT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") -set(CONFIG_NVS_ENCRYPTION "") -set(CONFIG_NVS_ASSERT_ERROR_CHECK "") -set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") -set(CONFIG_OPENTHREAD_ENABLED "") -set(CONFIG_OPENTHREAD_SPINEL_ONLY "") -set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 "y") -set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 "y") -set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 "y") -set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION "y") -set(CONFIG_PTHREAD_TASK_PRIO_DEFAULT "5") -set(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") -set(CONFIG_PTHREAD_STACK_MIN "768") -set(CONFIG_PTHREAD_TASK_CORE_DEFAULT "-1") -set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") -set(CONFIG_MMU_PAGE_SIZE_64KB "y") -set(CONFIG_MMU_PAGE_MODE "64KB") -set(CONFIG_MMU_PAGE_SIZE "0x10000") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") -set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") -set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") -set(CONFIG_SPI_FLASH_VERIFY_WRITE "") -set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") -set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") -set(CONFIG_SPI_FLASH_ROM_IMPL "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") -set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") -set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") -set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") -set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") -set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") -set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") -set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") -set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") -set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED "y") -set(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED "y") -set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") -set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") -set(CONFIG_SPIFFS_MAX_PARTITIONS "3") -set(CONFIG_SPIFFS_CACHE "y") -set(CONFIG_SPIFFS_CACHE_WR "y") -set(CONFIG_SPIFFS_CACHE_STATS "") -set(CONFIG_SPIFFS_PAGE_CHECK "y") -set(CONFIG_SPIFFS_GC_MAX_RUNS "10") -set(CONFIG_SPIFFS_GC_STATS "") -set(CONFIG_SPIFFS_PAGE_SIZE "256") -set(CONFIG_SPIFFS_OBJ_NAME_LEN "32") -set(CONFIG_SPIFFS_FOLLOW_SYMLINKS "") -set(CONFIG_SPIFFS_USE_MAGIC "y") -set(CONFIG_SPIFFS_USE_MAGIC_LENGTH "y") -set(CONFIG_SPIFFS_META_LENGTH "4") -set(CONFIG_SPIFFS_USE_MTIME "y") -set(CONFIG_SPIFFS_DBG "") -set(CONFIG_SPIFFS_API_DBG "") -set(CONFIG_SPIFFS_GC_DBG "") -set(CONFIG_SPIFFS_CACHE_DBG "") -set(CONFIG_SPIFFS_CHECK_DBG "") -set(CONFIG_SPIFFS_TEST_VISUALISATION "") -set(CONFIG_WS_TRANSPORT "y") -set(CONFIG_WS_BUFFER_SIZE "1024") -set(CONFIG_WS_DYNAMIC_BUFFER "") -set(CONFIG_UNITY_ENABLE_FLOAT "y") -set(CONFIG_UNITY_ENABLE_DOUBLE "y") -set(CONFIG_UNITY_ENABLE_64BIT "") -set(CONFIG_UNITY_ENABLE_COLOR "") -set(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER "y") -set(CONFIG_UNITY_ENABLE_FIXTURE "") -set(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL "") -set(CONFIG_VFS_SUPPORT_IO "y") -set(CONFIG_VFS_SUPPORT_DIR "y") -set(CONFIG_VFS_SUPPORT_SELECT "y") -set(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT "y") -set(CONFIG_VFS_SELECT_IN_RAM "") -set(CONFIG_VFS_SUPPORT_TERMIOS "y") -set(CONFIG_VFS_MAX_COUNT "8") -set(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS "1") -set(CONFIG_VFS_INITIALIZE_DEV_NULL "y") -set(CONFIG_WL_SECTOR_SIZE_512 "") -set(CONFIG_WL_SECTOR_SIZE_4096 "y") -set(CONFIG_WL_SECTOR_SIZE "4096") -set(CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES "16") -set(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT "30") -set(CONFIG_WIFI_PROV_BLE_BONDING "") -set(CONFIG_WIFI_PROV_BLE_SEC_CONN "y") -set(CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION "") -set(CONFIG_WIFI_PROV_BLE_NOTIFY "") -set(CONFIG_WIFI_PROV_KEEP_BLE_ON_AFTER_PROV "") -set(CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN "y") -set(CONFIG_WIFI_PROV_STA_FAST_SCAN "") -set(CONFIG_IO_GLITCH_FILTER_TIME_MS "50") -set(CONFIG_WS2812_LED_ENABLE "y") -set(CONFIG_WS2812_LED_GPIO "8") -set(CONFIG_SERIAL_FLASHER_MD5_ENABLED "y") -set(CONFIG_SERIAL_FLASHER_INTERFACE_UART "y") -set(CONFIG_SERIAL_FLASHER_INTERFACE_SPI "") -set(CONFIG_SERIAL_FLASHER_INTERFACE_USB "") -set(CONFIG_SERIAL_FLASHER_INTERFACE_SDIO "") -set(CONFIG_SERIAL_FLASHER_RESET_HOLD_TIME_MS "100") -set(CONFIG_SERIAL_FLASHER_BOOT_HOLD_TIME_MS "50") -set(CONFIG_SERIAL_FLASHER_DEBUG_TRACE "") -set(CONFIG_SERIAL_FLASHER_WRITE_BLOCK_RETRIES "3") -set(CONFIG_SERIAL_FLASHER_RESET_INVERT "") -set(CONFIG_SERIAL_FLASHER_BOOT_INVERT "") -set(CONFIG_DIAG_DATA_STORE_RTC "y") -set(CONFIG_DIAG_DATA_STORE_FLASH "") -set(CONFIG_DIAG_DATA_STORE_DBG_PRINTS "") -set(CONFIG_DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT "80") -set(CONFIG_RTC_STORE_DATA_SIZE "6144") -set(CONFIG_RTC_STORE_CRITICAL_DATA_SIZE "4096") -set(CONFIG_DIAG_LOG_MSG_ARG_FORMAT_TLV "y") -set(CONFIG_DIAG_LOG_MSG_ARG_FORMAT_STRING "") -set(CONFIG_DIAG_LOG_MSG_ARG_MAX_SIZE "64") -set(CONFIG_DIAG_LOG_DROP_WIFI_LOGS "y") -set(CONFIG_DIAG_ENABLE_WRAP_LOG_FUNCTIONS "") -set(CONFIG_DIAG_ENABLE_METRICS "y") -set(CONFIG_DIAG_METRICS_MAX_COUNT "20") -set(CONFIG_DIAG_ENABLE_HEAP_METRICS "y") -set(CONFIG_DIAG_HEAP_POLLING_INTERVAL "30") -set(CONFIG_DIAG_ENABLE_WIFI_METRICS "y") -set(CONFIG_DIAG_WIFI_POLLING_INTERVAL "30") -set(CONFIG_DIAG_ENABLE_VARIABLES "y") -set(CONFIG_DIAG_VARIABLES_MAX_COUNT "20") -set(CONFIG_DIAG_ENABLE_NETWORK_VARIABLES "y") -set(CONFIG_DIAG_MORE_NETWORK_VARS "") -set(CONFIG_DIAG_USE_EXTERNAL_LOG_WRAP "") -set(CONFIG_ESP_INSIGHTS_ENABLED "") -set(CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT "y") -set(CONFIG_ESP_INSIGHTS_TRANSPORT_HTTPS "") -set(CONFIG_ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC "60") -set(CONFIG_ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC "240") -set(CONFIG_ESP_INSIGHTS_META_VERSION_10 "y") -set(CONFIG_AUTO_UPDATE_RCP "") -set(CONFIG_CREATE_OTA_IMAGE_WITH_RCP_FW "") -set(CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL "y") -set(CONFIG_ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS "") -set(CONFIG_JSMN_PARENT_LINKS "") -set(CONFIG_JSMN_STRICT "") -set(CONFIG_JSMN_STATIC "") -set(CONFIG_MDNS_MAX_INTERFACES "3") -set(CONFIG_MDNS_MAX_SERVICES "10") -set(CONFIG_MDNS_TASK_PRIORITY "1") -set(CONFIG_MDNS_ACTION_QUEUE_LEN "16") -set(CONFIG_MDNS_TASK_STACK_SIZE "4096") -set(CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY "") -set(CONFIG_MDNS_TASK_AFFINITY_CPU0 "y") -set(CONFIG_MDNS_TASK_AFFINITY "0x0") -set(CONFIG_MDNS_TASK_CREATE_FROM_INTERNAL "y") -set(CONFIG_MDNS_MEMORY_ALLOC_INTERNAL "y") -set(CONFIG_MDNS_MEMORY_CUSTOM_IMPL "") -set(CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS "2000") -set(CONFIG_MDNS_TIMER_PERIOD_MS "100") -set(CONFIG_MDNS_NETWORKING_SOCKET "") -set(CONFIG_MDNS_SKIP_SUPPRESSING_OWN_QUERIES "") -set(CONFIG_MDNS_ENABLE_DEBUG_PRINTS "") -set(CONFIG_MDNS_ENABLE_CONSOLE_CLI "y") -set(CONFIG_MDNS_RESPOND_REVERSE_QUERIES "") -set(CONFIG_MDNS_MULTIPLE_INSTANCE "y") -set(CONFIG_MDNS_PREDEF_NETIF_STA "y") -set(CONFIG_MDNS_PREDEF_NETIF_AP "y") -set(CONFIG_MDNS_PREDEF_NETIF_ETH "y") -set(CONFIG_NETWORK_PROV_NETWORK_TYPE_WIFI "y") -set(CONFIG_NETWORK_PROV_SCAN_MAX_ENTRIES "16") -set(CONFIG_NETWORK_PROV_AUTOSTOP_TIMEOUT "30") -set(CONFIG_NETWORK_PROV_BLE_BONDING "") -set(CONFIG_NETWORK_PROV_BLE_SEC_CONN "y") -set(CONFIG_NETWORK_PROV_BLE_FORCE_ENCRYPTION "") -set(CONFIG_NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV "") -set(CONFIG_NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN "y") -set(CONFIG_NETWORK_PROV_WIFI_STA_FAST_SCAN "") -set(CONFIG_ESP_RMAKER_LIB_ESP_MQTT "y") -set(CONFIG_ESP_RMAKER_LIB_AWS_IOT "") -set(CONFIG_ESP_RMAKER_MQTT_GLUE_LIB "1") -set(CONFIG_ESP_RMAKER_MQTT_PORT_443 "y") -set(CONFIG_ESP_RMAKER_MQTT_PORT_8883 "") -set(CONFIG_ESP_RMAKER_MQTT_PORT "1") -set(CONFIG_ESP_RMAKER_MQTT_PERSISTENT_SESSION "") -set(CONFIG_ESP_RMAKER_MQTT_SEND_USERNAME "y") -set(CONFIG_ESP_RMAKER_MQTT_PRODUCT_NAME "RMDev") -set(CONFIG_ESP_RMAKER_MQTT_PRODUCT_VERSION "1x0") -set(CONFIG_ESP_RMAKER_MQTT_PRODUCT_SKU "EX00") -set(CONFIG_ESP_RMAKER_MQTT_USE_CERT_BUNDLE "y") -set(CONFIG_ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS "10") -set(CONFIG_ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL "120") -set(CONFIG_ESP_RMAKER_NETWORK_OVER_WIFI "y") -set(CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK "5120") -set(CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY "5") -set(CONFIG_ESP_RMAKER_FACTORY_PARTITION_NAME "fctry") -set(CONFIG_ESP_RMAKER_FACTORY_NAMESPACE "rmaker_creds") -set(CONFIG_ESP_RMAKER_DEF_TIMEZONE "Asia/Shanghai") -set(CONFIG_ESP_RMAKER_SNTP_SERVER_NAME "pool.ntp.org") -set(CONFIG_ESP_RMAKER_MAX_COMMANDS "10") -set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") -set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK;CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND;CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_WIFI_PD;CONFIG_SOC_PM_SUPPORT_BT_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32C3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK;CONFIG_APP_ANTI_ROLLBACK;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_EXAMPLE_BOARD_BUTTON_GPIO;CONFIG_APP_NETWORK_PROV_SHOW_QR;CONFIG_APP_WIFI_PROV_SHOW_QR;CONFIG_APP_NETWORK_PROV_MAX_POP_MISMATCH;CONFIG_APP_WIFI_PROV_MAX_POP_MISMATCH;CONFIG_APP_NETWORK_PROV_TRANSPORT_SOFTAP;CONFIG_APP_WIFI_PROV_TRANSPORT_SOFTAP;CONFIG_APP_NETWORK_PROV_TRANSPORT_BLE;CONFIG_APP_WIFI_PROV_TRANSPORT_BLE;CONFIG_APP_NETWORK_PROV_TRANSPORT;CONFIG_APP_WIFI_PROV_TRANSPORT;CONFIG_APP_NETWORK_RESET_PROV_ON_FAILURE;CONFIG_APP_WIFI_RESET_PROV_ON_FAILURE;CONFIG_APP_NETWORK_PROV_MAX_RETRY_CNT;CONFIG_APP_NETWORK_SHOW_DEMO_INTRO_TEXT;CONFIG_APP_WIFI_SHOW_DEMO_INTRO_TEXT;CONFIG_APP_NETWORK_PROV_TIMEOUT_PERIOD;CONFIG_APP_WIFI_PROV_TIMEOUT_PERIOD;CONFIG_APP_NETWORK_PROV_NAME_PREFIX;CONFIG_APP_WIFI_PROV_NAME_PREFIX;CONFIG_APP_WIFI_PROV_COMPAT;CONFIG_ESP_RMAKER_NO_CLAIM;CONFIG_ESP_RMAKER_SELF_CLAIM;CONFIG_ESP_RMAKER_ASSISTED_CLAIM;CONFIG_ESP_RMAKER_USE_NVS;CONFIG_ESP_RMAKER_CLAIM_TYPE;CONFIG_ESP_RMAKER_CLAIM_SERVICE_BASE_URL;CONFIG_ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG;CONFIG_ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN;CONFIG_ESP_RMAKER_MQTT_HOST;CONFIG_ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS;CONFIG_ESP_RMAKER_MQTT_ENABLE_BUDGETING;CONFIG_ESP_RMAKER_MQTT_DEFAULT_BUDGET;CONFIG_ESP_RMAKER_MQTT_MAX_BUDGET;CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD;CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT;CONFIG_ESP_RMAKER_MAX_PARAM_DATA_SIZE;CONFIG_ESP_RMAKER_DISABLE_USER_MAPPING_PROV;CONFIG_ESP_RMAKER_USER_ID_CHECK;CONFIG_RMAKER_NAME_PARAM_CB;CONFIG_ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE;CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE;CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE;CONFIG_ESP_RMAKER_LOCAL_CTRL_HTTP_PORT;CONFIG_ESP_RMAKER_LOCAL_CTRL_STACK_SIZE;CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY_0;CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY_1;CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY;CONFIG_ESP_RMAKER_CONSOLE_UART_NUM_0;CONFIG_ESP_RMAKER_CONSOLE_UART_NUM_1;CONFIG_ESP_RMAKER_CONSOLE_UART_NUM;CONFIG_ESP_RMAKER_USE_CERT_BUNDLE;CONFIG_ESP_RMAKER_OTA_AUTOFETCH;CONFIG_ESP_RMAKER_OTA_AUTOFETCH_PERIOD;CONFIG_ESP_RMAKER_SKIP_COMMON_NAME_CHECK;CONFIG_ESP_RMAKER_SKIP_VERSION_CHECK;CONFIG_ESP_RMAKER_SKIP_SECURE_VERSION_CHECK;CONFIG_ESP_RMAKER_SKIP_PROJECT_NAME_CHECK;CONFIG_ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE;CONFIG_ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD;CONFIG_ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT;CONFIG_ESP_RMAKER_OTA_TIME_SUPPORT;CONFIG_ESP_RMAKER_OTA_PROGRESS_SUPPORT;CONFIG_ESP_RMAKER_OTA_MAX_RETRIES;CONFIG_ESP_RMAKER_OTA_RETRY_DELAY_MINUTES;CONFIG_ESP_RMAKER_SCHEDULING_MAX_SCHEDULES;CONFIG_ESP_RMAKER_SCENES_MAX_SCENES;CONFIG_ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT;CONFIG_ESP_RMAKER_CMD_RESP_ENABLE;CONFIG_ESP_RMAKER_CMD_RESP_TEST_ENABLE;CONFIG_ESP_RMAKER_USING_NETWORK_PROV;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_APPTRACE_DEST_JTAG;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_DEST_UART1;CONFIG_APPTRACE_DEST_USB_CDC;CONFIG_APPTRACE_DEST_UART_NONE;CONFIG_APPTRACE_UART_TASK_PRIO;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BT_BLUEDROID_ENABLED;CONFIG_BLUEDROID_ENABLED;CONFIG_BT_NIMBLE_ENABLED;CONFIG_NIMBLE_ENABLED;CONFIG_BT_CONTROLLER_ONLY;CONFIG_BT_CONTROLLER_ENABLED;CONFIG_BT_CONTROLLER_DISABLED;CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL;CONFIG_NIMBLE_MEM_ALLOC_MODE_INTERNAL;CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT;CONFIG_NIMBLE_MEM_ALLOC_MODE_DEFAULT;CONFIG_BT_NIMBLE_LOG_LEVEL_NONE;CONFIG_BT_NIMBLE_LOG_LEVEL_ERROR;CONFIG_BT_NIMBLE_LOG_LEVEL_WARNING;CONFIG_BT_NIMBLE_LOG_LEVEL_INFO;CONFIG_BT_NIMBLE_LOG_LEVEL_DEBUG;CONFIG_BT_NIMBLE_LOG_LEVEL;CONFIG_BT_NIMBLE_MAX_CONNECTIONS;CONFIG_NIMBLE_MAX_CONNECTIONS;CONFIG_BT_NIMBLE_MAX_BONDS;CONFIG_NIMBLE_MAX_BONDS;CONFIG_BT_NIMBLE_MAX_CCCDS;CONFIG_NIMBLE_MAX_CCCDS;CONFIG_BT_NIMBLE_L2CAP_COC_MAX_NUM;CONFIG_NIMBLE_L2CAP_COC_MAX_NUM;CONFIG_BT_NIMBLE_PINNED_TO_CORE;CONFIG_NIMBLE_PINNED_TO_CORE;CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE;CONFIG_NIMBLE_TASK_STACK_SIZE;CONFIG_BT_NIMBLE_TASK_STACK_SIZE;CONFIG_BT_NIMBLE_ROLE_CENTRAL;CONFIG_NIMBLE_ROLE_CENTRAL;CONFIG_BT_NIMBLE_ROLE_PERIPHERAL;CONFIG_NIMBLE_ROLE_PERIPHERAL;CONFIG_BT_NIMBLE_ROLE_BROADCASTER;CONFIG_NIMBLE_ROLE_BROADCASTER;CONFIG_BT_NIMBLE_ROLE_OBSERVER;CONFIG_NIMBLE_ROLE_OBSERVER;CONFIG_BT_NIMBLE_NVS_PERSIST;CONFIG_NIMBLE_NVS_PERSIST;CONFIG_BT_NIMBLE_SMP_ID_RESET;CONFIG_BT_NIMBLE_SECURITY_ENABLE;CONFIG_BT_NIMBLE_SM_LEGACY;CONFIG_NIMBLE_SM_LEGACY;CONFIG_BT_NIMBLE_SM_SC;CONFIG_NIMBLE_SM_SC;CONFIG_BT_NIMBLE_SM_SC_DEBUG_KEYS;CONFIG_NIMBLE_SM_SC_DEBUG_KEYS;CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION;CONFIG_BT_NIMBLE_SM_LVL;CONFIG_BT_NIMBLE_SM_SC_LVL;CONFIG_BT_NIMBLE_SM_SC_ONLY;CONFIG_BT_NIMBLE_DEBUG;CONFIG_NIMBLE_DEBUG;CONFIG_BT_NIMBLE_DYNAMIC_SERVICE;CONFIG_BT_NIMBLE_SVC_GAP_DEVICE_NAME;CONFIG_NIMBLE_SVC_GAP_DEVICE_NAME;CONFIG_BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN;CONFIG_NIMBLE_GAP_DEVICE_NAME_MAX_LEN;CONFIG_BT_NIMBLE_ATT_PREFERRED_MTU;CONFIG_NIMBLE_ATT_PREFERRED_MTU;CONFIG_BT_NIMBLE_SVC_GAP_APPEARANCE;CONFIG_NIMBLE_SVC_GAP_APPEARANCE;CONFIG_BT_NIMBLE_MSYS_1_BLOCK_COUNT;CONFIG_BT_NIMBLE_MSYS1_BLOCK_COUNT;CONFIG_BT_NIMBLE_MSYS_1_BLOCK_SIZE;CONFIG_BT_NIMBLE_MSYS_2_BLOCK_COUNT;CONFIG_BT_NIMBLE_MSYS_2_BLOCK_SIZE;CONFIG_BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT;CONFIG_BT_NIMBLE_ACL_BUF_COUNT;CONFIG_BT_NIMBLE_TRANSPORT_ACL_SIZE;CONFIG_BT_NIMBLE_ACL_BUF_SIZE;CONFIG_BT_NIMBLE_TRANSPORT_EVT_SIZE;CONFIG_BT_NIMBLE_HCI_EVT_BUF_SIZE;CONFIG_BT_NIMBLE_TRANSPORT_EVT_COUNT;CONFIG_BT_NIMBLE_HCI_EVT_HI_BUF_COUNT;CONFIG_BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT;CONFIG_BT_NIMBLE_HCI_EVT_LO_BUF_COUNT;CONFIG_BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT;CONFIG_BT_NIMBLE_GATT_MAX_PROCS;CONFIG_BT_NIMBLE_HS_FLOW_CTRL;CONFIG_NIMBLE_HS_FLOW_CTRL;CONFIG_BT_NIMBLE_RPA_TIMEOUT;CONFIG_NIMBLE_RPA_TIMEOUT;CONFIG_BT_NIMBLE_MESH;CONFIG_NIMBLE_MESH;CONFIG_BT_NIMBLE_CRYPTO_STACK_MBEDTLS;CONFIG_NIMBLE_CRYPTO_STACK_MBEDTLS;CONFIG_BT_NIMBLE_HS_STOP_TIMEOUT_MS;CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT;CONFIG_BT_NIMBLE_MAX_CONN_REATTEMPT;CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT;CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY;CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY;CONFIG_BT_NIMBLE_EXT_ADV;CONFIG_BT_NIMBLE_EXT_SCAN;CONFIG_BT_NIMBLE_ENABLE_PERIODIC_SYNC;CONFIG_BT_NIMBLE_MAX_PERIODIC_SYNCS;CONFIG_BT_NIMBLE_GATT_CACHING;CONFIG_BT_NIMBLE_WHITELIST_SIZE;CONFIG_BT_NIMBLE_TEST_THROUGHPUT_TEST;CONFIG_BT_NIMBLE_BLUFI_ENABLE;CONFIG_BT_NIMBLE_USE_ESP_TIMER;CONFIG_BT_NIMBLE_LEGACY_VHCI_ENABLE;CONFIG_BT_NIMBLE_BLE_GATT_BLOB_TRANSFER;CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE;CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM;CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC;CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN;CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR;CONFIG_BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP;CONFIG_BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP;CONFIG_BT_NIMBLE_SVC_GAP_CAR_SUPP;CONFIG_BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION;CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE;CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM;CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC;CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN;CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR;CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL;CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL;CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY;CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO;CONFIG_BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL;CONFIG_BT_NIMBLE_HID_SERVICE;CONFIG_BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY;CONFIG_BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME;CONFIG_BT_NIMBLE_SVC_DIS_SERIAL_NUMBER;CONFIG_BT_NIMBLE_SVC_DIS_HARDWARE_REVISION;CONFIG_BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION;CONFIG_BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION;CONFIG_BT_NIMBLE_SVC_DIS_SYSTEM_ID;CONFIG_BT_NIMBLE_SVC_DIS_PNP_ID;CONFIG_BT_NIMBLE_SVC_DIS_INCLUDED;CONFIG_BT_NIMBLE_VS_SUPPORT;CONFIG_BT_NIMBLE_ENC_ADV_DATA;CONFIG_BT_NIMBLE_HIGH_DUTY_ADV_ITVL;CONFIG_BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN;CONFIG_BT_NIMBLE_HOST_QUEUE_CONG_CHECK;CONFIG_BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT;CONFIG_UART_HW_FLOWCTRL_DISABLE;CONFIG_UART_HW_FLOWCTRL_CTS_RTS;CONFIG_BT_NIMBLE_HCI_UART_FLOW_CTRL;CONFIG_BT_NIMBLE_HCI_UART_RTS_PIN;CONFIG_BT_NIMBLE_HCI_UART_CTS_PIN;CONFIG_BT_NIMBLE_EATT_CHAN_NUM;CONFIG_BT_NIMBLE_SUBRATE;CONFIG_BT_CTRL_MODE_EFF;CONFIG_BT_CTRL_BLE_MAX_ACT;CONFIG_BT_CTRL_BLE_MAX_ACT_EFF;CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB;CONFIG_BT_CTRL_PINNED_TO_CORE;CONFIG_BT_CTRL_HCI_MODE_VHCI;CONFIG_BT_CTRL_HCI_MODE_UART_H4;CONFIG_BT_CTRL_HCI_TL;CONFIG_BT_CTRL_ADV_DUP_FILT_MAX;CONFIG_BT_BLE_CCA_MODE_NONE;CONFIG_BT_BLE_CCA_MODE_HW;CONFIG_BT_BLE_CCA_MODE_SW;CONFIG_BT_BLE_CCA_MODE;CONFIG_BT_CTRL_HW_CCA_VAL;CONFIG_BT_CTRL_HW_CCA_EFF;CONFIG_BT_CTRL_CE_LENGTH_TYPE_ORIG;CONFIG_BT_CTRL_CE_LENGTH_TYPE_CE;CONFIG_BT_CTRL_CE_LENGTH_TYPE_SD;CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF;CONFIG_BT_CTRL_TX_ANTENNA_INDEX_0;CONFIG_BT_CTRL_TX_ANTENNA_INDEX_1;CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF;CONFIG_BT_CTRL_RX_ANTENNA_INDEX_0;CONFIG_BT_CTRL_RX_ANTENNA_INDEX_1;CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N24;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N21;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N18;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N15;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N12;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N9;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N6;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N3;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_N0;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P3;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P6;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P9;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P12;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P15;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P18;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P20;CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF;CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP;CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM;CONFIG_BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD;CONFIG_BT_CTRL_BLE_SCAN_DUPL;CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DEVICE;CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA;CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE;CONFIG_BT_CTRL_SCAN_DUPL_TYPE;CONFIG_BT_CTRL_SCAN_DUPL_CACHE_SIZE;CONFIG_BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD;CONFIG_BT_CTRL_BLE_MESH_SCAN_DUPL_EN;CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN;CONFIG_BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EN;CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS;CONFIG_BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS;CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF;CONFIG_BT_CTRL_MODEM_SLEEP;CONFIG_BT_CTRL_SLEEP_MODE_EFF;CONFIG_BT_CTRL_SLEEP_CLOCK_EFF;CONFIG_BT_CTRL_HCI_TL_EFF;CONFIG_BT_CTRL_AGC_RECORRECT_EN;CONFIG_BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX;CONFIG_BT_BLE_ADV_DATA_LENGTH_ZERO_AUX;CONFIG_BT_CTRL_CHAN_ASS_EN;CONFIG_BT_CTRL_LE_PING_EN;CONFIG_BT_CTRL_BLE_LLCP_CONN_UPDATE;CONFIG_BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE;CONFIG_BT_CTRL_BLE_LLCP_PHY_UPDATE;CONFIG_BT_CTRL_RUN_IN_FLASH_ONLY;CONFIG_BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS;CONFIG_BT_ALARM_MAX_NUM;CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED;CONFIG_BT_HCI_LOG_DEBUG_EN;CONFIG_BLE_MESH;CONFIG_CONSOLE_SORTED_HELP;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_DS_PERIPHERAL;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK;CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3;CONFIG_ADC_ONESHOT_FORCE_USE_ADC2_ON_C3;CONFIG_ADC_ENABLE_DEBUG_LOG;CONFIG_ESP_COEX_ENABLED;CONFIG_ESP_COEX_SW_COEXIST_ENABLE;CONFIG_SW_COEXIST_ENABLE;CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE;CONFIG_ESP_WIFI_SW_COEXIST_ENABLE;CONFIG_ESP_COEX_POWER_MANAGEMENT;CONFIG_ESP_COEX_GPIO_DEBUG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_USJ_ENABLE_USB_SERIAL_JTAG;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_SPI_ETHERNET_W5500;CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL;CONFIG_ETH_USE_OPENETH;CONFIG_ETH_TRANSMIT_MUTEX;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_GDBSTUB_ENABLED;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_GDBSTUB_SUPPORT_TASKS;CONFIG_GDBSTUB_SUPPORT_TASKS;CONFIG_ESP_GDBSTUB_MAX_TASKS;CONFIG_GDBSTUB_MAX_TASKS;CONFIG_ESPHID_TASK_SIZE_BT;CONFIG_ESPHID_TASK_SIZE_BLE;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT;CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_HTTPD_QUEUE_WORK_BLOCKING;CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP32C3_REV_MIN_0;CONFIG_ESP32C3_REV_MIN_1;CONFIG_ESP32C3_REV_MIN_2;CONFIG_ESP32C3_REV_MIN_3;CONFIG_ESP32C3_REV_MIN_4;CONFIG_ESP32C3_REV_MIN_101;CONFIG_ESP32C3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32C3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32C3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32C3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32C3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF;CONFIG_ESP_PHY_ENABLED;CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP_PHY_MAX_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP_PHY_REDUCE_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_ESP_PHY_ENABLE_USB;CONFIG_ESP_PHY_ENABLE_CERT_TEST;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_ESP_PHY_PLL_TRACK_DEBUG;CONFIG_ESP_PHY_RECORD_USED_TIME;CONFIG_PM_ENABLE;CONFIG_PM_SLP_IRAM_OPT;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP32C3_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32C3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32C3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32C3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL;CONFIG_ESP_TIMER_TASK_AFFINITY;CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_ESP_WIFI_ENABLED;CONFIG_ESP32_WIFI_ENABLED;CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF;CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF;CONFIG_ESP_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP_WIFI_EXTRA_IRAM_OPT;CONFIG_ESP_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP_WIFI_ENABLE_SAE_PK;CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT;CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME;CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME;CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME;CONFIG_ESP_WIFI_FTM_ENABLE;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_GCMP_SUPPORT;CONFIG_ESP_WIFI_GMAC_SUPPORT;CONFIG_ESP_WIFI_SOFTAP_SUPPORT;CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT;CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM;CONFIG_ESP_WIFI_MBEDTLS_CRYPTO;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT;CONFIG_WPA_MBEDTLS_TLS_CLIENT;CONFIG_ESP_WIFI_WAPI_PSK;CONFIG_WPA_WAPI_PSK;CONFIG_ESP_WIFI_SUITE_B_192;CONFIG_WPA_SUITE_B_192;CONFIG_ESP_WIFI_11KV_SUPPORT;CONFIG_WPA_11KV_SUPPORT;CONFIG_ESP_WIFI_MBO_SUPPORT;CONFIG_WPA_MBO_SUPPORT;CONFIG_ESP_WIFI_DPP_SUPPORT;CONFIG_WPA_DPP_SUPPORT;CONFIG_ESP_WIFI_11R_SUPPORT;CONFIG_WPA_11R_SUPPORT;CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR;CONFIG_WPA_WPS_SOFTAP_REGISTRAR;CONFIG_ESP_WIFI_WPS_STRICT;CONFIG_WPA_WPS_STRICT;CONFIG_ESP_WIFI_WPS_PASSPHRASE;CONFIG_ESP_WIFI_DEBUG_PRINT;CONFIG_WPA_DEBUG_PRINT;CONFIG_ESP_WIFI_TESTING_OPTIONS;CONFIG_WPA_TESTING_OPTIONS;CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT;CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER;CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP_COREDUMP_ENABLE_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP_COREDUMP_ENABLE_TO_NONE;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_VOLUME_COUNT;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_SECTOR_512;CONFIG_FATFS_SECTOR_4096;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FATFS_USE_FASTSEEK;CONFIG_FATFS_USE_STRFUNC_NONE;CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV;CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV;CONFIG_FATFS_VFS_FSTAT_BLKSIZE;CONFIG_FATFS_IMMEDIATE_FSYNC;CONFIG_FATFS_USE_LABEL;CONFIG_FATFS_LINK_LOCK;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM;CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_HEAP_USE_HOOKS;CONFIG_HEAP_TASK_TRACKING;CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_ENABLE;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_NETIF_API;CONFIG_LWIP_TCPIP_TASK_PRIO;CONFIG_LWIP_TCPIP_CORE_LOCKING;CONFIG_LWIP_CHECK_THREAD_SAFETY;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_ND6;CONFIG_LWIP_FORCE_ROUTER_FORWARDING;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_LINGER;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_DEFAULT_TTL;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_REASS_MAX_PBUFS;CONFIG_LWIP_IP_FORWARD;CONFIG_LWIP_STATS;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_ESP_MLDV6_REPORT;CONFIG_LWIP_MLDV6_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_DOES_ACD_CHECK;CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP;CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID;CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCP_OPTIONS_LEN;CONFIG_LWIP_NUM_NETIF_CLIENT_DATA;CONFIG_LWIP_DHCP_COARSE_TIMER_SECS;CONFIG_LWIP_DHCPS;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_DHCPS_STATIC_ENTRIES;CONFIG_LWIP_DHCPS_ADD_DNS;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV4;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_OOSEQ_TIMEOUT;CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_TCP_RTO_TIME;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_CHECKSUM_CHECK_IP;CONFIG_LWIP_CHECKSUM_CHECK_UDP;CONFIG_LWIP_CHECKSUM_CHECK_ICMP;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES;CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS;CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_SLIP_SUPPORT;CONFIG_LWIP_ICMP;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_SNTP_MAX_SERVERS;CONFIG_LWIP_DHCP_GET_NTP_SRV;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_LWIP_SNTP_STARTUP_DELAY;CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY;CONFIG_LWIP_DNS_MAX_HOST_IP;CONFIG_LWIP_DNS_MAX_SERVERS;CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT;CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF;CONFIG_LWIP_BRIDGEIF_MAX_PORTS;CONFIG_LWIP_ESP_LWIP_ASSERT;CONFIG_LWIP_HOOK_TCP_ISN_NONE;CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT;CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM;CONFIG_LWIP_HOOK_IP6_ROUTE_NONE;CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT;CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM;CONFIG_LWIP_HOOK_ND6_GET_GW_NONE;CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT;CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_IP6_INPUT_NONE;CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT;CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM;CONFIG_LWIP_DEBUG;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA;CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_SHA3_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_FS_IO;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_PROTOCOL_5;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_MSG_ID_INCREMENTAL;CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED;CONFIG_MQTT_REPORT_DELETED_MESSAGES;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32C3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32C3_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ENCRYPTION;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_SPINEL_ONLY;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_WS_TRANSPORT;CONFIG_WS_BUFFER_SIZE;CONFIG_WS_DYNAMIC_BUFFER;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_64BIT;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SELECT_IN_RAM;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_MAX_COUNT;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_VFS_INITIALIZE_DEV_NULL;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WIFI_PROV_BLE_BONDING;CONFIG_WIFI_PROV_BLE_SEC_CONN;CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION;CONFIG_WIFI_PROV_BLE_NOTIFY;CONFIG_WIFI_PROV_KEEP_BLE_ON_AFTER_PROV;CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_IO_GLITCH_FILTER_TIME_MS;CONFIG_WS2812_LED_ENABLE;CONFIG_WS2812_LED_GPIO;CONFIG_SERIAL_FLASHER_MD5_ENABLED;CONFIG_SERIAL_FLASHER_INTERFACE_UART;CONFIG_SERIAL_FLASHER_INTERFACE_SPI;CONFIG_SERIAL_FLASHER_INTERFACE_USB;CONFIG_SERIAL_FLASHER_INTERFACE_SDIO;CONFIG_SERIAL_FLASHER_RESET_HOLD_TIME_MS;CONFIG_SERIAL_FLASHER_BOOT_HOLD_TIME_MS;CONFIG_SERIAL_FLASHER_DEBUG_TRACE;CONFIG_SERIAL_FLASHER_WRITE_BLOCK_RETRIES;CONFIG_SERIAL_FLASHER_RESET_INVERT;CONFIG_SERIAL_FLASHER_BOOT_INVERT;CONFIG_DIAG_DATA_STORE_RTC;CONFIG_DIAG_DATA_STORE_FLASH;CONFIG_DIAG_DATA_STORE_DBG_PRINTS;CONFIG_DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT;CONFIG_RTC_STORE_DATA_SIZE;CONFIG_RTC_STORE_CRITICAL_DATA_SIZE;CONFIG_DIAG_LOG_MSG_ARG_FORMAT_TLV;CONFIG_DIAG_LOG_MSG_ARG_FORMAT_STRING;CONFIG_DIAG_LOG_MSG_ARG_MAX_SIZE;CONFIG_DIAG_LOG_DROP_WIFI_LOGS;CONFIG_DIAG_ENABLE_WRAP_LOG_FUNCTIONS;CONFIG_DIAG_ENABLE_METRICS;CONFIG_DIAG_METRICS_MAX_COUNT;CONFIG_DIAG_ENABLE_HEAP_METRICS;CONFIG_DIAG_HEAP_POLLING_INTERVAL;CONFIG_DIAG_ENABLE_WIFI_METRICS;CONFIG_DIAG_WIFI_POLLING_INTERVAL;CONFIG_DIAG_ENABLE_VARIABLES;CONFIG_DIAG_VARIABLES_MAX_COUNT;CONFIG_DIAG_ENABLE_NETWORK_VARIABLES;CONFIG_DIAG_MORE_NETWORK_VARS;CONFIG_DIAG_USE_EXTERNAL_LOG_WRAP;CONFIG_ESP_INSIGHTS_ENABLED;CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT;CONFIG_ESP_INSIGHTS_TRANSPORT_HTTPS;CONFIG_ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC;CONFIG_ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC;CONFIG_ESP_INSIGHTS_META_VERSION_10;CONFIG_AUTO_UPDATE_RCP;CONFIG_CREATE_OTA_IMAGE_WITH_RCP_FW;CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL;CONFIG_ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS;CONFIG_JSMN_PARENT_LINKS;CONFIG_JSMN_STRICT;CONFIG_JSMN_STATIC;CONFIG_MDNS_MAX_INTERFACES;CONFIG_MDNS_MAX_SERVICES;CONFIG_MDNS_TASK_PRIORITY;CONFIG_MDNS_ACTION_QUEUE_LEN;CONFIG_MDNS_TASK_STACK_SIZE;CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY;CONFIG_MDNS_TASK_AFFINITY_CPU0;CONFIG_MDNS_TASK_AFFINITY;CONFIG_MDNS_TASK_CREATE_FROM_INTERNAL;CONFIG_MDNS_MEMORY_ALLOC_INTERNAL;CONFIG_MDNS_MEMORY_CUSTOM_IMPL;CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS;CONFIG_MDNS_TIMER_PERIOD_MS;CONFIG_MDNS_NETWORKING_SOCKET;CONFIG_MDNS_SKIP_SUPPRESSING_OWN_QUERIES;CONFIG_MDNS_ENABLE_DEBUG_PRINTS;CONFIG_MDNS_ENABLE_CONSOLE_CLI;CONFIG_MDNS_RESPOND_REVERSE_QUERIES;CONFIG_MDNS_MULTIPLE_INSTANCE;CONFIG_MDNS_PREDEF_NETIF_STA;CONFIG_MDNS_PREDEF_NETIF_AP;CONFIG_MDNS_PREDEF_NETIF_ETH;CONFIG_NETWORK_PROV_NETWORK_TYPE_WIFI;CONFIG_NETWORK_PROV_SCAN_MAX_ENTRIES;CONFIG_NETWORK_PROV_AUTOSTOP_TIMEOUT;CONFIG_NETWORK_PROV_BLE_BONDING;CONFIG_NETWORK_PROV_BLE_SEC_CONN;CONFIG_NETWORK_PROV_BLE_FORCE_ENCRYPTION;CONFIG_NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV;CONFIG_NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN;CONFIG_NETWORK_PROV_WIFI_STA_FAST_SCAN;CONFIG_ESP_RMAKER_LIB_ESP_MQTT;CONFIG_ESP_RMAKER_LIB_AWS_IOT;CONFIG_ESP_RMAKER_MQTT_GLUE_LIB;CONFIG_ESP_RMAKER_MQTT_PORT_443;CONFIG_ESP_RMAKER_MQTT_PORT_8883;CONFIG_ESP_RMAKER_MQTT_PORT;CONFIG_ESP_RMAKER_MQTT_PERSISTENT_SESSION;CONFIG_ESP_RMAKER_MQTT_SEND_USERNAME;CONFIG_ESP_RMAKER_MQTT_PRODUCT_NAME;CONFIG_ESP_RMAKER_MQTT_PRODUCT_VERSION;CONFIG_ESP_RMAKER_MQTT_PRODUCT_SKU;CONFIG_ESP_RMAKER_MQTT_USE_CERT_BUNDLE;CONFIG_ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS;CONFIG_ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL;CONFIG_ESP_RMAKER_NETWORK_OVER_WIFI;CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK;CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY;CONFIG_ESP_RMAKER_FACTORY_PARTITION_NAME;CONFIG_ESP_RMAKER_FACTORY_NAMESPACE;CONFIG_ESP_RMAKER_DEF_TIMEZONE;CONFIG_ESP_RMAKER_SNTP_SERVER_NAME;CONFIG_ESP_RMAKER_MAX_COMMANDS;CONFIG_IDF_EXPERIMENTAL_FEATURES) -# List of deprecated options for backward compatibility -set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") -set(CONFIG_NO_BLOBS "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") -set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL "3") -set(CONFIG_APP_ROLLBACK_ENABLE "y") -set(CONFIG_APP_ANTI_ROLLBACK "") -set(CONFIG_FLASH_ENCRYPTION_ENABLED "") -set(CONFIG_FLASHMODE_QIO "") -set(CONFIG_FLASHMODE_QOUT "") -set(CONFIG_FLASHMODE_DIO "y") -set(CONFIG_FLASHMODE_DOUT "") -set(CONFIG_MONITOR_BAUD "115200") -set(CONFIG_APP_WIFI_PROV_SHOW_QR "y") -set(CONFIG_APP_WIFI_PROV_MAX_POP_MISMATCH "5") -set(CONFIG_APP_WIFI_PROV_TRANSPORT_SOFTAP "") -set(CONFIG_APP_WIFI_PROV_TRANSPORT_BLE "y") -set(CONFIG_APP_WIFI_PROV_TRANSPORT "2") -set(CONFIG_APP_WIFI_RESET_PROV_ON_FAILURE "y") -set(CONFIG_APP_WIFI_SHOW_DEMO_INTRO_TEXT "") -set(CONFIG_APP_WIFI_PROV_TIMEOUT_PERIOD "30") -set(CONFIG_APP_WIFI_PROV_NAME_PREFIX "PROV") -set(CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE "y") -set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") -set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") -set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") -set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") -set(CONFIG_CXX_EXCEPTIONS "") -set(CONFIG_STACK_CHECK_NONE "y") -set(CONFIG_STACK_CHECK_NORM "") -set(CONFIG_STACK_CHECK_STRONG "") -set(CONFIG_STACK_CHECK_ALL "") -set(CONFIG_WARN_WRITE_STRINGS "") -set(CONFIG_ESP32_APPTRACE_DEST_TRAX "") -set(CONFIG_ESP32_APPTRACE_DEST_NONE "y") -set(CONFIG_ESP32_APPTRACE_LOCK_ENABLE "y") -set(CONFIG_BLUEDROID_ENABLED "") -set(CONFIG_NIMBLE_ENABLED "y") -set(CONFIG_NIMBLE_MEM_ALLOC_MODE_INTERNAL "y") -set(CONFIG_NIMBLE_MEM_ALLOC_MODE_DEFAULT "") -set(CONFIG_NIMBLE_MAX_CONNECTIONS "3") -set(CONFIG_NIMBLE_MAX_BONDS "3") -set(CONFIG_NIMBLE_MAX_CCCDS "8") -set(CONFIG_NIMBLE_L2CAP_COC_MAX_NUM "0") -set(CONFIG_NIMBLE_PINNED_TO_CORE "0") -set(CONFIG_NIMBLE_TASK_STACK_SIZE "4096") -set(CONFIG_BT_NIMBLE_TASK_STACK_SIZE "4096") -set(CONFIG_NIMBLE_ROLE_CENTRAL "y") -set(CONFIG_NIMBLE_ROLE_PERIPHERAL "y") -set(CONFIG_NIMBLE_ROLE_BROADCASTER "y") -set(CONFIG_NIMBLE_ROLE_OBSERVER "y") -set(CONFIG_NIMBLE_NVS_PERSIST "") -set(CONFIG_NIMBLE_SM_LEGACY "y") -set(CONFIG_NIMBLE_SM_SC "y") -set(CONFIG_NIMBLE_SM_SC_DEBUG_KEYS "") -set(CONFIG_BT_NIMBLE_SM_SC_LVL "0") -set(CONFIG_NIMBLE_DEBUG "") -set(CONFIG_NIMBLE_SVC_GAP_DEVICE_NAME "nimble") -set(CONFIG_NIMBLE_GAP_DEVICE_NAME_MAX_LEN "31") -set(CONFIG_NIMBLE_ATT_PREFERRED_MTU "256") -set(CONFIG_NIMBLE_SVC_GAP_APPEARANCE "0x0") -set(CONFIG_BT_NIMBLE_MSYS1_BLOCK_COUNT "12") -set(CONFIG_BT_NIMBLE_ACL_BUF_COUNT "24") -set(CONFIG_BT_NIMBLE_ACL_BUF_SIZE "255") -set(CONFIG_BT_NIMBLE_HCI_EVT_BUF_SIZE "70") -set(CONFIG_BT_NIMBLE_HCI_EVT_HI_BUF_COUNT "30") -set(CONFIG_BT_NIMBLE_HCI_EVT_LO_BUF_COUNT "8") -set(CONFIG_NIMBLE_HS_FLOW_CTRL "") -set(CONFIG_NIMBLE_RPA_TIMEOUT "900") -set(CONFIG_NIMBLE_MESH "") -set(CONFIG_NIMBLE_CRYPTO_STACK_MBEDTLS "y") -set(CONFIG_BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EN "") -set(CONFIG_BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS "y") -set(CONFIG_SW_COEXIST_ENABLE "y") -set(CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE "y") -set(CONFIG_ESP_WIFI_SW_COEXIST_ENABLE "y") -set(CONFIG_EVENT_LOOP_PROFILING "") -set(CONFIG_POST_EVENTS_FROM_ISR "y") -set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") -set(CONFIG_GDBSTUB_SUPPORT_TASKS "y") -set(CONFIG_GDBSTUB_MAX_TASKS "32") -set(CONFIG_OTA_ALLOW_HTTP "") -set(CONFIG_ESP_SYSTEM_PD_FLASH "") -set(CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_ESP32C3_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_ESP32C3_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_ESP32C3_RTC_CLK_SRC_INT_8MD256 "") -set(CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE "y") -set(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION "") -set(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER "20") -set(CONFIG_ESP32_PHY_MAX_TX_POWER "20") -set(CONFIG_REDUCE_PHY_TX_POWER "") -set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "") -set(CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU "y") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_80 "") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160 "y") -set(CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ "160") -set(CONFIG_ESP32C3_MEMPROT_FEATURE "y") -set(CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK "y") -set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_CONSOLE_UART_DEFAULT "y") -set(CONFIG_CONSOLE_UART_CUSTOM "") -set(CONFIG_CONSOLE_UART_NONE "") -set(CONFIG_ESP_CONSOLE_UART_NONE "") -set(CONFIG_CONSOLE_UART "y") -set(CONFIG_CONSOLE_UART_NUM "0") -set(CONFIG_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_INT_WDT "y") -set(CONFIG_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_TASK_WDT "y") -set(CONFIG_ESP_TASK_WDT "y") -set(CONFIG_TASK_WDT_PANIC "") -set(CONFIG_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP32C3_DEBUG_OCDAWARE "y") -set(CONFIG_BROWNOUT_DET "y") -set(CONFIG_ESP32C3_BROWNOUT_DET "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7 "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_BROWNOUT_DET_LVL "7") -set(CONFIG_ESP32C3_BROWNOUT_DET_LVL "7") -set(CONFIG_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_TIMER_TASK_STACK_SIZE "3584") -set(CONFIG_ESP32_WIFI_ENABLED "y") -set(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM "10") -set(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM "32") -set(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER "") -set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER "y") -set(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE "1") -set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM "32") -set(CONFIG_ESP32_WIFI_CSI_ENABLED "") -set(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED "y") -set(CONFIG_ESP32_WIFI_TX_BA_WIN "6") -set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") -set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") -set(CONFIG_ESP32_WIFI_NVS_ENABLED "y") -set(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN "752") -set(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM "32") -set(CONFIG_ESP32_WIFI_IRAM_OPT "y") -set(CONFIG_ESP32_WIFI_RX_IRAM_OPT "y") -set(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE "y") -set(CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA "y") -set(CONFIG_WPA_MBEDTLS_CRYPTO "y") -set(CONFIG_WPA_MBEDTLS_TLS_CLIENT "y") -set(CONFIG_WPA_WAPI_PSK "") -set(CONFIG_WPA_SUITE_B_192 "") -set(CONFIG_WPA_11KV_SUPPORT "") -set(CONFIG_WPA_MBO_SUPPORT "") -set(CONFIG_WPA_DPP_SUPPORT "") -set(CONFIG_WPA_11R_SUPPORT "") -set(CONFIG_WPA_WPS_SOFTAP_REGISTRAR "") -set(CONFIG_WPA_WPS_STRICT "") -set(CONFIG_WPA_DEBUG_PRINT "") -set(CONFIG_WPA_TESTING_OPTIONS "") -set(CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH "") -set(CONFIG_ESP32_ENABLE_COREDUMP_TO_UART "") -set(CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE "y") -set(CONFIG_TIMER_TASK_PRIORITY "1") -set(CONFIG_TIMER_TASK_STACK_DEPTH "3120") -set(CONFIG_TIMER_QUEUE_LENGTH "10") -set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") -set(CONFIG_HAL_ASSERTION_SILIENT "") -set(CONFIG_L2_TO_L3_COPY "") -set(CONFIG_ESP_GRATUITOUS_ARP "y") -set(CONFIG_GARP_TMR_INTERVAL "60") -set(CONFIG_TCPIP_RECVMBOX_SIZE "32") -set(CONFIG_TCP_MAXRTX "12") -set(CONFIG_TCP_SYNMAXRTX "12") -set(CONFIG_TCP_MSS "1440") -set(CONFIG_TCP_MSL "60000") -set(CONFIG_TCP_SND_BUF_DEFAULT "5760") -set(CONFIG_TCP_WND_DEFAULT "5760") -set(CONFIG_TCP_RECVMBOX_SIZE "6") -set(CONFIG_TCP_QUEUE_OOSEQ "y") -set(CONFIG_TCP_OVERSIZE_MSS "y") -set(CONFIG_TCP_OVERSIZE_QUARTER_MSS "") -set(CONFIG_TCP_OVERSIZE_DISABLE "") -set(CONFIG_UDP_RECVMBOX_SIZE "6") -set(CONFIG_TCPIP_TASK_STACK_SIZE "3072") -set(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") -set(CONFIG_TCPIP_TASK_AFFINITY_CPU0 "") -set(CONFIG_TCPIP_TASK_AFFINITY "0x7fffffff") -set(CONFIG_PPP_SUPPORT "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_SYSTIMER "") -set(CONFIG_ESP32C3_TIME_SYSCALL_USE_NONE "") -set(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT "5") -set(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") -set(CONFIG_ESP32_PTHREAD_STACK_MIN "768") -set(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT "-1") -set(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") -set(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT "y") -set(CONFIG_SUPPORT_TERMIOS "y") -set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") diff --git a/RainMaker_Table-Lights/build/config/sdkconfig.h b/RainMaker_Table-Lights/build/config/sdkconfig.h deleted file mode 100644 index b73b4d354..000000000 --- a/RainMaker_Table-Lights/build/config/sdkconfig.h +++ /dev/null @@ -1,1154 +0,0 @@ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header - */ -#pragma once -#define CONFIG_SOC_ADC_SUPPORTED 1 -#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 -#define CONFIG_SOC_UART_SUPPORTED 1 -#define CONFIG_SOC_GDMA_SUPPORTED 1 -#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 -#define CONFIG_SOC_GPTIMER_SUPPORTED 1 -#define CONFIG_SOC_TWAI_SUPPORTED 1 -#define CONFIG_SOC_BT_SUPPORTED 1 -#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 -#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 -#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 -#define CONFIG_SOC_XT_WDT_SUPPORTED 1 -#define CONFIG_SOC_PHY_SUPPORTED 1 -#define CONFIG_SOC_WIFI_SUPPORTED 1 -#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 -#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 -#define CONFIG_SOC_EFUSE_HAS_EFUSE_RST_BUG 1 -#define CONFIG_SOC_EFUSE_SUPPORTED 1 -#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 -#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 -#define CONFIG_SOC_I2S_SUPPORTED 1 -#define CONFIG_SOC_RMT_SUPPORTED 1 -#define CONFIG_SOC_SDM_SUPPORTED 1 -#define CONFIG_SOC_GPSPI_SUPPORTED 1 -#define CONFIG_SOC_LEDC_SUPPORTED 1 -#define CONFIG_SOC_I2C_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_SUPPORTED 1 -#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 -#define CONFIG_SOC_AES_SUPPORTED 1 -#define CONFIG_SOC_MPI_SUPPORTED 1 -#define CONFIG_SOC_SHA_SUPPORTED 1 -#define CONFIG_SOC_HMAC_SUPPORTED 1 -#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 -#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 -#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 -#define CONFIG_SOC_MEMPROT_SUPPORTED 1 -#define CONFIG_SOC_BOD_SUPPORTED 1 -#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 -#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 -#define CONFIG_SOC_WDT_SUPPORTED 1 -#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 -#define CONFIG_SOC_RNG_SUPPORTED 1 -#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1 -#define CONFIG_SOC_PM_SUPPORTED 1 -#define CONFIG_SOC_XTAL_SUPPORT_40M 1 -#define CONFIG_SOC_AES_SUPPORT_DMA 1 -#define CONFIG_SOC_AES_GDMA 1 -#define CONFIG_SOC_AES_SUPPORT_AES_128 1 -#define CONFIG_SOC_AES_SUPPORT_AES_256 1 -#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 -#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1 -#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 -#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 -#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 -#define CONFIG_SOC_ADC_PERIPH_NUM 2 -#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 5 -#define CONFIG_SOC_ADC_ATTEN_NUM 4 -#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 -#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 -#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 -#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 -#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 -#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 -#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 -#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 -#define CONFIG_SOC_ADC_SHARED_POWER 1 -#define CONFIG_SOC_APB_BACKUP_DMA 1 -#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 -#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 -#define CONFIG_SOC_CACHE_MEMORY_IBANK_SIZE 0x4000 -#define CONFIG_SOC_CPU_CORES_NUM 1 -#define CONFIG_SOC_CPU_INTR_NUM 32 -#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 -#define CONFIG_SOC_CPU_HAS_CSR_PC 1 -#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 8 -#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 8 -#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 -#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 -#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 -#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 -#define CONFIG_SOC_AHB_GDMA_VERSION 1 -#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 -#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 -#define CONFIG_SOC_GPIO_PORT 1 -#define CONFIG_SOC_GPIO_PIN_COUNT 22 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 -#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 -#define CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP 1 -#define CONFIG_SOC_GPIO_IN_RANGE_MAX 21 -#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 21 -#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK 0 -#define CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT 6 -#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x00000000003FFFC0 -#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 -#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 -#define CONFIG_SOC_I2C_NUM 1 -#define CONFIG_SOC_HP_I2C_NUM 1 -#define CONFIG_SOC_I2C_FIFO_LEN 32 -#define CONFIG_SOC_I2C_CMD_REG_NUM 8 -#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 -#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 -#define CONFIG_SOC_I2C_SUPPORT_RTC 1 -#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 -#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 -#define CONFIG_SOC_I2S_NUM 1 -#define CONFIG_SOC_I2S_HW_VERSION_2 1 -#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 -#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 -#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 -#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 -#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 -#define CONFIG_SOC_LEDC_TIMER_NUM 4 -#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 -#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14 -#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 -#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 -#define CONFIG_SOC_MMU_PERIPH_NUM 1 -#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 -#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 -#define CONFIG_SOC_RMT_GROUPS 1 -#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 -#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 -#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 -#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 -#define CONFIG_SOC_RMT_SUPPORT_APB 1 -#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128 -#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 108 -#define CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND 1 -#define CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND 1 -#define CONFIG_SOC_RTCIO_PIN_COUNT 0 -#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 -#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 -#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 -#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 -#define CONFIG_SOC_SHA_SUPPORT_DMA 1 -#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 -#define CONFIG_SOC_SHA_GDMA 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 -#define CONFIG_SOC_SDM_GROUPS 1 -#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_SPI_PERIPH_NUM 2 -#define CONFIG_SOC_SPI_MAX_CS_NUM 6 -#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 -#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 -#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 -#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 -#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 -#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 -#define CONFIG_SOC_SPI_SCT_REG_NUM 14 -#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 -#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA -#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 -#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 -#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 -#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 -#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 -#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 -#define CONFIG_SOC_TIMER_GROUPS 2 -#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 -#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 -#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 -#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 -#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 -#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1 -#define CONFIG_SOC_TWAI_BRP_MIN 2 -#define CONFIG_SOC_TWAI_BRP_MAX 16384 -#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 -#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 -#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 -#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 -#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 -#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 -#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 -#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 -#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 -#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 -#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16 -#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 512 -#define CONFIG_SOC_UART_NUM 2 -#define CONFIG_SOC_UART_HP_NUM 2 -#define CONFIG_SOC_UART_FIFO_LEN 128 -#define CONFIG_SOC_UART_BITRATE_MAX 5000000 -#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 -#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 -#define CONFIG_SOC_COEX_HW_PTI 1 -#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 -#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 -#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 -#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 -#define CONFIG_SOC_PM_SUPPORT_WIFI_PD 1 -#define CONFIG_SOC_PM_SUPPORT_BT_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 -#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 -#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 -#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1 -#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1 -#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1 -#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 -#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 -#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 -#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 -#define CONFIG_SOC_WIFI_HW_TSF 1 -#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 -#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 -#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 -#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 -#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 -#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1 -#define CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND 1 -#define CONFIG_SOC_BLE_SUPPORTED 1 -#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 -#define CONFIG_SOC_BLE_50_SUPPORTED 1 -#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 -#define CONFIG_SOC_BLUFI_SUPPORTED 1 -#define CONFIG_SOC_PHY_COMBO_MODULE 1 -#define CONFIG_IDF_CMAKE 1 -#define CONFIG_IDF_TOOLCHAIN "gcc" -#define CONFIG_IDF_TOOLCHAIN_GCC 1 -#define CONFIG_IDF_TARGET_ARCH_RISCV 1 -#define CONFIG_IDF_TARGET_ARCH "riscv" -#define CONFIG_IDF_TARGET "esp32c3" -#define CONFIG_IDF_INIT_VERSION "5.4.1" -#define CONFIG_IDF_TARGET_ESP32C3 1 -#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0005 -#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 -#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 -#define CONFIG_APP_BUILD_BOOTLOADER 1 -#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 -#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 -#define CONFIG_BOOTLOADER_PROJECT_VER 1 -#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 -#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL 3 -#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 -#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 -#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 -#define CONFIG_BOOTLOADER_WDT_ENABLE 1 -#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 -#define CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE 1 -#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 -#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 -#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 -#define CONFIG_APP_COMPILE_TIME_DATE 1 -#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 -#define CONFIG_ESP_ROM_HAS_CRC_LE 1 -#define CONFIG_ESP_ROM_HAS_CRC_BE 1 -#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 -#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 -#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 -#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 -#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 -#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 -#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 -#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 -#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 -#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 -#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 -#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 -#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 -#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 -#define CONFIG_ESP_ROM_USB_OTG_NUM -1 -#define CONFIG_ESP_ROM_HAS_VERSION 1 -#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 -#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 -#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 -#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 -#define CONFIG_ESPTOOLPY_FLASHMODE "dio" -#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 -#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" -#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 -#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" -#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 -#define CONFIG_ESPTOOLPY_BEFORE "default_reset" -#define CONFIG_ESPTOOLPY_AFTER_RESET 1 -#define CONFIG_ESPTOOLPY_AFTER "hard_reset" -#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 -#define CONFIG_PARTITION_TABLE_CUSTOM 1 -#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_4mb_optimised.csv" -#define CONFIG_PARTITION_TABLE_FILENAME "partitions_4mb_optimised.csv" -#define CONFIG_PARTITION_TABLE_OFFSET 0xc000 -#define CONFIG_PARTITION_TABLE_MD5 1 -#define CONFIG_EXAMPLE_BOARD_BUTTON_GPIO 9 -#define CONFIG_APP_NETWORK_PROV_SHOW_QR 1 -#define CONFIG_APP_NETWORK_PROV_MAX_POP_MISMATCH 5 -#define CONFIG_APP_NETWORK_PROV_TRANSPORT_BLE 1 -#define CONFIG_APP_NETWORK_PROV_TRANSPORT 2 -#define CONFIG_APP_NETWORK_RESET_PROV_ON_FAILURE 1 -#define CONFIG_APP_NETWORK_PROV_MAX_RETRY_CNT 5 -#define CONFIG_APP_NETWORK_PROV_TIMEOUT_PERIOD 30 -#define CONFIG_APP_NETWORK_PROV_NAME_PREFIX "PROV" -#define CONFIG_APP_WIFI_PROV_COMPAT 1 -#define CONFIG_ESP_RMAKER_SELF_CLAIM 1 -#define CONFIG_ESP_RMAKER_USE_NVS 1 -#define CONFIG_ESP_RMAKER_CLAIM_TYPE 1 -#define CONFIG_ESP_RMAKER_CLAIM_SERVICE_BASE_URL "https://esp-claiming.rainmaker.espressif.com" -#define CONFIG_ESP_RMAKER_MQTT_HOST "a1p72mufdu6064-ats.iot.us-east-1.amazonaws.com" -#define CONFIG_ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS 1 -#define CONFIG_ESP_RMAKER_MQTT_ENABLE_BUDGETING 1 -#define CONFIG_ESP_RMAKER_MQTT_DEFAULT_BUDGET 100 -#define CONFIG_ESP_RMAKER_MQTT_MAX_BUDGET 1024 -#define CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD 5 -#define CONFIG_ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT 1 -#define CONFIG_ESP_RMAKER_MAX_PARAM_DATA_SIZE 1024 -#define CONFIG_ESP_RMAKER_USER_ID_CHECK 1 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE 1 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE 1 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_HTTP_PORT 8080 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_STACK_SIZE 6144 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY_1 1 -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_SECURITY 1 -#define CONFIG_ESP_RMAKER_CONSOLE_UART_NUM_0 1 -#define CONFIG_ESP_RMAKER_CONSOLE_UART_NUM 0 -#define CONFIG_ESP_RMAKER_USE_CERT_BUNDLE 1 -#define CONFIG_ESP_RMAKER_OTA_AUTOFETCH 1 -#define CONFIG_ESP_RMAKER_OTA_AUTOFETCH_PERIOD 0 -#define CONFIG_ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE 1024 -#define CONFIG_ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD 90 -#define CONFIG_ESP_RMAKER_OTA_TIME_SUPPORT 1 -#define CONFIG_ESP_RMAKER_OTA_MAX_RETRIES 3 -#define CONFIG_ESP_RMAKER_OTA_RETRY_DELAY_MINUTES 5 -#define CONFIG_ESP_RMAKER_SCHEDULING_MAX_SCHEDULES 10 -#define CONFIG_ESP_RMAKER_SCENES_MAX_SCENES 10 -#define CONFIG_ESP_RMAKER_CMD_RESP_ENABLE 1 -#define CONFIG_ESP_RMAKER_USING_NETWORK_PROV 1 -#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 -#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 -#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 -#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 -#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 -#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 -#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 -#define CONFIG_COMPILER_RT_LIB_NAME "gcc" -#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 -#define CONFIG_APPTRACE_DEST_NONE 1 -#define CONFIG_APPTRACE_DEST_UART_NONE 1 -#define CONFIG_APPTRACE_UART_TASK_PRIO 1 -#define CONFIG_APPTRACE_LOCK_ENABLE 1 -#define CONFIG_BT_ENABLED 1 -#define CONFIG_BT_NIMBLE_ENABLED 1 -#define CONFIG_BT_CONTROLLER_ENABLED 1 -#define CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL 1 -#define CONFIG_BT_NIMBLE_LOG_LEVEL_INFO 1 -#define CONFIG_BT_NIMBLE_LOG_LEVEL 1 -#define CONFIG_BT_NIMBLE_MAX_CONNECTIONS 3 -#define CONFIG_BT_NIMBLE_MAX_BONDS 3 -#define CONFIG_BT_NIMBLE_MAX_CCCDS 8 -#define CONFIG_BT_NIMBLE_L2CAP_COC_MAX_NUM 0 -#define CONFIG_BT_NIMBLE_PINNED_TO_CORE 0 -#define CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE 4096 -#define CONFIG_BT_NIMBLE_ROLE_CENTRAL 1 -#define CONFIG_BT_NIMBLE_ROLE_PERIPHERAL 1 -#define CONFIG_BT_NIMBLE_ROLE_BROADCASTER 1 -#define CONFIG_BT_NIMBLE_ROLE_OBSERVER 1 -#define CONFIG_BT_NIMBLE_SECURITY_ENABLE 1 -#define CONFIG_BT_NIMBLE_SM_LEGACY 1 -#define CONFIG_BT_NIMBLE_SM_SC 1 -#define CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION 1 -#define CONFIG_BT_NIMBLE_SM_LVL 0 -#define CONFIG_BT_NIMBLE_SM_SC_ONLY 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_DEVICE_NAME "nimble" -#define CONFIG_BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN 31 -#define CONFIG_BT_NIMBLE_ATT_PREFERRED_MTU 256 -#define CONFIG_BT_NIMBLE_SVC_GAP_APPEARANCE 0x0 -#define CONFIG_BT_NIMBLE_MSYS_1_BLOCK_COUNT 12 -#define CONFIG_BT_NIMBLE_MSYS_1_BLOCK_SIZE 256 -#define CONFIG_BT_NIMBLE_MSYS_2_BLOCK_COUNT 24 -#define CONFIG_BT_NIMBLE_MSYS_2_BLOCK_SIZE 320 -#define CONFIG_BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT 24 -#define CONFIG_BT_NIMBLE_TRANSPORT_ACL_SIZE 255 -#define CONFIG_BT_NIMBLE_TRANSPORT_EVT_SIZE 70 -#define CONFIG_BT_NIMBLE_TRANSPORT_EVT_COUNT 30 -#define CONFIG_BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT 8 -#define CONFIG_BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT 1 -#define CONFIG_BT_NIMBLE_GATT_MAX_PROCS 4 -#define CONFIG_BT_NIMBLE_RPA_TIMEOUT 900 -#define CONFIG_BT_NIMBLE_CRYPTO_STACK_MBEDTLS 1 -#define CONFIG_BT_NIMBLE_HS_STOP_TIMEOUT_MS 2000 -#define CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT 1 -#define CONFIG_BT_NIMBLE_MAX_CONN_REATTEMPT 3 -#define CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT 1 -#define CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY 1 -#define CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY 1 -#define CONFIG_BT_NIMBLE_EXT_SCAN 1 -#define CONFIG_BT_NIMBLE_ENABLE_PERIODIC_SYNC 1 -#define CONFIG_BT_NIMBLE_MAX_PERIODIC_SYNCS 0 -#define CONFIG_BT_NIMBLE_WHITELIST_SIZE 12 -#define CONFIG_BT_NIMBLE_USE_ESP_TIMER 1 -#define CONFIG_BT_NIMBLE_LEGACY_VHCI_ENABLE 1 -#define CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP 1 -#define CONFIG_BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION -1 -#define CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY 0 -#define CONFIG_BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO 0 -#define CONFIG_UART_HW_FLOWCTRL_DISABLE 1 -#define CONFIG_BT_NIMBLE_HCI_UART_FLOW_CTRL 0 -#define CONFIG_BT_NIMBLE_HCI_UART_RTS_PIN 19 -#define CONFIG_BT_NIMBLE_HCI_UART_CTS_PIN 23 -#define CONFIG_BT_NIMBLE_EATT_CHAN_NUM 0 -#define CONFIG_BT_CTRL_MODE_EFF 1 -#define CONFIG_BT_CTRL_BLE_MAX_ACT 6 -#define CONFIG_BT_CTRL_BLE_MAX_ACT_EFF 6 -#define CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB 0 -#define CONFIG_BT_CTRL_PINNED_TO_CORE 0 -#define CONFIG_BT_CTRL_HCI_MODE_VHCI 1 -#define CONFIG_BT_CTRL_HCI_TL 1 -#define CONFIG_BT_CTRL_ADV_DUP_FILT_MAX 30 -#define CONFIG_BT_BLE_CCA_MODE_NONE 1 -#define CONFIG_BT_BLE_CCA_MODE 0 -#define CONFIG_BT_CTRL_HW_CCA_VAL 20 -#define CONFIG_BT_CTRL_HW_CCA_EFF 0 -#define CONFIG_BT_CTRL_CE_LENGTH_TYPE_ORIG 1 -#define CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF 0 -#define CONFIG_BT_CTRL_TX_ANTENNA_INDEX_0 1 -#define CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF 0 -#define CONFIG_BT_CTRL_RX_ANTENNA_INDEX_0 1 -#define CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF 0 -#define CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_P9 1 -#define CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF 11 -#define CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP 1 -#define CONFIG_BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM 100 -#define CONFIG_BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD 20 -#define CONFIG_BT_CTRL_BLE_SCAN_DUPL 1 -#define CONFIG_BT_CTRL_SCAN_DUPL_TYPE_DEVICE 1 -#define CONFIG_BT_CTRL_SCAN_DUPL_TYPE 0 -#define CONFIG_BT_CTRL_SCAN_DUPL_CACHE_SIZE 100 -#define CONFIG_BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD 0 -#define CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS 1 -#define CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF 0 -#define CONFIG_BT_CTRL_SLEEP_MODE_EFF 0 -#define CONFIG_BT_CTRL_SLEEP_CLOCK_EFF 0 -#define CONFIG_BT_CTRL_HCI_TL_EFF 1 -#define CONFIG_BT_CTRL_CHAN_ASS_EN 1 -#define CONFIG_BT_CTRL_LE_PING_EN 1 -#define CONFIG_BT_ALARM_MAX_NUM 50 -#define CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM 1 -#define CONFIG_EFUSE_MAX_BLK_LEN 256 -#define CONFIG_ESP_TLS_USING_MBEDTLS 1 -#define CONFIG_ESP_TLS_USE_DS_PERIPHERAL 1 -#define CONFIG_ESP_COEX_ENABLED 1 -#define CONFIG_ESP_COEX_SW_COEXIST_ENABLE 1 -#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 -#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 -#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 -#define CONFIG_USJ_ENABLE_USB_SERIAL_JTAG 1 -#define CONFIG_ETH_ENABLED 1 -#define CONFIG_ETH_USE_SPI_ETHERNET 1 -#define CONFIG_ESP_EVENT_POST_FROM_ISR 1 -#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1 -#define CONFIG_ESP_GDBSTUB_ENABLED 1 -#define CONFIG_ESP_GDBSTUB_SUPPORT_TASKS 1 -#define CONFIG_ESP_GDBSTUB_MAX_TASKS 32 -#define CONFIG_ESPHID_TASK_SIZE_BT 2048 -#define CONFIG_ESPHID_TASK_SIZE_BLE 4096 -#define CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS 1 -#define CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT 2000 -#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 512 -#define CONFIG_HTTPD_MAX_URI_LEN 512 -#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 -#define CONFIG_HTTPD_PURGE_BUF_LEN 32 -#define CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT 2000 -#define CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT 2000 -#define CONFIG_ESP_HTTPS_SERVER_ENABLE 1 -#define CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT 2000 -#define CONFIG_ESP32C3_REV_MIN_3 1 -#define CONFIG_ESP32C3_REV_MIN_FULL 3 -#define CONFIG_ESP_REV_MIN_FULL 3 -#define CONFIG_ESP32C3_REV_MAX_FULL 199 -#define CONFIG_ESP_REV_MAX_FULL 199 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 -#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 -#define CONFIG_ESP32C3_UNIVERSAL_MAC_ADDRESSES 4 -#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 -#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 -#define CONFIG_RTC_CLK_SRC_INT_RC 1 -#define CONFIG_RTC_CLK_CAL_CYCLES 1024 -#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_XTAL_FREQ_40 1 -#define CONFIG_XTAL_FREQ 40 -#define CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM 1 -#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 -#define CONFIG_ESP_NETIF_TCPIP_LWIP 1 -#define CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API 1 -#define CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC 1 -#define CONFIG_ESP_PHY_ENABLED 1 -#define CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE 1 -#define CONFIG_ESP_PHY_MAX_WIFI_TX_POWER 20 -#define CONFIG_ESP_PHY_MAX_TX_POWER 20 -#define CONFIG_ESP_PHY_ENABLE_USB 1 -#define CONFIG_ESP_PHY_RF_CAL_PARTIAL 1 -#define CONFIG_ESP_PHY_CALIBRATION_MODE 0 -#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 -#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 -#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 -#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 -#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 -#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 -#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 -#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 -#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 -#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 -#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 -#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 -#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 -#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 -#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 -#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 -#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 -#define CONFIG_ESP_CONSOLE_UART 1 -#define CONFIG_ESP_CONSOLE_UART_NUM 0 -#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 -#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 -#define CONFIG_ESP_INT_WDT 1 -#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 -#define CONFIG_ESP_TASK_WDT_EN 1 -#define CONFIG_ESP_TASK_WDT_INIT 1 -#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 -#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 -#define CONFIG_ESP_DEBUG_OCDAWARE 1 -#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 -#define CONFIG_ESP_BROWNOUT_DET 1 -#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 -#define CONFIG_ESP_BROWNOUT_DET_LVL 7 -#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 -#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 -#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 -#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 -#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1 -#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1 -#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 -#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 -#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0 -#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1 -#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 -#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1 -#define CONFIG_ESP_WIFI_ENABLED 1 -#define CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM 10 -#define CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM 32 -#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER 1 -#define CONFIG_ESP_WIFI_TX_BUFFER_TYPE 1 -#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM 32 -#define CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER 1 -#define CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF 0 -#define CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF 5 -#define CONFIG_ESP_WIFI_AMPDU_TX_ENABLED 1 -#define CONFIG_ESP_WIFI_TX_BA_WIN 6 -#define CONFIG_ESP_WIFI_AMPDU_RX_ENABLED 1 -#define CONFIG_ESP_WIFI_RX_BA_WIN 6 -#define CONFIG_ESP_WIFI_NVS_ENABLED 1 -#define CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN 752 -#define CONFIG_ESP_WIFI_MGMT_SBUF_NUM 32 -#define CONFIG_ESP_WIFI_IRAM_OPT 1 -#define CONFIG_ESP_WIFI_RX_IRAM_OPT 1 -#define CONFIG_ESP_WIFI_ENABLE_WPA3_SAE 1 -#define CONFIG_ESP_WIFI_ENABLE_SAE_PK 1 -#define CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT 1 -#define CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA 1 -#define CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME 50 -#define CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME 10 -#define CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME 15 -#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1 -#define CONFIG_ESP_WIFI_GMAC_SUPPORT 1 -#define CONFIG_ESP_WIFI_SOFTAP_SUPPORT 1 -#define CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM 7 -#define CONFIG_ESP_WIFI_MBEDTLS_CRYPTO 1 -#define CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT 1 -#define CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT 1 -#define CONFIG_ESP_COREDUMP_ENABLE_TO_NONE 1 -#define CONFIG_FATFS_VOLUME_COUNT 2 -#define CONFIG_FATFS_LFN_NONE 1 -#define CONFIG_FATFS_SECTOR_4096 1 -#define CONFIG_FATFS_CODEPAGE_437 1 -#define CONFIG_FATFS_CODEPAGE 437 -#define CONFIG_FATFS_FS_LOCK 0 -#define CONFIG_FATFS_TIMEOUT_MS 10000 -#define CONFIG_FATFS_PER_FILE_CACHE 1 -#define CONFIG_FATFS_USE_STRFUNC_NONE 1 -#define CONFIG_FATFS_VFS_FSTAT_BLKSIZE 0 -#define CONFIG_FATFS_LINK_LOCK 1 -#define CONFIG_FREERTOS_UNICORE 1 -#define CONFIG_FREERTOS_HZ 100 -#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 -#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 -#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 -#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 -#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 -#define CONFIG_FREERTOS_USE_TIMERS 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" -#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 -#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 3120 -#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 -#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 -#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 -#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 -#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 -#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 -#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 -#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 -#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 -#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 -#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 -#define CONFIG_FREERTOS_PORT 1 -#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 -#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 -#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 -#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 -#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 -#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 -#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 -#define CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM 1 -#define CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM 1 -#define CONFIG_HEAP_POISONING_DISABLED 1 -#define CONFIG_HEAP_TRACING_OFF 1 -#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 -#define CONFIG_LOG_DEFAULT_LEVEL 3 -#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 -#define CONFIG_LOG_MAXIMUM_LEVEL 3 -#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 -#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 -#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 -#define CONFIG_LWIP_ENABLE 1 -#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" -#define CONFIG_LWIP_TCPIP_TASK_PRIO 18 -#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 -#define CONFIG_LWIP_TIMERS_ONDEMAND 1 -#define CONFIG_LWIP_ND6 1 -#define CONFIG_LWIP_MAX_SOCKETS 10 -#define CONFIG_LWIP_SO_REUSE 1 -#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 -#define CONFIG_LWIP_IP_DEFAULT_TTL 64 -#define CONFIG_LWIP_IP4_FRAG 1 -#define CONFIG_LWIP_IP6_FRAG 1 -#define CONFIG_LWIP_IP_REASS_MAX_PBUFS 10 -#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 -#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 -#define CONFIG_LWIP_ESP_MLDV6_REPORT 1 -#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40 -#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 -#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 -#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1 -#define CONFIG_LWIP_DHCP_OPTIONS_LEN 68 -#define CONFIG_LWIP_NUM_NETIF_CLIENT_DATA 0 -#define CONFIG_LWIP_DHCP_COARSE_TIMER_SECS 1 -#define CONFIG_LWIP_DHCPS 1 -#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60 -#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 -#define CONFIG_LWIP_DHCPS_STATIC_ENTRIES 1 -#define CONFIG_LWIP_DHCPS_ADD_DNS 1 -#define CONFIG_LWIP_IPV4 1 -#define CONFIG_LWIP_IPV6 1 -#define CONFIG_LWIP_IPV6_NUM_ADDRESSES 3 -#define CONFIG_LWIP_NETIF_LOOPBACK 1 -#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8 -#define CONFIG_LWIP_MAX_ACTIVE_TCP 16 -#define CONFIG_LWIP_MAX_LISTENING_TCP 16 -#define CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION 1 -#define CONFIG_LWIP_TCP_MAXRTX 12 -#define CONFIG_LWIP_TCP_SYNMAXRTX 12 -#define CONFIG_LWIP_TCP_MSS 1440 -#define CONFIG_LWIP_TCP_TMR_INTERVAL 250 -#define CONFIG_LWIP_TCP_MSL 60000 -#define CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT 20000 -#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5760 -#define CONFIG_LWIP_TCP_WND_DEFAULT 5760 -#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 -#define CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE 6 -#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 -#define CONFIG_LWIP_TCP_OOSEQ_TIMEOUT 6 -#define CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS 4 -#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1 -#define CONFIG_LWIP_TCP_RTO_TIME 1500 -#define CONFIG_LWIP_MAX_UDP_PCBS 16 -#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6 -#define CONFIG_LWIP_CHECKSUM_CHECK_ICMP 1 -#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072 -#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1 -#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF -#define CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE 3 -#define CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS 5 -#define CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES 5 -#define CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS 3 -#define CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS 10 -#define CONFIG_LWIP_ICMP 1 -#define CONFIG_LWIP_MAX_RAW_PCBS 16 -#define CONFIG_LWIP_SNTP_MAX_SERVERS 1 -#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000 -#define CONFIG_LWIP_SNTP_STARTUP_DELAY 1 -#define CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY 5000 -#define CONFIG_LWIP_DNS_MAX_HOST_IP 1 -#define CONFIG_LWIP_DNS_MAX_SERVERS 3 -#define CONFIG_LWIP_BRIDGEIF_MAX_PORTS 7 -#define CONFIG_LWIP_ESP_LWIP_ASSERT 1 -#define CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT 1 -#define CONFIG_LWIP_HOOK_IP6_ROUTE_NONE 1 -#define CONFIG_LWIP_HOOK_ND6_GET_GW_NONE 1 -#define CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE 1 -#define CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE 1 -#define CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE 1 -#define CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT 1 -#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1 -#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1 -#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384 -#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096 -#define CONFIG_MBEDTLS_DYNAMIC_BUFFER 1 -#define CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA 1 -#define CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT 1 -#define CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE 1 -#define CONFIG_MBEDTLS_PKCS7_C 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS 200 -#define CONFIG_MBEDTLS_CMAC_C 1 -#define CONFIG_MBEDTLS_HARDWARE_AES 1 -#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1 -#define CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL 0 -#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 -#define CONFIG_MBEDTLS_HARDWARE_MPI 1 -#define CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI 1 -#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 -#define CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL 0 -#define CONFIG_MBEDTLS_HARDWARE_SHA 1 -#define CONFIG_MBEDTLS_ROM_MD5 1 -#define CONFIG_MBEDTLS_HAVE_TIME 1 -#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1 -#define CONFIG_MBEDTLS_SHA512_C 1 -#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 -#define CONFIG_MBEDTLS_TLS_SERVER 1 -#define CONFIG_MBEDTLS_TLS_CLIENT 1 -#define CONFIG_MBEDTLS_TLS_ENABLED 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1 -#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 -#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 -#define CONFIG_MBEDTLS_SSL_ALPN 1 -#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1 -#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1 -#define CONFIG_MBEDTLS_AES_C 1 -#define CONFIG_MBEDTLS_CCM_C 1 -#define CONFIG_MBEDTLS_GCM_C 1 -#define CONFIG_MBEDTLS_PEM_PARSE_C 1 -#define CONFIG_MBEDTLS_PEM_WRITE_C 1 -#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 -#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 -#define CONFIG_MBEDTLS_ECP_C 1 -#define CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED 1 -#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 -#define CONFIG_MBEDTLS_ECDH_C 1 -#define CONFIG_MBEDTLS_ECDSA_C 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 -#define CONFIG_MBEDTLS_ERROR_STRINGS 1 -#define CONFIG_MBEDTLS_FS_IO 1 -#define CONFIG_MQTT_PROTOCOL_311 1 -#define CONFIG_MQTT_TRANSPORT_SSL 1 -#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1 -#define CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE 1 -#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 -#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 -#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1 -#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 1 -#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 1 -#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 1 -#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION 1 -#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5 -#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072 -#define CONFIG_PTHREAD_STACK_MIN 768 -#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1 -#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" -#define CONFIG_MMU_PAGE_SIZE_64KB 1 -#define CONFIG_MMU_PAGE_MODE "64KB" -#define CONFIG_MMU_PAGE_SIZE 0x10000 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 -#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 -#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 -#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 -#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 -#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 -#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 -#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 -#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED 1 -#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED 1 -#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1 -#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1 -#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 -#define CONFIG_SPIFFS_MAX_PARTITIONS 3 -#define CONFIG_SPIFFS_CACHE 1 -#define CONFIG_SPIFFS_CACHE_WR 1 -#define CONFIG_SPIFFS_PAGE_CHECK 1 -#define CONFIG_SPIFFS_GC_MAX_RUNS 10 -#define CONFIG_SPIFFS_PAGE_SIZE 256 -#define CONFIG_SPIFFS_OBJ_NAME_LEN 32 -#define CONFIG_SPIFFS_USE_MAGIC 1 -#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1 -#define CONFIG_SPIFFS_META_LENGTH 4 -#define CONFIG_SPIFFS_USE_MTIME 1 -#define CONFIG_WS_TRANSPORT 1 -#define CONFIG_WS_BUFFER_SIZE 1024 -#define CONFIG_UNITY_ENABLE_FLOAT 1 -#define CONFIG_UNITY_ENABLE_DOUBLE 1 -#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1 -#define CONFIG_VFS_SUPPORT_IO 1 -#define CONFIG_VFS_SUPPORT_DIR 1 -#define CONFIG_VFS_SUPPORT_SELECT 1 -#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1 -#define CONFIG_VFS_SUPPORT_TERMIOS 1 -#define CONFIG_VFS_MAX_COUNT 8 -#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1 -#define CONFIG_VFS_INITIALIZE_DEV_NULL 1 -#define CONFIG_WL_SECTOR_SIZE_4096 1 -#define CONFIG_WL_SECTOR_SIZE 4096 -#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16 -#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30 -#define CONFIG_WIFI_PROV_BLE_SEC_CONN 1 -#define CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN 1 -#define CONFIG_IO_GLITCH_FILTER_TIME_MS 50 -#define CONFIG_WS2812_LED_ENABLE 1 -#define CONFIG_WS2812_LED_GPIO 8 -#define CONFIG_SERIAL_FLASHER_MD5_ENABLED 1 -#define CONFIG_SERIAL_FLASHER_INTERFACE_UART 1 -#define CONFIG_SERIAL_FLASHER_RESET_HOLD_TIME_MS 100 -#define CONFIG_SERIAL_FLASHER_BOOT_HOLD_TIME_MS 50 -#define CONFIG_SERIAL_FLASHER_WRITE_BLOCK_RETRIES 3 -#define CONFIG_DIAG_DATA_STORE_RTC 1 -#define CONFIG_DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT 80 -#define CONFIG_RTC_STORE_DATA_SIZE 6144 -#define CONFIG_RTC_STORE_CRITICAL_DATA_SIZE 4096 -#define CONFIG_DIAG_LOG_MSG_ARG_FORMAT_TLV 1 -#define CONFIG_DIAG_LOG_MSG_ARG_MAX_SIZE 64 -#define CONFIG_DIAG_LOG_DROP_WIFI_LOGS 1 -#define CONFIG_DIAG_ENABLE_METRICS 1 -#define CONFIG_DIAG_METRICS_MAX_COUNT 20 -#define CONFIG_DIAG_ENABLE_HEAP_METRICS 1 -#define CONFIG_DIAG_HEAP_POLLING_INTERVAL 30 -#define CONFIG_DIAG_ENABLE_WIFI_METRICS 1 -#define CONFIG_DIAG_WIFI_POLLING_INTERVAL 30 -#define CONFIG_DIAG_ENABLE_VARIABLES 1 -#define CONFIG_DIAG_VARIABLES_MAX_COUNT 20 -#define CONFIG_DIAG_ENABLE_NETWORK_VARIABLES 1 -#define CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT 1 -#define CONFIG_ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC 60 -#define CONFIG_ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC 240 -#define CONFIG_ESP_INSIGHTS_META_VERSION_10 1 -#define CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL 1 -#define CONFIG_MDNS_MAX_INTERFACES 3 -#define CONFIG_MDNS_MAX_SERVICES 10 -#define CONFIG_MDNS_TASK_PRIORITY 1 -#define CONFIG_MDNS_ACTION_QUEUE_LEN 16 -#define CONFIG_MDNS_TASK_STACK_SIZE 4096 -#define CONFIG_MDNS_TASK_AFFINITY_CPU0 1 -#define CONFIG_MDNS_TASK_AFFINITY 0x0 -#define CONFIG_MDNS_TASK_CREATE_FROM_INTERNAL 1 -#define CONFIG_MDNS_MEMORY_ALLOC_INTERNAL 1 -#define CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS 2000 -#define CONFIG_MDNS_TIMER_PERIOD_MS 100 -#define CONFIG_MDNS_ENABLE_CONSOLE_CLI 1 -#define CONFIG_MDNS_MULTIPLE_INSTANCE 1 -#define CONFIG_MDNS_PREDEF_NETIF_STA 1 -#define CONFIG_MDNS_PREDEF_NETIF_AP 1 -#define CONFIG_MDNS_PREDEF_NETIF_ETH 1 -#define CONFIG_NETWORK_PROV_NETWORK_TYPE_WIFI 1 -#define CONFIG_NETWORK_PROV_SCAN_MAX_ENTRIES 16 -#define CONFIG_NETWORK_PROV_AUTOSTOP_TIMEOUT 30 -#define CONFIG_NETWORK_PROV_BLE_SEC_CONN 1 -#define CONFIG_NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN 1 -#define CONFIG_ESP_RMAKER_LIB_ESP_MQTT 1 -#define CONFIG_ESP_RMAKER_MQTT_GLUE_LIB 1 -#define CONFIG_ESP_RMAKER_MQTT_PORT_443 1 -#define CONFIG_ESP_RMAKER_MQTT_PORT 1 -#define CONFIG_ESP_RMAKER_MQTT_SEND_USERNAME 1 -#define CONFIG_ESP_RMAKER_MQTT_PRODUCT_NAME "RMDev" -#define CONFIG_ESP_RMAKER_MQTT_PRODUCT_VERSION "1x0" -#define CONFIG_ESP_RMAKER_MQTT_PRODUCT_SKU "EX00" -#define CONFIG_ESP_RMAKER_MQTT_USE_CERT_BUNDLE 1 -#define CONFIG_ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS 10 -#define CONFIG_ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL 120 -#define CONFIG_ESP_RMAKER_NETWORK_OVER_WIFI 1 -#define CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK 5120 -#define CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY 5 -#define CONFIG_ESP_RMAKER_FACTORY_PARTITION_NAME "fctry" -#define CONFIG_ESP_RMAKER_FACTORY_NAMESPACE "rmaker_creds" -#define CONFIG_ESP_RMAKER_DEF_TIMEZONE "Asia/Shanghai" -#define CONFIG_ESP_RMAKER_SNTP_SERVER_NAME "pool.ntp.org" -#define CONFIG_ESP_RMAKER_MAX_COMMANDS 10 - -/* List of deprecated options */ -#define CONFIG_APP_ROLLBACK_ENABLE CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE -#define CONFIG_APP_WIFI_PROV_MAX_POP_MISMATCH CONFIG_APP_NETWORK_PROV_MAX_POP_MISMATCH -#define CONFIG_APP_WIFI_PROV_NAME_PREFIX CONFIG_APP_NETWORK_PROV_NAME_PREFIX -#define CONFIG_APP_WIFI_PROV_SHOW_QR CONFIG_APP_NETWORK_PROV_SHOW_QR -#define CONFIG_APP_WIFI_PROV_TIMEOUT_PERIOD CONFIG_APP_NETWORK_PROV_TIMEOUT_PERIOD -#define CONFIG_APP_WIFI_PROV_TRANSPORT CONFIG_APP_NETWORK_PROV_TRANSPORT -#define CONFIG_APP_WIFI_PROV_TRANSPORT_BLE CONFIG_APP_NETWORK_PROV_TRANSPORT_BLE -#define CONFIG_APP_WIFI_RESET_PROV_ON_FAILURE CONFIG_APP_NETWORK_RESET_PROV_ON_FAILURE -#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET -#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL -#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 -#define CONFIG_BT_NIMBLE_ACL_BUF_COUNT CONFIG_BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT -#define CONFIG_BT_NIMBLE_ACL_BUF_SIZE CONFIG_BT_NIMBLE_TRANSPORT_ACL_SIZE -#define CONFIG_BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS -#define CONFIG_BT_NIMBLE_HCI_EVT_BUF_SIZE CONFIG_BT_NIMBLE_TRANSPORT_EVT_SIZE -#define CONFIG_BT_NIMBLE_HCI_EVT_HI_BUF_COUNT CONFIG_BT_NIMBLE_TRANSPORT_EVT_COUNT -#define CONFIG_BT_NIMBLE_HCI_EVT_LO_BUF_COUNT CONFIG_BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT -#define CONFIG_BT_NIMBLE_MSYS1_BLOCK_COUNT CONFIG_BT_NIMBLE_MSYS_1_BLOCK_COUNT -#define CONFIG_BT_NIMBLE_SM_SC_LVL CONFIG_BT_NIMBLE_SM_LVL -#define CONFIG_BT_NIMBLE_TASK_STACK_SIZE CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE -#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART -#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE -#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT -#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM -#define CONFIG_ESP32C3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET -#define CONFIG_ESP32C3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL -#define CONFIG_ESP32C3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 -#define CONFIG_ESP32C3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE -#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 -#define CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ -#define CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND -#define CONFIG_ESP32C3_MEMPROT_FEATURE CONFIG_ESP_SYSTEM_MEMPROT_FEATURE -#define CONFIG_ESP32C3_MEMPROT_FEATURE_LOCK CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK -#define CONFIG_ESP32C3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES -#define CONFIG_ESP32C3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC -#define CONFIG_ESP32C3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT -#define CONFIG_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE -#define CONFIG_ESP32_APPTRACE_LOCK_ENABLE CONFIG_APPTRACE_LOCK_ENABLE -#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE CONFIG_ESP_COREDUMP_ENABLE_TO_NONE -#define CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE -#define CONFIG_ESP32_PHY_MAX_TX_POWER CONFIG_ESP_PHY_MAX_TX_POWER -#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP_PHY_MAX_WIFI_TX_POWER -#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN -#define CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT CONFIG_PTHREAD_TASK_CORE_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT -#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED CONFIG_ESP_WIFI_AMPDU_RX_ENABLED -#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED CONFIG_ESP_WIFI_AMPDU_TX_ENABLED -#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM -#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER -#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM -#define CONFIG_ESP32_WIFI_ENABLED CONFIG_ESP_WIFI_ENABLED -#define CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA -#define CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE CONFIG_ESP_WIFI_ENABLE_WPA3_SAE -#define CONFIG_ESP32_WIFI_IRAM_OPT CONFIG_ESP_WIFI_IRAM_OPT -#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM CONFIG_ESP_WIFI_MGMT_SBUF_NUM -#define CONFIG_ESP32_WIFI_NVS_ENABLED CONFIG_ESP_WIFI_NVS_ENABLED -#define CONFIG_ESP32_WIFI_RX_BA_WIN CONFIG_ESP_WIFI_RX_BA_WIN -#define CONFIG_ESP32_WIFI_RX_IRAM_OPT CONFIG_ESP_WIFI_RX_IRAM_OPT -#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN -#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM -#define CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE -#define CONFIG_ESP32_WIFI_TX_BA_WIN CONFIG_ESP_WIFI_TX_BA_WIN -#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE CONFIG_ESP_WIFI_TX_BUFFER_TYPE -#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP -#define CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE -#define CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP -#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_ESP_WIFI_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE -#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO -#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL -#define CONFIG_GDBSTUB_MAX_TASKS CONFIG_ESP_GDBSTUB_MAX_TASKS -#define CONFIG_GDBSTUB_SUPPORT_TASKS CONFIG_ESP_GDBSTUB_SUPPORT_TASKS -#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT -#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS -#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE -#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL -#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO -#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE -#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD -#define CONFIG_NIMBLE_ATT_PREFERRED_MTU CONFIG_BT_NIMBLE_ATT_PREFERRED_MTU -#define CONFIG_NIMBLE_CRYPTO_STACK_MBEDTLS CONFIG_BT_NIMBLE_CRYPTO_STACK_MBEDTLS -#define CONFIG_NIMBLE_ENABLED CONFIG_BT_NIMBLE_ENABLED -#define CONFIG_NIMBLE_GAP_DEVICE_NAME_MAX_LEN CONFIG_BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN -#define CONFIG_NIMBLE_L2CAP_COC_MAX_NUM CONFIG_BT_NIMBLE_L2CAP_COC_MAX_NUM -#define CONFIG_NIMBLE_MAX_BONDS CONFIG_BT_NIMBLE_MAX_BONDS -#define CONFIG_NIMBLE_MAX_CCCDS CONFIG_BT_NIMBLE_MAX_CCCDS -#define CONFIG_NIMBLE_MAX_CONNECTIONS CONFIG_BT_NIMBLE_MAX_CONNECTIONS -#define CONFIG_NIMBLE_MEM_ALLOC_MODE_INTERNAL CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL -#define CONFIG_NIMBLE_PINNED_TO_CORE CONFIG_BT_NIMBLE_PINNED_TO_CORE -#define CONFIG_NIMBLE_ROLE_BROADCASTER CONFIG_BT_NIMBLE_ROLE_BROADCASTER -#define CONFIG_NIMBLE_ROLE_CENTRAL CONFIG_BT_NIMBLE_ROLE_CENTRAL -#define CONFIG_NIMBLE_ROLE_OBSERVER CONFIG_BT_NIMBLE_ROLE_OBSERVER -#define CONFIG_NIMBLE_ROLE_PERIPHERAL CONFIG_BT_NIMBLE_ROLE_PERIPHERAL -#define CONFIG_NIMBLE_RPA_TIMEOUT CONFIG_BT_NIMBLE_RPA_TIMEOUT -#define CONFIG_NIMBLE_SM_LEGACY CONFIG_BT_NIMBLE_SM_LEGACY -#define CONFIG_NIMBLE_SM_SC CONFIG_BT_NIMBLE_SM_SC -#define CONFIG_NIMBLE_SVC_GAP_APPEARANCE CONFIG_BT_NIMBLE_SVC_GAP_APPEARANCE -#define CONFIG_NIMBLE_SVC_GAP_DEVICE_NAME CONFIG_BT_NIMBLE_SVC_GAP_DEVICE_NAME -#define CONFIG_NIMBLE_TASK_STACK_SIZE CONFIG_BT_NIMBLE_HOST_TASK_STACK_SIZE -#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE -#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL -#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG -#define CONFIG_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR -#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR -#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS -#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS -#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE -#define CONFIG_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS -#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT -#define CONFIG_SW_COEXIST_ENABLE CONFIG_ESP_COEX_SW_COEXIST_ENABLE -#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE -#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE -#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 -#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S -#define CONFIG_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE -#define CONFIG_TCPIP_TASK_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY -#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY -#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE -#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX -#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL -#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS -#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS -#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ -#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE -#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT -#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX -#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT -#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH -#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY -#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH -#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE -#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE -#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO -#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT diff --git a/RainMaker_Table-Lights/build/config/sdkconfig.json b/RainMaker_Table-Lights/build/config/sdkconfig.json deleted file mode 100644 index ec494398c..000000000 --- a/RainMaker_Table-Lights/build/config/sdkconfig.json +++ /dev/null @@ -1,1564 +0,0 @@ -{ - "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, - "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, - "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, - "ADC_ENABLE_DEBUG_LOG": false, - "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, - "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3": false, - "ADC_SKIP_LEGACY_CONFLICT_CHECK": false, - "ADC_SUPPRESS_DEPRECATE_WARN": false, - "APPTRACE_DEST_JTAG": false, - "APPTRACE_DEST_NONE": true, - "APPTRACE_DEST_UART1": false, - "APPTRACE_DEST_UART_NONE": true, - "APPTRACE_DEST_USB_CDC": false, - "APPTRACE_LOCK_ENABLE": true, - "APPTRACE_UART_TASK_PRIO": 1, - "APP_BUILD_BOOTLOADER": true, - "APP_BUILD_GENERATE_BINARIES": true, - "APP_BUILD_TYPE_APP_2NDBOOT": true, - "APP_BUILD_TYPE_RAM": false, - "APP_BUILD_USE_FLASH_SECTIONS": true, - "APP_COMPILE_TIME_DATE": true, - "APP_EXCLUDE_PROJECT_NAME_VAR": false, - "APP_EXCLUDE_PROJECT_VER_VAR": false, - "APP_NETWORK_PROV_MAX_POP_MISMATCH": 5, - "APP_NETWORK_PROV_MAX_RETRY_CNT": 5, - "APP_NETWORK_PROV_NAME_PREFIX": "PROV", - "APP_NETWORK_PROV_SHOW_QR": true, - "APP_NETWORK_PROV_TIMEOUT_PERIOD": 30, - "APP_NETWORK_PROV_TRANSPORT": 2, - "APP_NETWORK_PROV_TRANSPORT_BLE": true, - "APP_NETWORK_PROV_TRANSPORT_SOFTAP": false, - "APP_NETWORK_RESET_PROV_ON_FAILURE": true, - "APP_NETWORK_SHOW_DEMO_INTRO_TEXT": false, - "APP_NO_BLOBS": false, - "APP_PROJECT_VER_FROM_CONFIG": false, - "APP_REPRODUCIBLE_BUILD": false, - "APP_RETRIEVE_LEN_ELF_SHA": 9, - "APP_WIFI_PROV_COMPAT": true, - "AUTO_UPDATE_RCP": false, - "BLE_MESH": false, - "BOOTLOADER_APP_ANTI_ROLLBACK": false, - "BOOTLOADER_APP_ROLLBACK_ENABLE": true, - "BOOTLOADER_APP_TEST": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, - "BOOTLOADER_COMPILE_TIME_DATE": true, - "BOOTLOADER_CUSTOM_RESERVE_RTC": false, - "BOOTLOADER_FACTORY_RESET": false, - "BOOTLOADER_FLASH_DC_AWARE": false, - "BOOTLOADER_FLASH_XMC_SUPPORT": true, - "BOOTLOADER_LOG_COLORS": false, - "BOOTLOADER_LOG_LEVEL": 3, - "BOOTLOADER_LOG_LEVEL_DEBUG": false, - "BOOTLOADER_LOG_LEVEL_ERROR": false, - "BOOTLOADER_LOG_LEVEL_INFO": true, - "BOOTLOADER_LOG_LEVEL_NONE": false, - "BOOTLOADER_LOG_LEVEL_VERBOSE": false, - "BOOTLOADER_LOG_LEVEL_WARN": false, - "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, - "BOOTLOADER_OFFSET_IN_FLASH": 0, - "BOOTLOADER_PROJECT_VER": 1, - "BOOTLOADER_REGION_PROTECTION_ENABLE": true, - "BOOTLOADER_RESERVE_RTC_SIZE": 0, - "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, - "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, - "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, - "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, - "BOOTLOADER_WDT_ENABLE": true, - "BOOTLOADER_WDT_TIME_MS": 9000, - "BOOT_ROM_LOG_ALWAYS_OFF": false, - "BOOT_ROM_LOG_ALWAYS_ON": true, - "BOOT_ROM_LOG_ON_GPIO_HIGH": false, - "BOOT_ROM_LOG_ON_GPIO_LOW": false, - "BT_ALARM_MAX_NUM": 50, - "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX": false, - "BT_BLE_CCA_MODE": 0, - "BT_BLE_CCA_MODE_HW": false, - "BT_BLE_CCA_MODE_NONE": true, - "BT_BLE_CCA_MODE_SW": false, - "BT_BLE_LOG_SPI_OUT_ENABLED": false, - "BT_BLUEDROID_ENABLED": false, - "BT_CONTROLLER_DISABLED": false, - "BT_CONTROLLER_ENABLED": true, - "BT_CONTROLLER_ONLY": false, - "BT_CTRL_ADV_DUP_FILT_MAX": 30, - "BT_CTRL_AGC_RECORRECT_EN": false, - "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD": 20, - "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM": 100, - "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP": true, - "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE": false, - "BT_CTRL_BLE_LLCP_CONN_UPDATE": false, - "BT_CTRL_BLE_LLCP_PHY_UPDATE": false, - "BT_CTRL_BLE_MAX_ACT": 6, - "BT_CTRL_BLE_MAX_ACT_EFF": 6, - "BT_CTRL_BLE_MESH_SCAN_DUPL_EN": false, - "BT_CTRL_BLE_SCAN_DUPL": true, - "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB": 0, - "BT_CTRL_CE_LENGTH_TYPE_CE": false, - "BT_CTRL_CE_LENGTH_TYPE_EFF": 0, - "BT_CTRL_CE_LENGTH_TYPE_ORIG": true, - "BT_CTRL_CE_LENGTH_TYPE_SD": false, - "BT_CTRL_CHAN_ASS_EN": true, - "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS": false, - "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS": true, - "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF": 0, - "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_EFF": 11, - "BT_CTRL_DFT_TX_POWER_LEVEL_N0": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N12": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N15": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N18": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N21": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N24": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N3": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N6": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_N9": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P12": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P15": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P18": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P20": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P3": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P6": false, - "BT_CTRL_DFT_TX_POWER_LEVEL_P9": true, - "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD": 0, - "BT_CTRL_HCI_MODE_UART_H4": false, - "BT_CTRL_HCI_MODE_VHCI": true, - "BT_CTRL_HCI_TL": 1, - "BT_CTRL_HCI_TL_EFF": 1, - "BT_CTRL_HW_CCA_EFF": 0, - "BT_CTRL_HW_CCA_VAL": 20, - "BT_CTRL_LE_PING_EN": true, - "BT_CTRL_MODEM_SLEEP": false, - "BT_CTRL_MODE_EFF": 1, - "BT_CTRL_PINNED_TO_CORE": 0, - "BT_CTRL_RUN_IN_FLASH_ONLY": false, - "BT_CTRL_RX_ANTENNA_INDEX_0": true, - "BT_CTRL_RX_ANTENNA_INDEX_1": false, - "BT_CTRL_RX_ANTENNA_INDEX_EFF": 0, - "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX": false, - "BT_CTRL_SCAN_DUPL_CACHE_SIZE": 100, - "BT_CTRL_SCAN_DUPL_TYPE": 0, - "BT_CTRL_SCAN_DUPL_TYPE_DATA": false, - "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE": false, - "BT_CTRL_SCAN_DUPL_TYPE_DEVICE": true, - "BT_CTRL_SLEEP_CLOCK_EFF": 0, - "BT_CTRL_SLEEP_MODE_EFF": 0, - "BT_CTRL_TX_ANTENNA_INDEX_0": true, - "BT_CTRL_TX_ANTENNA_INDEX_1": false, - "BT_CTRL_TX_ANTENNA_INDEX_EFF": 0, - "BT_ENABLED": true, - "BT_HCI_LOG_DEBUG_EN": false, - "BT_NIMBLE_50_FEATURE_SUPPORT": true, - "BT_NIMBLE_ATT_PREFERRED_MTU": 256, - "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER": false, - "BT_NIMBLE_BLUFI_ENABLE": false, - "BT_NIMBLE_CRYPTO_STACK_MBEDTLS": true, - "BT_NIMBLE_DEBUG": false, - "BT_NIMBLE_DYNAMIC_SERVICE": false, - "BT_NIMBLE_EATT_CHAN_NUM": 0, - "BT_NIMBLE_ENABLED": true, - "BT_NIMBLE_ENABLE_CONN_REATTEMPT": true, - "BT_NIMBLE_ENABLE_PERIODIC_SYNC": true, - "BT_NIMBLE_ENC_ADV_DATA": false, - "BT_NIMBLE_EXT_ADV": false, - "BT_NIMBLE_EXT_SCAN": true, - "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN": 31, - "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT": false, - "BT_NIMBLE_GATT_CACHING": false, - "BT_NIMBLE_GATT_MAX_PROCS": 4, - "BT_NIMBLE_HCI_UART_CTS_PIN": 23, - "BT_NIMBLE_HCI_UART_FLOW_CTRL": 0, - "BT_NIMBLE_HCI_UART_RTS_PIN": 19, - "BT_NIMBLE_HID_SERVICE": false, - "BT_NIMBLE_HIGH_DUTY_ADV_ITVL": false, - "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN": false, - "BT_NIMBLE_HOST_QUEUE_CONG_CHECK": false, - "BT_NIMBLE_HOST_TASK_STACK_SIZE": 4096, - "BT_NIMBLE_HS_FLOW_CTRL": false, - "BT_NIMBLE_HS_STOP_TIMEOUT_MS": 2000, - "BT_NIMBLE_L2CAP_COC_MAX_NUM": 0, - "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT": 1, - "BT_NIMBLE_LEGACY_VHCI_ENABLE": true, - "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY": true, - "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY": true, - "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION": true, - "BT_NIMBLE_LOG_LEVEL": 1, - "BT_NIMBLE_LOG_LEVEL_DEBUG": false, - "BT_NIMBLE_LOG_LEVEL_ERROR": false, - "BT_NIMBLE_LOG_LEVEL_INFO": true, - "BT_NIMBLE_LOG_LEVEL_NONE": false, - "BT_NIMBLE_LOG_LEVEL_WARNING": false, - "BT_NIMBLE_MAX_BONDS": 3, - "BT_NIMBLE_MAX_CCCDS": 8, - "BT_NIMBLE_MAX_CONNECTIONS": 3, - "BT_NIMBLE_MAX_CONN_REATTEMPT": 3, - "BT_NIMBLE_MAX_PERIODIC_SYNCS": 0, - "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT": false, - "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL": true, - "BT_NIMBLE_MESH": false, - "BT_NIMBLE_MSYS_1_BLOCK_COUNT": 12, - "BT_NIMBLE_MSYS_1_BLOCK_SIZE": 256, - "BT_NIMBLE_MSYS_2_BLOCK_COUNT": 24, - "BT_NIMBLE_MSYS_2_BLOCK_SIZE": 320, - "BT_NIMBLE_NVS_PERSIST": false, - "BT_NIMBLE_PINNED_TO_CORE": 0, - "BT_NIMBLE_ROLE_BROADCASTER": true, - "BT_NIMBLE_ROLE_CENTRAL": true, - "BT_NIMBLE_ROLE_OBSERVER": true, - "BT_NIMBLE_ROLE_PERIPHERAL": true, - "BT_NIMBLE_RPA_TIMEOUT": 900, - "BT_NIMBLE_SECURITY_ENABLE": true, - "BT_NIMBLE_SMP_ID_RESET": false, - "BT_NIMBLE_SM_LEGACY": true, - "BT_NIMBLE_SM_LVL": 0, - "BT_NIMBLE_SM_SC": true, - "BT_NIMBLE_SM_SC_DEBUG_KEYS": false, - "BT_NIMBLE_SM_SC_ONLY": 0, - "BT_NIMBLE_SUBRATE": false, - "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY": false, - "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION": false, - "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION": false, - "BT_NIMBLE_SVC_DIS_INCLUDED": false, - "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME": false, - "BT_NIMBLE_SVC_DIS_PNP_ID": false, - "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER": false, - "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION": false, - "BT_NIMBLE_SVC_DIS_SYSTEM_ID": false, - "BT_NIMBLE_SVC_GAP_APPEARANCE": 0, - "BT_NIMBLE_SVC_GAP_APPEAR_WRITE": false, - "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM": 0, - "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN": 0, - "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR": 0, - "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC": 0, - "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP": true, - "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP": false, - "BT_NIMBLE_SVC_GAP_CAR_SUPP": false, - "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION": -1, - "BT_NIMBLE_SVC_GAP_DEVICE_NAME": "nimble", - "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL": false, - "BT_NIMBLE_SVC_GAP_NAME_WRITE": false, - "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM": 0, - "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN": 0, - "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR": 0, - "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC": 0, - "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL": 0, - "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL": 0, - "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY": 0, - "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO": 0, - "BT_NIMBLE_TEST_THROUGHPUT_TEST": false, - "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT": 24, - "BT_NIMBLE_TRANSPORT_ACL_SIZE": 255, - "BT_NIMBLE_TRANSPORT_EVT_COUNT": 30, - "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT": 8, - "BT_NIMBLE_TRANSPORT_EVT_SIZE": 70, - "BT_NIMBLE_USE_ESP_TIMER": true, - "BT_NIMBLE_VS_SUPPORT": false, - "BT_NIMBLE_WHITELIST_SIZE": 12, - "COMPILER_ASSERT_NDEBUG_EVALUATE": true, - "COMPILER_CXX_EXCEPTIONS": false, - "COMPILER_CXX_RTTI": false, - "COMPILER_DISABLE_DEFAULT_ERRORS": true, - "COMPILER_DISABLE_GCC12_WARNINGS": false, - "COMPILER_DISABLE_GCC13_WARNINGS": false, - "COMPILER_DISABLE_GCC14_WARNINGS": false, - "COMPILER_DUMP_RTL_FILES": false, - "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, - "COMPILER_HIDE_PATHS_MACROS": true, - "COMPILER_NO_MERGE_CONSTANTS": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, - "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, - "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, - "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, - "COMPILER_OPTIMIZATION_DEBUG": true, - "COMPILER_OPTIMIZATION_NONE": false, - "COMPILER_OPTIMIZATION_PERF": false, - "COMPILER_OPTIMIZATION_SIZE": false, - "COMPILER_ORPHAN_SECTIONS_PLACE": false, - "COMPILER_ORPHAN_SECTIONS_WARNING": true, - "COMPILER_RT_LIB_GCCLIB": true, - "COMPILER_RT_LIB_NAME": "gcc", - "COMPILER_SAVE_RESTORE_LIBCALLS": false, - "COMPILER_STACK_CHECK_MODE_ALL": false, - "COMPILER_STACK_CHECK_MODE_NONE": true, - "COMPILER_STACK_CHECK_MODE_NORM": false, - "COMPILER_STACK_CHECK_MODE_STRONG": false, - "COMPILER_STATIC_ANALYZER": false, - "COMPILER_WARN_WRITE_STRINGS": false, - "CONSOLE_SORTED_HELP": false, - "CREATE_OTA_IMAGE_WITH_RCP_FW": false, - "DIAG_DATA_STORE_DBG_PRINTS": false, - "DIAG_DATA_STORE_FLASH": false, - "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT": 80, - "DIAG_DATA_STORE_RTC": true, - "DIAG_ENABLE_HEAP_METRICS": true, - "DIAG_ENABLE_METRICS": true, - "DIAG_ENABLE_NETWORK_VARIABLES": true, - "DIAG_ENABLE_VARIABLES": true, - "DIAG_ENABLE_WIFI_METRICS": true, - "DIAG_ENABLE_WRAP_LOG_FUNCTIONS": false, - "DIAG_HEAP_POLLING_INTERVAL": 30, - "DIAG_LOG_DROP_WIFI_LOGS": true, - "DIAG_LOG_MSG_ARG_FORMAT_STRING": false, - "DIAG_LOG_MSG_ARG_FORMAT_TLV": true, - "DIAG_LOG_MSG_ARG_MAX_SIZE": 64, - "DIAG_METRICS_MAX_COUNT": 20, - "DIAG_MORE_NETWORK_VARS": false, - "DIAG_USE_EXTERNAL_LOG_WRAP": false, - "DIAG_VARIABLES_MAX_COUNT": 20, - "DIAG_WIFI_POLLING_INTERVAL": 30, - "EFUSE_CUSTOM_TABLE": false, - "EFUSE_MAX_BLK_LEN": 256, - "EFUSE_VIRTUAL": false, - "ESP32C3_REV_MAX_FULL": 199, - "ESP32C3_REV_MIN_0": false, - "ESP32C3_REV_MIN_1": false, - "ESP32C3_REV_MIN_101": false, - "ESP32C3_REV_MIN_2": false, - "ESP32C3_REV_MIN_3": true, - "ESP32C3_REV_MIN_4": false, - "ESP32C3_REV_MIN_FULL": 3, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES": 4, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, - "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO": false, - "ESPHID_TASK_SIZE_BLE": 4096, - "ESPHID_TASK_SIZE_BT": 2048, - "ESPTOOLPY_AFTER": "hard_reset", - "ESPTOOLPY_AFTER_NORESET": false, - "ESPTOOLPY_AFTER_RESET": true, - "ESPTOOLPY_BEFORE": "default_reset", - "ESPTOOLPY_BEFORE_NORESET": false, - "ESPTOOLPY_BEFORE_RESET": true, - "ESPTOOLPY_FLASHFREQ": "80m", - "ESPTOOLPY_FLASHFREQ_20M": false, - "ESPTOOLPY_FLASHFREQ_26M": false, - "ESPTOOLPY_FLASHFREQ_40M": false, - "ESPTOOLPY_FLASHFREQ_80M": true, - "ESPTOOLPY_FLASHMODE": "dio", - "ESPTOOLPY_FLASHMODE_DIO": true, - "ESPTOOLPY_FLASHMODE_DOUT": false, - "ESPTOOLPY_FLASHMODE_QIO": false, - "ESPTOOLPY_FLASHMODE_QOUT": false, - "ESPTOOLPY_FLASHSIZE": "4MB", - "ESPTOOLPY_FLASHSIZE_128MB": false, - "ESPTOOLPY_FLASHSIZE_16MB": false, - "ESPTOOLPY_FLASHSIZE_1MB": false, - "ESPTOOLPY_FLASHSIZE_2MB": false, - "ESPTOOLPY_FLASHSIZE_32MB": false, - "ESPTOOLPY_FLASHSIZE_4MB": true, - "ESPTOOLPY_FLASHSIZE_64MB": false, - "ESPTOOLPY_FLASHSIZE_8MB": false, - "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, - "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, - "ESPTOOLPY_MONITOR_BAUD": 115200, - "ESPTOOLPY_NO_STUB": false, - "ESP_BROWNOUT_DET": true, - "ESP_BROWNOUT_DET_LVL": 7, - "ESP_BROWNOUT_DET_LVL_SEL_2": false, - "ESP_BROWNOUT_DET_LVL_SEL_3": false, - "ESP_BROWNOUT_DET_LVL_SEL_4": false, - "ESP_BROWNOUT_DET_LVL_SEL_5": false, - "ESP_BROWNOUT_DET_LVL_SEL_6": false, - "ESP_BROWNOUT_DET_LVL_SEL_7": true, - "ESP_COEX_ENABLED": true, - "ESP_COEX_GPIO_DEBUG": false, - "ESP_COEX_POWER_MANAGEMENT": false, - "ESP_COEX_SW_COEXIST_ENABLE": true, - "ESP_CONSOLE_NONE": false, - "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, - "ESP_CONSOLE_SECONDARY_NONE": false, - "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, - "ESP_CONSOLE_UART": true, - "ESP_CONSOLE_UART_BAUDRATE": 115200, - "ESP_CONSOLE_UART_CUSTOM": false, - "ESP_CONSOLE_UART_DEFAULT": true, - "ESP_CONSOLE_UART_NUM": 0, - "ESP_CONSOLE_USB_SERIAL_JTAG": false, - "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, - "ESP_COREDUMP_ENABLE_TO_FLASH": false, - "ESP_COREDUMP_ENABLE_TO_NONE": true, - "ESP_COREDUMP_ENABLE_TO_UART": false, - "ESP_DEBUG_OCDAWARE": true, - "ESP_DEBUG_STUBS_ENABLE": false, - "ESP_DEFAULT_CPU_FREQ_MHZ": 160, - "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, - "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, - "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, - "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, - "ESP_ERR_TO_NAME_LOOKUP": true, - "ESP_EVENT_LOOP_PROFILING": false, - "ESP_EVENT_POST_FROM_IRAM_ISR": true, - "ESP_EVENT_POST_FROM_ISR": true, - "ESP_GDBSTUB_ENABLED": true, - "ESP_GDBSTUB_MAX_TASKS": 32, - "ESP_GDBSTUB_SUPPORT_TASKS": true, - "ESP_HTTPS_OTA_ALLOW_HTTP": false, - "ESP_HTTPS_OTA_DECRYPT_CB": false, - "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT": 2000, - "ESP_HTTPS_SERVER_ENABLE": true, - "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT": 2000, - "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, - "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT": false, - "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, - "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, - "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": 2000, - "ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC": 240, - "ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC": 60, - "ESP_INSIGHTS_ENABLED": false, - "ESP_INSIGHTS_META_VERSION_10": true, - "ESP_INSIGHTS_TRANSPORT_HTTPS": false, - "ESP_INSIGHTS_TRANSPORT_MQTT": true, - "ESP_INT_WDT": true, - "ESP_INT_WDT_TIMEOUT_MS": 300, - "ESP_IPC_TASK_STACK_SIZE": 1024, - "ESP_MAC_ADDR_UNIVERSE_BT": true, - "ESP_MAC_ADDR_UNIVERSE_ETH": true, - "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, - "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, - "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, - "ESP_MAIN_TASK_AFFINITY": 0, - "ESP_MAIN_TASK_AFFINITY_CPU0": true, - "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, - "ESP_MAIN_TASK_STACK_SIZE": 3584, - "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, - "ESP_NETIF_BRIDGE_EN": false, - "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, - "ESP_NETIF_L2_TAP": false, - "ESP_NETIF_LOOPBACK": false, - "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": false, - "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, - "ESP_NETIF_REPORT_DATA_TRAFFIC": true, - "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": false, - "ESP_NETIF_TCPIP_LWIP": true, - "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, - "ESP_PANIC_HANDLER_IRAM": false, - "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, - "ESP_PHY_CALIBRATION_MODE": 0, - "ESP_PHY_ENABLED": true, - "ESP_PHY_ENABLE_CERT_TEST": false, - "ESP_PHY_ENABLE_USB": true, - "ESP_PHY_INIT_DATA_IN_PARTITION": false, - "ESP_PHY_MAX_TX_POWER": 20, - "ESP_PHY_MAX_WIFI_TX_POWER": 20, - "ESP_PHY_PLL_TRACK_DEBUG": false, - "ESP_PHY_RECORD_USED_TIME": false, - "ESP_PHY_REDUCE_TX_POWER": false, - "ESP_PHY_RF_CAL_FULL": false, - "ESP_PHY_RF_CAL_NONE": false, - "ESP_PHY_RF_CAL_PARTIAL": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, - "ESP_REV_MAX_FULL": 199, - "ESP_REV_MIN_FULL": 3, - "ESP_RMAKER_ASSISTED_CLAIM": false, - "ESP_RMAKER_CLAIM_SERVICE_BASE_URL": "https://esp-claiming.rainmaker.espressif.com", - "ESP_RMAKER_CLAIM_TYPE": 1, - "ESP_RMAKER_CMD_RESP_ENABLE": true, - "ESP_RMAKER_CMD_RESP_TEST_ENABLE": false, - "ESP_RMAKER_CONSOLE_UART_NUM": 0, - "ESP_RMAKER_CONSOLE_UART_NUM_0": true, - "ESP_RMAKER_CONSOLE_UART_NUM_1": false, - "ESP_RMAKER_DEF_TIMEZONE": "Asia/Shanghai", - "ESP_RMAKER_DISABLE_USER_MAPPING_PROV": false, - "ESP_RMAKER_FACTORY_NAMESPACE": "rmaker_creds", - "ESP_RMAKER_FACTORY_PARTITION_NAME": "fctry", - "ESP_RMAKER_LIB_AWS_IOT": false, - "ESP_RMAKER_LIB_ESP_MQTT": true, - "ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE": true, - "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE": true, - "ESP_RMAKER_LOCAL_CTRL_HTTP_PORT": 8080, - "ESP_RMAKER_LOCAL_CTRL_SECURITY": 1, - "ESP_RMAKER_LOCAL_CTRL_SECURITY_0": false, - "ESP_RMAKER_LOCAL_CTRL_SECURITY_1": true, - "ESP_RMAKER_LOCAL_CTRL_STACK_SIZE": 6144, - "ESP_RMAKER_MAX_COMMANDS": 10, - "ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS": 10, - "ESP_RMAKER_MAX_PARAM_DATA_SIZE": 1024, - "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT": 1, - "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD": 5, - "ESP_RMAKER_MQTT_DEFAULT_BUDGET": 100, - "ESP_RMAKER_MQTT_ENABLE_BUDGETING": true, - "ESP_RMAKER_MQTT_GLUE_LIB": 1, - "ESP_RMAKER_MQTT_HOST": "a1p72mufdu6064-ats.iot.us-east-1.amazonaws.com", - "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL": 120, - "ESP_RMAKER_MQTT_MAX_BUDGET": 1024, - "ESP_RMAKER_MQTT_PERSISTENT_SESSION": false, - "ESP_RMAKER_MQTT_PORT": 1, - "ESP_RMAKER_MQTT_PORT_443": true, - "ESP_RMAKER_MQTT_PORT_8883": false, - "ESP_RMAKER_MQTT_PRODUCT_NAME": "RMDev", - "ESP_RMAKER_MQTT_PRODUCT_SKU": "EX00", - "ESP_RMAKER_MQTT_PRODUCT_VERSION": "1x0", - "ESP_RMAKER_MQTT_SEND_USERNAME": true, - "ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS": true, - "ESP_RMAKER_MQTT_USE_CERT_BUNDLE": true, - "ESP_RMAKER_NETWORK_OVER_WIFI": true, - "ESP_RMAKER_NO_CLAIM": false, - "ESP_RMAKER_OTA_AUTOFETCH": true, - "ESP_RMAKER_OTA_AUTOFETCH_PERIOD": 0, - "ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT": false, - "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE": 1024, - "ESP_RMAKER_OTA_MAX_RETRIES": 3, - "ESP_RMAKER_OTA_PROGRESS_SUPPORT": false, - "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES": 5, - "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD": 90, - "ESP_RMAKER_OTA_TIME_SUPPORT": true, - "ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG": false, - "ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN": false, - "ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT": false, - "ESP_RMAKER_SCENES_MAX_SCENES": 10, - "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES": 10, - "ESP_RMAKER_SELF_CLAIM": true, - "ESP_RMAKER_SKIP_COMMON_NAME_CHECK": false, - "ESP_RMAKER_SKIP_PROJECT_NAME_CHECK": false, - "ESP_RMAKER_SKIP_SECURE_VERSION_CHECK": false, - "ESP_RMAKER_SKIP_VERSION_CHECK": false, - "ESP_RMAKER_SNTP_SERVER_NAME": "pool.ntp.org", - "ESP_RMAKER_USER_ID_CHECK": true, - "ESP_RMAKER_USE_CERT_BUNDLE": true, - "ESP_RMAKER_USE_NVS": true, - "ESP_RMAKER_USING_NETWORK_PROV": true, - "ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY": 5, - "ESP_RMAKER_WORK_QUEUE_TASK_STACK": 5120, - "ESP_ROM_GET_CLK_FREQ": true, - "ESP_ROM_HAS_CRC_BE": true, - "ESP_ROM_HAS_CRC_LE": true, - "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, - "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, - "ESP_ROM_HAS_ETS_PRINTF_BUG": true, - "ESP_ROM_HAS_JPEG_DECODE": true, - "ESP_ROM_HAS_LAYOUT_TABLE": true, - "ESP_ROM_HAS_MZ_CRC32": true, - "ESP_ROM_HAS_NEWLIB": true, - "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, - "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, - "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, - "ESP_ROM_HAS_SPI_FLASH": true, - "ESP_ROM_HAS_SW_FLOAT": true, - "ESP_ROM_HAS_VERSION": true, - "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, - "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, - "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, - "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, - "ESP_ROM_UART_CLK_IS_XTAL": true, - "ESP_ROM_USB_OTG_NUM": -1, - "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, - "ESP_SECURE_CERT_DS_PERIPHERAL": true, - "ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS": false, - "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, - "ESP_SLEEP_DEBUG": false, - "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, - "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, - "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, - "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, - "ESP_SLEEP_POWER_DOWN_FLASH": false, - "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, - "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, - "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, - "ESP_SYSTEM_BROWNOUT_INTR": true, - "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, - "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, - "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, - "ESP_SYSTEM_GDBSTUB_RUNTIME": false, - "ESP_SYSTEM_HW_PC_RECORD": true, - "ESP_SYSTEM_HW_STACK_GUARD": true, - "ESP_SYSTEM_MEMPROT_FEATURE": true, - "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, - "ESP_SYSTEM_PANIC_GDBSTUB": false, - "ESP_SYSTEM_PANIC_PRINT_HALT": false, - "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, - "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, - "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, - "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, - "ESP_SYSTEM_SINGLE_CORE_MODE": true, - "ESP_SYSTEM_USE_EH_FRAME": false, - "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, - "ESP_TASK_WDT_EN": true, - "ESP_TASK_WDT_INIT": true, - "ESP_TASK_WDT_PANIC": false, - "ESP_TASK_WDT_TIMEOUT_S": 5, - "ESP_TIMER_IMPL_SYSTIMER": true, - "ESP_TIMER_INTERRUPT_LEVEL": 1, - "ESP_TIMER_ISR_AFFINITY_CPU0": true, - "ESP_TIMER_PROFILING": false, - "ESP_TIMER_SHOW_EXPERIMENTAL": false, - "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, - "ESP_TIMER_TASK_AFFINITY": 0, - "ESP_TIMER_TASK_AFFINITY_CPU0": true, - "ESP_TIMER_TASK_STACK_SIZE": 3584, - "ESP_TIME_FUNCS_USE_ESP_TIMER": true, - "ESP_TIME_FUNCS_USE_RTC_TIMER": true, - "ESP_TLS_CLIENT_SESSION_TICKETS": false, - "ESP_TLS_INSECURE": false, - "ESP_TLS_PSK_VERIFICATION": false, - "ESP_TLS_SERVER_CERT_SELECT_HOOK": false, - "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": false, - "ESP_TLS_SERVER_SESSION_TICKETS": false, - "ESP_TLS_USE_DS_PERIPHERAL": true, - "ESP_TLS_USING_MBEDTLS": true, - "ESP_WIFI_11KV_SUPPORT": false, - "ESP_WIFI_11R_SUPPORT": false, - "ESP_WIFI_AMPDU_RX_ENABLED": true, - "ESP_WIFI_AMPDU_TX_ENABLED": true, - "ESP_WIFI_CSI_ENABLED": false, - "ESP_WIFI_DEBUG_PRINT": false, - "ESP_WIFI_DPP_SUPPORT": false, - "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, - "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": 0, - "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": false, - "ESP_WIFI_DYNAMIC_TX_BUFFER": true, - "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, - "ESP_WIFI_ENABLED": true, - "ESP_WIFI_ENABLE_SAE_PK": true, - "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, - "ESP_WIFI_ENABLE_WPA3_SAE": true, - "ESP_WIFI_ENTERPRISE_SUPPORT": true, - "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": false, - "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, - "ESP_WIFI_EXTRA_IRAM_OPT": false, - "ESP_WIFI_FTM_ENABLE": false, - "ESP_WIFI_GCMP_SUPPORT": false, - "ESP_WIFI_GMAC_SUPPORT": true, - "ESP_WIFI_IRAM_OPT": true, - "ESP_WIFI_MBEDTLS_CRYPTO": true, - "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, - "ESP_WIFI_MBO_SUPPORT": false, - "ESP_WIFI_MGMT_SBUF_NUM": 32, - "ESP_WIFI_NVS_ENABLED": true, - "ESP_WIFI_RX_BA_WIN": 6, - "ESP_WIFI_RX_IRAM_OPT": true, - "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": 5, - "ESP_WIFI_SLP_BEACON_LOST_OPT": false, - "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": 10, - "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": 50, - "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": 15, - "ESP_WIFI_SLP_IRAM_OPT": false, - "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": 752, - "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, - "ESP_WIFI_SOFTAP_SUPPORT": true, - "ESP_WIFI_STATIC_RX_BUFFER_NUM": 10, - "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, - "ESP_WIFI_STATIC_TX_BUFFER": false, - "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, - "ESP_WIFI_SUITE_B_192": false, - "ESP_WIFI_TESTING_OPTIONS": false, - "ESP_WIFI_TX_BA_WIN": 6, - "ESP_WIFI_TX_BUFFER_TYPE": 1, - "ESP_WIFI_WAPI_PSK": false, - "ESP_WIFI_WPS_PASSPHRASE": false, - "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, - "ESP_WIFI_WPS_STRICT": false, - "ETH_ENABLED": true, - "ETH_SPI_ETHERNET_DM9051": false, - "ETH_SPI_ETHERNET_KSZ8851SNL": false, - "ETH_SPI_ETHERNET_W5500": false, - "ETH_TRANSMIT_MUTEX": false, - "ETH_USE_OPENETH": false, - "ETH_USE_SPI_ETHERNET": true, - "EXAMPLE_BOARD_BUTTON_GPIO": 9, - "FATFS_CODEPAGE": 437, - "FATFS_CODEPAGE_437": true, - "FATFS_CODEPAGE_720": false, - "FATFS_CODEPAGE_737": false, - "FATFS_CODEPAGE_771": false, - "FATFS_CODEPAGE_775": false, - "FATFS_CODEPAGE_850": false, - "FATFS_CODEPAGE_852": false, - "FATFS_CODEPAGE_855": false, - "FATFS_CODEPAGE_857": false, - "FATFS_CODEPAGE_860": false, - "FATFS_CODEPAGE_861": false, - "FATFS_CODEPAGE_862": false, - "FATFS_CODEPAGE_863": false, - "FATFS_CODEPAGE_864": false, - "FATFS_CODEPAGE_865": false, - "FATFS_CODEPAGE_866": false, - "FATFS_CODEPAGE_869": false, - "FATFS_CODEPAGE_932": false, - "FATFS_CODEPAGE_936": false, - "FATFS_CODEPAGE_949": false, - "FATFS_CODEPAGE_950": false, - "FATFS_CODEPAGE_DYNAMIC": false, - "FATFS_FS_LOCK": 0, - "FATFS_IMMEDIATE_FSYNC": false, - "FATFS_LFN_HEAP": false, - "FATFS_LFN_NONE": true, - "FATFS_LFN_STACK": false, - "FATFS_LINK_LOCK": true, - "FATFS_PER_FILE_CACHE": true, - "FATFS_SECTOR_4096": true, - "FATFS_SECTOR_512": false, - "FATFS_TIMEOUT_MS": 10000, - "FATFS_USE_FASTSEEK": false, - "FATFS_USE_LABEL": false, - "FATFS_USE_STRFUNC_NONE": true, - "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV": false, - "FATFS_USE_STRFUNC_WITH_CRLF_CONV": false, - "FATFS_VFS_FSTAT_BLKSIZE": 0, - "FATFS_VOLUME_COUNT": 2, - "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, - "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, - "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, - "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, - "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, - "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, - "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, - "FREERTOS_DEBUG_OCDAWARE": true, - "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, - "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, - "FREERTOS_ENABLE_TASK_SNAPSHOT": true, - "FREERTOS_GENERATE_RUN_TIME_STATS": false, - "FREERTOS_HZ": 100, - "FREERTOS_IDLE_TASK_STACKSIZE": 1536, - "FREERTOS_INTERRUPT_BACKTRACE": true, - "FREERTOS_ISR_STACKSIZE": 1536, - "FREERTOS_MAX_TASK_NAME_LEN": 16, - "FREERTOS_NO_AFFINITY": 2147483647, - "FREERTOS_NUMBER_OF_CORES": 1, - "FREERTOS_OPTIMIZED_SCHEDULER": true, - "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, - "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, - "FREERTOS_PORT": true, - "FREERTOS_QUEUE_REGISTRY_SIZE": 0, - "FREERTOS_SMP": false, - "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, - "FREERTOS_SYSTICK_USES_SYSTIMER": true, - "FREERTOS_TASK_FUNCTION_WRAPPER": true, - "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, - "FREERTOS_TASK_PRE_DELETION_HOOK": false, - "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, - "FREERTOS_TICK_SUPPORT_SYSTIMER": true, - "FREERTOS_TIMER_QUEUE_LENGTH": 10, - "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, - "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", - "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, - "FREERTOS_TIMER_TASK_NO_AFFINITY": true, - "FREERTOS_TIMER_TASK_PRIORITY": 1, - "FREERTOS_TIMER_TASK_STACK_DEPTH": 3120, - "FREERTOS_TLSP_DELETION_CALLBACKS": true, - "FREERTOS_UNICORE": true, - "FREERTOS_USE_APPLICATION_TASK_TAG": false, - "FREERTOS_USE_IDLE_HOOK": false, - "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, - "FREERTOS_USE_TICK_HOOK": false, - "FREERTOS_USE_TIMERS": true, - "FREERTOS_USE_TRACE_FACILITY": false, - "FREERTOS_WATCHPOINT_END_OF_STACK": false, - "GDMA_CTRL_FUNC_IN_IRAM": true, - "GDMA_ENABLE_DEBUG_LOG": false, - "GDMA_ISR_IRAM_SAFE": false, - "GPIO_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_ENABLE_DEBUG_LOG": false, - "GPTIMER_ISR_HANDLER_IN_IRAM": true, - "GPTIMER_ISR_IRAM_SAFE": false, - "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": false, - "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, - "HAL_ASSERTION_DISABLE": false, - "HAL_ASSERTION_ENABLE": false, - "HAL_ASSERTION_EQUALS_SYSTEM": true, - "HAL_ASSERTION_SILENT": false, - "HAL_DEFAULT_ASSERTION_LEVEL": 2, - "HAL_SPI_MASTER_FUNC_IN_IRAM": true, - "HAL_SPI_SLAVE_FUNC_IN_IRAM": true, - "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, - "HEAP_PLACE_FUNCTION_INTO_FLASH": false, - "HEAP_POISONING_COMPREHENSIVE": false, - "HEAP_POISONING_DISABLED": true, - "HEAP_POISONING_LIGHT": false, - "HEAP_TASK_TRACKING": false, - "HEAP_TRACING_OFF": true, - "HEAP_TRACING_STANDALONE": false, - "HEAP_TRACING_TOHOST": false, - "HEAP_USE_HOOKS": false, - "HTTPD_ERR_RESP_NO_DELAY": true, - "HTTPD_LOG_PURGE_DATA": false, - "HTTPD_MAX_REQ_HDR_LEN": 512, - "HTTPD_MAX_URI_LEN": 512, - "HTTPD_PURGE_BUF_LEN": 32, - "HTTPD_QUEUE_WORK_BLOCKING": false, - "HTTPD_SERVER_EVENT_POST_TIMEOUT": 2000, - "HTTPD_WS_SUPPORT": false, - "I2C_ENABLE_DEBUG_LOG": false, - "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": false, - "I2C_ISR_IRAM_SAFE": false, - "I2S_ENABLE_DEBUG_LOG": false, - "I2S_ISR_IRAM_SAFE": false, - "I2S_SKIP_LEGACY_CONFLICT_CHECK": false, - "I2S_SUPPRESS_DEPRECATE_WARN": false, - "IDF_CMAKE": true, - "IDF_EXPERIMENTAL_FEATURES": false, - "IDF_FIRMWARE_CHIP_ID": 5, - "IDF_INIT_VERSION": "5.4.1", - "IDF_TARGET": "esp32c3", - "IDF_TARGET_ARCH": "riscv", - "IDF_TARGET_ARCH_RISCV": true, - "IDF_TARGET_ESP32C3": true, - "IDF_TOOLCHAIN": "gcc", - "IDF_TOOLCHAIN_GCC": true, - "IO_GLITCH_FILTER_TIME_MS": 50, - "JSMN_PARENT_LINKS": false, - "JSMN_STATIC": false, - "JSMN_STRICT": false, - "LCD_ENABLE_DEBUG_LOG": false, - "LEDC_CTRL_FUNC_IN_IRAM": false, - "LOG_COLORS": false, - "LOG_DEFAULT_LEVEL": 3, - "LOG_DEFAULT_LEVEL_DEBUG": false, - "LOG_DEFAULT_LEVEL_ERROR": false, - "LOG_DEFAULT_LEVEL_INFO": true, - "LOG_DEFAULT_LEVEL_NONE": false, - "LOG_DEFAULT_LEVEL_VERBOSE": false, - "LOG_DEFAULT_LEVEL_WARN": false, - "LOG_DYNAMIC_LEVEL_CONTROL": true, - "LOG_MASTER_LEVEL": false, - "LOG_MAXIMUM_EQUALS_DEFAULT": true, - "LOG_MAXIMUM_LEVEL": 3, - "LOG_MAXIMUM_LEVEL_DEBUG": false, - "LOG_MAXIMUM_LEVEL_VERBOSE": false, - "LOG_TAG_LEVEL_CACHE_ARRAY": false, - "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, - "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, - "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, - "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, - "LOG_TAG_LEVEL_IMPL_NONE": false, - "LOG_TIMESTAMP_SOURCE_RTOS": true, - "LOG_TIMESTAMP_SOURCE_SYSTEM": false, - "LWIP_AUTOIP": false, - "LWIP_BRIDGEIF_MAX_PORTS": 7, - "LWIP_BROADCAST_PING": false, - "LWIP_CHECKSUM_CHECK_ICMP": true, - "LWIP_CHECKSUM_CHECK_IP": false, - "LWIP_CHECKSUM_CHECK_UDP": false, - "LWIP_CHECK_THREAD_SAFETY": false, - "LWIP_DEBUG": false, - "LWIP_DHCPS": true, - "LWIP_DHCPS_ADD_DNS": true, - "LWIP_DHCPS_LEASE_UNIT": 60, - "LWIP_DHCPS_MAX_STATION_NUM": 8, - "LWIP_DHCPS_STATIC_ENTRIES": true, - "LWIP_DHCP_COARSE_TIMER_SECS": 1, - "LWIP_DHCP_DISABLE_CLIENT_ID": false, - "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, - "LWIP_DHCP_DOES_ACD_CHECK": false, - "LWIP_DHCP_DOES_ARP_CHECK": true, - "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": false, - "LWIP_DHCP_GET_NTP_SRV": false, - "LWIP_DHCP_OPTIONS_LEN": 68, - "LWIP_DHCP_RESTORE_LAST_IP": false, - "LWIP_DNS_MAX_HOST_IP": 1, - "LWIP_DNS_MAX_SERVERS": 3, - "LWIP_DNS_SETSERVER_WITH_NETIF": false, - "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, - "LWIP_ENABLE": true, - "LWIP_ESP_GRATUITOUS_ARP": true, - "LWIP_ESP_LWIP_ASSERT": true, - "LWIP_ESP_MLDV6_REPORT": true, - "LWIP_EXTRA_IRAM_OPTIMIZATION": false, - "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, - "LWIP_FORCE_ROUTER_FORWARDING": false, - "LWIP_GARP_TMR_INTERVAL": 60, - "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM": false, - "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, - "LWIP_HOOK_IP6_INPUT_CUSTOM": false, - "LWIP_HOOK_IP6_INPUT_DEFAULT": true, - "LWIP_HOOK_IP6_INPUT_NONE": false, - "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, - "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, - "LWIP_HOOK_IP6_ROUTE_NONE": true, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, - "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, - "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, - "LWIP_HOOK_ND6_GET_GW_NONE": true, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, - "LWIP_HOOK_TCP_ISN_CUSTOM": false, - "LWIP_HOOK_TCP_ISN_DEFAULT": true, - "LWIP_HOOK_TCP_ISN_NONE": false, - "LWIP_ICMP": true, - "LWIP_IP4_FRAG": true, - "LWIP_IP4_REASSEMBLY": false, - "LWIP_IP6_FRAG": true, - "LWIP_IP6_REASSEMBLY": false, - "LWIP_IPV4": true, - "LWIP_IPV6": true, - "LWIP_IPV6_AUTOCONFIG": false, - "LWIP_IPV6_FORWARD": false, - "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, - "LWIP_IPV6_ND6_NUM_DESTINATIONS": 10, - "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, - "LWIP_IPV6_ND6_NUM_PREFIXES": 5, - "LWIP_IPV6_ND6_NUM_ROUTERS": 3, - "LWIP_IPV6_NUM_ADDRESSES": 3, - "LWIP_IP_DEFAULT_TTL": 64, - "LWIP_IP_FORWARD": false, - "LWIP_IP_REASS_MAX_PBUFS": 10, - "LWIP_IRAM_OPTIMIZATION": false, - "LWIP_L2_TO_L3_COPY": false, - "LWIP_LOCAL_HOSTNAME": "espressif", - "LWIP_LOOPBACK_MAX_PBUFS": 8, - "LWIP_MAX_ACTIVE_TCP": 16, - "LWIP_MAX_LISTENING_TCP": 16, - "LWIP_MAX_RAW_PCBS": 16, - "LWIP_MAX_SOCKETS": 10, - "LWIP_MAX_UDP_PCBS": 16, - "LWIP_MLDV6_TMR_INTERVAL": 40, - "LWIP_MULTICAST_PING": false, - "LWIP_ND6": true, - "LWIP_NETBUF_RECVINFO": false, - "LWIP_NETIF_API": false, - "LWIP_NETIF_LOOPBACK": true, - "LWIP_NETIF_STATUS_CALLBACK": false, - "LWIP_NUM_NETIF_CLIENT_DATA": 0, - "LWIP_PPP_SUPPORT": false, - "LWIP_SLIP_SUPPORT": false, - "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": 5000, - "LWIP_SNTP_MAX_SERVERS": 1, - "LWIP_SNTP_STARTUP_DELAY": true, - "LWIP_SNTP_UPDATE_DELAY": 3600000, - "LWIP_SO_LINGER": false, - "LWIP_SO_RCVBUF": false, - "LWIP_SO_REUSE": true, - "LWIP_SO_REUSE_RXTOALL": true, - "LWIP_STATS": false, - "LWIP_TCPIP_CORE_LOCKING": false, - "LWIP_TCPIP_RECVMBOX_SIZE": 32, - "LWIP_TCPIP_TASK_AFFINITY": 2147483647, - "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, - "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, - "LWIP_TCPIP_TASK_PRIO": 18, - "LWIP_TCPIP_TASK_STACK_SIZE": 3072, - "LWIP_TCP_ACCEPTMBOX_SIZE": 6, - "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, - "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, - "LWIP_TCP_MAXRTX": 12, - "LWIP_TCP_MSL": 60000, - "LWIP_TCP_MSS": 1440, - "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, - "LWIP_TCP_OOSEQ_TIMEOUT": 6, - "LWIP_TCP_OVERSIZE_DISABLE": false, - "LWIP_TCP_OVERSIZE_MSS": true, - "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, - "LWIP_TCP_QUEUE_OOSEQ": true, - "LWIP_TCP_RECVMBOX_SIZE": 6, - "LWIP_TCP_RTO_TIME": 1500, - "LWIP_TCP_SACK_OUT": false, - "LWIP_TCP_SND_BUF_DEFAULT": 5760, - "LWIP_TCP_SYNMAXRTX": 12, - "LWIP_TCP_TMR_INTERVAL": 250, - "LWIP_TCP_WND_DEFAULT": 5760, - "LWIP_TIMERS_ONDEMAND": true, - "LWIP_UDP_RECVMBOX_SIZE": 6, - "LWIP_USE_ONLY_LWIP_SELECT": false, - "MBEDTLS_AES_C": true, - "MBEDTLS_AES_INTERRUPT_LEVEL": 0, - "MBEDTLS_AES_USE_INTERRUPT": true, - "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, - "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, - "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, - "MBEDTLS_BLOWFISH_C": false, - "MBEDTLS_CAMELLIA_C": false, - "MBEDTLS_CCM_C": true, - "MBEDTLS_CERTIFICATE_BUNDLE": true, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": true, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": false, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, - "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, - "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, - "MBEDTLS_CHACHA20_C": false, - "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, - "MBEDTLS_CMAC_C": true, - "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, - "MBEDTLS_CUSTOM_MEM_ALLOC": false, - "MBEDTLS_DEBUG": false, - "MBEDTLS_DEFAULT_MEM_ALLOC": false, - "MBEDTLS_DES_C": false, - "MBEDTLS_DHM_C": false, - "MBEDTLS_DYNAMIC_BUFFER": true, - "MBEDTLS_DYNAMIC_FREE_CA_CERT": true, - "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA": true, - "MBEDTLS_ECDH_C": true, - "MBEDTLS_ECDSA_C": true, - "MBEDTLS_ECDSA_DETERMINISTIC": true, - "MBEDTLS_ECJPAKE_C": false, - "MBEDTLS_ECP_C": true, - "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, - "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, - "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, - "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, - "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, - "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, - "MBEDTLS_ECP_NIST_OPTIM": true, - "MBEDTLS_ECP_RESTARTABLE": false, - "MBEDTLS_ERROR_STRINGS": true, - "MBEDTLS_FS_IO": true, - "MBEDTLS_GCM_C": true, - "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, - "MBEDTLS_HARDWARE_AES": true, - "MBEDTLS_HARDWARE_MPI": true, - "MBEDTLS_HARDWARE_SHA": true, - "MBEDTLS_HAVE_TIME": true, - "MBEDTLS_HAVE_TIME_DATE": false, - "MBEDTLS_HKDF_C": false, - "MBEDTLS_INTERNAL_MEM_ALLOC": true, - "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, - "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, - "MBEDTLS_KEY_EXCHANGE_RSA": true, - "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, - "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, - "MBEDTLS_MPI_USE_INTERRUPT": true, - "MBEDTLS_NIST_KW_C": false, - "MBEDTLS_PEM_PARSE_C": true, - "MBEDTLS_PEM_WRITE_C": true, - "MBEDTLS_PKCS7_C": true, - "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, - "MBEDTLS_PK_PARSE_EC_EXTENDED": true, - "MBEDTLS_PLATFORM_TIME_ALT": false, - "MBEDTLS_POLY1305_C": false, - "MBEDTLS_PSK_MODES": false, - "MBEDTLS_RIPEMD160_C": false, - "MBEDTLS_ROM_MD5": true, - "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, - "MBEDTLS_SHA3_C": false, - "MBEDTLS_SHA512_C": true, - "MBEDTLS_SSL_ALPN": true, - "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, - "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, - "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, - "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, - "MBEDTLS_SSL_PROTO_DTLS": false, - "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, - "MBEDTLS_SSL_PROTO_TLS1_2": true, - "MBEDTLS_SSL_RENEGOTIATION": true, - "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, - "MBEDTLS_THREADING_C": false, - "MBEDTLS_TLS_CLIENT": true, - "MBEDTLS_TLS_CLIENT_ONLY": false, - "MBEDTLS_TLS_DISABLED": false, - "MBEDTLS_TLS_ENABLED": true, - "MBEDTLS_TLS_SERVER": true, - "MBEDTLS_TLS_SERVER_AND_CLIENT": true, - "MBEDTLS_TLS_SERVER_ONLY": false, - "MBEDTLS_X509_CRL_PARSE_C": true, - "MBEDTLS_X509_CSR_PARSE_C": true, - "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, - "MBEDTLS_XTEA_C": false, - "MDNS_ACTION_QUEUE_LEN": 16, - "MDNS_ENABLE_CONSOLE_CLI": true, - "MDNS_ENABLE_DEBUG_PRINTS": false, - "MDNS_MAX_INTERFACES": 3, - "MDNS_MAX_SERVICES": 10, - "MDNS_MEMORY_ALLOC_INTERNAL": true, - "MDNS_MEMORY_CUSTOM_IMPL": false, - "MDNS_MULTIPLE_INSTANCE": true, - "MDNS_NETWORKING_SOCKET": false, - "MDNS_PREDEF_NETIF_AP": true, - "MDNS_PREDEF_NETIF_ETH": true, - "MDNS_PREDEF_NETIF_STA": true, - "MDNS_RESPOND_REVERSE_QUERIES": false, - "MDNS_SERVICE_ADD_TIMEOUT_MS": 2000, - "MDNS_SKIP_SUPPRESSING_OWN_QUERIES": false, - "MDNS_TASK_AFFINITY": 0, - "MDNS_TASK_AFFINITY_CPU0": true, - "MDNS_TASK_AFFINITY_NO_AFFINITY": false, - "MDNS_TASK_CREATE_FROM_INTERNAL": true, - "MDNS_TASK_PRIORITY": 1, - "MDNS_TASK_STACK_SIZE": 4096, - "MDNS_TIMER_PERIOD_MS": 100, - "MMU_PAGE_MODE": "64KB", - "MMU_PAGE_SIZE": 65536, - "MMU_PAGE_SIZE_64KB": true, - "MQTT_CUSTOM_OUTBOX": false, - "MQTT_MSG_ID_INCREMENTAL": false, - "MQTT_PROTOCOL_311": true, - "MQTT_PROTOCOL_5": false, - "MQTT_REPORT_DELETED_MESSAGES": false, - "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, - "MQTT_TASK_CORE_SELECTION_ENABLED": false, - "MQTT_TRANSPORT_SSL": true, - "MQTT_TRANSPORT_WEBSOCKET": true, - "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, - "MQTT_USE_CUSTOM_CONFIG": false, - "NETWORK_PROV_AUTOSTOP_TIMEOUT": 30, - "NETWORK_PROV_BLE_BONDING": false, - "NETWORK_PROV_BLE_FORCE_ENCRYPTION": false, - "NETWORK_PROV_BLE_SEC_CONN": true, - "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV": false, - "NETWORK_PROV_NETWORK_TYPE_WIFI": true, - "NETWORK_PROV_SCAN_MAX_ENTRIES": 16, - "NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN": true, - "NETWORK_PROV_WIFI_STA_FAST_SCAN": false, - "NEWLIB_NANO_FORMAT": false, - "NEWLIB_STDIN_LINE_ENDING_CR": true, - "NEWLIB_STDIN_LINE_ENDING_CRLF": false, - "NEWLIB_STDIN_LINE_ENDING_LF": false, - "NEWLIB_STDOUT_LINE_ENDING_CR": false, - "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, - "NEWLIB_STDOUT_LINE_ENDING_LF": false, - "NEWLIB_TIME_SYSCALL_USE_HRT": false, - "NEWLIB_TIME_SYSCALL_USE_NONE": false, - "NEWLIB_TIME_SYSCALL_USE_RTC": false, - "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, - "NVS_ASSERT_ERROR_CHECK": false, - "NVS_ENCRYPTION": false, - "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, - "OPENTHREAD_ENABLED": false, - "OPENTHREAD_SPINEL_ONLY": false, - "PARTITION_TABLE_CUSTOM": true, - "PARTITION_TABLE_CUSTOM_FILENAME": "partitions_4mb_optimised.csv", - "PARTITION_TABLE_FILENAME": "partitions_4mb_optimised.csv", - "PARTITION_TABLE_MD5": true, - "PARTITION_TABLE_OFFSET": 49152, - "PARTITION_TABLE_SINGLE_APP": false, - "PARTITION_TABLE_SINGLE_APP_LARGE": false, - "PARTITION_TABLE_TWO_OTA": false, - "PARTITION_TABLE_TWO_OTA_LARGE": false, - "PERIPH_CTRL_FUNC_IN_IRAM": true, - "PM_ENABLE": false, - "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, - "PM_SLP_IRAM_OPT": false, - "PTHREAD_STACK_MIN": 768, - "PTHREAD_TASK_CORE_DEFAULT": -1, - "PTHREAD_TASK_NAME_DEFAULT": "pthread", - "PTHREAD_TASK_PRIO_DEFAULT": 5, - "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, - "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, - "RMAKER_NAME_PARAM_CB": false, - "RMT_ENABLE_DEBUG_LOG": false, - "RMT_ISR_IRAM_SAFE": false, - "RMT_RECV_FUNC_IN_IRAM": false, - "RMT_SKIP_LEGACY_CONFLICT_CHECK": false, - "RMT_SUPPRESS_DEPRECATE_WARN": false, - "RTC_CLK_CAL_CYCLES": 1024, - "RTC_CLK_SRC_EXT_CRYS": false, - "RTC_CLK_SRC_EXT_OSC": false, - "RTC_CLK_SRC_INT_8MD256": false, - "RTC_CLK_SRC_INT_RC": true, - "RTC_STORE_CRITICAL_DATA_SIZE": 4096, - "RTC_STORE_DATA_SIZE": 6144, - "SDM_CTRL_FUNC_IN_IRAM": false, - "SDM_ENABLE_DEBUG_LOG": false, - "SDM_SKIP_LEGACY_CONFLICT_CHECK": false, - "SDM_SUPPRESS_DEPRECATE_WARN": false, - "SECURE_BOOT": false, - "SECURE_BOOT_V2_PREFERRED": true, - "SECURE_BOOT_V2_RSA_SUPPORTED": true, - "SECURE_FLASH_ENC_ENABLED": false, - "SECURE_ROM_DL_MODE_ENABLED": true, - "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, - "SERIAL_FLASHER_BOOT_HOLD_TIME_MS": 50, - "SERIAL_FLASHER_BOOT_INVERT": false, - "SERIAL_FLASHER_DEBUG_TRACE": false, - "SERIAL_FLASHER_INTERFACE_SDIO": false, - "SERIAL_FLASHER_INTERFACE_SPI": false, - "SERIAL_FLASHER_INTERFACE_UART": true, - "SERIAL_FLASHER_INTERFACE_USB": false, - "SERIAL_FLASHER_MD5_ENABLED": true, - "SERIAL_FLASHER_RESET_HOLD_TIME_MS": 100, - "SERIAL_FLASHER_RESET_INVERT": false, - "SERIAL_FLASHER_WRITE_BLOCK_RETRIES": 3, - "SOC_ADC_ARBITER_SUPPORTED": true, - "SOC_ADC_ATTEN_NUM": 4, - "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, - "SOC_ADC_DIGI_CONTROLLER_NUM": 1, - "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, - "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, - "SOC_ADC_DIGI_MAX_BITWIDTH": 12, - "SOC_ADC_DIGI_MIN_BITWIDTH": 12, - "SOC_ADC_DIGI_MONITOR_NUM": 2, - "SOC_ADC_DIGI_RESULT_BYTES": 4, - "SOC_ADC_DIG_CTRL_SUPPORTED": true, - "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, - "SOC_ADC_DMA_SUPPORTED": true, - "SOC_ADC_MAX_CHANNEL_NUM": 5, - "SOC_ADC_MONITOR_SUPPORTED": true, - "SOC_ADC_PATT_LEN_MAX": 8, - "SOC_ADC_PERIPH_NUM": 2, - "SOC_ADC_RTC_MAX_BITWIDTH": 12, - "SOC_ADC_RTC_MIN_BITWIDTH": 12, - "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, - "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, - "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, - "SOC_ADC_SHARED_POWER": true, - "SOC_ADC_SUPPORTED": true, - "SOC_AES_GDMA": true, - "SOC_AES_SUPPORTED": true, - "SOC_AES_SUPPORT_AES_128": true, - "SOC_AES_SUPPORT_AES_256": true, - "SOC_AES_SUPPORT_DMA": true, - "SOC_AHB_GDMA_SUPPORTED": true, - "SOC_AHB_GDMA_VERSION": 1, - "SOC_APB_BACKUP_DMA": true, - "SOC_ASSIST_DEBUG_SUPPORTED": true, - "SOC_ASYNC_MEMCPY_SUPPORTED": true, - "SOC_BLE_50_SUPPORTED": true, - "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, - "SOC_BLE_MESH_SUPPORTED": true, - "SOC_BLE_SUPPORTED": true, - "SOC_BLUFI_SUPPORTED": true, - "SOC_BOD_SUPPORTED": true, - "SOC_BROWNOUT_RESET_SUPPORTED": true, - "SOC_BT_SUPPORTED": true, - "SOC_CACHE_MEMORY_IBANK_SIZE": 16384, - "SOC_CLK_RC_FAST_D256_SUPPORTED": true, - "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, - "SOC_CLK_TREE_SUPPORTED": true, - "SOC_CLK_XTAL32K_SUPPORTED": true, - "SOC_COEX_HW_PTI": true, - "SOC_CPU_BREAKPOINTS_NUM": 8, - "SOC_CPU_CORES_NUM": 1, - "SOC_CPU_HAS_CSR_PC": true, - "SOC_CPU_HAS_FLEXIBLE_INTC": true, - "SOC_CPU_INTR_NUM": 32, - "SOC_CPU_WATCHPOINTS_NUM": 8, - "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, - "SOC_DEDICATED_GPIO_SUPPORTED": true, - "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, - "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, - "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, - "SOC_DEEP_SLEEP_SUPPORTED": true, - "SOC_DIG_SIGN_SUPPORTED": true, - "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, - "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, - "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, - "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, - "SOC_EFUSE_DIS_DIRECT_BOOT": true, - "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, - "SOC_EFUSE_DIS_ICACHE": true, - "SOC_EFUSE_DIS_PAD_JTAG": true, - "SOC_EFUSE_DIS_USB_JTAG": true, - "SOC_EFUSE_HAS_EFUSE_RST_BUG": true, - "SOC_EFUSE_KEY_PURPOSE_FIELD": true, - "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, - "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, - "SOC_EFUSE_SOFT_DIS_JTAG": true, - "SOC_EFUSE_SUPPORTED": true, - "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, - "SOC_FLASH_ENCRYPTION_XTS_AES": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, - "SOC_FLASH_ENC_SUPPORTED": true, - "SOC_GDMA_NUM_GROUPS_MAX": 1, - "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, - "SOC_GDMA_SUPPORTED": true, - "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, - "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, - "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 6, - "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, - "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, - "SOC_GPIO_IN_RANGE_MAX": 21, - "SOC_GPIO_OUT_RANGE_MAX": 21, - "SOC_GPIO_PIN_COUNT": 22, - "SOC_GPIO_PORT": 1, - "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, - "SOC_GPIO_SUPPORT_FORCE_HOLD": true, - "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, - "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 4194240, - "SOC_GPSPI_SUPPORTED": true, - "SOC_GPTIMER_SUPPORTED": true, - "SOC_HMAC_SUPPORTED": true, - "SOC_HP_I2C_NUM": 1, - "SOC_I2C_CMD_REG_NUM": 8, - "SOC_I2C_FIFO_LEN": 32, - "SOC_I2C_NUM": 1, - "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, - "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, - "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, - "SOC_I2C_SUPPORTED": true, - "SOC_I2C_SUPPORT_10BIT_ADDR": true, - "SOC_I2C_SUPPORT_HW_CLR_BUS": true, - "SOC_I2C_SUPPORT_RTC": true, - "SOC_I2C_SUPPORT_SLAVE": true, - "SOC_I2C_SUPPORT_XTAL": true, - "SOC_I2S_HW_VERSION_2": true, - "SOC_I2S_NUM": 1, - "SOC_I2S_PDM_MAX_TX_LINES": 2, - "SOC_I2S_SUPPORTED": true, - "SOC_I2S_SUPPORTS_PCM": true, - "SOC_I2S_SUPPORTS_PDM": true, - "SOC_I2S_SUPPORTS_PDM_TX": true, - "SOC_I2S_SUPPORTS_PLL_F160M": true, - "SOC_I2S_SUPPORTS_TDM": true, - "SOC_I2S_SUPPORTS_XTAL": true, - "SOC_LEDC_CHANNEL_NUM": 6, - "SOC_LEDC_SUPPORTED": true, - "SOC_LEDC_SUPPORT_APB_CLOCK": true, - "SOC_LEDC_SUPPORT_FADE_STOP": true, - "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, - "SOC_LEDC_TIMER_BIT_WIDTH": 14, - "SOC_LEDC_TIMER_NUM": 4, - "SOC_LIGHT_SLEEP_SUPPORTED": true, - "SOC_LP_PERIPH_SHARE_INTERRUPT": true, - "SOC_LP_TIMER_BIT_WIDTH_HI": 16, - "SOC_LP_TIMER_BIT_WIDTH_LO": 32, - "SOC_MAC_BB_PD_MEM_SIZE": 192, - "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, - "SOC_MEMPROT_MEM_ALIGN_SIZE": 512, - "SOC_MEMPROT_SUPPORTED": true, - "SOC_MEMSPI_IS_INDEPENDENT": true, - "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, - "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, - "SOC_MMU_PERIPH_NUM": 1, - "SOC_MPI_MEM_BLOCKS_NUM": 4, - "SOC_MPI_OPERATIONS_NUM": 3, - "SOC_MPI_SUPPORTED": true, - "SOC_MPU_MIN_REGION_SIZE": 536870912, - "SOC_MPU_REGIONS_MAX_NUM": 8, - "SOC_MWDT_SUPPORT_XTAL": true, - "SOC_PHY_COMBO_MODULE": true, - "SOC_PHY_DIG_REGS_MEM_SIZE": 21, - "SOC_PHY_SUPPORTED": true, - "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, - "SOC_PM_MODEM_PD_BY_SW": true, - "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, - "SOC_PM_SUPPORTED": true, - "SOC_PM_SUPPORT_BT_PD": true, - "SOC_PM_SUPPORT_BT_WAKEUP": true, - "SOC_PM_SUPPORT_CPU_PD": true, - "SOC_PM_SUPPORT_MAC_BB_PD": true, - "SOC_PM_SUPPORT_RC_FAST_PD": true, - "SOC_PM_SUPPORT_VDDSDIO_PD": true, - "SOC_PM_SUPPORT_WIFI_PD": true, - "SOC_PM_SUPPORT_WIFI_WAKEUP": true, - "SOC_RMT_CHANNELS_PER_GROUP": 4, - "SOC_RMT_GROUPS": 1, - "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, - "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, - "SOC_RMT_SUPPORTED": true, - "SOC_RMT_SUPPORT_APB": true, - "SOC_RMT_SUPPORT_RC_FAST": true, - "SOC_RMT_SUPPORT_RX_DEMODULATION": true, - "SOC_RMT_SUPPORT_RX_PINGPONG": true, - "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, - "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, - "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, - "SOC_RMT_SUPPORT_TX_SYNCHRO": true, - "SOC_RMT_SUPPORT_XTAL": true, - "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, - "SOC_RNG_SUPPORTED": true, - "SOC_RSA_MAX_BIT_LEN": 3072, - "SOC_RTCIO_PIN_COUNT": 0, - "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, - "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 108, - "SOC_RTC_FAST_MEM_SUPPORTED": true, - "SOC_RTC_MEM_SUPPORTED": true, - "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, - "SOC_SDM_CHANNELS_PER_GROUP": 4, - "SOC_SDM_CLK_SUPPORT_APB": true, - "SOC_SDM_GROUPS": 1, - "SOC_SDM_SUPPORTED": true, - "SOC_SECURE_BOOT_SUPPORTED": true, - "SOC_SECURE_BOOT_V2_RSA": true, - "SOC_SHARED_IDCACHE_SUPPORTED": true, - "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, - "SOC_SHA_GDMA": true, - "SOC_SHA_SUPPORTED": true, - "SOC_SHA_SUPPORT_DMA": true, - "SOC_SHA_SUPPORT_RESUME": true, - "SOC_SHA_SUPPORT_SHA1": true, - "SOC_SHA_SUPPORT_SHA224": true, - "SOC_SHA_SUPPORT_SHA256": true, - "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND": true, - "SOC_SLEEP_TGWDT_STOP_WORKAROUND": true, - "SOC_SPI_FLASH_SUPPORTED": true, - "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, - "SOC_SPI_MAX_CS_NUM": 6, - "SOC_SPI_MAX_PRE_DIVIDER": 16, - "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, - "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, - "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, - "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, - "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, - "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_WRAP": true, - "SOC_SPI_PERIPH_NUM": 2, - "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, - "SOC_SPI_SCT_BUFFER_NUM_MAX": true, - "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, - "SOC_SPI_SCT_REG_NUM": 14, - "SOC_SPI_SCT_SUPPORTED": true, - "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, - "SOC_SPI_SUPPORT_CD_SIG": true, - "SOC_SPI_SUPPORT_CLK_APB": true, - "SOC_SPI_SUPPORT_CLK_XTAL": true, - "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, - "SOC_SPI_SUPPORT_DDRCLK": true, - "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, - "SOC_SUPPORTS_SECURE_DL_MODE": true, - "SOC_SUPPORT_COEXISTENCE": true, - "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, - "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, - "SOC_SYSTIMER_ALARM_NUM": 3, - "SOC_SYSTIMER_BIT_WIDTH_HI": 20, - "SOC_SYSTIMER_BIT_WIDTH_LO": 32, - "SOC_SYSTIMER_COUNTER_NUM": 2, - "SOC_SYSTIMER_FIXED_DIVIDER": true, - "SOC_SYSTIMER_INT_LEVEL": true, - "SOC_SYSTIMER_SUPPORTED": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, - "SOC_TEMP_SENSOR_SUPPORTED": true, - "SOC_TIMER_GROUPS": 2, - "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, - "SOC_TIMER_GROUP_SUPPORT_APB": true, - "SOC_TIMER_GROUP_SUPPORT_XTAL": true, - "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, - "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, - "SOC_TWAI_BRP_MAX": 16384, - "SOC_TWAI_BRP_MIN": 2, - "SOC_TWAI_CLK_SUPPORT_APB": true, - "SOC_TWAI_CONTROLLER_NUM": 1, - "SOC_TWAI_SUPPORTED": true, - "SOC_TWAI_SUPPORTS_RX_STATUS": true, - "SOC_UART_BITRATE_MAX": 5000000, - "SOC_UART_FIFO_LEN": 128, - "SOC_UART_HP_NUM": 2, - "SOC_UART_NUM": 2, - "SOC_UART_SUPPORTED": true, - "SOC_UART_SUPPORT_APB_CLK": true, - "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, - "SOC_UART_SUPPORT_RTC_CLK": true, - "SOC_UART_SUPPORT_WAKEUP_INT": true, - "SOC_UART_SUPPORT_XTAL_CLK": true, - "SOC_USB_SERIAL_JTAG_SUPPORTED": true, - "SOC_WDT_SUPPORTED": true, - "SOC_WIFI_CSI_SUPPORT": true, - "SOC_WIFI_FTM_SUPPORT": true, - "SOC_WIFI_GCMP_SUPPORT": true, - "SOC_WIFI_HW_TSF": true, - "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, - "SOC_WIFI_MESH_SUPPORT": true, - "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, - "SOC_WIFI_SUPPORTED": true, - "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, - "SOC_WIFI_WAPI_SUPPORT": true, - "SOC_XTAL_SUPPORT_40M": true, - "SOC_XT_WDT_SUPPORTED": true, - "SPIFFS_API_DBG": false, - "SPIFFS_CACHE": true, - "SPIFFS_CACHE_DBG": false, - "SPIFFS_CACHE_STATS": false, - "SPIFFS_CACHE_WR": true, - "SPIFFS_CHECK_DBG": false, - "SPIFFS_DBG": false, - "SPIFFS_FOLLOW_SYMLINKS": false, - "SPIFFS_GC_DBG": false, - "SPIFFS_GC_MAX_RUNS": 10, - "SPIFFS_GC_STATS": false, - "SPIFFS_MAX_PARTITIONS": 3, - "SPIFFS_META_LENGTH": 4, - "SPIFFS_OBJ_NAME_LEN": 32, - "SPIFFS_PAGE_CHECK": true, - "SPIFFS_PAGE_SIZE": 256, - "SPIFFS_TEST_VISUALISATION": false, - "SPIFFS_USE_MAGIC": true, - "SPIFFS_USE_MAGIC_LENGTH": true, - "SPIFFS_USE_MTIME": true, - "SPI_FLASH_AUTO_SUSPEND": false, - "SPI_FLASH_BROWNOUT_RESET": true, - "SPI_FLASH_BROWNOUT_RESET_XMC": true, - "SPI_FLASH_BYPASS_BLOCK_ERASE": false, - "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, - "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, - "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, - "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, - "SPI_FLASH_ENABLE_COUNTERS": false, - "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, - "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, - "SPI_FLASH_ERASE_YIELD_TICKS": 1, - "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, - "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, - "SPI_FLASH_ROM_DRIVER_PATCH": true, - "SPI_FLASH_ROM_IMPL": false, - "SPI_FLASH_SIZE_OVERRIDE": false, - "SPI_FLASH_SUPPORT_BOYA_CHIP": true, - "SPI_FLASH_SUPPORT_GD_CHIP": true, - "SPI_FLASH_SUPPORT_ISSI_CHIP": true, - "SPI_FLASH_SUPPORT_MXIC_CHIP": true, - "SPI_FLASH_SUPPORT_TH_CHIP": true, - "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, - "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, - "SPI_FLASH_VENDOR_BOYA_SUPPORTED": true, - "SPI_FLASH_VENDOR_GD_SUPPORTED": true, - "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, - "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, - "SPI_FLASH_VENDOR_TH_SUPPORTED": true, - "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, - "SPI_FLASH_VENDOR_XMC_SUPPORTED": true, - "SPI_FLASH_VERIFY_WRITE": false, - "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, - "SPI_FLASH_YIELD_DURING_ERASE": true, - "SPI_MASTER_IN_IRAM": false, - "SPI_MASTER_ISR_IN_IRAM": true, - "SPI_SLAVE_IN_IRAM": false, - "SPI_SLAVE_ISR_IN_IRAM": true, - "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, - "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": false, - "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, - "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, - "TWAI_ISR_IN_IRAM": false, - "UART_HW_FLOWCTRL_CTS_RTS": false, - "UART_HW_FLOWCTRL_DISABLE": true, - "UART_ISR_IN_IRAM": false, - "UNITY_ENABLE_64BIT": false, - "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, - "UNITY_ENABLE_COLOR": false, - "UNITY_ENABLE_DOUBLE": true, - "UNITY_ENABLE_FIXTURE": false, - "UNITY_ENABLE_FLOAT": true, - "UNITY_ENABLE_IDF_TEST_RUNNER": true, - "USJ_ENABLE_USB_SERIAL_JTAG": true, - "VFS_INITIALIZE_DEV_NULL": true, - "VFS_MAX_COUNT": 8, - "VFS_SELECT_IN_RAM": false, - "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, - "VFS_SUPPORT_DIR": true, - "VFS_SUPPORT_IO": true, - "VFS_SUPPORT_SELECT": true, - "VFS_SUPPORT_TERMIOS": true, - "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, - "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, - "WIFI_PROV_BLE_BONDING": false, - "WIFI_PROV_BLE_FORCE_ENCRYPTION": false, - "WIFI_PROV_BLE_NOTIFY": false, - "WIFI_PROV_BLE_SEC_CONN": true, - "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV": false, - "WIFI_PROV_SCAN_MAX_ENTRIES": 16, - "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, - "WIFI_PROV_STA_FAST_SCAN": false, - "WL_SECTOR_SIZE": 4096, - "WL_SECTOR_SIZE_4096": true, - "WL_SECTOR_SIZE_512": false, - "WS2812_LED_ENABLE": true, - "WS2812_LED_GPIO": 8, - "WS_BUFFER_SIZE": 1024, - "WS_DYNAMIC_BUFFER": false, - "WS_TRANSPORT": true, - "XTAL_FREQ": 40, - "XTAL_FREQ_40": true -} \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj deleted file mode 100644 index a78670dc3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_insights/CMakeFiles/__idf_app_insights.dir/app_insights.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_insights/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/app_insights/cmake_install.cmake deleted file mode 100644 index 9ecb21152..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_insights/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/app_insights - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj deleted file mode 100644 index 6355a6249..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_network.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj deleted file mode 100644 index 9cd219ae5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_thread_internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj deleted file mode 100644 index e76c32747..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_network/CMakeFiles/__idf_app_network.dir/app_wifi_internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_network/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/app_network/cmake_install.cmake deleted file mode 100644 index e1acd7683..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_network/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/app_network - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj deleted file mode 100644 index 99b803af9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_reset/CMakeFiles/__idf_app_reset.dir/app_reset.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_reset/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/app_reset/cmake_install.cmake deleted file mode 100644 index 7bc295d12..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_reset/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/app_reset - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj deleted file mode 100644 index 726d5a22b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj deleted file mode 100644 index 0dd911735..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj deleted file mode 100644 index bfb43b068..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj deleted file mode 100644 index 327934bed..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_trace/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/app_trace/cmake_install.cmake deleted file mode 100644 index 74d87c251..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_trace/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/app_trace - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj deleted file mode 100644 index 6822b2247..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj deleted file mode 100644 index dbb5910b8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/app_update/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/app_update/cmake_install.cmake deleted file mode 100644 index 930ff8187..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_update/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/app_update - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/app_update/otadata-flash_args.in b/RainMaker_Table-Lights/build/esp-idf/app_update/otadata-flash_args.in deleted file mode 100644 index 967e99b02..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/app_update/otadata-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x16000 ota_data_initial.bin \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader/bootloader-flash_args.in b/RainMaker_Table-Lights/build/esp-idf/bootloader/bootloader-flash_args.in deleted file mode 100644 index a8204b4e0..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/bootloader/bootloader-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/bootloader/cmake_install.cmake deleted file mode 100644 index a804e3657..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/bootloader/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj deleted file mode 100644 index f218bf267..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj deleted file mode 100644 index 4c42497c5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj deleted file mode 100644 index 02c9c6b78..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj deleted file mode 100644 index 656c0ae30..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj deleted file mode 100644 index ed8e21237..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj deleted file mode 100644 index bbe505317..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj deleted file mode 100644 index 428dd4370..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj deleted file mode 100644 index 377635cf9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj deleted file mode 100644 index c0ac162c4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj deleted file mode 100644 index f12efc954..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32c3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj deleted file mode 100644 index 997351aac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj deleted file mode 100644 index 72ae65648..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32c3/secure_boot_secure_features.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj deleted file mode 100644 index ff7e19a20..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj deleted file mode 100644 index bef6766ed..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj deleted file mode 100644 index abcb29ae6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj deleted file mode 100644 index f22f3acb9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj deleted file mode 100644 index 3264b8cb8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/bootloader_support/cmake_install.cmake deleted file mode 100644 index 304a3ca88..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/bootloader_support/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj deleted file mode 100644 index 3d21c3507..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/api/esp_blufi_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj deleted file mode 100644 index 2c6aa7a35..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/ble_log/ble_log_spi_out.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj deleted file mode 100644 index a50c0cee5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_alarm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj deleted file mode 100644 index c5b41ea17..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_manage.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj deleted file mode 100644 index 565a57809..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/core/btc_task.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj deleted file mode 100644 index 2491d733a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_prf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj deleted file mode 100644 index da936fc8a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/blufi_protocol.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj deleted file mode 100644 index 5706d816e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj deleted file mode 100644 index 7d74a3558..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/hci_log/bt_hci_log.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj deleted file mode 100644 index 1b2e5c48e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/alarm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj deleted file mode 100644 index f0ed54f02..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/allocator.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj deleted file mode 100644 index 653b81625..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/buffer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj deleted file mode 100644 index 936e89194..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj deleted file mode 100644 index ced274537..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_pkt_queue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj deleted file mode 100644 index c893a1936..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/fixed_queue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj deleted file mode 100644 index ed764a784..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/future.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj deleted file mode 100644 index 11a9ca5ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_functions.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj deleted file mode 100644 index 1d979f45e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/hash_map.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj deleted file mode 100644 index beb9b1c57..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/list.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj deleted file mode 100644 index 1c6a64fa5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/mutex.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj deleted file mode 100644 index 30eca592b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/osi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj deleted file mode 100644 index 628e38be9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/pkt_queue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj deleted file mode 100644 index 147b7a24c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/semaphore.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj deleted file mode 100644 index 2c5c890bc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/common/osi/thread.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj deleted file mode 100644 index b2c834611..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/controller/esp32c3/bt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj deleted file mode 100644 index d219df05e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/esp-hci/src/esp_nimble_hci.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj deleted file mode 100644 index e89fe3104..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj deleted file mode 100644 index a08ba6750..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj deleted file mode 100644 index cf5b01f7d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj deleted file mode 100644 index 57d17e674..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj deleted file mode 100644 index cdb0a1549..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj deleted file mode 100644 index bd5637639..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj deleted file mode 100644 index 33e585032..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj deleted file mode 100644 index de2464a71..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj deleted file mode 100644 index e3080027a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj deleted file mode 100644 index 223a5d73e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj deleted file mode 100644 index 117707ebf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj deleted file mode 100644 index 7e3e9c57b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj deleted file mode 100644 index 2cf1e1a74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj deleted file mode 100644 index c319f10cb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj deleted file mode 100644 index b5beec254..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj deleted file mode 100644 index ae8ab002d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj deleted file mode 100644 index 372e29584..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj deleted file mode 100644 index 96e21a8df..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj deleted file mode 100644 index 230edf93a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_clt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj deleted file mode 100644 index d4cb2b3ac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj deleted file mode 100644 index a3fb2d02e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_att_svr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj deleted file mode 100644 index ff53bdc44..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ead.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj deleted file mode 100644 index 4ea427fa1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eatt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj deleted file mode 100644 index 105751940..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_eddystone.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj deleted file mode 100644 index c61136e61..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj deleted file mode 100644 index 206a164c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj deleted file mode 100644 index 62371a577..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj deleted file mode 100644 index fe15a692d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj deleted file mode 100644 index 493656495..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj deleted file mode 100644 index a6bca09fb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj deleted file mode 100644 index 8327e707e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj deleted file mode 100644 index 479b23514..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_adv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj deleted file mode 100644 index d10189c67..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj deleted file mode 100644 index 98deec7a4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj deleted file mode 100644 index 2151865bb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_conn.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj deleted file mode 100644 index b06d746c8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_flow.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj deleted file mode 100644 index 7f37411d7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj deleted file mode 100644 index b06aefb88..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj deleted file mode 100644 index 7c607d158..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj deleted file mode 100644 index 99eda1d5a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj deleted file mode 100644 index ff62dd27f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_id.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj deleted file mode 100644 index ed087f257..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_log.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj deleted file mode 100644 index 83833c82b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj deleted file mode 100644 index d37cc0b63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_misc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj deleted file mode 100644 index 6306728a7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj deleted file mode 100644 index 2c97788dd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj deleted file mode 100644 index 3bc06370e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj deleted file mode 100644 index a70bc3a9f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj deleted file mode 100644 index 00b0801ec..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj deleted file mode 100644 index df4bf943e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_startup.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj deleted file mode 100644 index a8e4d93cc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_hs_stop.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj deleted file mode 100644 index eb4a4e989..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_ibeacon.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj deleted file mode 100644 index 2cf3022c4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj deleted file mode 100644 index 5f436a5ec..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj deleted file mode 100644 index e8f305793..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj deleted file mode 100644 index 470f8ff93..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj deleted file mode 100644 index 1cb6a51f0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj deleted file mode 100644 index 7f4ada63a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_alg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj deleted file mode 100644 index 8ff36fa8f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj deleted file mode 100644 index bcf82f841..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj deleted file mode 100644 index 87ccf4212..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_sm_sc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj deleted file mode 100644 index a92b2d1ff..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj deleted file mode 100644 index 4839fe06a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_store_util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj deleted file mode 100644 index 52dbcdaca..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_uuid.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj deleted file mode 100644 index fdf4a9d08..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj deleted file mode 100644 index 61ee012a8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj deleted file mode 100644 index d8379c9ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj deleted file mode 100644 index c0e9debbd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/util/src/addr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj deleted file mode 100644 index aecee41e0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj deleted file mode 100644 index e16696513..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/transport/src/transport.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj deleted file mode 100644 index 0ab7bb9b0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/endian.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj deleted file mode 100644 index 48553b453..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj deleted file mode 100644 index 771f025cb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/nimble_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj deleted file mode 100644 index 573e23618..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mbuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj deleted file mode 100644 index b3cb4f9fe..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_mempool.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj deleted file mode 100644 index 1b00c4ba3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/nimble/src/os_msys_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj deleted file mode 100644 index 40305faec..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj deleted file mode 100644 index 88b7e8981..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj deleted file mode 100644 index 00e558e0a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/port/src/nvs_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj b/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj deleted file mode 100644 index c957ee6d4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/bt/CMakeFiles/__idf_bt.dir/porting/mem/bt_osi_mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/bt/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/bt/cmake_install.cmake deleted file mode 100644 index a63b7abc2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/bt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/bt - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/cmake_install.cmake deleted file mode 100644 index 7dbab6512..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/cmake_install.cmake +++ /dev/null @@ -1,659 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esptool_py/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/partition_table/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_psram/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/idf_test/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ieee802154/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/openthread/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ulp/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/usb/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj b/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj deleted file mode 100644 index c1217be5c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/cmock/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/cmock/cmake_install.cmake deleted file mode 100644 index 1f8a2f72d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/cmock/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/cmock - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj deleted file mode 100644 index b2d56ccb2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj deleted file mode 100644 index a905b8cc7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj deleted file mode 100644 index f7e07a9ea..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj deleted file mode 100644 index 9019afebb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj deleted file mode 100644 index 9ab57bdf3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj deleted file mode 100644 index 21ae98079..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj deleted file mode 100644 index 4a75cd0fa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj deleted file mode 100644 index 5643a66a5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj deleted file mode 100644 index faa807bac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj deleted file mode 100644 index a7c0c6e3c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj deleted file mode 100644 index 53f624279..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj deleted file mode 100644 index 02ff010bc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj deleted file mode 100644 index e6c94d5a0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj deleted file mode 100644 index 5376c5959..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj deleted file mode 100644 index dbbc22150..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj deleted file mode 100644 index f69276239..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj deleted file mode 100644 index 64a8dbf8f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj deleted file mode 100644 index c4cb3198c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj deleted file mode 100644 index 9e950e536..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/console/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/console/cmake_install.cmake deleted file mode 100644 index 8d6785a0e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/console/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/console - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj deleted file mode 100644 index f09d33867..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj deleted file mode 100644 index ee4592ed1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj deleted file mode 100644 index 1bab6271b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/cxx/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/cxx/cmake_install.cmake deleted file mode 100644 index 36ced7ea7..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/cxx/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/cxx - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj deleted file mode 100644 index 1edc2a4ce..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj deleted file mode 100644 index e9501bfc3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj deleted file mode 100644 index 331262ea9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj deleted file mode 100644 index 076a470ed..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj deleted file mode 100644 index 18008c88a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj deleted file mode 100644 index d87f3bfc4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj deleted file mode 100644 index 803390527..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj deleted file mode 100644 index 6f128e69b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj deleted file mode 100644 index a74acd675..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/driver/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/driver/cmake_install.cmake deleted file mode 100644 index aacc6a94a..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/driver/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/driver - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj deleted file mode 100644 index 9ee0e3a71..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_fields.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj deleted file mode 100644 index 4208cac8c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_rtc_calib.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj deleted file mode 100644 index ee1fd8049..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_table.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj deleted file mode 100644 index 52fa560fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32c3/esp_efuse_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj deleted file mode 100644 index 44d77c565..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj deleted file mode 100644 index 7b45df95c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj deleted file mode 100644 index fc2dfb85b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj deleted file mode 100644 index e9268a820..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj deleted file mode 100644 index 042ef15e6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/efuse/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/efuse/cmake_install.cmake deleted file mode 100644 index 1aaf790d4..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/efuse/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/efuse - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj deleted file mode 100644 index f8f161820..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj deleted file mode 100644 index 8eeea9dc3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj deleted file mode 100644 index 2a2d8bcd8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj deleted file mode 100644 index aeb7988dc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj deleted file mode 100644 index b48b4816f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp-tls/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp-tls/cmake_install.cmake deleted file mode 100644 index 9aa30c6db..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp-tls/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp-tls - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj deleted file mode 100644 index 63ecc8143..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj deleted file mode 100644 index 58f563ef3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj deleted file mode 100644 index 361ece3ea..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj deleted file mode 100644 index eaeb9f97c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj deleted file mode 100644 index 72c401a4c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj deleted file mode 100644 index 2d24bd0b1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj deleted file mode 100644 index 861d51aaf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj deleted file mode 100644 index 101ba3d89..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32c3/esp_adc_cal_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj deleted file mode 100644 index afa22cd63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj deleted file mode 100644 index cbc428092..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32c3/curve_fitting_coefficients.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj deleted file mode 100644 index a15436a12..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_adc/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_adc/cmake_install.cmake deleted file mode 100644 index 8b8e5c63f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_adc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_adc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj deleted file mode 100644 index e7cd52736..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_app_format/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_app_format/cmake_install.cmake deleted file mode 100644 index dd8faa0db..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_app_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj deleted file mode 100644 index bb98a2f16..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/cmake_install.cmake deleted file mode 100644 index 53d95e552..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj deleted file mode 100644 index 3bef77463..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32c3/esp_coex_adapter.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj deleted file mode 100644 index 479eec9b4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj deleted file mode 100644 index 6c72cf6f9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj deleted file mode 100644 index cd5b9017c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj deleted file mode 100644 index 2723bc2bb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/lib_printf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_coex/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_coex/cmake_install.cmake deleted file mode 100644 index 1b2b02a1b..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_coex/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_coex - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj deleted file mode 100644 index e1f713e01..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_common/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_common/cmake_install.cmake deleted file mode 100644 index 6381bb6c4..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_common/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_common - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake deleted file mode 100644 index 8e5bde5a1..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj deleted file mode 100644 index 1f7e49a38..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj deleted file mode 100644 index fb5e72160..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/cmake_install.cmake deleted file mode 100644 index 97757c03e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/cmake_install.cmake deleted file mode 100644 index 52a26b48c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_dac/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj deleted file mode 100644 index 21509c4b3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj deleted file mode 100644 index 2e68244ba..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj deleted file mode 100644 index 0e5521b0b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj deleted file mode 100644 index 4a1ace644..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj deleted file mode 100644 index 27a5f5381..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/cmake_install.cmake deleted file mode 100644 index 07f542d7a..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj deleted file mode 100644 index aa82c7d43..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj deleted file mode 100644 index 5ae437b10..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/cmake_install.cmake deleted file mode 100644 index c96052c4c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj deleted file mode 100644 index 211f237c6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj deleted file mode 100644 index 5114a361b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj deleted file mode 100644 index 6c2c22246..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/cmake_install.cmake deleted file mode 100644 index bb1a38236..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj deleted file mode 100644 index a28055a98..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj deleted file mode 100644 index 96c2792ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj deleted file mode 100644 index 2643bfd49..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj deleted file mode 100644 index ba939baf9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj deleted file mode 100644 index c2287ce68..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/cmake_install.cmake deleted file mode 100644 index aa7cb8516..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/cmake_install.cmake deleted file mode 100644 index f5bf8a147..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_isp/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/cmake_install.cmake deleted file mode 100644 index d92893bc6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_jpeg/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj deleted file mode 100644 index 6c1ed405b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/cmake_install.cmake deleted file mode 100644 index 61526d42a..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake deleted file mode 100644 index 9f54a4e2d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/cmake_install.cmake deleted file mode 100644 index fd10db78c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_parlio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/cmake_install.cmake deleted file mode 100644 index 1a4cdf1b6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_pcnt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/cmake_install.cmake deleted file mode 100644 index 6c3899727..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_ppa/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj deleted file mode 100644 index f4e37397a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj deleted file mode 100644 index e747577ef..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj deleted file mode 100644 index a330bf647..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj deleted file mode 100644 index bfd0189e4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/cmake_install.cmake deleted file mode 100644 index f42dfcae6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/cmake_install.cmake deleted file mode 100644 index a6a465f81..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj deleted file mode 100644 index d6a223db8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/cmake_install.cmake deleted file mode 100644 index 680b32f8b..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake deleted file mode 100644 index b0e194920..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj deleted file mode 100644 index 269ae6bb7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj deleted file mode 100644 index f65575c12..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj deleted file mode 100644 index bbbda04c1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/cmake_install.cmake deleted file mode 100644 index 37983fc31..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj deleted file mode 100644 index d7b50723a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj deleted file mode 100644 index 704407e21..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj deleted file mode 100644 index c107c8cc3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj deleted file mode 100644 index 4f648031f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj deleted file mode 100644 index 6fd34a5ab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/cmake_install.cmake deleted file mode 100644 index 75320c178..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake deleted file mode 100644 index 39f8a8756..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj deleted file mode 100644 index 24e70787b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/cmake_install.cmake deleted file mode 100644 index f06eb9b57..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj deleted file mode 100644 index 0bebea21c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj deleted file mode 100644 index 57728d3d3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/cmake_install.cmake deleted file mode 100644 index 2e5fe6903..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj deleted file mode 100644 index a83c611c1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj deleted file mode 100644 index b9f7dbdd2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj deleted file mode 100644 index 9ff571ea5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake deleted file mode 100644 index 733fb3792..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj deleted file mode 100644 index b534c12c0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj deleted file mode 100644 index a1d5c576d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj deleted file mode 100644 index 9edbe2fe8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_eth/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_eth/cmake_install.cmake deleted file mode 100644 index 9593590a2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_eth/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_eth - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj deleted file mode 100644 index bc6136091..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj deleted file mode 100644 index 28bb2dda9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj deleted file mode 100644 index 0f0f19497..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_event/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_event/cmake_install.cmake deleted file mode 100644 index 675b3cfed..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_event/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_event - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj deleted file mode 100644 index 9548d0a60..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj deleted file mode 100644 index f087fd4ba..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj deleted file mode 100644 index 762851bc9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj deleted file mode 100644 index fe3c992fc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/gdbstub_riscv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj deleted file mode 100644 index 800b59807..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/riscv/rv_decode.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/cmake_install.cmake deleted file mode 100644 index eca6a3a11..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj deleted file mode 100644 index 1675c996a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj deleted file mode 100644 index edb0cc759..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj deleted file mode 100644 index 4497ae43c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj deleted file mode 100644 index e18df6132..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj deleted file mode 100644 index 3ab5f9fe5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/nimble_hidh.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hid/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_hid/cmake_install.cmake deleted file mode 100644 index b09b04a0b..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_hid/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hid - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj deleted file mode 100644 index d931c4df6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj deleted file mode 100644 index f441faa06..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj deleted file mode 100644 index 585e4774b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj deleted file mode 100644 index b978d058f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_http_client/cmake_install.cmake deleted file mode 100644 index bf382fc07..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_http_client/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj deleted file mode 100644 index 5a789fdd0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj deleted file mode 100644 index 1396cb570..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj deleted file mode 100644 index bf9bef1a2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj deleted file mode 100644 index 95207ebc5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj deleted file mode 100644 index 6ac4a8cc0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj deleted file mode 100644 index d13a090f5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj deleted file mode 100644 index ada34da45..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_http_server/cmake_install.cmake deleted file mode 100644 index d8097b24e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_http_server/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj deleted file mode 100644 index 0935df091..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/cmake_install.cmake deleted file mode 100644 index 64a4417b8..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj deleted file mode 100644 index 000d99d68..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_https_server/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_https_server/cmake_install.cmake deleted file mode 100644 index fd5883776..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_https_server/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj deleted file mode 100644 index 5f103140d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj deleted file mode 100644 index fbd812354..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj deleted file mode 100644 index a0c355291..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj deleted file mode 100644 index 6ddbbda2d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj deleted file mode 100644 index fb2a954f4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj deleted file mode 100644 index 3efae80a1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj deleted file mode 100644 index 2ea286f98..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj deleted file mode 100644 index 929789e53..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj deleted file mode 100644 index 5615bb05b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj deleted file mode 100644 index 48091ee99..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj deleted file mode 100644 index b33a9b977..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj deleted file mode 100644 index 4bdff4f23..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj deleted file mode 100644 index 4a37309f2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj deleted file mode 100644 index 9047948bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj deleted file mode 100644 index 52bd314db..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj deleted file mode 100644 index a8b2af87b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj deleted file mode 100644 index a80765217..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32c3/sleep_cpu.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj deleted file mode 100644 index acfd68d01..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj deleted file mode 100644 index 0cdede7e7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj deleted file mode 100644 index 7ac277242..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj deleted file mode 100644 index 0ff94f607..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/adc2_init_cal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj deleted file mode 100644 index 10b5c2f4f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/chip_info.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj deleted file mode 100644 index cec2510a1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/cpu_region_protect.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj deleted file mode 100644 index 074cfd305..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_clk_tree.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj deleted file mode 100644 index e6cbc32eb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_cpu_intr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj deleted file mode 100644 index 4f80dece2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/esp_memprot.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj deleted file mode 100644 index 3f109f2af..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/io_mux.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj deleted file mode 100644 index 33fde7d45..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj deleted file mode 100644 index d66801c97..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_clk_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj deleted file mode 100644 index a8930c614..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj deleted file mode 100644 index 8c9373b82..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_sleep.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj deleted file mode 100644 index b4670078b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/rtc_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj deleted file mode 100644 index 2beb74b17..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/sar_periph_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj deleted file mode 100644 index 1066da429..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32c3/systimer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj deleted file mode 100644 index 162b833cc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj deleted file mode 100644 index e61982c47..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj deleted file mode 100644 index 3740bdf5c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj deleted file mode 100644 index fcc5e4001..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj deleted file mode 100644 index 9d6063ab8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj deleted file mode 100644 index 2a38ae44c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj deleted file mode 100644 index bb12a613a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj deleted file mode 100644 index d1bf7674b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj deleted file mode 100644 index 415933933..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj deleted file mode 100644 index 5bc942a79..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj deleted file mode 100644 index c9f2a1231..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj deleted file mode 100644 index 9218ef1ce..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj deleted file mode 100644 index 30dccda13..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj deleted file mode 100644 index cfeaf7379..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj deleted file mode 100644 index c6ed6a074..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/cmake_install.cmake deleted file mode 100644 index 815c6fda0..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake deleted file mode 100644 index 3fc33c335..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake deleted file mode 100644 index ec39bbd7f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/port/esp32c3/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3 - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj deleted file mode 100644 index 030082b35..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj deleted file mode 100644 index 153622105..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj deleted file mode 100644 index 23531a112..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj deleted file mode 100644 index cb3dc2359..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj deleted file mode 100644 index aadb46770..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj deleted file mode 100644 index d0fb8a0ab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj deleted file mode 100644 index 21dddcea2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj deleted file mode 100644 index 7ebb0d1a6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj deleted file mode 100644 index 6553a5770..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_lcd/cmake_install.cmake deleted file mode 100644 index 0770c4e9c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_lcd/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj deleted file mode 100644 index 7fd532b19..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj deleted file mode 100644 index a7b2550e4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj deleted file mode 100644 index 74de739d0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj deleted file mode 100644 index 07a77b3de..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_ble.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj deleted file mode 100644 index a98d53c09..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/cmake_install.cmake deleted file mode 100644 index 3c741b051..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj deleted file mode 100644 index 62f8e485e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj deleted file mode 100644 index 6e2a671e3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj deleted file mode 100644 index c71644487..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj deleted file mode 100644 index b14366577..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32c3/ext_mem_layout.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_mm/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_mm/cmake_install.cmake deleted file mode 100644 index b878d24b1..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_mm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_mm - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj deleted file mode 100644 index 5749f2028..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj deleted file mode 100644 index a3e655c95..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj deleted file mode 100644 index da4b281d9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj deleted file mode 100644 index afd203323..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj deleted file mode 100644 index 9a4996ab8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj deleted file mode 100644 index aa52b1413..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj deleted file mode 100644 index 0ed4d24b7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj deleted file mode 100644 index 0ba58f220..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj deleted file mode 100644 index 2e157d7e2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_netif/cmake_install.cmake deleted file mode 100644 index 76f78c4e8..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_netif/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_netif - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/cmake_install.cmake deleted file mode 100644 index 296ecbf80..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_netif_stack/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj deleted file mode 100644 index d434a15a8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj deleted file mode 100644 index b487c1c30..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_partition/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_partition/cmake_install.cmake deleted file mode 100644 index dd18f0e74..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_partition/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_partition - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj deleted file mode 100644 index 72a59d731..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32c3/phy_init_data.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj deleted file mode 100644 index dd8b3609c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj deleted file mode 100644 index b3f5de165..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj deleted file mode 100644 index b8de0f695..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj deleted file mode 100644 index 91226fde3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj deleted file mode 100644 index ec54f15f3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_phy/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_phy/cmake_install.cmake deleted file mode 100644 index c8cea210e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_phy/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_phy - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj deleted file mode 100644 index 65979bf2d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj deleted file mode 100644 index 07d0da748..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj deleted file mode 100644 index fe4ff4b8d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_pm/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_pm/cmake_install.cmake deleted file mode 100644 index 0415a1bb8..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_pm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_pm - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_psram/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_psram/cmake_install.cmake deleted file mode 100644 index 92e280863..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_psram/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_psram - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj deleted file mode 100644 index 96910a1d4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_claim_service_server.crt.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj deleted file mode 100644 index 4366ce61b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_mqtt_server.crt.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj deleted file mode 100644 index 9b0145cfe..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/__/__/rmaker_ota_server.crt.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj deleted file mode 100644 index 9025aefaf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_commands.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj deleted file mode 100644 index 5cf6cab04..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/console/esp_rmaker_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj deleted file mode 100644 index f9e35c15f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_claim.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj deleted file mode 100644 index 8ccc5d1c9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_client_data.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj deleted file mode 100644 index 00ab8522f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_cmd_resp_manager.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj deleted file mode 100644 index dc37cd529..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_core.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj deleted file mode 100644 index 2e789dda0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_device.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj deleted file mode 100644 index cd2418054..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_local_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj deleted file mode 100644 index d8f6b2de7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj deleted file mode 100644 index 3bebdc82b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_auth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj deleted file mode 100644 index 2c473a76c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_node_config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj deleted file mode 100644 index ba197710a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_param.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj deleted file mode 100644 index 71a864a1a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_scenes.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj deleted file mode 100644 index e679eadab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_schedule.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj deleted file mode 100644 index b2619820d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_secure_boot_digest.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj deleted file mode 100644 index 3f51db781..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_system_service.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj deleted file mode 100644 index 089e9c37c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_time_service.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj deleted file mode 100644 index 7b2d1cd1c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj deleted file mode 100644 index 7e5ae989d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/core/esp_rmaker_user_mapping.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj deleted file mode 100644 index 0d8fdae67..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj deleted file mode 100644 index 6e7b9cda9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/mqtt/esp_rmaker_mqtt_budget.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj deleted file mode 100644 index 9c387af54..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj deleted file mode 100644 index 6e27076c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_params.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj deleted file mode 100644 index 5f9d9f80b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/ota/esp_rmaker_ota_using_topics.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj deleted file mode 100644 index c5b61b639..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_devices.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj deleted file mode 100644 index d1e74205d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_params.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj deleted file mode 100644 index 2cbcb2085..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/__idf_esp_rainmaker.dir/src/standard_types/esp_rmaker_standard_services.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/HEAD b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/HEAD deleted file mode 100644 index cb089cd89..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/grabRef.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index 469cba34d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -set(HEAD_HASH) - -file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "/home/alex/.espressif/esp-rainmaker/.git") -# handle git-worktree -if(EXISTS "${GIT_DIR}/commondir") - file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) - string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) - if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") - get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) - endif() - if(EXISTS "${GIT_DIR_NEW}") - set(GIT_DIR "${GIT_DIR_NEW}") - endif() -endif() -if(HEAD_CONTENTS MATCHES "ref") - # named branch - string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") - if(EXISTS "${GIT_DIR}/${HEAD_REF}") - configure_file("${GIT_DIR}/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref deleted file mode 100644 index b4e26f61c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -d0d0e27a986cf7606b6eb77dbfa2801fb693f724 diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/cmake_install.cmake deleted file mode 100644 index aead176d3..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj deleted file mode 100644 index 4dea7b89d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/cmake_install.cmake deleted file mode 100644 index 7d7648317..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj deleted file mode 100644 index 69578ed9c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj deleted file mode 100644 index c6c5a37fa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj deleted file mode 100644 index 7e3c26fe8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj deleted file mode 100644 index 9ced30c65..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj deleted file mode 100644 index bd201ea4d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj deleted file mode 100644 index e46f7fdb9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj deleted file mode 100644 index 07c4565ec..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj deleted file mode 100644 index 5efbf7e76..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_rom/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_rom/cmake_install.cmake deleted file mode 100644 index dee487f24..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_rom/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_rom - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj deleted file mode 100644 index 1bb762136..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj deleted file mode 100644 index a84fb0197..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj deleted file mode 100644 index 268712cd3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj deleted file mode 100644 index e9d8c91a9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_security/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_security/cmake_install.cmake deleted file mode 100644 index 0cedbfb28..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_security/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_security - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj deleted file mode 100644 index dcdfc3cd6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj deleted file mode 100644 index cd6b7e84d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj deleted file mode 100644 index 9c8584fd7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj deleted file mode 100644 index 292849c66..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj deleted file mode 100644 index 85ed545e1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj deleted file mode 100644 index 3e9dc81df..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj deleted file mode 100644 index bed66b6fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj deleted file mode 100644 index 1d66fd463..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj deleted file mode 100644 index 33851688a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj deleted file mode 100644 index a27229315..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj deleted file mode 100644 index 321699aff..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj deleted file mode 100644 index ce96c1067..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj deleted file mode 100644 index 273a82a02..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj deleted file mode 100644 index 7f58d8ac5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj deleted file mode 100644 index 7e451eff3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj deleted file mode 100644 index a19e10adb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj deleted file mode 100644 index 255342c75..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj deleted file mode 100644 index 855442c63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/apb_backup_dma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj deleted file mode 100644 index ef7514848..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/cache_err_int.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj deleted file mode 100644 index 416da2a88..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/clk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj deleted file mode 100644 index a2121b345..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/reset_reason.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj deleted file mode 100644 index 3a1ab9fc5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32c3/system_internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj deleted file mode 100644 index 00259bb94..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj deleted file mode 100644 index 86a6f13f5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj deleted file mode 100644 index fe968c552..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj deleted file mode 100644 index b8f5662ce..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj deleted file mode 100644 index 683881b4a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj deleted file mode 100644 index d8c2af3b6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj deleted file mode 100644 index 72be24fe1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj deleted file mode 100644 index a092f9131..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_system/cmake_install.cmake deleted file mode 100644 index 31e4ee2f0..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_system - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/linker_script_generator.cmake deleted file mode 100644 index 845c872e7..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/linker_script_generator.cmake +++ /dev/null @@ -1,9 +0,0 @@ -execute_process(COMMAND "${CC}" "-C" "-P" "-x" "c" "-E" "-I" "${CONFIG_DIR}" "-I" "${LD_DIR}" "${SOURCE}" - RESULT_VARIABLE RET_CODE - OUTPUT_VARIABLE PREPROCESSED_LINKER_SCRIPT - ERROR_VARIABLE ERROR_VAR) -if(RET_CODE AND NOT RET_CODE EQUAL 0) - message(FATAL_ERROR "Can't generate ${TARGET}\nRET_CODE: ${RET_CODE}\nERROR_MESSAGE: ${ERROR_VAR}") -endif() -string(REPLACE "\\n" "\n" TEXT "${PREPROCESSED_LINKER_SCRIPT}") -file(WRITE "${TARGET}" "${TEXT}") diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld b/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld deleted file mode 100644 index adf47ea95..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld +++ /dev/null @@ -1,94 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/** - * ESP32-C3 Linker Script Memory Layout - * This file describes the memory layout (memory blocks) by virtual memory addresses. - * This linker script is passed through the C preprocessor to include configuration options. - * Please use preprocessor features sparingly! - * Restrict to simple macros with numeric values, and/or #if/#endif blocks. - */ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header - */ - -/* List of deprecated options */ -/* - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - * PMP region granularity size - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - * the PMP granularity is 2^G+2 bytes. - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/** - * physical memory is mapped twice to the vritual address (IRAM and DRAM). - * `I_D_SRAM_OFFSET` is the offset between the two locations of the same physical memory - */ -MEMORY -{ - /** - * All these values assume the flash cache is on, and have the blocks this uses subtracted from the length - * of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but - * are connected to the data port of the CPU and eg allow byte-wise access. - */ - /* IRAM for PRO CPU. */ - iram0_0_seg (RX) : org = (0x4037C000 + 0x4000), len = 0x403CE710 - (0x4037C000 - 0x3FC7C000) - (0x3FC7C000 + 0x4000) - /* Flash mapped instruction data */ - iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-0x20 - /** - * (0x20 offset above is a convenience for the app binary image generation. - * Flash cache has 64KB pages. The .bin file which is flashed to the chip - * has a 0x18 byte file header, and each segment has a 0x08 byte segment - * header. Setting this offset makes it simple to meet the flash cache MMU's - * constraint that (paddr % 64KB == vaddr % 64KB).) - */ - /** - * Shared data RAM, excluding memory reserved for ROM bss/data/stack. - * Enabling Bluetooth & Trace Memory features in menuconfig will decrease the amount of RAM available. - */ - dram0_0_seg (RW) : org = (0x3FC7C000 + 0x4000), len = 0x403CE710 - (0x4037C000 - 0x3FC7C000) - (0x3FC7C000 + 0x4000) - /* Flash mapped constant data */ - drom0_0_seg (R) : org = 0x3C000020, len = 0x800000-0x20 - /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ - /** - * RTC fast memory (executable). Persists over deep sleep. - */ - rtc_iram_seg(RWX) : org = 0x50000000, len = 0x2000 - (0 + (24)) - /* We reduced the size of rtc_iram_seg by RESERVE_RTC_MEM value. - It reserves the amount of RTC fast memory that we use for this memory segment. - This segment is intended for keeping: - - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). - - (higher addr) bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on). - The aim of this is to keep data that will not be moved around and have a fixed address. - */ - rtc_reserved_seg(RW) : org = 0x50000000 + 0x2000 - (0 + (24)), len = (0 + (24)) -} -/* Heap ends at top of dram0_0_seg */ -_heap_end = 0x40000000; -_data_seg_org = ORIGIN(rtc_data_seg); -/** - * The lines below define location alias for .rtc.data section - * As C3 only has RTC fast memory, this is not configurable like on other targets - */ -REGION_ALIAS("rtc_data_seg", rtc_iram_seg ); -REGION_ALIAS("rtc_slow_seg", rtc_iram_seg ); -REGION_ALIAS("rtc_data_location", rtc_iram_seg ); - REGION_ALIAS("default_code_seg", iram0_2_seg); - REGION_ALIAS("default_rodata_seg", drom0_0_seg); -/** - * If rodata default segment is placed in `drom0_0_seg`, then flash's first rodata section must - * also be first in the segment. - */ - ASSERT(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg), - ".flash_rodata_dummy section must be placed at the beginning of the rodata segment.") diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld b/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld deleted file mode 100644 index 1486dd720..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld +++ /dev/null @@ -1,738 +0,0 @@ -/* Automatically generated file; DO NOT EDIT */ -/* Espressif IoT Development Framework Linker Script */ -/* Generated from: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in */ - -/* - * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header - */ - -/* List of deprecated options */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - * PMP region granularity size - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - * the PMP granularity is 2^G+2 bytes. - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/* Default entry point */ -ENTRY(call_start_cpu0); -SECTIONS -{ - /** - * RTC fast memory holds RTC wake stub code, - * including from any source file named rtc_wake_stub*.c - */ - .rtc.text : - { - - . = ALIGN(4); - _rtc_fast_start = ABSOLUTE(.); - *(.rtc.literal .rtc.text .rtc.text.*) - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - /* Padding for possible CPU prefetch + alignment for PMS split lines */ - . += 16; - . = ALIGN(512); - _rtc_text_end = ABSOLUTE(.); - } > rtc_iram_seg - /** - * This section located in RTC FAST Memory area. - * It holds data marked with RTC_FAST_ATTR attribute. - * See the file "esp_attr.h" for more information. - */ - .rtc.force_fast : - { - - . = ALIGN(4); - _rtc_force_fast_start = ABSOLUTE(.); - _coredump_rtc_fast_start = ABSOLUTE(.); - *(.rtc.fast.coredump .rtc.fast.coredump.*) - _coredump_rtc_fast_end = ABSOLUTE(.); - *(.rtc.force_fast .rtc.force_fast.*) - - . = ALIGN(4); - _rtc_force_fast_end = ABSOLUTE(.); - } > rtc_data_seg - /** - * RTC data section holds RTC wake stub - * data/rodata, including from any source file - * named rtc_wake_stub*.c and the data marked with - * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. - */ - .rtc.data : - { - _rtc_data_start = ABSOLUTE(.); - _coredump_rtc_start = ABSOLUTE(.); - *(.rtc.coredump .rtc.coredump.*) - _coredump_rtc_end = ABSOLUTE(.); - *(.rtc.data .rtc.data.*) - *(.rtc.rodata .rtc.rodata.*) - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - _rtc_data_end = ABSOLUTE(.); - } > rtc_data_location - /* RTC bss, from any source file named rtc_wake_stub*.c */ - .rtc.bss (NOLOAD) : - { - _rtc_bss_start = ABSOLUTE(.); - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - *(.rtc.bss) - _rtc_bss_end = ABSOLUTE(.); - } > rtc_data_location - /** - * This section holds data that should not be initialized at power up - * and will be retained during deep sleep. - * User data marked with RTC_NOINIT_ATTR will be placed - * into this section. See the file "esp_attr.h" for more information. - */ - .rtc_noinit (NOLOAD): - { - - . = ALIGN(4); - _rtc_noinit_start = ABSOLUTE(.); - *(.rtc_noinit .rtc_noinit.*) - - . = ALIGN(4); - _rtc_noinit_end = ABSOLUTE(.); - } > rtc_data_location - /** - * This section located in RTC SLOW Memory area. - * It holds data marked with RTC_SLOW_ATTR attribute. - * See the file "esp_attr.h" for more information. - */ - .rtc.force_slow : - { - - . = ALIGN(4); - _rtc_force_slow_start = ABSOLUTE(.); - *(.rtc.force_slow .rtc.force_slow.*) - - . = ALIGN(4); - _rtc_force_slow_end = ABSOLUTE(.); - } > rtc_slow_seg - /** - * This section holds RTC data that should have fixed addresses. - * The data are not initialized at power-up and are retained during deep - * sleep. - */ - .rtc_reserved (NOLOAD): - { - - . = ALIGN(4); - _rtc_reserved_start = ABSOLUTE(.); - /** - * New data can only be added here to ensure existing data are not moved. - * Because data have adhered to the end of the segment and code is relied - * on it. - * >> put new data here << - */ - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) - _rtc_reserved_end = ABSOLUTE(.); - } > rtc_reserved_seg - _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; - ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), - "RTC reserved segment data does not fit.") - /* Get size of rtc slow data based on rtc_data_location alias */ - _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_slow_end - _rtc_data_start) - : (_rtc_force_slow_end - _rtc_force_slow_start); - _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_fast_end - _rtc_fast_start) - : (_rtc_noinit_end - _rtc_fast_start); - ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), - "RTC_SLOW segment data does not fit.") - ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), - "RTC_FAST segment data does not fit.") - .iram0.text : - { - _iram_start = ABSOLUTE(.); - /* Vectors go to start of IRAM */ - ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); - KEEP(*(.exception_vectors_table.text)); - KEEP(*(.exception_vectors.text)); - - . = ALIGN(4); - _invalid_pc_placeholder = ABSOLUTE(.); - /* Code marked as running out of IRAM */ - _iram_text_start = ABSOLUTE(.); - *(.iram1 .iram1.*) - *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) - *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) - *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) - *libcoexist.a:(.coexiram .coexiram.*) - *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) - *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) - *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) - *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) - *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) - *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) - *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) - *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) - *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) - *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) - *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) - *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) - *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) - *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) - *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) - *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) - *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) - *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) - *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) - *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text.*) - *libfreertos.a:tasks.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) - *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) - *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) - *libgcov.a:(.literal .literal.* .text .text.*) - *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) - *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) - *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) - *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) - *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) - *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) - *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) - *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) - *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) - *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) - *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) - *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) - *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) - *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) - *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) - *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) - *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) - *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) - *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) - *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) - *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) - *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) - *liblog.a:log_lock.*(.literal .literal.* .text .text.*) - *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) - *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) - *libnet80211.a:(.wifi0iram .wifi0iram.*) - *libnet80211.a:(.wifirxiram .wifirxiram.*) - *libnet80211.a:(.wifislprxiram .wifislprxiram.*) - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - *libnewlib.a:assert.*(.literal .literal.* .text .text.*) - *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) - *libpp.a:(.wifi0iram .wifi0iram.*) - *libpp.a:(.wifiorslpiram .wifiorslpiram.*) - *libpp.a:(.wifirxiram .wifirxiram.*) - *libpp.a:(.wifislprxiram .wifislprxiram.*) - *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item .text.intr_handler_get_arg) - *libriscv.a:vectors.*(.literal .literal.* .text .text.*) - *librtc.a:(.literal .literal.* .text .text.*) - *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) - *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) - } > iram0_0_seg - /** - * This section is required to skip .iram0.text area because iram0_0_seg and - * dram0_0_seg reflect the same address space on different buses. - */ - .dram0.dummy (NOLOAD): - { - . = ORIGIN(dram0_0_seg) + _iram_end - _iram_start; - } > dram0_0_seg - .dram0.data : - { - _data_start = ABSOLUTE(.); - *(.gnu.linkonce.d.*) - *(.data1) - __global_pointer$ = . + 0x800; - *(.sdata) - *(.sdata.*) - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a) .data EXCLUDE_FILE(*libbt.a *libbtdm_app.a) .data.*) - *(.dram1 .dram1.*) - _coredump_dram_start = ABSOLUTE(.); - *(.dram2.coredump .dram2.coredump.*) - _coredump_dram_end = ABSOLUTE(.); - *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - . = ALIGN(4); - _bt_data_start = ABSOLUTE(.); - *libbt.a:(.data .data.*) - . = ALIGN(4); - _bt_data_end = ABSOLUTE(.); - . = ALIGN(4); - _bt_controller_data_start = ABSOLUTE(.); - *libbtdm_app.a:(.data .data.*) - . = ALIGN(4); - _bt_controller_data_end = ABSOLUTE(.); - *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:save.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - _data_end = ABSOLUTE(.); - } > dram0_0_seg - /** - * This section holds data that should not be initialized at power up. - * The section located in Internal SRAM memory region. The macro _NOINIT - * can be used as attribute to place data into this section. - * See the "esp_attr.h" file for more information. - */ - .noinit (NOLOAD): - { - - . = ALIGN(4); - _noinit_start = ABSOLUTE(.); - *(.noinit .noinit.*) - - . = ALIGN(4); - _noinit_end = ABSOLUTE(.); - } > dram0_0_seg - /* Shared RAM */ - .dram0.bss (NOLOAD) : - { - - . = ALIGN(8); - _bss_start = ABSOLUTE(.); - /** - * ldgen places all bss-related data to mapping[dram0_bss] - * (See components/esp_system/app.lf). - */ - *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a) .bss EXCLUDE_FILE(*libbt.a *libbtdm_app.a) .bss.*) - *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) - *(.ext_ram.bss .ext_ram.bss.*) - *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a) COMMON) - . = ALIGN(4); - _bt_bss_start = ABSOLUTE(.); - *libbt.a:(.bss .bss.*) - . = ALIGN(4); - _bt_bss_end = ABSOLUTE(.); - . = ALIGN(4); - _bt_common_start = ABSOLUTE(.); - *libbt.a:(COMMON) - . = ALIGN(4); - _bt_common_end = ABSOLUTE(.); - . = ALIGN(4); - _bt_controller_bss_start = ABSOLUTE(.); - *libbtdm_app.a:(.bss .bss.*) - . = ALIGN(4); - _bt_controller_bss_end = ABSOLUTE(.); - . = ALIGN(4); - _bt_controller_common_start = ABSOLUTE(.); - *libbtdm_app.a:(COMMON) - . = ALIGN(4); - _bt_controller_common_end = ABSOLUTE(.); - - . = ALIGN(8); - _bss_end = ABSOLUTE(.); - } > dram0_0_seg - ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), - "DRAM segment data does not fit.") - .flash.text : - { - _stext = .; - /** - * Mark the start of flash.text. - * This can be used by the MMU driver to maintain the virtual address. - */ - _instruction_reserved_start = ABSOLUTE(.); - _text_start = ABSOLUTE(.); - *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_gptimer.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log_lock.* *liblog.a:log_timestamp.* *liblog.a:log_write.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text.*) - *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*) - *(.wifiextrairam .wifiextrairam.*) - *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) - *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*) - *(.wifislpiram .wifislpiram.*) - *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*) - *libcoexist.a:(.coexsleepiram .coexsleepiram.*) - *libesp_driver_gptimer.a:gptimer.*(.text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_register_to_group .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) - *libesp_event.a:default_event_loop.*(.text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) - *libesp_event.a:esp_event.*(.text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.find_and_unregister_handler .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler .text.loop_remove_handler) - *libesp_hw_support.a:cpu.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) - *libesp_hw_support.a:gdma.*(.text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) - *libesp_hw_support.a:periph_ctrl.*(.text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) - *libesp_hw_support.a:sar_periph_ctrl.*(.text .text.s_sar_adc_power_acquire .text.s_sar_adc_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) - *libesp_system.a:esp_system_chip.*(.text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) - *libesp_wifi.a:esp_adapter.*(.text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.disable_intr_wrapper .text.enable_intr_wrapper .text.esp_event_post_wrapper .text.esp_log_write_wrapper .text.esp_log_writev_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.esp_read_mac_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.nvs_open_wrapper .text.queue_create_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) - *libesp_wifi.a:wifi_netif.*(.text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) - *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) - *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) - *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) - *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) - *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) - *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) - *libhal.a:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy .text.gdma_ll_rx_enable_interrupt .text.gdma_ll_tx_enable_interrupt) - *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) - *libhal.a:gpio_hal.*(.text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core) - *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) - *libheap.a:multi_heap.*(.text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes .text.multi_heap_walk) - *libheap.a:tlsf.*(.text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_malloc_addr .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) - *liblog.a:log_timestamp.*(.text) - *liblog.a:log_write.*(.text .text.esp_log_set_vprintf .text.esp_log_writev) - *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) - *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ - /** - * CPU will try to prefetch up to 16 bytes of of instructions. - * This means that any configuration (e.g. MMU, PMS) must allow - * safe access to up to 16 bytes after the last real instruction, add - * dummy bytes to ensure this - */ - . += 16; - _text_end = ABSOLUTE(.); - /** - * Mark the flash.text end. - * This can be used for MMU driver to maintain virtual address. - */ - _instruction_reserved_end = ABSOLUTE(.); - _etext = .; - /** - * Similar to _iram_start, this symbol goes here so it is - * resolved by addr2line in preference to the first symbol in - * the flash.text segment. - */ - _flash_cache_start = ABSOLUTE(0); - } > default_code_seg - /** - * Dummy section represents the .flash.text section but in default_rodata_seg. - * Thus, it must have its alignment and (at least) its size. - */ - .flash_rodata_dummy (NOLOAD): - { - _flash_rodata_dummy_start = .; - . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); - /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ - . = ALIGN(0x10000) + 0x20; - } > default_rodata_seg - .flash.appdesc : ALIGN(0x10) - { - /** - * Mark flash.rodata start. - * This can be used for mmu driver to maintain virtual address - */ - _rodata_reserved_start = ABSOLUTE(.); - _rodata_start = ABSOLUTE(.); - /* !DO NOT PUT ANYTHING BEFORE THIS! */ - /* Should be the first. App version info. */ - *(.rodata_desc .rodata_desc.*) - /* Should be the second. Custom app version info. */ - *(.rodata_custom_desc .rodata_custom_desc.*) - /** - * Create an empty gap within this section. Thanks to this, the end of this - * section will match .flash.rodata's begin address. Thus, both sections - * will be merged when creating the final bin image. - */ - . = ALIGN(ALIGNOF(.flash.rodata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") - .flash.rodata : ALIGN(0x10) - { - _flash_rodata_start = ABSOLUTE(.); - *(EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:wdt_hal_iram.* *liblog.a:log_lock.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) - *(.rodata_wlog_error .rodata_wlog_error.*) - *(.rodata_wlog_info .rodata_wlog_info.*) - *(.rodata_wlog_warning .rodata_wlog_warning.*) - *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - *(.gnu.linkonce.e.*) - /** - * C++ constructor tables. - * - * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. - * - * RISC-V gcc is configured with --enable-initfini-array so it emits - * .init_array section instead. But the init_priority sections will be - * sorted for iteration in ascending order during startup. - * The rest of the init_array sections is sorted for iteration in descending - * order during startup, however. Hence a different section is generated for - * the init_priority functions which is iterated in ascending order during - * startup. The corresponding code can be found in startup.c. - */ - - . = ALIGN(4); - __init_priority_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) - __init_priority_array_end = ABSOLUTE(.); - - . = ALIGN(4); - __init_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) - __init_array_end = ABSOLUTE(.); - /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ - - . = ALIGN(4); - soc_reserved_memory_region_start = ABSOLUTE(.); - KEEP (*(.reserved_memory_address)) - soc_reserved_memory_region_end = ABSOLUTE(.); - /* System init functions registered via ESP_SYSTEM_INIT_FN */ - - . = ALIGN(4); - _esp_system_init_fn_array_start = ABSOLUTE(.); - KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) - _esp_system_init_fn_array_end = ABSOLUTE(.); - _rodata_end = ABSOLUTE(.); - . = ALIGN(ALIGNOF(.eh_frame_hdr)); - } > default_rodata_seg - ASSERT((ADDR(.eh_frame_hdr) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.") - .eh_frame_hdr : - { - . = ALIGN(ALIGNOF(.eh_frame)); - } > default_rodata_seg - ASSERT((ADDR(.eh_frame) == ADDR(.eh_frame_hdr) + SIZEOF(.eh_frame_hdr)), "The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.") - .eh_frame : - { - . = ALIGN(ALIGNOF(.flash.tdata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.tdata) == ADDR(.eh_frame) + SIZEOF(.eh_frame)), "The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.") - .flash.tdata : - { - _thread_local_data_start = ABSOLUTE(.); - *(.tdata .tdata.* .gnu.linkonce.td.*) - . = ALIGN(ALIGNOF(.flash.tbss)); - _thread_local_data_end = ABSOLUTE(.); - } > default_rodata_seg - ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") - .flash.tbss (NOLOAD) : - { - _thread_local_bss_start = ABSOLUTE(.); - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - _thread_local_bss_end = ABSOLUTE(.); - } > default_rodata_seg - /** - * This section contains all the rodata that is not used - * at runtime, helping to avoid an increase in binary size. - */ - .flash.rodata_noload (NOLOAD) : - { - /** - * This symbol marks the end of flash.rodata. It can be utilized by the MMU - * driver to maintain the virtual address. - * NOLOAD rodata may not be included in this section. - */ - _rodata_reserved_end = ADDR(.flash.tbss); - *(.rodata_wlog_debug .rodata_wlog_debug.*) - *(.rodata_wlog_verbose .rodata_wlog_verbose.*) - } > default_rodata_seg - /* Marks the end of IRAM code segment */ - .iram0.text_end (NOLOAD) : - { - /* Padding for possible CPU prefetch + alignment for PMS split lines */ - . += 16; - . = ALIGN(512); - /* iram_end_test section exists for use by memprot unit tests only */ - *(.iram_end_test) - _iram_text_end = ABSOLUTE(.); - } > iram0_0_seg - .iram0.data : - { - - . = ALIGN(16); - _iram_data_start = ABSOLUTE(.); - *(.iram.data .iram.data.*) - _coredump_iram_start = ABSOLUTE(.); - *(.iram2.coredump .iram2.coredump.*) - _coredump_iram_end = ABSOLUTE(.); - _iram_data_end = ABSOLUTE(.); - } > iram0_0_seg - .iram0.bss (NOLOAD) : - { - - . = ALIGN(16); - _iram_bss_start = ABSOLUTE(.); - *(.iram.bss .iram.bss.*) - _iram_bss_end = ABSOLUTE(.); - - . = ALIGN(16); - _iram_end = ABSOLUTE(.); - } > iram0_0_seg - /* Marks the end of data, bss and possibly rodata */ - .dram0.heap_start (NOLOAD) : - { - - . = ALIGN(16); - _heap_start = ABSOLUTE(.); - } > dram0_0_seg - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - .debug_pubtypes 0 : { *(.debug_pubtypes) } - /* DWARF 3 */ - .debug_ranges 0 : { *(.debug_ranges) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } - /* GNU DWARF 2 extensions */ - .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } - .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } - /* DWARF 4 */ - .debug_types 0 : { *(.debug_types) } - /* DWARF 5 */ - .debug_addr 0 : { *(.debug_addr) } - .debug_line_str 0 : { *(.debug_line_str) } - .debug_loclists 0 : { *(.debug_loclists) } - .debug_macro 0 : { *(.debug_macro) } - .debug_names 0 : { *(.debug_names) } - .debug_rnglists 0 : { *(.debug_rnglists) } - .debug_str_offsets 0 : { *(.debug_str_offsets) } - .comment 0 : { *(.comment) } - .note.GNU-stack 0: { *(.note.GNU-stack) } - .riscv.attributes 0: { *(.riscv.attributes) } - /DISCARD/ : - { - /** - * Discarding .rela.* sections results in the following mapping: - * .rela.text.* -> .text.* - * .rela.data.* -> .data.* - * And so forth... - */ - *(.rela.*) - *(.got .got.plt) /* TODO: GCC-382 */ - *(.eh_frame_hdr) - *(.eh_frame) - } -} -ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), - "IRAM0 segment data does not fit.") -ASSERT(((_heap_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), - "DRAM segment data does not fit.") diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in b/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in deleted file mode 100644 index a96d154e8..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in +++ /dev/null @@ -1,468 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.4.1 Configuration Header - */ - -/* List of deprecated options */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - * PMP region granularity size - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - * the PMP granularity is 2^G+2 bytes. - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/* Default entry point */ -ENTRY(call_start_cpu0); -SECTIONS -{ - /** - * RTC fast memory holds RTC wake stub code, - * including from any source file named rtc_wake_stub*.c - */ - .rtc.text : - { - - . = ALIGN(4); - _rtc_fast_start = ABSOLUTE(.); - mapping[rtc_text] - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - /* Padding for possible CPU prefetch + alignment for PMS split lines */ - . += 16; - . = ALIGN(512); - _rtc_text_end = ABSOLUTE(.); - } > rtc_iram_seg - /** - * This section located in RTC FAST Memory area. - * It holds data marked with RTC_FAST_ATTR attribute. - * See the file "esp_attr.h" for more information. - */ - .rtc.force_fast : - { - - . = ALIGN(4); - _rtc_force_fast_start = ABSOLUTE(.); - mapping[rtc_force_fast] - *(.rtc.force_fast .rtc.force_fast.*) - - . = ALIGN(4); - _rtc_force_fast_end = ABSOLUTE(.); - } > rtc_data_seg - /** - * RTC data section holds RTC wake stub - * data/rodata, including from any source file - * named rtc_wake_stub*.c and the data marked with - * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. - */ - .rtc.data : - { - _rtc_data_start = ABSOLUTE(.); - mapping[rtc_data] - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - _rtc_data_end = ABSOLUTE(.); - } > rtc_data_location - /* RTC bss, from any source file named rtc_wake_stub*.c */ - .rtc.bss (NOLOAD) : - { - _rtc_bss_start = ABSOLUTE(.); - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - mapping[rtc_bss] - _rtc_bss_end = ABSOLUTE(.); - } > rtc_data_location - /** - * This section holds data that should not be initialized at power up - * and will be retained during deep sleep. - * User data marked with RTC_NOINIT_ATTR will be placed - * into this section. See the file "esp_attr.h" for more information. - */ - .rtc_noinit (NOLOAD): - { - - . = ALIGN(4); - _rtc_noinit_start = ABSOLUTE(.); - *(.rtc_noinit .rtc_noinit.*) - - . = ALIGN(4); - _rtc_noinit_end = ABSOLUTE(.); - } > rtc_data_location - /** - * This section located in RTC SLOW Memory area. - * It holds data marked with RTC_SLOW_ATTR attribute. - * See the file "esp_attr.h" for more information. - */ - .rtc.force_slow : - { - - . = ALIGN(4); - _rtc_force_slow_start = ABSOLUTE(.); - *(.rtc.force_slow .rtc.force_slow.*) - - . = ALIGN(4); - _rtc_force_slow_end = ABSOLUTE(.); - } > rtc_slow_seg - /** - * This section holds RTC data that should have fixed addresses. - * The data are not initialized at power-up and are retained during deep - * sleep. - */ - .rtc_reserved (NOLOAD): - { - - . = ALIGN(4); - _rtc_reserved_start = ABSOLUTE(.); - /** - * New data can only be added here to ensure existing data are not moved. - * Because data have adhered to the end of the segment and code is relied - * on it. - * >> put new data here << - */ - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) - _rtc_reserved_end = ABSOLUTE(.); - } > rtc_reserved_seg - _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; - ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), - "RTC reserved segment data does not fit.") - /* Get size of rtc slow data based on rtc_data_location alias */ - _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_slow_end - _rtc_data_start) - : (_rtc_force_slow_end - _rtc_force_slow_start); - _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_fast_end - _rtc_fast_start) - : (_rtc_noinit_end - _rtc_fast_start); - ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), - "RTC_SLOW segment data does not fit.") - ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), - "RTC_FAST segment data does not fit.") - .iram0.text : - { - _iram_start = ABSOLUTE(.); - /* Vectors go to start of IRAM */ - ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); - KEEP(*(.exception_vectors_table.text)); - KEEP(*(.exception_vectors.text)); - - . = ALIGN(4); - _invalid_pc_placeholder = ABSOLUTE(.); - /* Code marked as running out of IRAM */ - _iram_text_start = ABSOLUTE(.); - mapping[iram0_text] - } > iram0_0_seg - /** - * This section is required to skip .iram0.text area because iram0_0_seg and - * dram0_0_seg reflect the same address space on different buses. - */ - .dram0.dummy (NOLOAD): - { - . = ORIGIN(dram0_0_seg) + _iram_end - _iram_start; - } > dram0_0_seg - .dram0.data : - { - _data_start = ABSOLUTE(.); - *(.gnu.linkonce.d.*) - *(.data1) - __global_pointer$ = . + 0x800; - *(.sdata) - *(.sdata.*) - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - mapping[dram0_data] - _data_end = ABSOLUTE(.); - } > dram0_0_seg - /** - * This section holds data that should not be initialized at power up. - * The section located in Internal SRAM memory region. The macro _NOINIT - * can be used as attribute to place data into this section. - * See the "esp_attr.h" file for more information. - */ - .noinit (NOLOAD): - { - - . = ALIGN(4); - _noinit_start = ABSOLUTE(.); - *(.noinit .noinit.*) - - . = ALIGN(4); - _noinit_end = ABSOLUTE(.); - } > dram0_0_seg - /* Shared RAM */ - .dram0.bss (NOLOAD) : - { - - . = ALIGN(8); - _bss_start = ABSOLUTE(.); - /** - * ldgen places all bss-related data to mapping[dram0_bss] - * (See components/esp_system/app.lf). - */ - mapping[dram0_bss] - - . = ALIGN(8); - _bss_end = ABSOLUTE(.); - } > dram0_0_seg - ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), - "DRAM segment data does not fit.") - .flash.text : - { - _stext = .; - /** - * Mark the start of flash.text. - * This can be used by the MMU driver to maintain the virtual address. - */ - _instruction_reserved_start = ABSOLUTE(.); - _text_start = ABSOLUTE(.); - mapping[flash_text] - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ - /** - * CPU will try to prefetch up to 16 bytes of of instructions. - * This means that any configuration (e.g. MMU, PMS) must allow - * safe access to up to 16 bytes after the last real instruction, add - * dummy bytes to ensure this - */ - . += 16; - _text_end = ABSOLUTE(.); - /** - * Mark the flash.text end. - * This can be used for MMU driver to maintain virtual address. - */ - _instruction_reserved_end = ABSOLUTE(.); - _etext = .; - /** - * Similar to _iram_start, this symbol goes here so it is - * resolved by addr2line in preference to the first symbol in - * the flash.text segment. - */ - _flash_cache_start = ABSOLUTE(0); - } > default_code_seg - /** - * Dummy section represents the .flash.text section but in default_rodata_seg. - * Thus, it must have its alignment and (at least) its size. - */ - .flash_rodata_dummy (NOLOAD): - { - _flash_rodata_dummy_start = .; - . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); - /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ - . = ALIGN(0x10000) + 0x20; - } > default_rodata_seg - .flash.appdesc : ALIGN(0x10) - { - /** - * Mark flash.rodata start. - * This can be used for mmu driver to maintain virtual address - */ - _rodata_reserved_start = ABSOLUTE(.); - _rodata_start = ABSOLUTE(.); - /* !DO NOT PUT ANYTHING BEFORE THIS! */ - /* Should be the first. App version info. */ - *(.rodata_desc .rodata_desc.*) - /* Should be the second. Custom app version info. */ - *(.rodata_custom_desc .rodata_custom_desc.*) - /** - * Create an empty gap within this section. Thanks to this, the end of this - * section will match .flash.rodata's begin address. Thus, both sections - * will be merged when creating the final bin image. - */ - . = ALIGN(ALIGNOF(.flash.rodata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") - .flash.rodata : ALIGN(0x10) - { - _flash_rodata_start = ABSOLUTE(.); - mapping[flash_rodata] - *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - *(.gnu.linkonce.e.*) - /** - * C++ constructor tables. - * - * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. - * - * RISC-V gcc is configured with --enable-initfini-array so it emits - * .init_array section instead. But the init_priority sections will be - * sorted for iteration in ascending order during startup. - * The rest of the init_array sections is sorted for iteration in descending - * order during startup, however. Hence a different section is generated for - * the init_priority functions which is iterated in ascending order during - * startup. The corresponding code can be found in startup.c. - */ - - . = ALIGN(4); - __init_priority_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) - __init_priority_array_end = ABSOLUTE(.); - - . = ALIGN(4); - __init_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) - __init_array_end = ABSOLUTE(.); - /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ - - . = ALIGN(4); - soc_reserved_memory_region_start = ABSOLUTE(.); - KEEP (*(.reserved_memory_address)) - soc_reserved_memory_region_end = ABSOLUTE(.); - /* System init functions registered via ESP_SYSTEM_INIT_FN */ - - . = ALIGN(4); - _esp_system_init_fn_array_start = ABSOLUTE(.); - KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) - _esp_system_init_fn_array_end = ABSOLUTE(.); - _rodata_end = ABSOLUTE(.); - . = ALIGN(ALIGNOF(.eh_frame_hdr)); - } > default_rodata_seg - ASSERT((ADDR(.eh_frame_hdr) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .eh_frame_hdr must not exist to produce the final bin image.") - .eh_frame_hdr : - { - . = ALIGN(ALIGNOF(.eh_frame)); - } > default_rodata_seg - ASSERT((ADDR(.eh_frame) == ADDR(.eh_frame_hdr) + SIZEOF(.eh_frame_hdr)), "The gap between .eh_frame_hdr and .eh_frame must not exist to produce the final bin image.") - .eh_frame : - { - . = ALIGN(ALIGNOF(.flash.tdata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.tdata) == ADDR(.eh_frame) + SIZEOF(.eh_frame)), "The gap between .eh_frame and .flash.tdata must not exist to produce the final bin image.") - .flash.tdata : - { - _thread_local_data_start = ABSOLUTE(.); - *(.tdata .tdata.* .gnu.linkonce.td.*) - . = ALIGN(ALIGNOF(.flash.tbss)); - _thread_local_data_end = ABSOLUTE(.); - } > default_rodata_seg - ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") - .flash.tbss (NOLOAD) : - { - _thread_local_bss_start = ABSOLUTE(.); - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - _thread_local_bss_end = ABSOLUTE(.); - } > default_rodata_seg - /** - * This section contains all the rodata that is not used - * at runtime, helping to avoid an increase in binary size. - */ - .flash.rodata_noload (NOLOAD) : - { - /** - * This symbol marks the end of flash.rodata. It can be utilized by the MMU - * driver to maintain the virtual address. - * NOLOAD rodata may not be included in this section. - */ - _rodata_reserved_end = ADDR(.flash.tbss); - mapping[rodata_noload] - } > default_rodata_seg - /* Marks the end of IRAM code segment */ - .iram0.text_end (NOLOAD) : - { - /* Padding for possible CPU prefetch + alignment for PMS split lines */ - . += 16; - . = ALIGN(512); - /* iram_end_test section exists for use by memprot unit tests only */ - *(.iram_end_test) - _iram_text_end = ABSOLUTE(.); - } > iram0_0_seg - .iram0.data : - { - - . = ALIGN(16); - _iram_data_start = ABSOLUTE(.); - mapping[iram0_data] - _iram_data_end = ABSOLUTE(.); - } > iram0_0_seg - .iram0.bss (NOLOAD) : - { - - . = ALIGN(16); - _iram_bss_start = ABSOLUTE(.); - mapping[iram0_bss] - _iram_bss_end = ABSOLUTE(.); - - . = ALIGN(16); - _iram_end = ABSOLUTE(.); - } > iram0_0_seg - /* Marks the end of data, bss and possibly rodata */ - .dram0.heap_start (NOLOAD) : - { - - . = ALIGN(16); - _heap_start = ABSOLUTE(.); - } > dram0_0_seg - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - .debug_pubtypes 0 : { *(.debug_pubtypes) } - /* DWARF 3 */ - .debug_ranges 0 : { *(.debug_ranges) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } - /* GNU DWARF 2 extensions */ - .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } - .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } - /* DWARF 4 */ - .debug_types 0 : { *(.debug_types) } - /* DWARF 5 */ - .debug_addr 0 : { *(.debug_addr) } - .debug_line_str 0 : { *(.debug_line_str) } - .debug_loclists 0 : { *(.debug_loclists) } - .debug_macro 0 : { *(.debug_macro) } - .debug_names 0 : { *(.debug_names) } - .debug_rnglists 0 : { *(.debug_rnglists) } - .debug_str_offsets 0 : { *(.debug_str_offsets) } - .comment 0 : { *(.comment) } - .note.GNU-stack 0: { *(.note.GNU-stack) } - .riscv.attributes 0: { *(.riscv.attributes) } - /DISCARD/ : - { - /** - * Discarding .rela.* sections results in the following mapping: - * .rela.text.* -> .text.* - * .rela.data.* -> .data.* - * And so forth... - */ - *(.rela.*) - *(.got .got.plt) /* TODO: GCC-382 */ - *(.eh_frame_hdr) - *(.eh_frame) - } -} -ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), - "IRAM0 segment data does not fit.") -ASSERT(((_heap_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), - "DRAM segment data does not fit.") diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/port/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_system/port/cmake_install.cmake deleted file mode 100644 index 9694d3765..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/port/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/cmake_install.cmake deleted file mode 100644 index 2eadb7410..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_system/port/soc/esp32c3/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3 - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj deleted file mode 100644 index 7cfebfecf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj deleted file mode 100644 index 6924635f4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj deleted file mode 100644 index f927ff8c4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj deleted file mode 100644 index ba3291e7f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj deleted file mode 100644 index 2be8ad644..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj deleted file mode 100644 index 69f439e3e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_timer/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_timer/cmake_install.cmake deleted file mode 100644 index 257a33b82..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_timer/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_timer - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj deleted file mode 100644 index a821760c0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/cmake_install.cmake deleted file mode 100644 index c13c9c147..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj deleted file mode 100644 index 8ee7c3588..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32c3/esp_adapter.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj deleted file mode 100644 index b533ac6b2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj deleted file mode 100644 index b25f5eef0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj deleted file mode 100644 index 3013d82dc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj deleted file mode 100644 index f5a489e00..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj deleted file mode 100644 index b037e776c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj deleted file mode 100644 index 99ff047c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj deleted file mode 100644 index a8c2599b1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj deleted file mode 100644 index 48d027062..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esp_wifi/cmake_install.cmake deleted file mode 100644 index 278058bcf..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esp_wifi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj deleted file mode 100644 index 77c720cdc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj deleted file mode 100644 index ffffc52de..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj deleted file mode 100644 index 689dc7ac0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj deleted file mode 100644 index be39b54d6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj deleted file mode 100644 index 7b904e69f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj deleted file mode 100644 index 0da5fb746..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj deleted file mode 100644 index 84c0081cd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj deleted file mode 100644 index 08fc5adf8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj deleted file mode 100644 index 10d0bef15..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/riscv/core_dump_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espcoredump/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espcoredump/cmake_install.cmake deleted file mode 100644 index 27f7ff2a0..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espcoredump/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/espcoredump - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj deleted file mode 100644 index e54ae66d0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj deleted file mode 100644 index 1177160a9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj deleted file mode 100644 index 205c14a1d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborencoder_float.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj deleted file mode 100644 index 521ce4444..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborerrorstrings.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj deleted file mode 100644 index bcc085f74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj deleted file mode 100644 index 4751450f7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_dup_string.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj deleted file mode 100644 index 3d26b1a2c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborparser_float.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj deleted file mode 100644 index 9590526c8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj deleted file mode 100644 index 9d89e93d5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborpretty_stdio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj deleted file mode 100644 index d6d671803..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cbortojson.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj deleted file mode 100644 index b79c57d79..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/cborvalidation.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj deleted file mode 100644 index c440dedf6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/CMakeFiles/__idf_espressif__cbor.dir/tinycbor/src/open_memstream.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/cmake_install.cmake deleted file mode 100644 index cae3099e2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj deleted file mode 100644 index 998fd01ef..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/port/esp32_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj deleted file mode 100644 index c82f6b696..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_loader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj deleted file mode 100644 index 9e8cc30a0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_stubs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj deleted file mode 100644 index 58152bc3c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/esp_targets.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj deleted file mode 100644 index 7588df5b2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/md5_hash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj deleted file mode 100644 index a5b7bd2c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_serial.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj deleted file mode 100644 index dca7cab20..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/protocol_uart.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj deleted file mode 100644 index 2ccf48da0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/CMakeFiles/__idf_espressif__esp-serial-flasher.dir/src/slip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/cmake_install.cmake deleted file mode 100644 index f5225ad14..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj deleted file mode 100644 index 6ba1766a9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/esp_diag_data_store.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj deleted file mode 100644 index c91c26a6a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/CMakeFiles/__idf_espressif__esp_diag_data_store.dir/src/rtc_store/rtc_store.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/cmake_install.cmake deleted file mode 100644 index ae10eb676..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj deleted file mode 100644 index 53f673629..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_heap_metrics.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj deleted file mode 100644 index c12f59756..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_log_hook.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj deleted file mode 100644 index d5230b96a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_metrics.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj deleted file mode 100644 index 9c1d65863..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_network_variables.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj deleted file mode 100644 index 430ae459a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj deleted file mode 100644 index d24a7f8cd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_variables.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj deleted file mode 100644 index 38a7db77c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/CMakeFiles/__idf_espressif__esp_diagnostics.dir/src/esp_diagnostics_wifi_metrics.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/cmake_install.cmake deleted file mode 100644 index 3c207f4c3..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj deleted file mode 100644 index ce0e6af74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/__/__/mqtt_server.crt.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj deleted file mode 100644 index fcb5ee1f3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj deleted file mode 100644 index 52e9987c6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_decoder.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj deleted file mode 100644 index 655604c12..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cbor_encoder.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj deleted file mode 100644 index 8f438a148..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_client_data.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj deleted file mode 100644 index ea1a3c37c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_cmd_resp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj deleted file mode 100644 index 2fec48883..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_encoder.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj deleted file mode 100644 index 8f5206893..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/esp_insights_transport.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj deleted file mode 100644 index ad70b0295..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/__idf_espressif__esp_insights.dir/src/transport/esp_insights_mqtt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/HEAD b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/HEAD deleted file mode 100644 index b870d8262..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/grabRef.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index 4761b17dd..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC -# -# Copyright Iowa State University 2009-2010. -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or copy at -# http://www.boost.org/LICENSE_1_0.txt) - -set(HEAD_HASH) - -file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "/home/alex/github/ESP-Nodes/.git") -# handle git-worktree -if(EXISTS "${GIT_DIR}/commondir") - file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) - string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) - if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") - get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) - endif() - if(EXISTS "${GIT_DIR_NEW}") - set(GIT_DIR "${GIT_DIR_NEW}") - endif() -endif() -if(HEAD_CONTENTS MATCHES "ref") - # named branch - string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") - if(EXISTS "${GIT_DIR}/${HEAD_REF}") - configure_file("${GIT_DIR}/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref deleted file mode 100644 index c7227e338..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -904660c9f4fd3325318fc0d779ae1c10e3e6128c diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/cmake_install.cmake deleted file mode 100644 index 0e1459baa..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj deleted file mode 100644 index b5bd456ce..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_ota.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj deleted file mode 100644 index 7fd2ebf26..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/CMakeFiles/__idf_espressif__esp_rcp_update.dir/src/esp_rcp_update.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/cmake_install.cmake deleted file mode 100644 index 620a38388..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj deleted file mode 100644 index 6393f6098..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj deleted file mode 100644 index 296735b5a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/CMakeFiles/__idf_espressif__esp_schedule.dir/src/esp_schedule_nvs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/cmake_install.cmake deleted file mode 100644 index b16052353..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj deleted file mode 100644 index 19e2bfba5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_crypto.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj deleted file mode 100644 index 93a2f5a01..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/CMakeFiles/__idf_espressif__esp_secure_cert_mgr.dir/srcs/esp_secure_cert_tlv_read.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/cmake_install.cmake deleted file mode 100644 index e60101b9f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/cmake_install.cmake deleted file mode 100644 index 81262079f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__jsmn/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj deleted file mode 100644 index 9b88e4b1b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/CMakeFiles/__idf_espressif__json_generator.dir/src/json_generator.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/cmake_install.cmake deleted file mode 100644 index 01f9c6752..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj deleted file mode 100644 index 0c635a625..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/CMakeFiles/__idf_espressif__json_parser.dir/src/json_parser.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/cmake_install.cmake deleted file mode 100644 index 327c4288c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj deleted file mode 100644 index 76cb9be51..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj deleted file mode 100644 index 5b52c63c1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj deleted file mode 100644 index 072a0424a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_mem_caps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj deleted file mode 100644 index 2d50150bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/CMakeFiles/__idf_espressif__mdns.dir/mdns_networking_lwip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/cmake_install.cmake deleted file mode 100644 index 69511d662..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj deleted file mode 100644 index 75d5d9905..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_config.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj deleted file mode 100644 index 7e5710391..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_constants.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj deleted file mode 100644 index b1deca1a4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_ctrl.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj deleted file mode 100644 index 36a136c43..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/proto-c/network_scan.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj deleted file mode 100644 index 2f8813e35..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/handlers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj deleted file mode 100644 index 88d42c6cd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/manager.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj deleted file mode 100644 index 5bfff78ce..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj deleted file mode 100644 index 5e75c7940..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj deleted file mode 100644 index dbc820b05..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/network_scan.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj deleted file mode 100644 index 111c53f2a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_ble.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj deleted file mode 100644 index f5714104c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj deleted file mode 100644 index 63818b6a8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/CMakeFiles/__idf_espressif__network_provisioning.dir/src/scheme_softap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/cmake_install.cmake deleted file mode 100644 index 5bb61d3c4..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj deleted file mode 100644 index 6fa919ad0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_main.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj deleted file mode 100644 index 7047abb6b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/esp_qrcode_wrapper.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj deleted file mode 100644 index 658d42d70..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/CMakeFiles/__idf_espressif__qrcode.dir/qrcodegen.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/cmake_install.cmake deleted file mode 100644 index 9b78a8140..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj deleted file mode 100644 index 12c502863..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/cmd_resp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj deleted file mode 100644 index 66a40d2b6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_common_cmds.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj deleted file mode 100644 index a60e5331d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/console/rmaker_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj deleted file mode 100644 index 7059eb953..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/create_APN3_PPI_string.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj deleted file mode 100644 index c87247ddd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/esp-mqtt/esp-mqtt-glue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj deleted file mode 100644 index b142b1c7f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/factory.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj deleted file mode 100644 index 68faaab5b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj deleted file mode 100644 index e0c4facc7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/timezone.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj deleted file mode 100644 index fa40cf6bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj deleted file mode 100644 index f5eb63437..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/CMakeFiles/__idf_espressif__rmaker_common.dir/src/work_queue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/cmake_install.cmake deleted file mode 100644 index d05a82dc2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esptool_py/app-flash_args.in b/RainMaker_Table-Lights/build/esp-idf/esptool_py/app-flash_args.in deleted file mode 100644 index 3a11b1046..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esptool_py/app-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x20000 $.bin \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/esptool_py/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/esptool_py/cmake_install.cmake deleted file mode 100644 index 1dd1b5945..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esptool_py/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/esptool_py - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/esptool_py/flasher_args.json.in b/RainMaker_Table-Lights/build/esp-idf/esptool_py/flasher_args.json.in deleted file mode 100644 index 7de079055..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/esptool_py/flasher_args.json.in +++ /dev/null @@ -1,26 +0,0 @@ -{ - "write_flash_args" : [ "--flash_mode", "dio", - "--flash_size", "4MB", - "--flash_freq", "80m" ], - "flash_settings" : { - "flash_mode": "dio", - "flash_size": "4MB", - "flash_freq": "80m" - }, - "flash_files" : { - "0x0" : "bootloader/bootloader.bin", - "0x20000" : "$.bin", - "0xc000" : "partition_table/partition-table.bin", - "0x16000" : "ota_data_initial.bin" - }, - "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, - "app" : { "offset" : "0x20000", "file" : "$.bin", "encrypted" : "false" }, - "partition-table" : { "offset" : "0xc000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, - "otadata" : { "offset" : "0x16000", "file" : "ota_data_initial.bin", "encrypted" : "false" }, - "extra_esptool_args" : { - "after" : "hard_reset", - "before" : "default_reset", - "stub" : true, - "chip" : "esp32c3" - } -} diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj deleted file mode 100644 index 7ed28acac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj deleted file mode 100644 index 281527ff1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj deleted file mode 100644 index 16b37ed86..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj deleted file mode 100644 index ad0e9713e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj deleted file mode 100644 index 550af7721..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj deleted file mode 100644 index 2d5698fb7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj deleted file mode 100644 index b91cbf6d6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj deleted file mode 100644 index 7735dcb47..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj deleted file mode 100644 index 1bc55d7da..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj deleted file mode 100644 index 25528d239..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/fatfs/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/fatfs/cmake_install.cmake deleted file mode 100644 index 59a691fdb..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/fatfs/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/fatfs - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj deleted file mode 100644 index 7cc786ac8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj deleted file mode 100644 index e15bf9151..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj deleted file mode 100644 index 7e0da8e1a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj deleted file mode 100644 index 372224c23..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj deleted file mode 100644 index 6b3217f1e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj deleted file mode 100644 index 4441aab4a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj deleted file mode 100644 index 68928f18d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj deleted file mode 100644 index b8ce2d49a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj deleted file mode 100644 index 854cc0809..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj deleted file mode 100644 index 8cb87e4bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj deleted file mode 100644 index c4b27aba9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj deleted file mode 100644 index 562da5f82..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj deleted file mode 100644 index 903974936..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj deleted file mode 100644 index b5c2347e0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj deleted file mode 100644 index 9537a58c9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/freertos/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/freertos/cmake_install.cmake deleted file mode 100644 index 641f637f8..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/freertos/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/freertos - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj b/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj deleted file mode 100644 index 95e814c8c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj deleted file mode 100644 index 5a3c86a0e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/gpio_button/CMakeFiles/__idf_gpio_button.dir/button/button_obj.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/gpio_button/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/gpio_button/cmake_install.cmake deleted file mode 100644 index f9ffdc947..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/gpio_button/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj deleted file mode 100644 index 906b1aa46..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj deleted file mode 100644 index 80b2503e6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj deleted file mode 100644 index 66aedae19..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj deleted file mode 100644 index 928f02729..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj deleted file mode 100644 index 97eee54f1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj deleted file mode 100644 index 3e5b147da..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj deleted file mode 100644 index 2554e8d3b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj deleted file mode 100644 index b6f8b9ec5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj deleted file mode 100644 index c54cdd993..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj deleted file mode 100644 index d2bf1d84c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/clk_tree_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj deleted file mode 100644 index 66d1628bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/efuse_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj deleted file mode 100644 index 8e385fa02..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32c3/rtc_cntl_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj deleted file mode 100644 index 87b0c65e3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj deleted file mode 100644 index 416359720..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj deleted file mode 100644 index 4d6ac33ae..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj deleted file mode 100644 index cf6a990ab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj deleted file mode 100644 index 2f4d95f3d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj deleted file mode 100644 index 117895b26..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj deleted file mode 100644 index f9041b1f5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj deleted file mode 100644 index 0529e45e5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj deleted file mode 100644 index 9748c5eb9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj deleted file mode 100644 index 264a1c017..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj deleted file mode 100644 index 8bdceff3e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj deleted file mode 100644 index f7113fade..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj deleted file mode 100644 index db893b3d0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj deleted file mode 100644 index 650ac2635..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj deleted file mode 100644 index d6f5175d3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj deleted file mode 100644 index 9a1fdb054..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj deleted file mode 100644 index 465967a39..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj deleted file mode 100644 index de5d2e981..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj deleted file mode 100644 index bf5cf51fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj deleted file mode 100644 index 47114e53d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj deleted file mode 100644 index 3a862d9a1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj deleted file mode 100644 index 5dc52cba0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj deleted file mode 100644 index c095a8859..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj deleted file mode 100644 index 3cc391382..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj deleted file mode 100644 index 89acd9a59..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj deleted file mode 100644 index a320db8a2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj deleted file mode 100644 index 762fce866..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj deleted file mode 100644 index 2b30c7bcb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj deleted file mode 100644 index 861e90377..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj deleted file mode 100644 index 52c1526bd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj deleted file mode 100644 index fb5533601..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj deleted file mode 100644 index 6a380199e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj b/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj deleted file mode 100644 index 076a939c4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/hal/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/hal/cmake_install.cmake deleted file mode 100644 index 747c17f1f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/hal/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/hal - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj deleted file mode 100644 index 39e7c68eb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj deleted file mode 100644 index 4f9e15920..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj deleted file mode 100644 index 8aab7ebb5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj deleted file mode 100644 index 48b795701..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj deleted file mode 100644 index 90906d703..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32c3/memory_layout.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj deleted file mode 100644 index 20d176169..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj b/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj deleted file mode 100644 index 5502b051b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/heap/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/heap/cmake_install.cmake deleted file mode 100644 index 5f880a18c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/heap/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/heap - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj deleted file mode 100644 index d24430607..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/http_parser/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/http_parser/cmake_install.cmake deleted file mode 100644 index f695a9473..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/http_parser/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/http_parser - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/idf_test/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/idf_test/cmake_install.cmake deleted file mode 100644 index b9cfd74be..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/idf_test/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/idf_test - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/ieee802154/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/ieee802154/cmake_install.cmake deleted file mode 100644 index 2bacd3445..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/ieee802154/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/ieee802154 - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj b/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj deleted file mode 100644 index 2af0f4377..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj deleted file mode 100644 index 7f7580f2e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/json/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/json/cmake_install.cmake deleted file mode 100644 index 5945eca2d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/json/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/json - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj b/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj deleted file mode 100644 index 1d9b3c3bf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/ledc_driver/CMakeFiles/__idf_ledc_driver.dir/ledc_driver.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/ledc_driver/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/ledc_driver/cmake_install.cmake deleted file mode 100644 index 6e017a00c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/ledc_driver/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj deleted file mode 100644 index e7ad4de6b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj deleted file mode 100644 index a6742cd55..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj deleted file mode 100644 index f9582ee07..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj deleted file mode 100644 index b854c0542..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj deleted file mode 100644 index ee1cacf96..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj deleted file mode 100644 index 78f6e55db..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj deleted file mode 100644 index c3776594a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj deleted file mode 100644 index e079b5511..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj deleted file mode 100644 index f3c574eee..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj deleted file mode 100644 index 042f78e29..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/log/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/log/cmake_install.cmake deleted file mode 100644 index 21018aeee..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/log/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/log - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj deleted file mode 100644 index 72e401b92..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj deleted file mode 100644 index 035ca2fe2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj deleted file mode 100644 index 4cf961797..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj deleted file mode 100644 index 56cf097de..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj deleted file mode 100644 index a41c5c196..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj deleted file mode 100644 index 9dc985fa7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj deleted file mode 100644 index 9441335e6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj deleted file mode 100644 index 9da2adb7e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj deleted file mode 100644 index 84a667bd5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj deleted file mode 100644 index 7a2117eb0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj deleted file mode 100644 index 4c808c297..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj deleted file mode 100644 index 3d6e15e02..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj deleted file mode 100644 index 6b4a69837..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj deleted file mode 100644 index a5d956cfb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj deleted file mode 100644 index ac654fb09..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj deleted file mode 100644 index 438585caa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj deleted file mode 100644 index 9ed529483..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj deleted file mode 100644 index 51a0f7f7c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj deleted file mode 100644 index 7f1ac511e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj deleted file mode 100644 index 86c081429..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj deleted file mode 100644 index 517d46829..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj deleted file mode 100644 index 2620d31d9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj deleted file mode 100644 index 598a77de9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj deleted file mode 100644 index 4ff71c12b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj deleted file mode 100644 index 26a855ce8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj deleted file mode 100644 index b09f41ec4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj deleted file mode 100644 index 7a46b6136..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj deleted file mode 100644 index 055ba8c59..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj deleted file mode 100644 index 19ef94fba..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj deleted file mode 100644 index fbd9c4ebd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj deleted file mode 100644 index 5c1399d63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj deleted file mode 100644 index ef55ba279..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj deleted file mode 100644 index f8fe64de2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj deleted file mode 100644 index fe184bdaf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj deleted file mode 100644 index 38963ee98..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj deleted file mode 100644 index 270664ab5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj deleted file mode 100644 index cc8ffbbe7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj deleted file mode 100644 index fc12187d4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj deleted file mode 100644 index 793c9fc33..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj deleted file mode 100644 index a4655d809..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj deleted file mode 100644 index 9af04e948..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj deleted file mode 100644 index a6d39dff4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj deleted file mode 100644 index d2fe74ec4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj deleted file mode 100644 index 2393a3443..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj deleted file mode 100644 index 46634f59a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj deleted file mode 100644 index 7bbc0aaf3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj deleted file mode 100644 index a39043dde..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj deleted file mode 100644 index 37d026a26..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj deleted file mode 100644 index 35e2828b9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj deleted file mode 100644 index 88c37ba8e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj deleted file mode 100644 index e79a1ff74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj deleted file mode 100644 index 87a2215a3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj deleted file mode 100644 index 890865ffc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj deleted file mode 100644 index 75904fa5e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj deleted file mode 100644 index aa39bd15a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj deleted file mode 100644 index 74f4d0764..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj deleted file mode 100644 index 8c5dea15b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj deleted file mode 100644 index 7f5ac4d7d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj deleted file mode 100644 index c31e19843..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj deleted file mode 100644 index 54d06ceac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj deleted file mode 100644 index 85b004b12..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj deleted file mode 100644 index 86319c9db..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj deleted file mode 100644 index 7efa3eb87..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj deleted file mode 100644 index c6bbf8b23..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj deleted file mode 100644 index 0177a4b7a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj deleted file mode 100644 index aadca28eb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj deleted file mode 100644 index b6193daae..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj deleted file mode 100644 index 25d022301..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj deleted file mode 100644 index a8889d958..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj deleted file mode 100644 index 20e6200ff..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj deleted file mode 100644 index d1ed65a5b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj deleted file mode 100644 index 27a1ce561..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj deleted file mode 100644 index f3f26bc98..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj deleted file mode 100644 index d7bbab960..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj deleted file mode 100644 index 2e4b93102..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj deleted file mode 100644 index 7ce1296e1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj deleted file mode 100644 index 3c6a6c036..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj deleted file mode 100644 index 6e727d666..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj deleted file mode 100644 index 333a1cf14..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj deleted file mode 100644 index f05b6807e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj deleted file mode 100644 index a652ca0eb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj deleted file mode 100644 index a835cca5b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj deleted file mode 100644 index 1480b651c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj deleted file mode 100644 index 3f1d73180..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj deleted file mode 100644 index 3a2f20600..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj deleted file mode 100644 index f717b4c21..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj deleted file mode 100644 index 4820b348f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj deleted file mode 100644 index 0bd26c5e6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj deleted file mode 100644 index 87a64eed5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj deleted file mode 100644 index 7c55d7337..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj deleted file mode 100644 index 4773fcaa9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj deleted file mode 100644 index db5c5424b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/lwip/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/lwip/cmake_install.cmake deleted file mode 100644 index 2e348a290..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/lwip/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/lwip - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj b/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj deleted file mode 100644 index 7ea144a2a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_driver.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj b/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj deleted file mode 100644 index 35facc928..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/main/CMakeFiles/__idf_main.dir/app_main.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/main/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/main/cmake_install.cmake deleted file mode 100644 index 3ca9657f3..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/main/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj deleted file mode 100644 index 5fa6392f1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj deleted file mode 100644 index 5830faa4f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/cmake_install.cmake deleted file mode 100644 index 7420160b6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake deleted file mode 100644 index 7182d0596..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake +++ /dev/null @@ -1,46 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") - -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj deleted file mode 100644 index 7cd8a7be7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj deleted file mode 100644 index 7ba6e718e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj deleted file mode 100644 index 87c00d6df..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake deleted file mode 100644 index 8462383f2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest" FILES_MATCHING REGEX "/[^/]*\\.h$") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj deleted file mode 100644 index 0effcd7fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj deleted file mode 100644 index 1133ebe9b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake deleted file mode 100644 index e177b3be0..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m" FILES_MATCHING REGEX "/[^/]*\\.h$") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake deleted file mode 100644 index 5e0e0dd1f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake +++ /dev/null @@ -1,48 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") - -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake deleted file mode 100644 index dc4ed0b8b..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake +++ /dev/null @@ -1,146 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h" - ) -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/psa" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_dependencies.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" - "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" - ) -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj deleted file mode 100644 index 047eba1e9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj deleted file mode 100644 index d3daed055..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj deleted file mode 100644 index 4f9c6a70b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj deleted file mode 100644 index 87b53267c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj deleted file mode 100644 index fa5c2479c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj deleted file mode 100644 index db94d1bb2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj deleted file mode 100644 index a62823b68..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj deleted file mode 100644 index 05f5ec113..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj deleted file mode 100644 index f7e333d56..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj deleted file mode 100644 index 5371fb83d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj deleted file mode 100644 index 6b781958c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj deleted file mode 100644 index 8561784ed..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj deleted file mode 100644 index f9e68b0f6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj deleted file mode 100644 index 4dd19890b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj deleted file mode 100644 index a438c1ece..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj deleted file mode 100644 index 01614a108..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj deleted file mode 100644 index bea1f7212..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj deleted file mode 100644 index 18d2f3297..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj deleted file mode 100644 index d1ea46707..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj deleted file mode 100644 index 6041989a1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj deleted file mode 100644 index 2a7cc787a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj deleted file mode 100644 index 21930eb89..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj deleted file mode 100644 index 7b874d12c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj deleted file mode 100644 index 3be130fc4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj deleted file mode 100644 index 685741394..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj deleted file mode 100644 index 3f229f069..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj deleted file mode 100644 index 56a8e426d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj deleted file mode 100644 index 7d9e6ad86..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj deleted file mode 100644 index c77fb3f8f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj deleted file mode 100644 index 293ab3024..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj deleted file mode 100644 index ac6c74244..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj deleted file mode 100644 index d0ceeffe3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj deleted file mode 100644 index 18cf1a0c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj deleted file mode 100644 index d4d942abd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj deleted file mode 100644 index cb83a188b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj deleted file mode 100644 index 8fca80767..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj deleted file mode 100644 index c5e9bc514..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj deleted file mode 100644 index cb94fd45a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj deleted file mode 100644 index c44323dbc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj deleted file mode 100644 index 019188bcb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj deleted file mode 100644 index dc06baf5b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj deleted file mode 100644 index dbe6f2943..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj deleted file mode 100644 index b244d6558..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj deleted file mode 100644 index 19324bdde..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj deleted file mode 100644 index af8e72a3f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj deleted file mode 100644 index aeb87ac22..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj deleted file mode 100644 index 16d4e9ec0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_mem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj deleted file mode 100644 index 3af1208b3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_timing.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj deleted file mode 100644 index 4e175d154..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj deleted file mode 100644 index d970532cc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj deleted file mode 100644 index 62e326600..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha256.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj deleted file mode 100644 index 696012baf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha512.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj deleted file mode 100644 index 94f200b32..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj deleted file mode 100644 index 03391de7a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/dma/sha.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj deleted file mode 100644 index 274c998fe..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj deleted file mode 100644 index 46e18f9a9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj deleted file mode 100644 index 1b9cb2451..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj deleted file mode 100644 index fda967c53..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj deleted file mode 100644 index b304d8d4d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj deleted file mode 100644 index 1f3f0b67f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj deleted file mode 100644 index 7eec408a5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj deleted file mode 100644 index 69f0f7ad6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj deleted file mode 100644 index b38dc563d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj deleted file mode 100644 index f982d713d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj deleted file mode 100644 index 4c3219816..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj deleted file mode 100644 index 6f28b218e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj deleted file mode 100644 index e081f4e6d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj deleted file mode 100644 index 072b0eb7b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj deleted file mode 100644 index 5b1b0f52b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj deleted file mode 100644 index 6620f7993..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj deleted file mode 100644 index e64e6721b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj deleted file mode 100644 index d1ffaf511..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj deleted file mode 100644 index ad0f9e714..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj deleted file mode 100644 index 2f3c632fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj deleted file mode 100644 index bd2805549..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj deleted file mode 100644 index c7a65f973..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj deleted file mode 100644 index bd3df3d3e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj deleted file mode 100644 index d8109b65b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj deleted file mode 100644 index ddb4fce3f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj deleted file mode 100644 index 5af592468..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj deleted file mode 100644 index 37575274d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj deleted file mode 100644 index ce7c4d528..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj deleted file mode 100644 index d22d7acab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj deleted file mode 100644 index b43918b3c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj deleted file mode 100644 index 286e9aaa3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj deleted file mode 100644 index 1137ab51d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj deleted file mode 100644 index a1b088863..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj deleted file mode 100644 index 68207e2b6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj deleted file mode 100644 index bb93574d4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj deleted file mode 100644 index e5c403e95..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj deleted file mode 100644 index 128dfeef3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj deleted file mode 100644 index 76500c5f8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj deleted file mode 100644 index 25b3da163..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj deleted file mode 100644 index 135c03ae2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj deleted file mode 100644 index eb62f8d6e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj deleted file mode 100644 index c15268116..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj deleted file mode 100644 index 597428933..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj deleted file mode 100644 index 8d894f038..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj deleted file mode 100644 index 5db52b39d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj deleted file mode 100644 index e6cca1f60..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj deleted file mode 100644 index 064e066e5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj deleted file mode 100644 index 730304fb9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj deleted file mode 100644 index d1877d8dc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj deleted file mode 100644 index d4172d6b5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_cli.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj deleted file mode 100644 index f069f94d2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_srv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj deleted file mode 100644 index 89b88ac53..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/dynamic/esp_ssl_tls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj deleted file mode 100644 index c3faf06c6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj deleted file mode 100644 index 38a59439c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj deleted file mode 100644 index c8d91aa44..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/port/net_sockets.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj deleted file mode 100644 index 5c0ea6e0b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj deleted file mode 100644 index c0628b232..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj deleted file mode 100644 index 66cb3d157..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj deleted file mode 100644 index aef326dae..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj deleted file mode 100644 index 3cb739efc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj deleted file mode 100644 index b99f36ae7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj deleted file mode 100644 index 6bd7775e6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj deleted file mode 100644 index 6e5d8a34d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj deleted file mode 100644 index b1f928a20..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj deleted file mode 100644 index 1f7a57e28..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj deleted file mode 100644 index 60cb6868d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj deleted file mode 100644 index 2e602cea5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj deleted file mode 100644 index 43778a562..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj deleted file mode 100644 index 3923d62cd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj deleted file mode 100644 index 2b4192edc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj deleted file mode 100644 index baf91577d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj deleted file mode 100644 index 49ed08c95..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj deleted file mode 100644 index c9e2e52d3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj deleted file mode 100644 index fec9873c3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj deleted file mode 100644 index 1461a9a2b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj deleted file mode 100644 index b21dd02d7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj deleted file mode 100644 index 84e6b7036..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj deleted file mode 100644 index 7008fc5e5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj deleted file mode 100644 index eb7fe0708..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj deleted file mode 100644 index 2c2d0a6bb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake deleted file mode 100644 index d667664e1..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/error.c b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/error.c deleted file mode 120000 index fc3b4eb1d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/error.c +++ /dev/null @@ -1 +0,0 @@ -/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/error.c \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c deleted file mode 120000 index c8534e3a1..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c +++ /dev/null @@ -1 +0,0 @@ -/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c deleted file mode 120000 index 6e2766da6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c +++ /dev/null @@ -1 +0,0 @@ -/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/version_features.c deleted file mode 120000 index 3d42f0baa..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/library/version_features.c +++ /dev/null @@ -1 +0,0 @@ -/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake deleted file mode 100644 index 886622b30..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mbedtls/mbedtls/pkgconfig - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle b/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle deleted file mode 100644 index 47efa3869..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj deleted file mode 100644 index 713eb49ab..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj b/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj deleted file mode 100644 index 80ae39cd1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj deleted file mode 100644 index c61c6ae06..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj deleted file mode 100644 index 1404acdb2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/mqtt/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/mqtt/cmake_install.cmake deleted file mode 100644 index 1852abd9d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/mqtt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/mqtt - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj deleted file mode 100644 index a35825f5b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj deleted file mode 100644 index 4b47d32f1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj deleted file mode 100644 index de19b8320..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/flockfile.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj deleted file mode 100644 index 2d02c532e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj deleted file mode 100644 index 4aa61623d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj deleted file mode 100644 index 387267a36..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj deleted file mode 100644 index 1944906ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj deleted file mode 100644 index 33e079a03..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj deleted file mode 100644 index 09e8b3ce0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj deleted file mode 100644 index e7289e076..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj deleted file mode 100644 index 95edf5444..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj deleted file mode 100644 index 0f4129321..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj deleted file mode 100644 index 6eddd9450..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj deleted file mode 100644 index 52ec96455..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/scandir.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj deleted file mode 100644 index 45584d470..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj deleted file mode 100644 index 28a713542..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj deleted file mode 100644 index c575e7529..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj deleted file mode 100644 index 89fbddedd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj b/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj deleted file mode 100644 index 09c9cdf22..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/newlib/cmake_install.cmake deleted file mode 100644 index 84ba2b6e5..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/newlib/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/newlib - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/port/cmake_install.cmake") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/newlib/port/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/newlib/port/cmake_install.cmake deleted file mode 100644 index 6bb2707ca..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/newlib/port/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/newlib/port - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj deleted file mode 100644 index 9c6c667d2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj deleted file mode 100644 index 4bf291d78..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj deleted file mode 100644 index 004e123df..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj deleted file mode 100644 index dcbc6dadb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj deleted file mode 100644 index 7071f2861..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj deleted file mode 100644 index 910d588c0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj deleted file mode 100644 index d0599dcf2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj deleted file mode 100644 index 72339f1c0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj deleted file mode 100644 index 57f8f0176..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj deleted file mode 100644 index 8a80f3983..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj deleted file mode 100644 index 549d6bded..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj deleted file mode 100644 index a8cf82f1f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj deleted file mode 100644 index 21db4b993..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj deleted file mode 100644 index 8fb9483fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj deleted file mode 100644 index 6aea62210..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/nvs_flash/cmake_install.cmake deleted file mode 100644 index 11cd7eb87..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/nvs_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj b/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj deleted file mode 100644 index 9d620d259..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/cmake_install.cmake deleted file mode 100644 index 340eddef7..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/openthread/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/openthread/cmake_install.cmake deleted file mode 100644 index aeab5c4e2..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/openthread/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/openthread - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/partition_table/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/partition_table/cmake_install.cmake deleted file mode 100644 index 9276472d3..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/partition_table/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/partition_table - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/partition_table/partition-table-flash_args.in b/RainMaker_Table-Lights/build/esp-idf/partition_table/partition-table-flash_args.in deleted file mode 100644 index b21afd069..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/partition_table/partition-table-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0xc000 partition_table/partition-table.bin \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj deleted file mode 100644 index c92cd3809..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protobuf-c/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/protobuf-c/cmake_install.cmake deleted file mode 100644 index c24be557f..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/protobuf-c/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj deleted file mode 100644 index 5c8e0d08b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj deleted file mode 100644 index 039bfabfd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj deleted file mode 100644 index 98bbd4e50..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj deleted file mode 100644 index 0ec38774f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj deleted file mode 100644 index e0b86e06d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj deleted file mode 100644 index 7f5295db1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj deleted file mode 100644 index 707d10aa7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj deleted file mode 100644 index 3fbf4101e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj deleted file mode 100644 index 5fbe85e63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj deleted file mode 100644 index aac42c0a7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj deleted file mode 100644 index f4a1e99da..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj deleted file mode 100644 index c9e717b05..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj deleted file mode 100644 index f8c80e73d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj b/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj deleted file mode 100644 index 207d6c585..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_nimble.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/protocomm/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/protocomm/cmake_install.cmake deleted file mode 100644 index af869215d..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/protocomm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/protocomm - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj deleted file mode 100644 index 441c7e7fa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj deleted file mode 100644 index 5e771fa70..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj deleted file mode 100644 index 436299912..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj deleted file mode 100644 index 4e4974c6e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj deleted file mode 100644 index 48d6bf006..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/pthread/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/pthread/cmake_install.cmake deleted file mode 100644 index 0fc3def47..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/pthread/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/pthread - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj b/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj deleted file mode 100644 index d64157e71..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj b/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj deleted file mode 100644 index 32459f738..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj b/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj deleted file mode 100644 index f622a1290..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_intc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj b/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj deleted file mode 100644 index a6bb96312..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj b/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj deleted file mode 100644 index 0fe4911d0..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/riscv/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/riscv/cmake_install.cmake deleted file mode 100644 index cf822d495..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/riscv/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/riscv - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj b/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj deleted file mode 100644 index a5301dd27..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj deleted file mode 100644 index 486e4ac82..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/rt/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/rt/cmake_install.cmake deleted file mode 100644 index 3f460265c..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/rt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/rt - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj deleted file mode 100644 index 966355c3a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj deleted file mode 100644 index d4bd32487..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj deleted file mode 100644 index 3ef64f6ff..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj deleted file mode 100644 index b2151ae74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj deleted file mode 100644 index eddb58c66..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj deleted file mode 100644 index 3f6a01997..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj deleted file mode 100644 index 5684e31a9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/sdmmc/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/sdmmc/cmake_install.cmake deleted file mode 100644 index beb24554e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/sdmmc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/sdmmc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj deleted file mode 100644 index 5520c7740..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj deleted file mode 100644 index 34c147bd8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/adc_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj deleted file mode 100644 index dda77c086..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/dedic_gpio_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj deleted file mode 100644 index 72bc36d96..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gdma_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj deleted file mode 100644 index b18dd1eca..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/gpio_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj deleted file mode 100644 index ff7416304..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2c_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj deleted file mode 100644 index fd3cb9f51..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/i2s_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj deleted file mode 100644 index 325ebcf7c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/interrupts.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj deleted file mode 100644 index 46bf56bb5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/ledc_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj deleted file mode 100644 index 52d794679..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/mpi_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj deleted file mode 100644 index ae2df69db..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/rmt_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj deleted file mode 100644 index fadd6668e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/sdm_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj deleted file mode 100644 index 6c6a11948..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/spi_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj deleted file mode 100644 index 6684ed863..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/temperature_sensor_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj deleted file mode 100644 index 904eb7cb9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/timer_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj deleted file mode 100644 index d2591ecac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/twai_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj deleted file mode 100644 index 3032d4f8c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/uart_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj deleted file mode 100644 index 8d801b4ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32c3/wdt_periph.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj deleted file mode 100644 index 5de87f6a8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/soc/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/soc/cmake_install.cmake deleted file mode 100644 index cb5505be6..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/soc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/soc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj deleted file mode 100644 index 6a0b48c63..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj deleted file mode 100644 index 201af7edb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj deleted file mode 100644 index 55a9adc04..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj deleted file mode 100644 index ec1add582..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj deleted file mode 100644 index f2e47eac5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj deleted file mode 100644 index 7de9965d6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj deleted file mode 100644 index 8dcdb47ca..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj deleted file mode 100644 index 2ce19ea86..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj deleted file mode 100644 index c2cbf6f8d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj deleted file mode 100644 index 2a2e7845a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj deleted file mode 100644 index 2a2ab7815..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj deleted file mode 100644 index a0b278666..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj deleted file mode 100644 index da40c0f4a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj deleted file mode 100644 index 7dd6be03b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj deleted file mode 100644 index d323955a6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj deleted file mode 100644 index a9173fb80..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj deleted file mode 100644 index 8c6ceb8d2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj deleted file mode 100644 index 65102b934..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj deleted file mode 100644 index 8b3f8b62c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spi_flash/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/spi_flash/cmake_install.cmake deleted file mode 100644 index ef9d811e5..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/spi_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/spi_flash - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj deleted file mode 100644 index ba64a11f2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj deleted file mode 100644 index ede16d5aa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj deleted file mode 100644 index 552c5acc2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj deleted file mode 100644 index 4f5e72005..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj deleted file mode 100644 index 5bcb5c59c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj deleted file mode 100644 index 490cae16a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj deleted file mode 100644 index a834e52c1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/spiffs/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/spiffs/cmake_install.cmake deleted file mode 100644 index 1d4f7e860..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/spiffs/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/spiffs - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj deleted file mode 100644 index a7c360e74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj deleted file mode 100644 index 82723a52c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj deleted file mode 100644 index f6f7992d7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj deleted file mode 100644 index f6d6d1c95..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj deleted file mode 100644 index 5496abcb2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/tcp_transport/cmake_install.cmake deleted file mode 100644 index fe4898880..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/tcp_transport/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/ulp/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/ulp/cmake_install.cmake deleted file mode 100644 index ee02f77f3..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/ulp/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/ulp - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj deleted file mode 100644 index 88bfa37d3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj deleted file mode 100644 index 40048eb74..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj deleted file mode 100644 index f7f594dd8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj deleted file mode 100644 index a29c73d58..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj deleted file mode 100644 index de0547988..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj deleted file mode 100644 index 1dd9693ac..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj deleted file mode 100644 index 45bc07c0a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj b/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj deleted file mode 100644 index 828bed647..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/unity/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/unity/cmake_install.cmake deleted file mode 100644 index 20f4b9973..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/unity/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/usb/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/usb/cmake_install.cmake deleted file mode 100644 index 1ad38339e..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/usb/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/usb - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj b/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj deleted file mode 100644 index 1125a7426..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj deleted file mode 100644 index 577c2d6fe..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj b/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj deleted file mode 100644 index c8ad5c927..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj deleted file mode 100644 index b9e1e1d60..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/vfs/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/vfs/cmake_install.cmake deleted file mode 100644 index 0a0e164ce..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/vfs/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/vfs - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj deleted file mode 100644 index 62b79de23..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj deleted file mode 100644 index 498cfc3e9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj deleted file mode 100644 index a0eb5c5b4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj deleted file mode 100644 index abfdb0ef5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj deleted file mode 100644 index c30bc209f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj deleted file mode 100644 index b16b938e9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj deleted file mode 100644 index a30b562c4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/wear_levelling/cmake_install.cmake deleted file mode 100644 index b8e2d0375..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/wear_levelling/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj deleted file mode 100644 index ae1e5c49d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj deleted file mode 100644 index 5f802112e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj deleted file mode 100644 index df9f82942..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj deleted file mode 100644 index ddd1180d2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj deleted file mode 100644 index b69df2085..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj deleted file mode 100644 index f6c2adb4f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj deleted file mode 100644 index 8ddf9c495..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_ble.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj deleted file mode 100644 index d7624adb2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj deleted file mode 100644 index 97c9beb90..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj deleted file mode 100644 index 368ff0028..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj deleted file mode 100644 index dea10953a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj deleted file mode 100644 index 0957facc8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/cmake_install.cmake deleted file mode 100644 index af33b4ec5..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj deleted file mode 100644 index f8ebf681a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj deleted file mode 100644 index 4bc5f28d6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj deleted file mode 100644 index 3c4f77dfa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj deleted file mode 100644 index 6a33dae45..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj deleted file mode 100644 index d8eccd317..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj deleted file mode 100644 index 0b92c57d9..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj deleted file mode 100644 index 45bed5fb1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj deleted file mode 100644 index e097c153d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj deleted file mode 100644 index ba732dcc6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj deleted file mode 100644 index fc5bfbae1..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj deleted file mode 100644 index f28c033ae..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj deleted file mode 100644 index ae0194b54..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj deleted file mode 100644 index 47c18d83e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj deleted file mode 100644 index a0c6fb3dd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj deleted file mode 100644 index e637d01b5..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj deleted file mode 100644 index f35ac15f3..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj deleted file mode 100644 index 41c25b4fd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj deleted file mode 100644 index f524ac08a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj deleted file mode 100644 index 745ebdd7b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj deleted file mode 100644 index 6d6f230b2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj deleted file mode 100644 index 90448dbaf..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj deleted file mode 100644 index d3e28ea09..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj deleted file mode 100644 index 52323269f..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj deleted file mode 100644 index b1fc93203..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj deleted file mode 100644 index d131eab9d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj deleted file mode 100644 index 3ad7d31bd..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj deleted file mode 100644 index f4398ada2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj deleted file mode 100644 index aa41bfa69..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj deleted file mode 100644 index cc47c9af4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj deleted file mode 100644 index 44014ede6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj deleted file mode 100644 index 8f4a935da..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj deleted file mode 100644 index 956a296c6..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj deleted file mode 100644 index c7971c3ec..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj deleted file mode 100644 index 2e87464ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj deleted file mode 100644 index 170bed14b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj deleted file mode 100644 index 790e5430e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj deleted file mode 100644 index 454b31761..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj deleted file mode 100644 index 194d97c03..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj deleted file mode 100644 index 0fd829c49..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj deleted file mode 100644 index 6730dd6fb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj deleted file mode 100644 index 4b025ca65..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj deleted file mode 100644 index 8118deef4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj deleted file mode 100644 index 62108703e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj deleted file mode 100644 index 6b272880c..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj deleted file mode 100644 index e55abe999..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj deleted file mode 100644 index 8aa944b6b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj deleted file mode 100644 index 0b55ca86b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj deleted file mode 100644 index 663f39dd7..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj deleted file mode 100644 index 4db011b3b..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj deleted file mode 100644 index c9d03e326..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj deleted file mode 100644 index a164bab48..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj deleted file mode 100644 index c6ec74b3d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj deleted file mode 100644 index 714965a97..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj deleted file mode 100644 index 89113425d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj deleted file mode 100644 index 9e9f48a02..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj deleted file mode 100644 index d4c55e287..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj deleted file mode 100644 index f59e88cae..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj deleted file mode 100644 index fbf8a8153..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj deleted file mode 100644 index 75ab70a2e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj deleted file mode 100644 index fdcb9f1ff..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj deleted file mode 100644 index 291e51501..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj deleted file mode 100644 index 2e22cb60a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj deleted file mode 100644 index 25510e5ad..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj deleted file mode 100644 index d9149495a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj deleted file mode 100644 index 63620e657..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj deleted file mode 100644 index c7b63e28a..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj deleted file mode 100644 index 193c1d1f2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj deleted file mode 100644 index cf9d5e737..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj deleted file mode 100644 index 1396e5896..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj deleted file mode 100644 index 0d1699186..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj deleted file mode 100644 index 72f77bee2..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj deleted file mode 100644 index e4db7aa54..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj deleted file mode 100644 index 72ec523fe..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj deleted file mode 100644 index ff0294847..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj deleted file mode 100644 index ee3b23184..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj deleted file mode 100644 index 5cb8618fa..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj deleted file mode 100644 index 27b0a29f4..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj deleted file mode 100644 index e741fa879..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj deleted file mode 100644 index ecfc905bc..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj deleted file mode 100644 index b3d5bef4e..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj deleted file mode 100644 index c5ce32900..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj deleted file mode 100644 index d1bcf56a8..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj deleted file mode 100644 index 768bfe3cb..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/cmake_install.cmake deleted file mode 100644 index 341a364c4..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj b/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj deleted file mode 100644 index 57a682702..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/led_strip_rmt_ws2812.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj b/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj deleted file mode 100644 index eb8ad115d..000000000 Binary files a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/CMakeFiles/__idf_ws2812_led.dir/ws2812_led.c.obj and /dev/null differ diff --git a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/cmake_install.cmake b/RainMaker_Table-Lights/build/esp-idf/ws2812_led/cmake_install.cmake deleted file mode 100644 index 1a7669f94..000000000 --- a/RainMaker_Table-Lights/build/esp-idf/ws2812_led/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump") -endif() - diff --git a/RainMaker_Table-Lights/build/flash_app_args b/RainMaker_Table-Lights/build/flash_app_args deleted file mode 100644 index d713e98dc..000000000 --- a/RainMaker_Table-Lights/build/flash_app_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x20000 RainMaker_Table-Lights.bin diff --git a/RainMaker_Table-Lights/build/flash_args b/RainMaker_Table-Lights/build/flash_args deleted file mode 100644 index 346af4604..000000000 --- a/RainMaker_Table-Lights/build/flash_args +++ /dev/null @@ -1,5 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin -0x20000 RainMaker_Table-Lights.bin -0xc000 partition_table/partition-table.bin -0x16000 ota_data_initial.bin diff --git a/RainMaker_Table-Lights/build/flash_args.in b/RainMaker_Table-Lights/build/flash_args.in deleted file mode 100644 index 639af1c5a..000000000 --- a/RainMaker_Table-Lights/build/flash_args.in +++ /dev/null @@ -1,5 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin -0x20000 $.bin -0xc000 partition_table/partition-table.bin -0x16000 ota_data_initial.bin \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/flash_bootloader_args b/RainMaker_Table-Lights/build/flash_bootloader_args deleted file mode 100644 index 0837e622e..000000000 --- a/RainMaker_Table-Lights/build/flash_bootloader_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin diff --git a/RainMaker_Table-Lights/build/flash_project_args b/RainMaker_Table-Lights/build/flash_project_args deleted file mode 100644 index 346af4604..000000000 --- a/RainMaker_Table-Lights/build/flash_project_args +++ /dev/null @@ -1,5 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x0 bootloader/bootloader.bin -0x20000 RainMaker_Table-Lights.bin -0xc000 partition_table/partition-table.bin -0x16000 ota_data_initial.bin diff --git a/RainMaker_Table-Lights/build/flasher_args.json b/RainMaker_Table-Lights/build/flasher_args.json deleted file mode 100644 index 1f7ad1204..000000000 --- a/RainMaker_Table-Lights/build/flasher_args.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "write_flash_args" : [ "--flash_mode", "dio", - "--flash_size", "4MB", - "--flash_freq", "80m" ], - "flash_settings" : { - "flash_mode": "dio", - "flash_size": "4MB", - "flash_freq": "80m" - }, - "flash_files" : { - "0x0" : "bootloader/bootloader.bin", - "0x20000" : "RainMaker_Table-Lights.bin", - "0xc000" : "partition_table/partition-table.bin", - "0x16000" : "ota_data_initial.bin" - }, - "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, - "app" : { "offset" : "0x20000", "file" : "RainMaker_Table-Lights.bin", "encrypted" : "false" }, - "partition-table" : { "offset" : "0xc000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, - "otadata" : { "offset" : "0x16000", "file" : "ota_data_initial.bin", "encrypted" : "false" }, - "extra_esptool_args" : { - "after" : "hard_reset", - "before" : "default_reset", - "stub" : true, - "chip" : "esp32c3" - } -} diff --git a/RainMaker_Table-Lights/build/gdbinit/connect b/RainMaker_Table-Lights/build/gdbinit/connect deleted file mode 100644 index faa385731..000000000 --- a/RainMaker_Table-Lights/build/gdbinit/connect +++ /dev/null @@ -1,7 +0,0 @@ -# Connect to the default openocd-esp port and stop on app_main() -set remotetimeout 10 -target remote :3333 -monitor reset halt -maintenance flush register-cache -thbreak app_main -continue diff --git a/RainMaker_Table-Lights/build/gdbinit/gdbinit b/RainMaker_Table-Lights/build/gdbinit/gdbinit deleted file mode 100644 index a34406d5c..000000000 --- a/RainMaker_Table-Lights/build/gdbinit/gdbinit +++ /dev/null @@ -1,2 +0,0 @@ -source /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/symbols -source /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/connect diff --git a/RainMaker_Table-Lights/build/gdbinit/prefix_map b/RainMaker_Table-Lights/build/gdbinit/prefix_map deleted file mode 100644 index c7842ec17..000000000 --- a/RainMaker_Table-Lights/build/gdbinit/prefix_map +++ /dev/null @@ -1 +0,0 @@ -# There is no prefix map defined for the project. diff --git a/RainMaker_Table-Lights/build/gdbinit/py_extensions b/RainMaker_Table-Lights/build/gdbinit/py_extensions deleted file mode 100644 index 336f99571..000000000 --- a/RainMaker_Table-Lights/build/gdbinit/py_extensions +++ /dev/null @@ -1,7 +0,0 @@ -# Add Python GDB extensions -python -try: - import freertos_gdb -except ModuleNotFoundError: - print('warning: python extension "freertos_gdb" not found.') -end diff --git a/RainMaker_Table-Lights/build/gdbinit/symbols b/RainMaker_Table-Lights/build/gdbinit/symbols deleted file mode 100644 index 99e901c4d..000000000 --- a/RainMaker_Table-Lights/build/gdbinit/symbols +++ /dev/null @@ -1,25 +0,0 @@ -# Load esp32c3 ROM ELF symbols -define target hookpost-remote -set confirm off - # if $_streq((char *) 0x3ff1b878, "Sep 18 2020") - if (*(int*) 0x3ff1b878) == 0x20706553 && (*(int*) 0x3ff1b87c) == 0x32203831 && (*(int*) 0x3ff1b880) == 0x303230 - add-symbol-file /home/alex/.espressif/tools/esp-rom-elfs/20241011/esp32c3_rev0_rom.elf - else - # if $_streq((char *) 0x3ff1a374, "Feb 7 2021") - if (*(int*) 0x3ff1a374) == 0x20626546 && (*(int*) 0x3ff1a378) == 0x32203720 && (*(int*) 0x3ff1a37c) == 0x313230 - add-symbol-file /home/alex/.espressif/tools/esp-rom-elfs/20241011/esp32c3_rev3_rom.elf - else - echo Warning: Unknown esp32c3 ROM revision.\n - end - end -set confirm on -end - - -# Load bootloader symbols -set confirm off - add-symbol-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf -set confirm on - -# Load application symbols -file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/RainMaker_Table-Lights.elf diff --git a/RainMaker_Table-Lights/build/kconfigs.in b/RainMaker_Table-Lights/build/kconfigs.in deleted file mode 100644 index 63a7ee9b2..000000000 --- a/RainMaker_Table-Lights/build/kconfigs.in +++ /dev/null @@ -1,89 +0,0 @@ -source "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/bt/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/console/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/driver/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/heap/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/lwip/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/openthread/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/pthread/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/ulp/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/unity/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/usb/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/vfs/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Kconfig" -source "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/Kconfig" -source "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights/Kconfig" -source "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/Kconfig" -source "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/Kconfig" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/Kconfig" \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/kconfigs_projbuild.in b/RainMaker_Table-Lights/build/kconfigs_projbuild.in deleted file mode 100644 index fada0bfdb..000000000 --- a/RainMaker_Table-Lights/build/kconfigs_projbuild.in +++ /dev/null @@ -1,8 +0,0 @@ -source "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild" -source "/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild" -source "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/Kconfig.projbuild" -source "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/Kconfig.projbuild" -source "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/Kconfig.projbuild" \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/ldgen_libraries b/RainMaker_Table-Lights/build/ldgen_libraries deleted file mode 100644 index 04022cad9..000000000 --- a/RainMaker_Table-Lights/build/ldgen_libraries +++ /dev/null @@ -1,102 +0,0 @@ -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/libriscv.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/libesp_pm.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/libmbedtls.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/libesp_app_format.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/libapp_update.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/libesp_partition.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/libefuse.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/libbootloader_support.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/libesp_mm.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/libspi_flash.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/libesp_system.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/libesp_common.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/libesp_rom.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/libhal.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/liblog.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/libheap.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/libsoc.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/libesp_security.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/libesp_hw_support.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/libfreertos.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/libnewlib.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/libpthread.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/libcxx.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/libesp_timer.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/libesp_ringbuf.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/libesp_driver_uart.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/libapp_trace.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/libesp_event.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/libnvs_flash.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/libesp_driver_spi.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/libsdmmc.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/libdriver.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/libesp_phy.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/libesp_vfs_console.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/libvfs.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/liblwip.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/libesp_netif.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/libwpa_supplicant.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/libesp_coex.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/libesp_wifi.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/libbt.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/libunity.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/libcmock.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/libconsole.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/libhttp_parser.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/libesp-tls.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/libesp_adc.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/libesp_driver_cam.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/libesp_eth.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/libesp_gdbstub.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/libesp_hid.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/libtcp_transport.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/libesp_http_client.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/libesp_http_server.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/libesp_https_ota.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/libesp_https_server.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/libesp_lcd.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/libprotobuf-c.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/libprotocomm.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/libespcoredump.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/libwear_levelling.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/libfatfs.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/libjson.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/libmqtt.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/librt.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/libspiffs.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/libwifi_provisioning.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/libmain.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/libespressif__cbor.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/libespressif__esp_insights.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/libespressif__json_parser.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/libespressif__json_generator.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/libespressif__mdns.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/libesp_rainmaker.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/libapp_insights.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/libespressif__qrcode.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/libapp_network.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/libgpio_button.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/libapp_reset.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/libledc_driver.a -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/libws2812_led.a diff --git a/RainMaker_Table-Lights/build/ldgen_libraries.in b/RainMaker_Table-Lights/build/ldgen_libraries.in deleted file mode 100644 index 81bc0a9ba..000000000 --- a/RainMaker_Table-Lights/build/ldgen_libraries.in +++ /dev/null @@ -1,102 +0,0 @@ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/local_components_list.temp.yml b/RainMaker_Table-Lights/build/local_components_list.temp.yml deleted file mode 100644 index aa62d5cb5..000000000 --- a/RainMaker_Table-Lights/build/local_components_list.temp.yml +++ /dev/null @@ -1,225 +0,0 @@ -components: - - name: "app_trace" - path: "/home/alex/esp/v5.4.1/esp-idf/components/app_trace" - - name: "app_update" - path: "/home/alex/esp/v5.4.1/esp-idf/components/app_update" - - name: "bootloader" - path: "/home/alex/esp/v5.4.1/esp-idf/components/bootloader" - - name: "bootloader_support" - path: "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support" - - name: "bt" - path: "/home/alex/esp/v5.4.1/esp-idf/components/bt" - - name: "cmock" - path: "/home/alex/esp/v5.4.1/esp-idf/components/cmock" - - name: "console" - path: "/home/alex/esp/v5.4.1/esp-idf/components/console" - - name: "cxx" - path: "/home/alex/esp/v5.4.1/esp-idf/components/cxx" - - name: "driver" - path: "/home/alex/esp/v5.4.1/esp-idf/components/driver" - - name: "efuse" - path: "/home/alex/esp/v5.4.1/esp-idf/components/efuse" - - name: "esp-tls" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls" - - name: "esp_adc" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc" - - name: "esp_app_format" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format" - - name: "esp_bootloader_format" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format" - - name: "esp_coex" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex" - - name: "esp_common" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_common" - - name: "esp_driver_ana_cmpr" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr" - - name: "esp_driver_cam" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam" - - name: "esp_driver_dac" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac" - - name: "esp_driver_gpio" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio" - - name: "esp_driver_gptimer" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer" - - name: "esp_driver_i2c" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c" - - name: "esp_driver_i2s" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s" - - name: "esp_driver_isp" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp" - - name: "esp_driver_jpeg" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg" - - name: "esp_driver_ledc" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc" - - name: "esp_driver_mcpwm" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm" - - name: "esp_driver_parlio" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio" - - name: "esp_driver_pcnt" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt" - - name: "esp_driver_ppa" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa" - - name: "esp_driver_rmt" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt" - - name: "esp_driver_sdio" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio" - - name: "esp_driver_sdm" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm" - - name: "esp_driver_sdmmc" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc" - - name: "esp_driver_sdspi" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi" - - name: "esp_driver_spi" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi" - - name: "esp_driver_touch_sens" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens" - - name: "esp_driver_tsens" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens" - - name: "esp_driver_uart" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart" - - name: "esp_driver_usb_serial_jtag" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag" - - name: "esp_eth" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth" - - name: "esp_event" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_event" - - name: "esp_gdbstub" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub" - - name: "esp_hid" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid" - - name: "esp_http_client" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client" - - name: "esp_http_server" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server" - - name: "esp_https_ota" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota" - - name: "esp_https_server" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server" - - name: "esp_hw_support" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support" - - name: "esp_lcd" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd" - - name: "esp_local_ctrl" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl" - - name: "esp_mm" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm" - - name: "esp_netif" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif" - - name: "esp_netif_stack" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack" - - name: "esp_partition" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition" - - name: "esp_phy" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy" - - name: "esp_pm" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm" - - name: "esp_psram" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram" - - name: "esp_ringbuf" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf" - - name: "esp_rom" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom" - - name: "esp_security" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_security" - - name: "esp_system" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_system" - - name: "esp_timer" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer" - - name: "esp_vfs_console" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console" - - name: "esp_wifi" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi" - - name: "espcoredump" - path: "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump" - - name: "esptool_py" - path: "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py" - - name: "fatfs" - path: "/home/alex/esp/v5.4.1/esp-idf/components/fatfs" - - name: "freertos" - path: "/home/alex/esp/v5.4.1/esp-idf/components/freertos" - - name: "hal" - path: "/home/alex/esp/v5.4.1/esp-idf/components/hal" - - name: "heap" - path: "/home/alex/esp/v5.4.1/esp-idf/components/heap" - - name: "http_parser" - path: "/home/alex/esp/v5.4.1/esp-idf/components/http_parser" - - name: "idf_test" - path: "/home/alex/esp/v5.4.1/esp-idf/components/idf_test" - - name: "ieee802154" - path: "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154" - - name: "json" - path: "/home/alex/esp/v5.4.1/esp-idf/components/json" - - name: "linux" - path: "/home/alex/esp/v5.4.1/esp-idf/components/linux" - - name: "log" - path: "/home/alex/esp/v5.4.1/esp-idf/components/log" - - name: "lwip" - path: "/home/alex/esp/v5.4.1/esp-idf/components/lwip" - - name: "mbedtls" - path: "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls" - - name: "mqtt" - path: "/home/alex/esp/v5.4.1/esp-idf/components/mqtt" - - name: "newlib" - path: "/home/alex/esp/v5.4.1/esp-idf/components/newlib" - - name: "nvs_flash" - path: "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash" - - name: "nvs_sec_provider" - path: "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider" - - name: "openthread" - path: "/home/alex/esp/v5.4.1/esp-idf/components/openthread" - - name: "partition_table" - path: "/home/alex/esp/v5.4.1/esp-idf/components/partition_table" - - name: "perfmon" - path: "/home/alex/esp/v5.4.1/esp-idf/components/perfmon" - - name: "protobuf-c" - path: "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c" - - name: "protocomm" - path: "/home/alex/esp/v5.4.1/esp-idf/components/protocomm" - - name: "pthread" - path: "/home/alex/esp/v5.4.1/esp-idf/components/pthread" - - name: "riscv" - path: "/home/alex/esp/v5.4.1/esp-idf/components/riscv" - - name: "rt" - path: "/home/alex/esp/v5.4.1/esp-idf/components/rt" - - name: "sdmmc" - path: "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc" - - name: "soc" - path: "/home/alex/esp/v5.4.1/esp-idf/components/soc" - - name: "spi_flash" - path: "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash" - - name: "spiffs" - path: "/home/alex/esp/v5.4.1/esp-idf/components/spiffs" - - name: "tcp_transport" - path: "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport" - - name: "touch_element" - path: "/home/alex/esp/v5.4.1/esp-idf/components/touch_element" - - name: "ulp" - path: "/home/alex/esp/v5.4.1/esp-idf/components/ulp" - - name: "unity" - path: "/home/alex/esp/v5.4.1/esp-idf/components/unity" - - name: "usb" - path: "/home/alex/esp/v5.4.1/esp-idf/components/usb" - - name: "vfs" - path: "/home/alex/esp/v5.4.1/esp-idf/components/vfs" - - name: "wear_levelling" - path: "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling" - - name: "wifi_provisioning" - path: "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning" - - name: "wpa_supplicant" - path: "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant" - - name: "xtensa" - path: "/home/alex/esp/v5.4.1/esp-idf/components/xtensa" - - name: "main" - path: "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main" - - name: "app_insights" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights" - - name: "app_network" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/app_network" - - name: "app_reset" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset" - - name: "gpio_button" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button" - - name: "ledc_driver" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver" - - name: "ws2812_led" - path: "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led" diff --git a/RainMaker_Table-Lights/build/log/idf_py_stderr_output_197948 b/RainMaker_Table-Lights/build/log/idf_py_stderr_output_197948 deleted file mode 100644 index 8f00ce159..000000000 --- a/RainMaker_Table-Lights/build/log/idf_py_stderr_output_197948 +++ /dev/null @@ -1,2 +0,0 @@ -ESP Insights Project commit: ESP32-Node_Switch-v2.7-6848-g904660c9f-dirty -ESP RainMaker Project commit: d0d0e27 diff --git a/RainMaker_Table-Lights/build/log/idf_py_stderr_output_198738 b/RainMaker_Table-Lights/build/log/idf_py_stderr_output_198738 deleted file mode 100644 index 696931a1d..000000000 --- a/RainMaker_Table-Lights/build/log/idf_py_stderr_output_198738 +++ /dev/null @@ -1,3 +0,0 @@ -Server running, waiting for requests on stdin... -Loading config from /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig... -Saving config to /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig... diff --git a/RainMaker_Table-Lights/build/log/idf_py_stdout_output_197948 b/RainMaker_Table-Lights/build/log/idf_py_stdout_output_197948 deleted file mode 100644 index c9f812fa7..000000000 --- a/RainMaker_Table-Lights/build/log/idf_py_stdout_output_197948 +++ /dev/null @@ -1,47 +0,0 @@ --- Building ESP-IDF components for target esp32c3 -NOTICE: Skipping optional dependency: espressif/usb_host_cdc_acm -NOTICE: Using component placed at /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker for dependency "espressif/esp_rainmaker", specified in /home/alex/.espressif/esp-rainmaker/examples/common/app_insights/idf_component.yml -NOTICE: Skipping optional dependency: espressif/usb_host_cdc_acm -NOTICE: Skipping optional dependency: espressif/usb_host_cdc_acm -NOTICE: Processing 17 dependencies: -NOTICE: [1/17] espressif/cbor (0.6.0~2) -NOTICE: [2/17] espressif/esp-serial-flasher (1.8.0) -NOTICE: [3/17] espressif/esp_diag_data_store (1.0.2) -NOTICE: [4/17] espressif/esp_diagnostics (1.2.3) -NOTICE: [5/17] espressif/esp_insights (1.2.7) -NOTICE: [6/17] espressif/esp_rainmaker (1.6.0) (/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker) -NOTICE: [7/17] espressif/esp_rcp_update (1.4.0) -NOTICE: [8/17] espressif/esp_schedule (1.2.0) -NOTICE: [9/17] espressif/esp_secure_cert_mgr (2.5.0) -NOTICE: [10/17] espressif/jsmn (1.1.0) -NOTICE: [11/17] espressif/json_generator (1.1.2) -NOTICE: [12/17] espressif/json_parser (1.0.3) -NOTICE: [13/17] espressif/mdns (1.8.2) -NOTICE: [14/17] espressif/network_provisioning (1.0.5) -NOTICE: [15/17] espressif/qrcode (0.1.0~2) -NOTICE: [16/17] espressif/rmaker_common (1.4.11) -NOTICE: [17/17] idf (5.4.1) -NOTICE: Skipping optional dependency: espressif/usb_host_cdc_acm --- Project sdkconfig file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig -Loading defaults file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults... -/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults:33 CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE was replaced with CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE -warning: unknown kconfig symbol 'MBEDTLS_DYNAMIC_FREE_PEER_CERT' assigned to 'y' in /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults -warning: unknown kconfig symbol 'BTDM_CTRL_MODE_BLE_ONLY' assigned to 'y' in /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/riscv/ld/rom.api.ld --- App "RainMaker_Table-Lights" version: 1.0 --- Adding linker script /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/memory.ld --- Adding linker script /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/ld/sections.ld.in --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.bt_funcs.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.libgcc.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.version.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.eco3.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.eco3_bt_funcs.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/esp_rom/esp32c3/ld/esp32c3.rom.newlib.ld --- Adding linker script /home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ld/esp32c3.peripherals.ld --- Components: app_insights app_network app_reset app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_bootloader_format esp_coex esp_common esp_driver_ana_cmpr esp_driver_cam esp_driver_dac esp_driver_gpio esp_driver_gptimer esp_driver_i2c esp_driver_i2s esp_driver_isp esp_driver_jpeg esp_driver_ledc esp_driver_mcpwm esp_driver_parlio esp_driver_pcnt esp_driver_ppa esp_driver_rmt esp_driver_sdio esp_driver_sdm esp_driver_sdmmc esp_driver_sdspi esp_driver_spi esp_driver_touch_sens esp_driver_tsens esp_driver_uart esp_driver_usb_serial_jtag esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_mm esp_netif esp_netif_stack esp_partition esp_phy esp_pm esp_psram esp_rainmaker esp_ringbuf esp_rom esp_security esp_system esp_timer esp_vfs_console esp_wifi espcoredump espressif__cbor espressif__esp-serial-flasher espressif__esp_diag_data_store espressif__esp_diagnostics espressif__esp_insights espressif__esp_rcp_update espressif__esp_schedule espressif__esp_secure_cert_mgr espressif__jsmn espressif__json_generator espressif__json_parser espressif__mdns espressif__network_provisioning espressif__qrcode espressif__rmaker_common esptool_py fatfs freertos gpio_button hal heap http_parser idf_test ieee802154 json ledc_driver log lwip main mbedtls mqtt newlib nvs_flash nvs_sec_provider openthread partition_table protobuf-c protocomm pthread riscv rt sdmmc soc spi_flash spiffs tcp_transport ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant ws2812_led --- Component paths: /home/alex/.espressif/esp-rainmaker/examples/common/app_insights /home/alex/.espressif/esp-rainmaker/examples/common/app_network /home/alex/.espressif/esp-rainmaker/examples/common/app_reset /home/alex/esp/v5.4.1/esp-idf/components/app_trace /home/alex/esp/v5.4.1/esp-idf/components/app_update /home/alex/esp/v5.4.1/esp-idf/components/bootloader /home/alex/esp/v5.4.1/esp-idf/components/bootloader_support /home/alex/esp/v5.4.1/esp-idf/components/bt /home/alex/esp/v5.4.1/esp-idf/components/cmock /home/alex/esp/v5.4.1/esp-idf/components/console /home/alex/esp/v5.4.1/esp-idf/components/cxx /home/alex/esp/v5.4.1/esp-idf/components/driver /home/alex/esp/v5.4.1/esp-idf/components/efuse /home/alex/esp/v5.4.1/esp-idf/components/esp-tls /home/alex/esp/v5.4.1/esp-idf/components/esp_adc /home/alex/esp/v5.4.1/esp-idf/components/esp_app_format /home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format /home/alex/esp/v5.4.1/esp-idf/components/esp_coex /home/alex/esp/v5.4.1/esp-idf/components/esp_common /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart /home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag /home/alex/esp/v5.4.1/esp-idf/components/esp_eth /home/alex/esp/v5.4.1/esp-idf/components/esp_event /home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub /home/alex/esp/v5.4.1/esp-idf/components/esp_hid /home/alex/esp/v5.4.1/esp-idf/components/esp_http_client /home/alex/esp/v5.4.1/esp-idf/components/esp_http_server /home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota /home/alex/esp/v5.4.1/esp-idf/components/esp_https_server /home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support /home/alex/esp/v5.4.1/esp-idf/components/esp_lcd /home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl /home/alex/esp/v5.4.1/esp-idf/components/esp_mm /home/alex/esp/v5.4.1/esp-idf/components/esp_netif /home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack /home/alex/esp/v5.4.1/esp-idf/components/esp_partition /home/alex/esp/v5.4.1/esp-idf/components/esp_phy /home/alex/esp/v5.4.1/esp-idf/components/esp_pm /home/alex/esp/v5.4.1/esp-idf/components/esp_psram /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker /home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf /home/alex/esp/v5.4.1/esp-idf/components/esp_rom /home/alex/esp/v5.4.1/esp-idf/components/esp_security /home/alex/esp/v5.4.1/esp-idf/components/esp_system /home/alex/esp/v5.4.1/esp-idf/components/esp_timer /home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console /home/alex/esp/v5.4.1/esp-idf/components/esp_wifi /home/alex/esp/v5.4.1/esp-idf/components/espcoredump /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common /home/alex/esp/v5.4.1/esp-idf/components/esptool_py /home/alex/esp/v5.4.1/esp-idf/components/fatfs /home/alex/esp/v5.4.1/esp-idf/components/freertos /home/alex/.espressif/esp-rainmaker/examples/common/gpio_button /home/alex/esp/v5.4.1/esp-idf/components/hal /home/alex/esp/v5.4.1/esp-idf/components/heap /home/alex/esp/v5.4.1/esp-idf/components/http_parser /home/alex/esp/v5.4.1/esp-idf/components/idf_test /home/alex/esp/v5.4.1/esp-idf/components/ieee802154 /home/alex/esp/v5.4.1/esp-idf/components/json /home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver /home/alex/esp/v5.4.1/esp-idf/components/log /home/alex/esp/v5.4.1/esp-idf/components/lwip /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main /home/alex/esp/v5.4.1/esp-idf/components/mbedtls /home/alex/esp/v5.4.1/esp-idf/components/mqtt /home/alex/esp/v5.4.1/esp-idf/components/newlib /home/alex/esp/v5.4.1/esp-idf/components/nvs_flash /home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider /home/alex/esp/v5.4.1/esp-idf/components/openthread /home/alex/esp/v5.4.1/esp-idf/components/partition_table /home/alex/esp/v5.4.1/esp-idf/components/protobuf-c /home/alex/esp/v5.4.1/esp-idf/components/protocomm /home/alex/esp/v5.4.1/esp-idf/components/pthread /home/alex/esp/v5.4.1/esp-idf/components/riscv /home/alex/esp/v5.4.1/esp-idf/components/rt /home/alex/esp/v5.4.1/esp-idf/components/sdmmc /home/alex/esp/v5.4.1/esp-idf/components/soc /home/alex/esp/v5.4.1/esp-idf/components/spi_flash /home/alex/esp/v5.4.1/esp-idf/components/spiffs /home/alex/esp/v5.4.1/esp-idf/components/tcp_transport /home/alex/esp/v5.4.1/esp-idf/components/ulp /home/alex/esp/v5.4.1/esp-idf/components/unity /home/alex/esp/v5.4.1/esp-idf/components/usb /home/alex/esp/v5.4.1/esp-idf/components/vfs /home/alex/esp/v5.4.1/esp-idf/components/wear_levelling /home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning /home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant /home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led --- Configuring done (7.4s) --- Generating done (1.3s) --- Build files have been written to: /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build diff --git a/RainMaker_Table-Lights/build/log/idf_py_stdout_output_198738 b/RainMaker_Table-Lights/build/log/idf_py_stdout_output_198738 deleted file mode 100644 index b689feebf..000000000 --- a/RainMaker_Table-Lights/build/log/idf_py_stdout_output_198738 +++ /dev/null @@ -1,7 +0,0 @@ -[0/1] cd /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python /home/alex/esp/v5.4.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env && /home/alex/.espressif/python_env/idf5.4_py3.13_env/bin/python -m kconfserver --env-file /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/config.env --kconfig /home/alex/esp/v5.4.1/esp-idf/Kconfig --sdkconfig-rename /home/alex/esp/v5.4.1/esp-idf/sdkconfig.rename --config /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig -{"version": 2, "values": {"SOC_ADC_SUPPORTED": true, "SOC_DEDICATED_GPIO_SUPPORTED": true, "SOC_UART_SUPPORTED": true, "SOC_GDMA_SUPPORTED": true, "SOC_AHB_GDMA_SUPPORTED": true, "SOC_GPTIMER_SUPPORTED": true, "SOC_TWAI_SUPPORTED": true, "SOC_BT_SUPPORTED": true, "SOC_ASYNC_MEMCPY_SUPPORTED": true, "SOC_USB_SERIAL_JTAG_SUPPORTED": true, "SOC_TEMP_SENSOR_SUPPORTED": true, "SOC_XT_WDT_SUPPORTED": true, "SOC_PHY_SUPPORTED": true, "SOC_WIFI_SUPPORTED": true, "SOC_SUPPORTS_SECURE_DL_MODE": true, "SOC_EFUSE_KEY_PURPOSE_FIELD": true, "SOC_EFUSE_HAS_EFUSE_RST_BUG": true, "SOC_EFUSE_SUPPORTED": true, "SOC_RTC_FAST_MEM_SUPPORTED": true, "SOC_RTC_MEM_SUPPORTED": true, "SOC_I2S_SUPPORTED": true, "SOC_RMT_SUPPORTED": true, "SOC_SDM_SUPPORTED": true, "SOC_GPSPI_SUPPORTED": true, "SOC_LEDC_SUPPORTED": true, "SOC_I2C_SUPPORTED": true, "SOC_SYSTIMER_SUPPORTED": true, "SOC_SUPPORT_COEXISTENCE": true, "SOC_AES_SUPPORTED": true, "SOC_MPI_SUPPORTED": true, "SOC_SHA_SUPPORTED": true, "SOC_HMAC_SUPPORTED": true, "SOC_DIG_SIGN_SUPPORTED": true, "SOC_FLASH_ENC_SUPPORTED": true, "SOC_SECURE_BOOT_SUPPORTED": true, "SOC_MEMPROT_SUPPORTED": true, "SOC_BOD_SUPPORTED": true, "SOC_CLK_TREE_SUPPORTED": true, "SOC_ASSIST_DEBUG_SUPPORTED": true, "SOC_WDT_SUPPORTED": true, "SOC_SPI_FLASH_SUPPORTED": true, "SOC_RNG_SUPPORTED": true, "SOC_LIGHT_SLEEP_SUPPORTED": true, "SOC_DEEP_SLEEP_SUPPORTED": true, "SOC_LP_PERIPH_SHARE_INTERRUPT": true, "SOC_PM_SUPPORTED": true, "SOC_XTAL_SUPPORT_40M": true, "SOC_AES_SUPPORT_DMA": true, "SOC_AES_GDMA": true, "SOC_AES_SUPPORT_AES_128": true, "SOC_AES_SUPPORT_AES_256": true, "SOC_ADC_DIG_CTRL_SUPPORTED": true, "SOC_ADC_ARBITER_SUPPORTED": true, "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, "SOC_ADC_MONITOR_SUPPORTED": true, "SOC_ADC_DMA_SUPPORTED": true, "SOC_ADC_PERIPH_NUM": 2, "SOC_ADC_MAX_CHANNEL_NUM": 5, "SOC_ADC_ATTEN_NUM": 4, "SOC_ADC_DIGI_CONTROLLER_NUM": 1, "SOC_ADC_PATT_LEN_MAX": 8, "SOC_ADC_DIGI_MIN_BITWIDTH": 12, "SOC_ADC_DIGI_MAX_BITWIDTH": 12, "SOC_ADC_DIGI_RESULT_BYTES": 4, "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, "SOC_ADC_DIGI_MONITOR_NUM": 2, "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, "SOC_ADC_RTC_MIN_BITWIDTH": 12, "SOC_ADC_RTC_MAX_BITWIDTH": 12, "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, "SOC_ADC_SHARED_POWER": true, "SOC_APB_BACKUP_DMA": true, "SOC_BROWNOUT_RESET_SUPPORTED": true, "SOC_SHARED_IDCACHE_SUPPORTED": true, "SOC_CACHE_MEMORY_IBANK_SIZE": 16384, "SOC_CPU_CORES_NUM": 1, "SOC_CPU_INTR_NUM": 32, "SOC_CPU_HAS_FLEXIBLE_INTC": true, "SOC_CPU_HAS_CSR_PC": true, "SOC_CPU_BREAKPOINTS_NUM": 8, "SOC_CPU_WATCHPOINTS_NUM": 8, "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, "SOC_AHB_GDMA_VERSION": 1, "SOC_GDMA_NUM_GROUPS_MAX": 1, "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, "SOC_GPIO_PORT": 1, "SOC_GPIO_PIN_COUNT": 22, "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, "SOC_GPIO_SUPPORT_FORCE_HOLD": true, "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, "SOC_GPIO_IN_RANGE_MAX": 21, "SOC_GPIO_OUT_RANGE_MAX": 21, "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 6, "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 4194240, "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, "SOC_I2C_NUM": 1, "SOC_HP_I2C_NUM": 1, "SOC_I2C_FIFO_LEN": 32, "SOC_I2C_CMD_REG_NUM": 8, "SOC_I2C_SUPPORT_SLAVE": true, "SOC_I2C_SUPPORT_HW_CLR_BUS": true, "SOC_I2C_SUPPORT_XTAL": true, "SOC_I2C_SUPPORT_RTC": true, "SOC_I2C_SUPPORT_10BIT_ADDR": true, "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, "SOC_I2S_NUM": 1, "SOC_I2S_HW_VERSION_2": true, "SOC_I2S_SUPPORTS_XTAL": true, "SOC_I2S_SUPPORTS_PLL_F160M": true, "SOC_I2S_SUPPORTS_PCM": true, "SOC_I2S_SUPPORTS_PDM": true, "SOC_I2S_SUPPORTS_PDM_TX": true, "SOC_I2S_PDM_MAX_TX_LINES": 2, "SOC_I2S_SUPPORTS_TDM": true, "SOC_LEDC_SUPPORT_APB_CLOCK": true, "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, "SOC_LEDC_TIMER_NUM": 4, "SOC_LEDC_CHANNEL_NUM": 6, "SOC_LEDC_TIMER_BIT_WIDTH": 14, "SOC_LEDC_SUPPORT_FADE_STOP": true, "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, "SOC_MMU_PERIPH_NUM": 1, "SOC_MPU_MIN_REGION_SIZE": 536870912, "SOC_MPU_REGIONS_MAX_NUM": 8, "SOC_RMT_GROUPS": 1, "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, "SOC_RMT_CHANNELS_PER_GROUP": 4, "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, "SOC_RMT_SUPPORT_RX_PINGPONG": true, "SOC_RMT_SUPPORT_RX_DEMODULATION": true, "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, "SOC_RMT_SUPPORT_TX_SYNCHRO": true, "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, "SOC_RMT_SUPPORT_XTAL": true, "SOC_RMT_SUPPORT_APB": true, "SOC_RMT_SUPPORT_RC_FAST": true, "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 108, "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND": true, "SOC_SLEEP_TGWDT_STOP_WORKAROUND": true, "SOC_RTCIO_PIN_COUNT": 0, "SOC_MPI_MEM_BLOCKS_NUM": 4, "SOC_MPI_OPERATIONS_NUM": 3, "SOC_RSA_MAX_BIT_LEN": 3072, "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, "SOC_SHA_SUPPORT_DMA": true, "SOC_SHA_SUPPORT_RESUME": true, "SOC_SHA_GDMA": true, "SOC_SHA_SUPPORT_SHA1": true, "SOC_SHA_SUPPORT_SHA224": true, "SOC_SHA_SUPPORT_SHA256": true, "SOC_SDM_GROUPS": 1, "SOC_SDM_CHANNELS_PER_GROUP": 4, "SOC_SDM_CLK_SUPPORT_APB": true, "SOC_SPI_PERIPH_NUM": 2, "SOC_SPI_MAX_CS_NUM": 6, "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, "SOC_SPI_SUPPORT_DDRCLK": true, "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, "SOC_SPI_SUPPORT_CD_SIG": true, "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, "SOC_SPI_SUPPORT_CLK_APB": true, "SOC_SPI_SUPPORT_CLK_XTAL": true, "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, "SOC_SPI_SCT_SUPPORTED": true, "SOC_SPI_SCT_REG_NUM": 14, "SOC_SPI_SCT_BUFFER_NUM_MAX": true, "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, "SOC_MEMSPI_IS_INDEPENDENT": true, "SOC_SPI_MAX_PRE_DIVIDER": 16, "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, "SOC_SPI_MEM_SUPPORT_WRAP": true, "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, "SOC_SYSTIMER_COUNTER_NUM": 2, "SOC_SYSTIMER_ALARM_NUM": 3, "SOC_SYSTIMER_BIT_WIDTH_LO": 32, "SOC_SYSTIMER_BIT_WIDTH_HI": 20, "SOC_SYSTIMER_FIXED_DIVIDER": true, "SOC_SYSTIMER_INT_LEVEL": true, "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, "SOC_TIMER_GROUPS": 2, "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, "SOC_TIMER_GROUP_SUPPORT_XTAL": true, "SOC_TIMER_GROUP_SUPPORT_APB": true, "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, "SOC_LP_TIMER_BIT_WIDTH_LO": 32, "SOC_LP_TIMER_BIT_WIDTH_HI": 16, "SOC_MWDT_SUPPORT_XTAL": true, "SOC_TWAI_CONTROLLER_NUM": 1, "SOC_TWAI_CLK_SUPPORT_APB": true, "SOC_TWAI_BRP_MIN": 2, "SOC_TWAI_BRP_MAX": 16384, "SOC_TWAI_SUPPORTS_RX_STATUS": true, "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, "SOC_EFUSE_DIS_PAD_JTAG": true, "SOC_EFUSE_DIS_USB_JTAG": true, "SOC_EFUSE_DIS_DIRECT_BOOT": true, "SOC_EFUSE_SOFT_DIS_JTAG": true, "SOC_EFUSE_DIS_ICACHE": true, "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, "SOC_SECURE_BOOT_V2_RSA": true, "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, "SOC_FLASH_ENCRYPTION_XTS_AES": true, "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, "SOC_MEMPROT_MEM_ALIGN_SIZE": 512, "SOC_UART_NUM": 2, "SOC_UART_HP_NUM": 2, "SOC_UART_FIFO_LEN": 128, "SOC_UART_BITRATE_MAX": 5000000, "SOC_UART_SUPPORT_APB_CLK": true, "SOC_UART_SUPPORT_RTC_CLK": true, "SOC_UART_SUPPORT_XTAL_CLK": true, "SOC_UART_SUPPORT_WAKEUP_INT": true, "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, "SOC_COEX_HW_PTI": true, "SOC_PHY_DIG_REGS_MEM_SIZE": 21, "SOC_MAC_BB_PD_MEM_SIZE": 192, "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, "SOC_PM_SUPPORT_WIFI_WAKEUP": true, "SOC_PM_SUPPORT_BT_WAKEUP": true, "SOC_PM_SUPPORT_CPU_PD": true, "SOC_PM_SUPPORT_WIFI_PD": true, "SOC_PM_SUPPORT_BT_PD": true, "SOC_PM_SUPPORT_RC_FAST_PD": true, "SOC_PM_SUPPORT_VDDSDIO_PD": true, "SOC_PM_SUPPORT_MAC_BB_PD": true, "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, "SOC_PM_MODEM_PD_BY_SW": true, "SOC_CLK_RC_FAST_D256_SUPPORTED": true, "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, "SOC_CLK_XTAL32K_SUPPORTED": true, "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, "SOC_WIFI_HW_TSF": true, "SOC_WIFI_FTM_SUPPORT": true, "SOC_WIFI_GCMP_SUPPORT": true, "SOC_WIFI_WAPI_SUPPORT": true, "SOC_WIFI_CSI_SUPPORT": true, "SOC_WIFI_MESH_SUPPORT": true, "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, "SOC_BLE_SUPPORTED": true, "SOC_BLE_MESH_SUPPORTED": true, "SOC_BLE_50_SUPPORTED": true, "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, "SOC_BLUFI_SUPPORTED": true, "SOC_PHY_COMBO_MODULE": true, "IDF_CMAKE": true, "IDF_TOOLCHAIN": "gcc", "IDF_TOOLCHAIN_GCC": true, "IDF_TARGET_ARCH_RISCV": true, "IDF_TARGET_ARCH": "riscv", "IDF_TARGET": "esp32c3", "IDF_INIT_VERSION": "$IDF_INIT_VERSION", "IDF_TARGET_ESP32C3": true, "IDF_FIRMWARE_CHIP_ID": 5, "APP_BUILD_TYPE_APP_2NDBOOT": true, "APP_BUILD_TYPE_RAM": false, "APP_BUILD_GENERATE_BINARIES": true, "APP_BUILD_BOOTLOADER": true, "APP_BUILD_USE_FLASH_SECTIONS": true, "APP_REPRODUCIBLE_BUILD": false, "APP_NO_BLOBS": false, "BOOTLOADER_COMPILE_TIME_DATE": true, "BOOTLOADER_PROJECT_VER": 1, "BOOTLOADER_OFFSET_IN_FLASH": 0, "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, "BOOTLOADER_LOG_LEVEL_NONE": false, "BOOTLOADER_LOG_LEVEL_ERROR": false, "BOOTLOADER_LOG_LEVEL_WARN": false, "BOOTLOADER_LOG_LEVEL_INFO": true, "BOOTLOADER_LOG_LEVEL_DEBUG": false, "BOOTLOADER_LOG_LEVEL_VERBOSE": false, "BOOTLOADER_LOG_LEVEL": 3, "BOOTLOADER_LOG_COLORS": false, "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, "BOOTLOADER_FLASH_DC_AWARE": false, "BOOTLOADER_FLASH_XMC_SUPPORT": true, "BOOTLOADER_FACTORY_RESET": false, "BOOTLOADER_APP_TEST": false, "BOOTLOADER_REGION_PROTECTION_ENABLE": true, "BOOTLOADER_WDT_ENABLE": true, "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, "BOOTLOADER_WDT_TIME_MS": 9000, "BOOTLOADER_APP_ROLLBACK_ENABLE": true, "BOOTLOADER_APP_ANTI_ROLLBACK": false, "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, "BOOTLOADER_RESERVE_RTC_SIZE": 0, "BOOTLOADER_CUSTOM_RESERVE_RTC": false, "SECURE_BOOT_V2_RSA_SUPPORTED": true, "SECURE_BOOT_V2_PREFERRED": true, "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, "SECURE_BOOT": false, "SECURE_FLASH_ENC_ENABLED": false, "SECURE_ROM_DL_MODE_ENABLED": true, "APP_COMPILE_TIME_DATE": true, "APP_EXCLUDE_PROJECT_VER_VAR": false, "APP_EXCLUDE_PROJECT_NAME_VAR": false, "APP_PROJECT_VER_FROM_CONFIG": false, "APP_RETRIEVE_LEN_ELF_SHA": 9, "ESP_ROM_HAS_CRC_LE": true, "ESP_ROM_HAS_CRC_BE": true, "ESP_ROM_HAS_MZ_CRC32": true, "ESP_ROM_HAS_JPEG_DECODE": true, "ESP_ROM_UART_CLK_IS_XTAL": true, "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, "ESP_ROM_GET_CLK_FREQ": true, "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, "ESP_ROM_HAS_LAYOUT_TABLE": true, "ESP_ROM_HAS_SPI_FLASH": true, "ESP_ROM_HAS_ETS_PRINTF_BUG": true, "ESP_ROM_HAS_NEWLIB": true, "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, "ESP_ROM_HAS_SW_FLOAT": true, "ESP_ROM_USB_OTG_NUM": -1, "ESP_ROM_HAS_VERSION": true, "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, "BOOT_ROM_LOG_ALWAYS_ON": true, "BOOT_ROM_LOG_ALWAYS_OFF": false, "BOOT_ROM_LOG_ON_GPIO_HIGH": false, "BOOT_ROM_LOG_ON_GPIO_LOW": false, "ESPTOOLPY_NO_STUB": false, "ESPTOOLPY_FLASHMODE_QIO": false, "ESPTOOLPY_FLASHMODE_QOUT": false, "ESPTOOLPY_FLASHMODE_DIO": true, "ESPTOOLPY_FLASHMODE_DOUT": false, "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, "ESPTOOLPY_FLASHMODE": "dio", "ESPTOOLPY_FLASHFREQ_80M": true, "ESPTOOLPY_FLASHFREQ_40M": false, "ESPTOOLPY_FLASHFREQ_26M": false, "ESPTOOLPY_FLASHFREQ_20M": false, "ESPTOOLPY_FLASHFREQ": "80m", "ESPTOOLPY_FLASHSIZE_1MB": false, "ESPTOOLPY_FLASHSIZE_2MB": false, "ESPTOOLPY_FLASHSIZE_4MB": true, "ESPTOOLPY_FLASHSIZE_8MB": false, "ESPTOOLPY_FLASHSIZE_16MB": false, "ESPTOOLPY_FLASHSIZE_32MB": false, "ESPTOOLPY_FLASHSIZE_64MB": false, "ESPTOOLPY_FLASHSIZE_128MB": false, "ESPTOOLPY_FLASHSIZE": "4MB", "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, "ESPTOOLPY_BEFORE_RESET": true, "ESPTOOLPY_BEFORE_NORESET": false, "ESPTOOLPY_BEFORE": "default_reset", "ESPTOOLPY_AFTER_RESET": true, "ESPTOOLPY_AFTER_NORESET": false, "ESPTOOLPY_AFTER": "hard_reset", "ESPTOOLPY_MONITOR_BAUD": 115200, "PARTITION_TABLE_SINGLE_APP": false, "PARTITION_TABLE_SINGLE_APP_LARGE": false, "PARTITION_TABLE_TWO_OTA": false, "PARTITION_TABLE_TWO_OTA_LARGE": false, "PARTITION_TABLE_CUSTOM": true, "PARTITION_TABLE_CUSTOM_FILENAME": "partitions_4mb_optimised.csv", "PARTITION_TABLE_FILENAME": "partitions_4mb_optimised.csv", "PARTITION_TABLE_OFFSET": 49152, "PARTITION_TABLE_MD5": true, "EXAMPLE_BOARD_BUTTON_GPIO": 9, "APP_NETWORK_PROV_SHOW_QR": true, "APP_NETWORK_PROV_MAX_POP_MISMATCH": 5, "APP_NETWORK_PROV_TRANSPORT_SOFTAP": false, "APP_NETWORK_PROV_TRANSPORT_BLE": true, "APP_NETWORK_PROV_TRANSPORT": 2, "APP_NETWORK_RESET_PROV_ON_FAILURE": true, "APP_NETWORK_PROV_MAX_RETRY_CNT": 5, "APP_NETWORK_SHOW_DEMO_INTRO_TEXT": false, "APP_NETWORK_PROV_TIMEOUT_PERIOD": 30, "APP_NETWORK_PROV_NAME_PREFIX": "PROV", "APP_WIFI_PROV_COMPAT": true, "ESP_RMAKER_NO_CLAIM": false, "ESP_RMAKER_SELF_CLAIM": true, "ESP_RMAKER_ASSISTED_CLAIM": false, "ESP_RMAKER_USE_NVS": true, "ESP_RMAKER_CLAIM_TYPE": 1, "ESP_RMAKER_CLAIM_SERVICE_BASE_URL": "https://esp-claiming.rainmaker.espressif.com", "ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG": false, "ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN": false, "ESP_RMAKER_MQTT_HOST": "a1p72mufdu6064-ats.iot.us-east-1.amazonaws.com", "ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS": true, "ESP_RMAKER_MQTT_ENABLE_BUDGETING": true, "ESP_RMAKER_MQTT_DEFAULT_BUDGET": 100, "ESP_RMAKER_MQTT_MAX_BUDGET": 1024, "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD": 5, "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT": 1, "ESP_RMAKER_MAX_PARAM_DATA_SIZE": 1024, "ESP_RMAKER_DISABLE_USER_MAPPING_PROV": false, "ESP_RMAKER_USER_ID_CHECK": true, "RMAKER_NAME_PARAM_CB": false, "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE": true, "ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE": true, "ESP_RMAKER_LOCAL_CTRL_HTTP_PORT": 8080, "ESP_RMAKER_LOCAL_CTRL_STACK_SIZE": 6144, "ESP_RMAKER_LOCAL_CTRL_SECURITY_0": false, "ESP_RMAKER_LOCAL_CTRL_SECURITY_1": true, "ESP_RMAKER_LOCAL_CTRL_SECURITY": 1, "ESP_RMAKER_CONSOLE_UART_NUM_0": true, "ESP_RMAKER_CONSOLE_UART_NUM_1": false, "ESP_RMAKER_CONSOLE_UART_NUM": 0, "ESP_RMAKER_USE_CERT_BUNDLE": true, "ESP_RMAKER_OTA_AUTOFETCH": true, "ESP_RMAKER_OTA_AUTOFETCH_PERIOD": 0, "ESP_RMAKER_SKIP_COMMON_NAME_CHECK": false, "ESP_RMAKER_SKIP_VERSION_CHECK": false, "ESP_RMAKER_SKIP_SECURE_VERSION_CHECK": false, "ESP_RMAKER_SKIP_PROJECT_NAME_CHECK": false, "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE": 1024, "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD": 90, "ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT": false, "ESP_RMAKER_OTA_TIME_SUPPORT": true, "ESP_RMAKER_OTA_PROGRESS_SUPPORT": false, "ESP_RMAKER_OTA_MAX_RETRIES": 3, "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES": 5, "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES": 10, "ESP_RMAKER_SCENES_MAX_SCENES": 10, "ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT": false, "ESP_RMAKER_CMD_RESP_ENABLE": true, "ESP_RMAKER_CMD_RESP_TEST_ENABLE": false, "ESP_RMAKER_USING_NETWORK_PROV": true, "COMPILER_OPTIMIZATION_DEBUG": true, "COMPILER_OPTIMIZATION_SIZE": false, "COMPILER_OPTIMIZATION_PERF": false, "COMPILER_OPTIMIZATION_NONE": false, "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, "COMPILER_ASSERT_NDEBUG_EVALUATE": true, "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, "COMPILER_HIDE_PATHS_MACROS": true, "COMPILER_CXX_EXCEPTIONS": false, "COMPILER_CXX_RTTI": false, "COMPILER_STACK_CHECK_MODE_NONE": true, "COMPILER_STACK_CHECK_MODE_NORM": false, "COMPILER_STACK_CHECK_MODE_STRONG": false, "COMPILER_STACK_CHECK_MODE_ALL": false, "COMPILER_NO_MERGE_CONSTANTS": false, "COMPILER_WARN_WRITE_STRINGS": false, "COMPILER_SAVE_RESTORE_LIBCALLS": false, "COMPILER_DISABLE_DEFAULT_ERRORS": true, "COMPILER_DISABLE_GCC12_WARNINGS": false, "COMPILER_DISABLE_GCC13_WARNINGS": false, "COMPILER_DISABLE_GCC14_WARNINGS": false, "COMPILER_DUMP_RTL_FILES": false, "COMPILER_RT_LIB_GCCLIB": true, "COMPILER_RT_LIB_NAME": "gcc", "COMPILER_ORPHAN_SECTIONS_WARNING": true, "COMPILER_ORPHAN_SECTIONS_PLACE": false, "COMPILER_STATIC_ANALYZER": false, "APPTRACE_DEST_JTAG": false, "APPTRACE_DEST_NONE": true, "APPTRACE_DEST_UART1": false, "APPTRACE_DEST_USB_CDC": false, "APPTRACE_DEST_UART_NONE": true, "APPTRACE_UART_TASK_PRIO": 1, "APPTRACE_LOCK_ENABLE": true, "BT_ENABLED": true, "BT_BLUEDROID_ENABLED": false, "BT_NIMBLE_ENABLED": true, "BT_CONTROLLER_ONLY": false, "BT_CONTROLLER_ENABLED": true, "BT_CONTROLLER_DISABLED": false, "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL": true, "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT": false, "BT_NIMBLE_LOG_LEVEL_NONE": false, "BT_NIMBLE_LOG_LEVEL_ERROR": false, "BT_NIMBLE_LOG_LEVEL_WARNING": false, "BT_NIMBLE_LOG_LEVEL_INFO": true, "BT_NIMBLE_LOG_LEVEL_DEBUG": false, "BT_NIMBLE_LOG_LEVEL": 1, "BT_NIMBLE_MAX_CONNECTIONS": 3, "BT_NIMBLE_MAX_BONDS": 3, "BT_NIMBLE_MAX_CCCDS": 8, "BT_NIMBLE_L2CAP_COC_MAX_NUM": 0, "BT_NIMBLE_PINNED_TO_CORE": 0, "BT_NIMBLE_HOST_TASK_STACK_SIZE": 4096, "BT_NIMBLE_ROLE_CENTRAL": true, "BT_NIMBLE_ROLE_PERIPHERAL": true, "BT_NIMBLE_ROLE_BROADCASTER": true, "BT_NIMBLE_ROLE_OBSERVER": true, "BT_NIMBLE_NVS_PERSIST": false, "BT_NIMBLE_SMP_ID_RESET": false, "BT_NIMBLE_SECURITY_ENABLE": true, "BT_NIMBLE_SM_LEGACY": true, "BT_NIMBLE_SM_SC": true, "BT_NIMBLE_SM_SC_DEBUG_KEYS": false, "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION": true, "BT_NIMBLE_SM_LVL": 0, "BT_NIMBLE_SM_SC_ONLY": 0, "BT_NIMBLE_DEBUG": false, "BT_NIMBLE_DYNAMIC_SERVICE": false, "BT_NIMBLE_SVC_GAP_DEVICE_NAME": "nimble", "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN": 31, "BT_NIMBLE_ATT_PREFERRED_MTU": 256, "BT_NIMBLE_SVC_GAP_APPEARANCE": 0, "BT_NIMBLE_MSYS_1_BLOCK_COUNT": 12, "BT_NIMBLE_MSYS_1_BLOCK_SIZE": 256, "BT_NIMBLE_MSYS_2_BLOCK_COUNT": 24, "BT_NIMBLE_MSYS_2_BLOCK_SIZE": 320, "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT": 24, "BT_NIMBLE_TRANSPORT_ACL_SIZE": 255, "BT_NIMBLE_TRANSPORT_EVT_SIZE": 70, "BT_NIMBLE_TRANSPORT_EVT_COUNT": 30, "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT": 8, "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT": 1, "BT_NIMBLE_GATT_MAX_PROCS": 4, "BT_NIMBLE_HS_FLOW_CTRL": false, "BT_NIMBLE_RPA_TIMEOUT": 900, "BT_NIMBLE_MESH": false, "BT_NIMBLE_CRYPTO_STACK_MBEDTLS": true, "BT_NIMBLE_HS_STOP_TIMEOUT_MS": 2000, "BT_NIMBLE_ENABLE_CONN_REATTEMPT": true, "BT_NIMBLE_MAX_CONN_REATTEMPT": 3, "BT_NIMBLE_50_FEATURE_SUPPORT": true, "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY": true, "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY": true, "BT_NIMBLE_EXT_ADV": false, "BT_NIMBLE_EXT_SCAN": true, "BT_NIMBLE_ENABLE_PERIODIC_SYNC": true, "BT_NIMBLE_MAX_PERIODIC_SYNCS": 0, "BT_NIMBLE_GATT_CACHING": false, "BT_NIMBLE_WHITELIST_SIZE": 12, "BT_NIMBLE_TEST_THROUGHPUT_TEST": false, "BT_NIMBLE_BLUFI_ENABLE": false, "BT_NIMBLE_USE_ESP_TIMER": true, "BT_NIMBLE_LEGACY_VHCI_ENABLE": true, "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM": 0, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC": 0, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN": 0, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR": 0, "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP": true, "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP": false, "BT_NIMBLE_SVC_GAP_CAR_SUPP": false, "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION": -1, "BT_NIMBLE_SVC_GAP_NAME_WRITE": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM": 0, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC": 0, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN": 0, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR": 0, "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL": 0, "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL": 0, "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY": 0, "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO": 0, "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL": false, "BT_NIMBLE_HID_SERVICE": false, "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY": false, "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME": false, "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER": false, "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION": false, "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION": false, "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION": false, "BT_NIMBLE_SVC_DIS_SYSTEM_ID": false, "BT_NIMBLE_SVC_DIS_PNP_ID": false, "BT_NIMBLE_SVC_DIS_INCLUDED": false, "BT_NIMBLE_VS_SUPPORT": false, "BT_NIMBLE_ENC_ADV_DATA": false, "BT_NIMBLE_HIGH_DUTY_ADV_ITVL": false, "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN": false, "BT_NIMBLE_HOST_QUEUE_CONG_CHECK": false, "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT": false, "UART_HW_FLOWCTRL_DISABLE": true, "UART_HW_FLOWCTRL_CTS_RTS": false, "BT_NIMBLE_HCI_UART_FLOW_CTRL": 0, "BT_NIMBLE_HCI_UART_RTS_PIN": 19, "BT_NIMBLE_HCI_UART_CTS_PIN": 23, "BT_NIMBLE_EATT_CHAN_NUM": 0, "BT_NIMBLE_SUBRATE": false, "BT_CTRL_MODE_EFF": 1, "BT_CTRL_BLE_MAX_ACT": 6, "BT_CTRL_BLE_MAX_ACT_EFF": 6, "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB": 0, "BT_CTRL_PINNED_TO_CORE": 0, "BT_CTRL_HCI_MODE_VHCI": true, "BT_CTRL_HCI_MODE_UART_H4": false, "BT_CTRL_HCI_TL": 1, "BT_CTRL_ADV_DUP_FILT_MAX": 30, "BT_BLE_CCA_MODE_NONE": true, "BT_BLE_CCA_MODE_HW": false, "BT_BLE_CCA_MODE_SW": false, "BT_BLE_CCA_MODE": 0, "BT_CTRL_HW_CCA_VAL": 20, "BT_CTRL_HW_CCA_EFF": 0, "BT_CTRL_CE_LENGTH_TYPE_ORIG": true, "BT_CTRL_CE_LENGTH_TYPE_CE": false, "BT_CTRL_CE_LENGTH_TYPE_SD": false, "BT_CTRL_CE_LENGTH_TYPE_EFF": 0, "BT_CTRL_TX_ANTENNA_INDEX_0": true, "BT_CTRL_TX_ANTENNA_INDEX_1": false, "BT_CTRL_TX_ANTENNA_INDEX_EFF": 0, "BT_CTRL_RX_ANTENNA_INDEX_0": true, "BT_CTRL_RX_ANTENNA_INDEX_1": false, "BT_CTRL_RX_ANTENNA_INDEX_EFF": 0, "BT_CTRL_DFT_TX_POWER_LEVEL_N24": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N21": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N18": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N15": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N12": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N9": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N6": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N3": false, "BT_CTRL_DFT_TX_POWER_LEVEL_N0": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P3": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P6": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P9": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P12": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P15": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P18": false, "BT_CTRL_DFT_TX_POWER_LEVEL_P20": false, "BT_CTRL_DFT_TX_POWER_LEVEL_EFF": 11, "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP": true, "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM": 100, "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD": 20, "BT_CTRL_BLE_SCAN_DUPL": true, "BT_CTRL_SCAN_DUPL_TYPE_DEVICE": true, "BT_CTRL_SCAN_DUPL_TYPE_DATA": false, "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE": false, "BT_CTRL_SCAN_DUPL_TYPE": 0, "BT_CTRL_SCAN_DUPL_CACHE_SIZE": 100, "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD": 0, "BT_CTRL_BLE_MESH_SCAN_DUPL_EN": false, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN": false, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS": true, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF": 0, "BT_CTRL_MODEM_SLEEP": false, "BT_CTRL_SLEEP_MODE_EFF": 0, "BT_CTRL_SLEEP_CLOCK_EFF": 0, "BT_CTRL_HCI_TL_EFF": 1, "BT_CTRL_AGC_RECORRECT_EN": false, "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX": false, "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX": false, "BT_CTRL_CHAN_ASS_EN": true, "BT_CTRL_LE_PING_EN": true, "BT_CTRL_BLE_LLCP_CONN_UPDATE": false, "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE": false, "BT_CTRL_BLE_LLCP_PHY_UPDATE": false, "BT_CTRL_RUN_IN_FLASH_ONLY": false, "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS": false, "BT_ALARM_MAX_NUM": 50, "BT_BLE_LOG_SPI_OUT_ENABLED": false, "BT_HCI_LOG_DEBUG_EN": false, "BLE_MESH": false, "CONSOLE_SORTED_HELP": false, "TWAI_ISR_IN_IRAM": false, "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, "ADC_SUPPRESS_DEPRECATE_WARN": false, "ADC_SKIP_LEGACY_CONFLICT_CHECK": false, "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": false, "RMT_SUPPRESS_DEPRECATE_WARN": false, "RMT_SKIP_LEGACY_CONFLICT_CHECK": false, "I2S_SUPPRESS_DEPRECATE_WARN": false, "I2S_SKIP_LEGACY_CONFLICT_CHECK": false, "SDM_SUPPRESS_DEPRECATE_WARN": false, "SDM_SKIP_LEGACY_CONFLICT_CHECK": false, "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": false, "EFUSE_CUSTOM_TABLE": false, "EFUSE_VIRTUAL": false, "EFUSE_MAX_BLK_LEN": 256, "ESP_TLS_USING_MBEDTLS": true, "ESP_TLS_USE_DS_PERIPHERAL": true, "ESP_TLS_CLIENT_SESSION_TICKETS": false, "ESP_TLS_SERVER_SESSION_TICKETS": false, "ESP_TLS_SERVER_CERT_SELECT_HOOK": false, "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": false, "ESP_TLS_PSK_VERIFICATION": false, "ESP_TLS_INSECURE": false, "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3": false, "ADC_ENABLE_DEBUG_LOG": false, "ESP_COEX_ENABLED": true, "ESP_COEX_SW_COEXIST_ENABLE": true, "ESP_COEX_POWER_MANAGEMENT": false, "ESP_COEX_GPIO_DEBUG": false, "ESP_ERR_TO_NAME_LOOKUP": true, "GPIO_CTRL_FUNC_IN_IRAM": false, "GPTIMER_ISR_HANDLER_IN_IRAM": true, "GPTIMER_CTRL_FUNC_IN_IRAM": false, "GPTIMER_ISR_IRAM_SAFE": false, "GPTIMER_ENABLE_DEBUG_LOG": false, "I2C_ISR_IRAM_SAFE": false, "I2C_ENABLE_DEBUG_LOG": false, "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": false, "I2S_ISR_IRAM_SAFE": false, "I2S_ENABLE_DEBUG_LOG": false, "LEDC_CTRL_FUNC_IN_IRAM": false, "RMT_ISR_IRAM_SAFE": false, "RMT_RECV_FUNC_IN_IRAM": false, "RMT_ENABLE_DEBUG_LOG": false, "SDM_CTRL_FUNC_IN_IRAM": false, "SDM_ENABLE_DEBUG_LOG": false, "SPI_MASTER_IN_IRAM": false, "SPI_MASTER_ISR_IN_IRAM": true, "SPI_SLAVE_IN_IRAM": false, "SPI_SLAVE_ISR_IN_IRAM": true, "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, "UART_ISR_IN_IRAM": false, "USJ_ENABLE_USB_SERIAL_JTAG": true, "ETH_ENABLED": true, "ETH_USE_SPI_ETHERNET": true, "ETH_SPI_ETHERNET_DM9051": false, "ETH_SPI_ETHERNET_W5500": false, "ETH_SPI_ETHERNET_KSZ8851SNL": false, "ETH_USE_OPENETH": false, "ETH_TRANSMIT_MUTEX": false, "ESP_EVENT_LOOP_PROFILING": false, "ESP_EVENT_POST_FROM_ISR": true, "ESP_EVENT_POST_FROM_IRAM_ISR": true, "ESP_GDBSTUB_ENABLED": true, "ESP_SYSTEM_GDBSTUB_RUNTIME": false, "ESP_GDBSTUB_SUPPORT_TASKS": true, "ESP_GDBSTUB_MAX_TASKS": 32, "ESPHID_TASK_SIZE_BT": 2048, "ESPHID_TASK_SIZE_BLE": 4096, "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT": false, "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": 2000, "HTTPD_MAX_REQ_HDR_LEN": 512, "HTTPD_MAX_URI_LEN": 512, "HTTPD_ERR_RESP_NO_DELAY": true, "HTTPD_PURGE_BUF_LEN": 32, "HTTPD_LOG_PURGE_DATA": false, "HTTPD_WS_SUPPORT": false, "HTTPD_QUEUE_WORK_BLOCKING": false, "HTTPD_SERVER_EVENT_POST_TIMEOUT": 2000, "ESP_HTTPS_OTA_DECRYPT_CB": false, "ESP_HTTPS_OTA_ALLOW_HTTP": false, "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT": 2000, "ESP_HTTPS_SERVER_ENABLE": true, "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT": 2000, "ESP32C3_REV_MIN_0": false, "ESP32C3_REV_MIN_1": false, "ESP32C3_REV_MIN_2": false, "ESP32C3_REV_MIN_3": true, "ESP32C3_REV_MIN_4": false, "ESP32C3_REV_MIN_101": false, "ESP32C3_REV_MIN_FULL": 3, "ESP_REV_MIN_FULL": 3, "ESP32C3_REV_MAX_FULL": 199, "ESP_REV_MAX_FULL": 199, "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, "ESP_MAC_ADDR_UNIVERSE_BT": true, "ESP_MAC_ADDR_UNIVERSE_ETH": true, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO": false, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32C3_UNIVERSAL_MAC_ADDRESSES": 4, "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, "ESP_SLEEP_POWER_DOWN_FLASH": false, "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, "ESP_SLEEP_DEBUG": false, "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, "RTC_CLK_SRC_INT_RC": true, "RTC_CLK_SRC_EXT_CRYS": false, "RTC_CLK_SRC_EXT_OSC": false, "RTC_CLK_SRC_INT_8MD256": false, "RTC_CLK_CAL_CYCLES": 1024, "PERIPH_CTRL_FUNC_IN_IRAM": true, "GDMA_CTRL_FUNC_IN_IRAM": true, "GDMA_ISR_IRAM_SAFE": false, "GDMA_ENABLE_DEBUG_LOG": false, "XTAL_FREQ_40": true, "XTAL_FREQ": 40, "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, "LCD_ENABLE_DEBUG_LOG": false, "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": false, "ESP_NETIF_TCPIP_LWIP": true, "ESP_NETIF_LOOPBACK": false, "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, "ESP_NETIF_REPORT_DATA_TRAFFIC": true, "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, "ESP_NETIF_L2_TAP": false, "ESP_NETIF_BRIDGE_EN": false, "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": false, "ESP_PHY_ENABLED": true, "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, "ESP_PHY_INIT_DATA_IN_PARTITION": false, "ESP_PHY_MAX_WIFI_TX_POWER": 20, "ESP_PHY_MAX_TX_POWER": 20, "ESP_PHY_REDUCE_TX_POWER": false, "ESP_PHY_ENABLE_USB": true, "ESP_PHY_ENABLE_CERT_TEST": false, "ESP_PHY_RF_CAL_PARTIAL": true, "ESP_PHY_RF_CAL_NONE": false, "ESP_PHY_RF_CAL_FULL": false, "ESP_PHY_CALIBRATION_MODE": 0, "ESP_PHY_PLL_TRACK_DEBUG": false, "ESP_PHY_RECORD_USED_TIME": false, "PM_ENABLE": false, "PM_SLP_IRAM_OPT": false, "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, "ESP_DEFAULT_CPU_FREQ_MHZ": 160, "ESP_SYSTEM_PANIC_PRINT_HALT": false, "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, "ESP_SYSTEM_PANIC_GDBSTUB": false, "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, "ESP_SYSTEM_SINGLE_CORE_MODE": true, "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, "ESP_SYSTEM_USE_EH_FRAME": false, "ESP_SYSTEM_MEMPROT_FEATURE": true, "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, "ESP_MAIN_TASK_STACK_SIZE": 3584, "ESP_MAIN_TASK_AFFINITY_CPU0": true, "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, "ESP_MAIN_TASK_AFFINITY": 0, "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, "ESP_CONSOLE_UART_DEFAULT": true, "ESP_CONSOLE_USB_SERIAL_JTAG": false, "ESP_CONSOLE_UART_CUSTOM": false, "ESP_CONSOLE_NONE": false, "ESP_CONSOLE_SECONDARY_NONE": false, "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, "ESP_CONSOLE_UART": true, "ESP_CONSOLE_UART_NUM": 0, "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, "ESP_CONSOLE_UART_BAUDRATE": 115200, "ESP_INT_WDT": true, "ESP_INT_WDT_TIMEOUT_MS": 300, "ESP_TASK_WDT_EN": true, "ESP_TASK_WDT_INIT": true, "ESP_TASK_WDT_PANIC": false, "ESP_TASK_WDT_TIMEOUT_S": 5, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, "ESP_PANIC_HANDLER_IRAM": false, "ESP_DEBUG_STUBS_ENABLE": false, "ESP_DEBUG_OCDAWARE": true, "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, "ESP_BROWNOUT_DET": true, "ESP_BROWNOUT_DET_LVL_SEL_7": true, "ESP_BROWNOUT_DET_LVL_SEL_6": false, "ESP_BROWNOUT_DET_LVL_SEL_5": false, "ESP_BROWNOUT_DET_LVL_SEL_4": false, "ESP_BROWNOUT_DET_LVL_SEL_3": false, "ESP_BROWNOUT_DET_LVL_SEL_2": false, "ESP_BROWNOUT_DET_LVL": 7, "ESP_SYSTEM_BROWNOUT_INTR": true, "ESP_SYSTEM_HW_STACK_GUARD": true, "ESP_SYSTEM_HW_PC_RECORD": true, "ESP_IPC_TASK_STACK_SIZE": 1024, "ESP_TIMER_PROFILING": false, "ESP_TIME_FUNCS_USE_RTC_TIMER": true, "ESP_TIME_FUNCS_USE_ESP_TIMER": true, "ESP_TIMER_TASK_STACK_SIZE": 3584, "ESP_TIMER_INTERRUPT_LEVEL": 1, "ESP_TIMER_SHOW_EXPERIMENTAL": false, "ESP_TIMER_TASK_AFFINITY": 0, "ESP_TIMER_TASK_AFFINITY_CPU0": true, "ESP_TIMER_ISR_AFFINITY_CPU0": true, "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, "ESP_TIMER_IMPL_SYSTIMER": true, "ESP_WIFI_ENABLED": true, "ESP_WIFI_STATIC_RX_BUFFER_NUM": 10, "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, "ESP_WIFI_STATIC_TX_BUFFER": false, "ESP_WIFI_DYNAMIC_TX_BUFFER": true, "ESP_WIFI_TX_BUFFER_TYPE": 1, "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": false, "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": 0, "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": 5, "ESP_WIFI_CSI_ENABLED": false, "ESP_WIFI_AMPDU_TX_ENABLED": true, "ESP_WIFI_TX_BA_WIN": 6, "ESP_WIFI_AMPDU_RX_ENABLED": true, "ESP_WIFI_RX_BA_WIN": 6, "ESP_WIFI_NVS_ENABLED": true, "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": 752, "ESP_WIFI_MGMT_SBUF_NUM": 32, "ESP_WIFI_IRAM_OPT": true, "ESP_WIFI_EXTRA_IRAM_OPT": false, "ESP_WIFI_RX_IRAM_OPT": true, "ESP_WIFI_ENABLE_WPA3_SAE": true, "ESP_WIFI_ENABLE_SAE_PK": true, "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, "ESP_WIFI_SLP_IRAM_OPT": false, "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": 50, "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": 10, "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": 15, "ESP_WIFI_FTM_ENABLE": false, "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, "ESP_WIFI_GCMP_SUPPORT": false, "ESP_WIFI_GMAC_SUPPORT": true, "ESP_WIFI_SOFTAP_SUPPORT": true, "ESP_WIFI_SLP_BEACON_LOST_OPT": false, "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, "ESP_WIFI_MBEDTLS_CRYPTO": true, "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, "ESP_WIFI_WAPI_PSK": false, "ESP_WIFI_SUITE_B_192": false, "ESP_WIFI_11KV_SUPPORT": false, "ESP_WIFI_MBO_SUPPORT": false, "ESP_WIFI_DPP_SUPPORT": false, "ESP_WIFI_11R_SUPPORT": false, "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, "ESP_WIFI_WPS_STRICT": false, "ESP_WIFI_WPS_PASSPHRASE": false, "ESP_WIFI_DEBUG_PRINT": false, "ESP_WIFI_TESTING_OPTIONS": false, "ESP_WIFI_ENTERPRISE_SUPPORT": true, "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": false, "ESP_COREDUMP_ENABLE_TO_FLASH": false, "ESP_COREDUMP_ENABLE_TO_UART": false, "ESP_COREDUMP_ENABLE_TO_NONE": true, "FATFS_VOLUME_COUNT": 2, "FATFS_LFN_NONE": true, "FATFS_LFN_HEAP": false, "FATFS_LFN_STACK": false, "FATFS_SECTOR_512": false, "FATFS_SECTOR_4096": true, "FATFS_CODEPAGE_DYNAMIC": false, "FATFS_CODEPAGE_437": true, "FATFS_CODEPAGE_720": false, "FATFS_CODEPAGE_737": false, "FATFS_CODEPAGE_771": false, "FATFS_CODEPAGE_775": false, "FATFS_CODEPAGE_850": false, "FATFS_CODEPAGE_852": false, "FATFS_CODEPAGE_855": false, "FATFS_CODEPAGE_857": false, "FATFS_CODEPAGE_860": false, "FATFS_CODEPAGE_861": false, "FATFS_CODEPAGE_862": false, "FATFS_CODEPAGE_863": false, "FATFS_CODEPAGE_864": false, "FATFS_CODEPAGE_865": false, "FATFS_CODEPAGE_866": false, "FATFS_CODEPAGE_869": false, "FATFS_CODEPAGE_932": false, "FATFS_CODEPAGE_936": false, "FATFS_CODEPAGE_949": false, "FATFS_CODEPAGE_950": false, "FATFS_CODEPAGE": 437, "FATFS_FS_LOCK": 0, "FATFS_TIMEOUT_MS": 10000, "FATFS_PER_FILE_CACHE": true, "FATFS_USE_FASTSEEK": false, "FATFS_USE_STRFUNC_NONE": true, "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV": false, "FATFS_USE_STRFUNC_WITH_CRLF_CONV": false, "FATFS_VFS_FSTAT_BLKSIZE": 0, "FATFS_IMMEDIATE_FSYNC": false, "FATFS_USE_LABEL": false, "FATFS_LINK_LOCK": true, "FREERTOS_SMP": false, "FREERTOS_UNICORE": true, "FREERTOS_HZ": 100, "FREERTOS_OPTIMIZED_SCHEDULER": true, "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, "FREERTOS_IDLE_TASK_STACKSIZE": 1536, "FREERTOS_USE_IDLE_HOOK": false, "FREERTOS_USE_TICK_HOOK": false, "FREERTOS_MAX_TASK_NAME_LEN": 16, "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, "FREERTOS_USE_TIMERS": true, "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, "FREERTOS_TIMER_TASK_NO_AFFINITY": true, "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, "FREERTOS_TIMER_TASK_PRIORITY": 1, "FREERTOS_TIMER_TASK_STACK_DEPTH": 3120, "FREERTOS_TIMER_QUEUE_LENGTH": 10, "FREERTOS_QUEUE_REGISTRY_SIZE": 0, "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, "FREERTOS_USE_TRACE_FACILITY": false, "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, "FREERTOS_GENERATE_RUN_TIME_STATS": false, "FREERTOS_USE_APPLICATION_TASK_TAG": false, "FREERTOS_TASK_FUNCTION_WRAPPER": true, "FREERTOS_WATCHPOINT_END_OF_STACK": false, "FREERTOS_TLSP_DELETION_CALLBACKS": true, "FREERTOS_TASK_PRE_DELETION_HOOK": false, "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, "FREERTOS_ISR_STACKSIZE": 1536, "FREERTOS_INTERRUPT_BACKTRACE": true, "FREERTOS_TICK_SUPPORT_SYSTIMER": true, "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, "FREERTOS_SYSTICK_USES_SYSTIMER": true, "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, "FREERTOS_PORT": true, "FREERTOS_NO_AFFINITY": 2147483647, "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, "FREERTOS_DEBUG_OCDAWARE": true, "FREERTOS_ENABLE_TASK_SNAPSHOT": true, "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, "FREERTOS_NUMBER_OF_CORES": 1, "HAL_ASSERTION_EQUALS_SYSTEM": true, "HAL_ASSERTION_DISABLE": false, "HAL_ASSERTION_SILENT": false, "HAL_ASSERTION_ENABLE": false, "HAL_DEFAULT_ASSERTION_LEVEL": 2, "HAL_SPI_MASTER_FUNC_IN_IRAM": true, "HAL_SPI_SLAVE_FUNC_IN_IRAM": true, "HEAP_POISONING_DISABLED": true, "HEAP_POISONING_LIGHT": false, "HEAP_POISONING_COMPREHENSIVE": false, "HEAP_TRACING_OFF": true, "HEAP_TRACING_STANDALONE": false, "HEAP_TRACING_TOHOST": false, "HEAP_USE_HOOKS": false, "HEAP_TASK_TRACKING": false, "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, "HEAP_PLACE_FUNCTION_INTO_FLASH": false, "LOG_DEFAULT_LEVEL_NONE": false, "LOG_DEFAULT_LEVEL_ERROR": false, "LOG_DEFAULT_LEVEL_WARN": false, "LOG_DEFAULT_LEVEL_INFO": true, "LOG_DEFAULT_LEVEL_DEBUG": false, "LOG_DEFAULT_LEVEL_VERBOSE": false, "LOG_DEFAULT_LEVEL": 3, "LOG_MAXIMUM_EQUALS_DEFAULT": true, "LOG_MAXIMUM_LEVEL_DEBUG": false, "LOG_MAXIMUM_LEVEL_VERBOSE": false, "LOG_MAXIMUM_LEVEL": 3, "LOG_MASTER_LEVEL": false, "LOG_DYNAMIC_LEVEL_CONTROL": true, "LOG_TAG_LEVEL_IMPL_NONE": false, "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, "LOG_TAG_LEVEL_CACHE_ARRAY": false, "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, "LOG_COLORS": false, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": false, "LWIP_ENABLE": true, "LWIP_LOCAL_HOSTNAME": "espressif", "LWIP_NETIF_API": false, "LWIP_TCPIP_TASK_PRIO": 18, "LWIP_TCPIP_CORE_LOCKING": false, "LWIP_CHECK_THREAD_SAFETY": false, "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, "LWIP_L2_TO_L3_COPY": false, "LWIP_IRAM_OPTIMIZATION": false, "LWIP_EXTRA_IRAM_OPTIMIZATION": false, "LWIP_TIMERS_ONDEMAND": true, "LWIP_ND6": true, "LWIP_FORCE_ROUTER_FORWARDING": false, "LWIP_MAX_SOCKETS": 10, "LWIP_USE_ONLY_LWIP_SELECT": false, "LWIP_SO_LINGER": false, "LWIP_SO_REUSE": true, "LWIP_SO_REUSE_RXTOALL": true, "LWIP_SO_RCVBUF": false, "LWIP_NETBUF_RECVINFO": false, "LWIP_IP_DEFAULT_TTL": 64, "LWIP_IP4_FRAG": true, "LWIP_IP6_FRAG": true, "LWIP_IP4_REASSEMBLY": false, "LWIP_IP6_REASSEMBLY": false, "LWIP_IP_REASS_MAX_PBUFS": 10, "LWIP_IP_FORWARD": false, "LWIP_STATS": false, "LWIP_ESP_GRATUITOUS_ARP": true, "LWIP_GARP_TMR_INTERVAL": 60, "LWIP_ESP_MLDV6_REPORT": true, "LWIP_MLDV6_TMR_INTERVAL": 40, "LWIP_TCPIP_RECVMBOX_SIZE": 32, "LWIP_DHCP_DOES_ARP_CHECK": true, "LWIP_DHCP_DOES_ACD_CHECK": false, "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": false, "LWIP_DHCP_DISABLE_CLIENT_ID": false, "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, "LWIP_DHCP_RESTORE_LAST_IP": false, "LWIP_DHCP_OPTIONS_LEN": 68, "LWIP_NUM_NETIF_CLIENT_DATA": 0, "LWIP_DHCP_COARSE_TIMER_SECS": 1, "LWIP_DHCPS": true, "LWIP_DHCPS_LEASE_UNIT": 60, "LWIP_DHCPS_MAX_STATION_NUM": 8, "LWIP_DHCPS_STATIC_ENTRIES": true, "LWIP_DHCPS_ADD_DNS": true, "LWIP_AUTOIP": false, "LWIP_IPV4": true, "LWIP_IPV6": true, "LWIP_IPV6_AUTOCONFIG": false, "LWIP_IPV6_NUM_ADDRESSES": 3, "LWIP_IPV6_FORWARD": false, "LWIP_NETIF_STATUS_CALLBACK": false, "LWIP_NETIF_LOOPBACK": true, "LWIP_LOOPBACK_MAX_PBUFS": 8, "LWIP_MAX_ACTIVE_TCP": 16, "LWIP_MAX_LISTENING_TCP": 16, "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, "LWIP_TCP_MAXRTX": 12, "LWIP_TCP_SYNMAXRTX": 12, "LWIP_TCP_MSS": 1440, "LWIP_TCP_TMR_INTERVAL": 250, "LWIP_TCP_MSL": 60000, "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, "LWIP_TCP_SND_BUF_DEFAULT": 5760, "LWIP_TCP_WND_DEFAULT": 5760, "LWIP_TCP_RECVMBOX_SIZE": 6, "LWIP_TCP_ACCEPTMBOX_SIZE": 6, "LWIP_TCP_QUEUE_OOSEQ": true, "LWIP_TCP_OOSEQ_TIMEOUT": 6, "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, "LWIP_TCP_SACK_OUT": false, "LWIP_TCP_OVERSIZE_MSS": true, "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, "LWIP_TCP_OVERSIZE_DISABLE": false, "LWIP_TCP_RTO_TIME": 1500, "LWIP_MAX_UDP_PCBS": 16, "LWIP_UDP_RECVMBOX_SIZE": 6, "LWIP_CHECKSUM_CHECK_IP": false, "LWIP_CHECKSUM_CHECK_UDP": false, "LWIP_CHECKSUM_CHECK_ICMP": true, "LWIP_TCPIP_TASK_STACK_SIZE": 3072, "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, "LWIP_TCPIP_TASK_AFFINITY": 2147483647, "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, "LWIP_IPV6_ND6_NUM_PREFIXES": 5, "LWIP_IPV6_ND6_NUM_ROUTERS": 3, "LWIP_IPV6_ND6_NUM_DESTINATIONS": 10, "LWIP_PPP_SUPPORT": false, "LWIP_SLIP_SUPPORT": false, "LWIP_ICMP": true, "LWIP_MULTICAST_PING": false, "LWIP_BROADCAST_PING": false, "LWIP_MAX_RAW_PCBS": 16, "LWIP_SNTP_MAX_SERVERS": 1, "LWIP_DHCP_GET_NTP_SRV": false, "LWIP_SNTP_UPDATE_DELAY": 3600000, "LWIP_SNTP_STARTUP_DELAY": true, "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": 5000, "LWIP_DNS_MAX_HOST_IP": 1, "LWIP_DNS_MAX_SERVERS": 3, "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, "LWIP_DNS_SETSERVER_WITH_NETIF": false, "LWIP_BRIDGEIF_MAX_PORTS": 7, "LWIP_ESP_LWIP_ASSERT": true, "LWIP_HOOK_TCP_ISN_NONE": false, "LWIP_HOOK_TCP_ISN_DEFAULT": true, "LWIP_HOOK_TCP_ISN_CUSTOM": false, "LWIP_HOOK_IP6_ROUTE_NONE": true, "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, "LWIP_HOOK_ND6_GET_GW_NONE": true, "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM": false, "LWIP_HOOK_IP6_INPUT_NONE": false, "LWIP_HOOK_IP6_INPUT_DEFAULT": true, "LWIP_HOOK_IP6_INPUT_CUSTOM": false, "LWIP_DEBUG": false, "MBEDTLS_INTERNAL_MEM_ALLOC": true, "MBEDTLS_DEFAULT_MEM_ALLOC": false, "MBEDTLS_CUSTOM_MEM_ALLOC": false, "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, "MBEDTLS_DYNAMIC_BUFFER": true, "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA": true, "MBEDTLS_DYNAMIC_FREE_CA_CERT": true, "MBEDTLS_DEBUG": false, "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, "MBEDTLS_PKCS7_C": true, "MBEDTLS_CERTIFICATE_BUNDLE": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, "MBEDTLS_ECP_RESTARTABLE": false, "MBEDTLS_CMAC_C": true, "MBEDTLS_HARDWARE_AES": true, "MBEDTLS_AES_USE_INTERRUPT": true, "MBEDTLS_AES_INTERRUPT_LEVEL": 0, "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, "MBEDTLS_HARDWARE_MPI": true, "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, "MBEDTLS_MPI_USE_INTERRUPT": true, "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, "MBEDTLS_HARDWARE_SHA": true, "MBEDTLS_ROM_MD5": true, "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, "MBEDTLS_HAVE_TIME": true, "MBEDTLS_PLATFORM_TIME_ALT": false, "MBEDTLS_HAVE_TIME_DATE": false, "MBEDTLS_ECDSA_DETERMINISTIC": true, "MBEDTLS_SHA512_C": true, "MBEDTLS_SHA3_C": false, "MBEDTLS_TLS_SERVER_AND_CLIENT": true, "MBEDTLS_TLS_SERVER_ONLY": false, "MBEDTLS_TLS_CLIENT_ONLY": false, "MBEDTLS_TLS_DISABLED": false, "MBEDTLS_TLS_SERVER": true, "MBEDTLS_TLS_CLIENT": true, "MBEDTLS_TLS_ENABLED": true, "MBEDTLS_PSK_MODES": false, "MBEDTLS_KEY_EXCHANGE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, "MBEDTLS_SSL_RENEGOTIATION": true, "MBEDTLS_SSL_PROTO_TLS1_2": true, "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, "MBEDTLS_SSL_PROTO_DTLS": false, "MBEDTLS_SSL_ALPN": true, "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, "MBEDTLS_AES_C": true, "MBEDTLS_CAMELLIA_C": false, "MBEDTLS_DES_C": false, "MBEDTLS_BLOWFISH_C": false, "MBEDTLS_XTEA_C": false, "MBEDTLS_CCM_C": true, "MBEDTLS_GCM_C": true, "MBEDTLS_NIST_KW_C": false, "MBEDTLS_RIPEMD160_C": false, "MBEDTLS_PEM_PARSE_C": true, "MBEDTLS_PEM_WRITE_C": true, "MBEDTLS_X509_CRL_PARSE_C": true, "MBEDTLS_X509_CSR_PARSE_C": true, "MBEDTLS_ECP_C": true, "MBEDTLS_PK_PARSE_EC_EXTENDED": true, "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, "MBEDTLS_DHM_C": false, "MBEDTLS_ECDH_C": true, "MBEDTLS_ECDSA_C": true, "MBEDTLS_ECJPAKE_C": false, "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, "MBEDTLS_ECP_NIST_OPTIM": true, "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, "MBEDTLS_POLY1305_C": false, "MBEDTLS_CHACHA20_C": false, "MBEDTLS_HKDF_C": false, "MBEDTLS_THREADING_C": false, "MBEDTLS_ERROR_STRINGS": true, "MBEDTLS_FS_IO": true, "MQTT_PROTOCOL_311": true, "MQTT_PROTOCOL_5": false, "MQTT_TRANSPORT_SSL": true, "MQTT_TRANSPORT_WEBSOCKET": true, "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, "MQTT_MSG_ID_INCREMENTAL": false, "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, "MQTT_REPORT_DELETED_MESSAGES": false, "MQTT_USE_CUSTOM_CONFIG": false, "MQTT_TASK_CORE_SELECTION_ENABLED": false, "MQTT_CUSTOM_OUTBOX": false, "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, "NEWLIB_STDOUT_LINE_ENDING_LF": false, "NEWLIB_STDOUT_LINE_ENDING_CR": false, "NEWLIB_STDIN_LINE_ENDING_CRLF": false, "NEWLIB_STDIN_LINE_ENDING_LF": false, "NEWLIB_STDIN_LINE_ENDING_CR": true, "NEWLIB_NANO_FORMAT": false, "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, "NEWLIB_TIME_SYSCALL_USE_RTC": false, "NEWLIB_TIME_SYSCALL_USE_HRT": false, "NEWLIB_TIME_SYSCALL_USE_NONE": false, "NVS_ENCRYPTION": false, "NVS_ASSERT_ERROR_CHECK": false, "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, "OPENTHREAD_ENABLED": false, "OPENTHREAD_SPINEL_ONLY": false, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION": true, "PTHREAD_TASK_PRIO_DEFAULT": 5, "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, "PTHREAD_STACK_MIN": 768, "PTHREAD_TASK_CORE_DEFAULT": -1, "PTHREAD_TASK_NAME_DEFAULT": "pthread", "MMU_PAGE_SIZE_64KB": true, "MMU_PAGE_MODE": "64KB", "MMU_PAGE_SIZE": 65536, "SPI_FLASH_BROWNOUT_RESET_XMC": true, "SPI_FLASH_BROWNOUT_RESET": true, "SPI_FLASH_AUTO_SUSPEND": false, "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, "SPI_FLASH_VERIFY_WRITE": false, "SPI_FLASH_ENABLE_COUNTERS": false, "SPI_FLASH_ROM_DRIVER_PATCH": true, "SPI_FLASH_ROM_IMPL": false, "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, "SPI_FLASH_BYPASS_BLOCK_ERASE": false, "SPI_FLASH_YIELD_DURING_ERASE": true, "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, "SPI_FLASH_ERASE_YIELD_TICKS": 1, "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, "SPI_FLASH_SIZE_OVERRIDE": false, "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, "SPI_FLASH_VENDOR_XMC_SUPPORTED": true, "SPI_FLASH_VENDOR_GD_SUPPORTED": true, "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, "SPI_FLASH_VENDOR_BOYA_SUPPORTED": true, "SPI_FLASH_VENDOR_TH_SUPPORTED": true, "SPI_FLASH_SUPPORT_ISSI_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_CHIP": true, "SPI_FLASH_SUPPORT_GD_CHIP": true, "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, "SPI_FLASH_SUPPORT_BOYA_CHIP": true, "SPI_FLASH_SUPPORT_TH_CHIP": true, "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, "SPIFFS_MAX_PARTITIONS": 3, "SPIFFS_CACHE": true, "SPIFFS_CACHE_WR": true, "SPIFFS_CACHE_STATS": false, "SPIFFS_PAGE_CHECK": true, "SPIFFS_GC_MAX_RUNS": 10, "SPIFFS_GC_STATS": false, "SPIFFS_PAGE_SIZE": 256, "SPIFFS_OBJ_NAME_LEN": 32, "SPIFFS_FOLLOW_SYMLINKS": false, "SPIFFS_USE_MAGIC": true, "SPIFFS_USE_MAGIC_LENGTH": true, "SPIFFS_META_LENGTH": 4, "SPIFFS_USE_MTIME": true, "SPIFFS_DBG": false, "SPIFFS_API_DBG": false, "SPIFFS_GC_DBG": false, "SPIFFS_CACHE_DBG": false, "SPIFFS_CHECK_DBG": false, "SPIFFS_TEST_VISUALISATION": false, "WS_TRANSPORT": true, "WS_BUFFER_SIZE": 1024, "WS_DYNAMIC_BUFFER": false, "UNITY_ENABLE_FLOAT": true, "UNITY_ENABLE_DOUBLE": true, "UNITY_ENABLE_64BIT": false, "UNITY_ENABLE_COLOR": false, "UNITY_ENABLE_IDF_TEST_RUNNER": true, "UNITY_ENABLE_FIXTURE": false, "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, "VFS_SUPPORT_IO": true, "VFS_SUPPORT_DIR": true, "VFS_SUPPORT_SELECT": true, "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, "VFS_SELECT_IN_RAM": false, "VFS_SUPPORT_TERMIOS": true, "VFS_MAX_COUNT": 8, "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, "VFS_INITIALIZE_DEV_NULL": true, "WL_SECTOR_SIZE_512": false, "WL_SECTOR_SIZE_4096": true, "WL_SECTOR_SIZE": 4096, "WIFI_PROV_SCAN_MAX_ENTRIES": 16, "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, "WIFI_PROV_BLE_BONDING": false, "WIFI_PROV_BLE_SEC_CONN": true, "WIFI_PROV_BLE_FORCE_ENCRYPTION": false, "WIFI_PROV_BLE_NOTIFY": false, "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV": false, "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, "WIFI_PROV_STA_FAST_SCAN": false, "IO_GLITCH_FILTER_TIME_MS": 50, "WS2812_LED_ENABLE": true, "WS2812_LED_GPIO": 8, "SERIAL_FLASHER_MD5_ENABLED": true, "SERIAL_FLASHER_INTERFACE_UART": true, "SERIAL_FLASHER_INTERFACE_SPI": false, "SERIAL_FLASHER_INTERFACE_USB": false, "SERIAL_FLASHER_INTERFACE_SDIO": false, "SERIAL_FLASHER_RESET_HOLD_TIME_MS": 100, "SERIAL_FLASHER_BOOT_HOLD_TIME_MS": 50, "SERIAL_FLASHER_DEBUG_TRACE": false, "SERIAL_FLASHER_WRITE_BLOCK_RETRIES": 3, "SERIAL_FLASHER_RESET_INVERT": false, "SERIAL_FLASHER_BOOT_INVERT": false, "DIAG_DATA_STORE_RTC": true, "DIAG_DATA_STORE_FLASH": false, "DIAG_DATA_STORE_DBG_PRINTS": false, "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT": 80, "RTC_STORE_DATA_SIZE": 6144, "RTC_STORE_CRITICAL_DATA_SIZE": 4096, "DIAG_LOG_MSG_ARG_FORMAT_TLV": true, "DIAG_LOG_MSG_ARG_FORMAT_STRING": false, "DIAG_LOG_MSG_ARG_MAX_SIZE": 64, "DIAG_LOG_DROP_WIFI_LOGS": true, "DIAG_ENABLE_WRAP_LOG_FUNCTIONS": false, "DIAG_ENABLE_METRICS": true, "DIAG_METRICS_MAX_COUNT": 20, "DIAG_ENABLE_HEAP_METRICS": true, "DIAG_HEAP_POLLING_INTERVAL": 30, "DIAG_ENABLE_WIFI_METRICS": true, "DIAG_WIFI_POLLING_INTERVAL": 30, "DIAG_ENABLE_VARIABLES": true, "DIAG_VARIABLES_MAX_COUNT": 20, "DIAG_ENABLE_NETWORK_VARIABLES": true, "DIAG_MORE_NETWORK_VARS": false, "DIAG_USE_EXTERNAL_LOG_WRAP": false, "ESP_INSIGHTS_ENABLED": false, "ESP_INSIGHTS_TRANSPORT_MQTT": true, "ESP_INSIGHTS_TRANSPORT_HTTPS": false, "ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC": 60, "ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC": 240, "ESP_INSIGHTS_META_VERSION_10": true, "AUTO_UPDATE_RCP": false, "CREATE_OTA_IMAGE_WITH_RCP_FW": false, "ESP_SECURE_CERT_DS_PERIPHERAL": true, "ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS": false, "JSMN_PARENT_LINKS": false, "JSMN_STRICT": false, "JSMN_STATIC": false, "MDNS_MAX_INTERFACES": 3, "MDNS_MAX_SERVICES": 10, "MDNS_TASK_PRIORITY": 1, "MDNS_ACTION_QUEUE_LEN": 16, "MDNS_TASK_STACK_SIZE": 4096, "MDNS_TASK_AFFINITY_NO_AFFINITY": false, "MDNS_TASK_AFFINITY_CPU0": true, "MDNS_TASK_AFFINITY": 0, "MDNS_TASK_CREATE_FROM_INTERNAL": true, "MDNS_MEMORY_ALLOC_INTERNAL": true, "MDNS_MEMORY_CUSTOM_IMPL": false, "MDNS_SERVICE_ADD_TIMEOUT_MS": 2000, "MDNS_TIMER_PERIOD_MS": 100, "MDNS_NETWORKING_SOCKET": false, "MDNS_SKIP_SUPPRESSING_OWN_QUERIES": false, "MDNS_ENABLE_DEBUG_PRINTS": false, "MDNS_ENABLE_CONSOLE_CLI": true, "MDNS_RESPOND_REVERSE_QUERIES": false, "MDNS_MULTIPLE_INSTANCE": true, "MDNS_PREDEF_NETIF_STA": true, "MDNS_PREDEF_NETIF_AP": true, "MDNS_PREDEF_NETIF_ETH": true, "NETWORK_PROV_NETWORK_TYPE_WIFI": true, "NETWORK_PROV_SCAN_MAX_ENTRIES": 16, "NETWORK_PROV_AUTOSTOP_TIMEOUT": 30, "NETWORK_PROV_BLE_BONDING": false, "NETWORK_PROV_BLE_SEC_CONN": true, "NETWORK_PROV_BLE_FORCE_ENCRYPTION": false, "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV": false, "NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN": true, "NETWORK_PROV_WIFI_STA_FAST_SCAN": false, "ESP_RMAKER_LIB_ESP_MQTT": true, "ESP_RMAKER_LIB_AWS_IOT": false, "ESP_RMAKER_MQTT_GLUE_LIB": 1, "ESP_RMAKER_MQTT_PORT_443": true, "ESP_RMAKER_MQTT_PORT_8883": false, "ESP_RMAKER_MQTT_PORT": 1, "ESP_RMAKER_MQTT_PERSISTENT_SESSION": false, "ESP_RMAKER_MQTT_SEND_USERNAME": true, "ESP_RMAKER_MQTT_PRODUCT_NAME": "RMDev", "ESP_RMAKER_MQTT_PRODUCT_VERSION": "1x0", "ESP_RMAKER_MQTT_PRODUCT_SKU": "EX00", "ESP_RMAKER_MQTT_USE_CERT_BUNDLE": true, "ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS": 10, "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL": 120, "ESP_RMAKER_NETWORK_OVER_WIFI": true, "ESP_RMAKER_WORK_QUEUE_TASK_STACK": 5120, "ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY": 5, "ESP_RMAKER_FACTORY_PARTITION_NAME": "fctry", "ESP_RMAKER_FACTORY_NAMESPACE": "rmaker_creds", "ESP_RMAKER_DEF_TIMEZONE": "Asia/Shanghai", "ESP_RMAKER_SNTP_SERVER_NAME": "pool.ntp.org", "ESP_RMAKER_MAX_COMMANDS": 10, "IDF_EXPERIMENTAL_FEATURES": false}, "ranges": {"BOOTLOADER_PROJECT_VER": [0, 4294967295], "BOOTLOADER_WDT_TIME_MS": [0, 120000], "APP_RETRIEVE_LEN_ELF_SHA": [8, 64], "APP_NETWORK_PROV_MAX_POP_MISMATCH": [0, 20], "ESP_RMAKER_MQTT_DEFAULT_BUDGET": [64, 1024], "ESP_RMAKER_MQTT_MAX_BUDGET": [64, 2048], "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD": [5, 600], "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT": [1, 16], "ESP_RMAKER_MAX_PARAM_DATA_SIZE": [64, 8192], "ESP_RMAKER_OTA_AUTOFETCH_PERIOD": [0, 168], "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE": [512, 5760], "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD": [30, 600], "ESP_RMAKER_OTA_MAX_RETRIES": [1, 10], "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES": [1, 60], "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES": [1, 50], "ESP_RMAKER_SCENES_MAX_SCENES": [1, 50], "APPTRACE_UART_TASK_PRIO": [1, 32], "BT_NIMBLE_MAX_CONNECTIONS": [1, 9], "BT_NIMBLE_L2CAP_COC_MAX_NUM": [0, 9], "BT_NIMBLE_RPA_TIMEOUT": [1, 41400], "BT_NIMBLE_MAX_CONN_REATTEMPT": [1, 255], "BT_NIMBLE_MAX_PERIODIC_SYNCS": [0, 8], "BT_NIMBLE_WHITELIST_SIZE": [1, 15], "BT_CTRL_BLE_MAX_ACT": [1, 10], "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB": [0, 12], "BT_CTRL_ADV_DUP_FILT_MAX": [1, 500], "BT_CTRL_HW_CCA_VAL": [20, 100], "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM": [50, 1000], "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD": [1, 1000], "BT_CTRL_SCAN_DUPL_CACHE_SIZE": [10, 1000], "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD": [0, 1000], "ESPHID_TASK_SIZE_BT": [2048, 10240], "ESPHID_TASK_SIZE_BLE": [2048, 10240], "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": [0, 5000], "RTC_CLK_CAL_CYCLES": [0, 32766], "ESP_NETIF_IP_LOST_TIMER_INTERVAL": [0, 65535], "ESP_PHY_MAX_WIFI_TX_POWER": [10, 20], "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": [0, 99], "ESP_CONSOLE_UART_BAUDRATE": [1200, 4000000], "ESP_INT_WDT_TIMEOUT_MS": [10, 10000], "ESP_TASK_WDT_TIMEOUT_S": [1, 60], "ESP_IPC_TASK_STACK_SIZE": [512, 65536], "ESP_TIMER_TASK_STACK_SIZE": [2048, 65536], "ESP_TIMER_INTERRUPT_LEVEL": [1, 1], "ESP_WIFI_STATIC_RX_BUFFER_NUM": [2, 25], "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": [0, 128], "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": [1, 128], "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": [1, 10], "ESP_WIFI_TX_BA_WIN": [2, 32], "ESP_WIFI_RX_BA_WIN": [2, 32], "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": [752, 1256], "ESP_WIFI_MGMT_SBUF_NUM": [6, 32], "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": [8, 60], "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": [10, 60], "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": [10, 30], "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": [0, 17], "FATFS_VOLUME_COUNT": [1, 10], "FATFS_FS_LOCK": [0, 65535], "FREERTOS_HZ": [1, 1000], "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": [1, 256], "FREERTOS_IDLE_TASK_STACKSIZE": [768, 32768], "FREERTOS_MAX_TASK_NAME_LEN": [1, 256], "FREERTOS_TIMER_TASK_PRIORITY": [1, 25], "FREERTOS_TIMER_TASK_STACK_DEPTH": [1536, 32768], "FREERTOS_TIMER_QUEUE_LENGTH": [5, 20], "FREERTOS_QUEUE_REGISTRY_SIZE": [0, 20], "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": [1, 32], "FREERTOS_ISR_STACKSIZE": [1536, 32768], "FREERTOS_NUMBER_OF_CORES": [1, 2], "LWIP_TCPIP_TASK_PRIO": [1, 24], "LWIP_MAX_SOCKETS": [1, 253], "LWIP_IP_DEFAULT_TTL": [1, 255], "LWIP_IP_REASS_MAX_PBUFS": [10, 100], "LWIP_TCPIP_RECVMBOX_SIZE": [6, 64], "LWIP_DHCP_OPTIONS_LEN": [68, 255], "LWIP_NUM_NETIF_CLIENT_DATA": [0, 256], "LWIP_DHCP_COARSE_TIMER_SECS": [1, 10], "LWIP_DHCPS_LEASE_UNIT": [1, 3600], "LWIP_DHCPS_MAX_STATION_NUM": [1, 64], "LWIP_LOOPBACK_MAX_PBUFS": [0, 16], "LWIP_MAX_ACTIVE_TCP": [1, 1024], "LWIP_MAX_LISTENING_TCP": [1, 1024], "LWIP_TCP_MAXRTX": [3, 12], "LWIP_TCP_SYNMAXRTX": [3, 12], "LWIP_TCP_MSS": [536, 1460], "LWIP_TCP_SND_BUF_DEFAULT": [2440, 65535], "LWIP_TCP_WND_DEFAULT": [2440, 65535], "LWIP_TCP_RECVMBOX_SIZE": [6, 64], "LWIP_TCP_ACCEPTMBOX_SIZE": [1, 64], "LWIP_TCP_OOSEQ_TIMEOUT": [1, 30], "LWIP_TCP_OOSEQ_MAX_PBUFS": [0, 12], "LWIP_MAX_UDP_PCBS": [1, 1024], "LWIP_UDP_RECVMBOX_SIZE": [6, 64], "LWIP_TCPIP_TASK_STACK_SIZE": [2048, 65536], "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": [3, 20], "LWIP_IPV6_ND6_NUM_NEIGHBORS": [3, 10], "LWIP_MAX_RAW_PCBS": [1, 1024], "LWIP_SNTP_MAX_SERVERS": [1, 16], "LWIP_SNTP_UPDATE_DELAY": [15000, 4294967295], "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": [100, 300000], "LWIP_DNS_MAX_SERVERS": [1, 4], "LWIP_BRIDGEIF_MAX_PORTS": [1, 63], "MBEDTLS_SSL_IN_CONTENT_LEN": [512, 16384], "MBEDTLS_SSL_OUT_CONTENT_LEN": [512, 16384], "MBEDTLS_AES_INTERRUPT_LEVEL": [0, 3], "MBEDTLS_MPI_INTERRUPT_LEVEL": [0, 3], "PTHREAD_TASK_PRIO_DEFAULT": [0, 255], "SPI_FLASH_SUSPEND_TSUS_VAL_US": [20, 100], "SPI_FLASH_WRITE_CHUNK_SIZE": [256, 8192], "SPIFFS_MAX_PARTITIONS": [1, 10], "SPIFFS_GC_MAX_RUNS": [1, 10000], "SPIFFS_PAGE_SIZE": [256, 1024], "SPIFFS_OBJ_NAME_LEN": [1, 256], "VFS_MAX_COUNT": [1, 20], "WIFI_PROV_SCAN_MAX_ENTRIES": [1, 255], "WIFI_PROV_AUTOSTOP_TIMEOUT": [5, 600], "IO_GLITCH_FILTER_TIME_MS": [10, 100], "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT": [50, 90], "RTC_STORE_DATA_SIZE": [512, 7168], "RTC_STORE_CRITICAL_DATA_SIZE": [512, 6144], "DIAG_LOG_MSG_ARG_MAX_SIZE": [32, 255], "DIAG_HEAP_POLLING_INTERVAL": [30, 86400], "DIAG_WIFI_POLLING_INTERVAL": [30, 86400], "MDNS_MAX_INTERFACES": [1, 9], "MDNS_TASK_PRIORITY": [1, 255], "MDNS_ACTION_QUEUE_LEN": [8, 64], "MDNS_SERVICE_ADD_TIMEOUT_MS": [10, 30000], "MDNS_TIMER_PERIOD_MS": [10, 10000], "NETWORK_PROV_SCAN_MAX_ENTRIES": [1, 255], "NETWORK_PROV_AUTOSTOP_TIMEOUT": [5, 600], "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL": [30, 1200]}, "visible": {"SOC_ADC_SUPPORTED": false, "SOC_DEDICATED_GPIO_SUPPORTED": false, "SOC_UART_SUPPORTED": false, "SOC_GDMA_SUPPORTED": false, "SOC_AHB_GDMA_SUPPORTED": false, "SOC_GPTIMER_SUPPORTED": false, "SOC_TWAI_SUPPORTED": false, "SOC_BT_SUPPORTED": false, "SOC_ASYNC_MEMCPY_SUPPORTED": false, "SOC_USB_SERIAL_JTAG_SUPPORTED": false, "SOC_TEMP_SENSOR_SUPPORTED": false, "SOC_XT_WDT_SUPPORTED": false, "SOC_PHY_SUPPORTED": false, "SOC_WIFI_SUPPORTED": false, "SOC_SUPPORTS_SECURE_DL_MODE": false, "SOC_EFUSE_KEY_PURPOSE_FIELD": false, "SOC_EFUSE_HAS_EFUSE_RST_BUG": false, "SOC_EFUSE_SUPPORTED": false, "SOC_RTC_FAST_MEM_SUPPORTED": false, "SOC_RTC_MEM_SUPPORTED": false, "SOC_I2S_SUPPORTED": false, "SOC_RMT_SUPPORTED": false, "SOC_SDM_SUPPORTED": false, "SOC_GPSPI_SUPPORTED": false, "SOC_LEDC_SUPPORTED": false, "SOC_I2C_SUPPORTED": false, "SOC_SYSTIMER_SUPPORTED": false, "SOC_SUPPORT_COEXISTENCE": false, "SOC_AES_SUPPORTED": false, "SOC_MPI_SUPPORTED": false, "SOC_SHA_SUPPORTED": false, "SOC_HMAC_SUPPORTED": false, "SOC_DIG_SIGN_SUPPORTED": false, "SOC_FLASH_ENC_SUPPORTED": false, "SOC_SECURE_BOOT_SUPPORTED": false, "SOC_MEMPROT_SUPPORTED": false, "SOC_BOD_SUPPORTED": false, "SOC_CLK_TREE_SUPPORTED": false, "SOC_ASSIST_DEBUG_SUPPORTED": false, "SOC_WDT_SUPPORTED": false, "SOC_SPI_FLASH_SUPPORTED": false, "SOC_RNG_SUPPORTED": false, "SOC_LIGHT_SLEEP_SUPPORTED": false, "SOC_DEEP_SLEEP_SUPPORTED": false, "SOC_LP_PERIPH_SHARE_INTERRUPT": false, "SOC_PM_SUPPORTED": false, "SOC_XTAL_SUPPORT_40M": false, "SOC_AES_SUPPORT_DMA": false, "SOC_AES_GDMA": false, "SOC_AES_SUPPORT_AES_128": false, "SOC_AES_SUPPORT_AES_256": false, "SOC_ADC_DIG_CTRL_SUPPORTED": false, "SOC_ADC_ARBITER_SUPPORTED": false, "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": false, "SOC_ADC_MONITOR_SUPPORTED": false, "SOC_ADC_DMA_SUPPORTED": false, "SOC_ADC_PERIPH_NUM": false, "SOC_ADC_MAX_CHANNEL_NUM": false, "SOC_ADC_ATTEN_NUM": false, "SOC_ADC_DIGI_CONTROLLER_NUM": false, "SOC_ADC_PATT_LEN_MAX": false, "SOC_ADC_DIGI_MIN_BITWIDTH": false, "SOC_ADC_DIGI_MAX_BITWIDTH": false, "SOC_ADC_DIGI_RESULT_BYTES": false, "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": false, "SOC_ADC_DIGI_IIR_FILTER_NUM": false, "SOC_ADC_DIGI_MONITOR_NUM": false, "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": false, "SOC_ADC_SAMPLE_FREQ_THRES_LOW": false, "SOC_ADC_RTC_MIN_BITWIDTH": false, "SOC_ADC_RTC_MAX_BITWIDTH": false, "SOC_ADC_CALIBRATION_V1_SUPPORTED": false, "SOC_ADC_SELF_HW_CALI_SUPPORTED": false, "SOC_ADC_SHARED_POWER": false, "SOC_APB_BACKUP_DMA": false, "SOC_BROWNOUT_RESET_SUPPORTED": false, "SOC_SHARED_IDCACHE_SUPPORTED": false, "SOC_CACHE_MEMORY_IBANK_SIZE": false, "SOC_CPU_CORES_NUM": false, "SOC_CPU_INTR_NUM": false, "SOC_CPU_HAS_FLEXIBLE_INTC": false, "SOC_CPU_HAS_CSR_PC": false, "SOC_CPU_BREAKPOINTS_NUM": false, "SOC_CPU_WATCHPOINTS_NUM": false, "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": false, "SOC_DS_SIGNATURE_MAX_BIT_LEN": false, "SOC_DS_KEY_PARAM_MD_IV_LENGTH": false, "SOC_DS_KEY_CHECK_MAX_WAIT_US": false, "SOC_AHB_GDMA_VERSION": false, "SOC_GDMA_NUM_GROUPS_MAX": false, "SOC_GDMA_PAIRS_PER_GROUP_MAX": false, "SOC_GPIO_PORT": false, "SOC_GPIO_PIN_COUNT": false, "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": false, "SOC_GPIO_FILTER_CLK_SUPPORT_APB": false, "SOC_GPIO_SUPPORT_FORCE_HOLD": false, "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": false, "SOC_GPIO_IN_RANGE_MAX": false, "SOC_GPIO_OUT_RANGE_MAX": false, "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": false, "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": false, "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": false, "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": false, "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": false, "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": false, "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": false, "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": false, "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": false, "SOC_I2C_NUM": false, "SOC_HP_I2C_NUM": false, "SOC_I2C_FIFO_LEN": false, "SOC_I2C_CMD_REG_NUM": false, "SOC_I2C_SUPPORT_SLAVE": false, "SOC_I2C_SUPPORT_HW_CLR_BUS": false, "SOC_I2C_SUPPORT_XTAL": false, "SOC_I2C_SUPPORT_RTC": false, "SOC_I2C_SUPPORT_10BIT_ADDR": false, "SOC_I2C_SLAVE_SUPPORT_BROADCAST": false, "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": false, "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": false, "SOC_I2S_NUM": false, "SOC_I2S_HW_VERSION_2": false, "SOC_I2S_SUPPORTS_XTAL": false, "SOC_I2S_SUPPORTS_PLL_F160M": false, "SOC_I2S_SUPPORTS_PCM": false, "SOC_I2S_SUPPORTS_PDM": false, "SOC_I2S_SUPPORTS_PDM_TX": false, "SOC_I2S_PDM_MAX_TX_LINES": false, "SOC_I2S_SUPPORTS_TDM": false, "SOC_LEDC_SUPPORT_APB_CLOCK": false, "SOC_LEDC_SUPPORT_XTAL_CLOCK": false, "SOC_LEDC_TIMER_NUM": false, "SOC_LEDC_CHANNEL_NUM": false, "SOC_LEDC_TIMER_BIT_WIDTH": false, "SOC_LEDC_SUPPORT_FADE_STOP": false, "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": false, "SOC_MMU_PERIPH_NUM": false, "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED": false, "SOC_MPU_MIN_REGION_SIZE": false, "SOC_MPU_REGIONS_MAX_NUM": false, "SOC_MPU_REGION_RO_SUPPORTED": false, "SOC_MPU_REGION_WO_SUPPORTED": false, "SOC_RMT_GROUPS": false, "SOC_RMT_TX_CANDIDATES_PER_GROUP": false, "SOC_RMT_RX_CANDIDATES_PER_GROUP": false, "SOC_RMT_CHANNELS_PER_GROUP": false, "SOC_RMT_MEM_WORDS_PER_CHANNEL": false, "SOC_RMT_SUPPORT_RX_PINGPONG": false, "SOC_RMT_SUPPORT_RX_DEMODULATION": false, "SOC_RMT_SUPPORT_TX_ASYNC_STOP": false, "SOC_RMT_SUPPORT_TX_LOOP_COUNT": false, "SOC_RMT_SUPPORT_TX_SYNCHRO": false, "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": false, "SOC_RMT_SUPPORT_XTAL": false, "SOC_RMT_SUPPORT_APB": false, "SOC_RMT_SUPPORT_RC_FAST": false, "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": false, "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": false, "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND": false, "SOC_SLEEP_TGWDT_STOP_WORKAROUND": false, "SOC_RTCIO_PIN_COUNT": false, "SOC_MPI_MEM_BLOCKS_NUM": false, "SOC_MPI_OPERATIONS_NUM": false, "SOC_RSA_MAX_BIT_LEN": false, "SOC_SHA_DMA_MAX_BUFFER_SIZE": false, "SOC_SHA_SUPPORT_DMA": false, "SOC_SHA_SUPPORT_RESUME": false, "SOC_SHA_GDMA": false, "SOC_SHA_SUPPORT_SHA1": false, "SOC_SHA_SUPPORT_SHA224": false, "SOC_SHA_SUPPORT_SHA256": false, "SOC_SDM_GROUPS": false, "SOC_SDM_CHANNELS_PER_GROUP": false, "SOC_SDM_CLK_SUPPORT_APB": false, "SOC_SPI_PERIPH_NUM": false, "SOC_SPI_MAX_CS_NUM": false, "SOC_SPI_MAXIMUM_BUFFER_SIZE": false, "SOC_SPI_SUPPORT_DDRCLK": false, "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": false, "SOC_SPI_SUPPORT_CD_SIG": false, "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": false, "SOC_SPI_SUPPORT_SLAVE_HD_VER2": false, "SOC_SPI_SUPPORT_CLK_APB": false, "SOC_SPI_SUPPORT_CLK_XTAL": false, "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": false, "SOC_SPI_SCT_SUPPORTED": false, "SOC_SPI_SCT_REG_NUM": false, "SOC_SPI_SCT_BUFFER_NUM_MAX": false, "SOC_SPI_SCT_CONF_BITLEN_MAX": false, "SOC_MEMSPI_IS_INDEPENDENT": false, "SOC_SPI_MAX_PRE_DIVIDER": false, "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": false, "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": false, "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": false, "SOC_SPI_MEM_SUPPORT_IDLE_INTR": false, "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": false, "SOC_SPI_MEM_SUPPORT_CHECK_SUS": false, "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": false, "SOC_SPI_MEM_SUPPORT_WRAP": false, "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": false, "SOC_SYSTIMER_COUNTER_NUM": false, "SOC_SYSTIMER_ALARM_NUM": false, "SOC_SYSTIMER_BIT_WIDTH_LO": false, "SOC_SYSTIMER_BIT_WIDTH_HI": false, "SOC_SYSTIMER_FIXED_DIVIDER": false, "SOC_SYSTIMER_INT_LEVEL": false, "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": false, "SOC_TIMER_GROUPS": false, "SOC_TIMER_GROUP_TIMERS_PER_GROUP": false, "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": false, "SOC_TIMER_GROUP_SUPPORT_XTAL": false, "SOC_TIMER_GROUP_SUPPORT_APB": false, "SOC_TIMER_GROUP_TOTAL_TIMERS": false, "SOC_LP_TIMER_BIT_WIDTH_LO": false, "SOC_LP_TIMER_BIT_WIDTH_HI": false, "SOC_MWDT_SUPPORT_XTAL": false, "SOC_TWAI_CONTROLLER_NUM": false, "SOC_TWAI_CLK_SUPPORT_APB": false, "SOC_TWAI_BRP_MIN": false, "SOC_TWAI_BRP_MAX": false, "SOC_TWAI_SUPPORTS_RX_STATUS": false, "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": false, "SOC_EFUSE_DIS_PAD_JTAG": false, "SOC_EFUSE_DIS_USB_JTAG": false, "SOC_EFUSE_DIS_DIRECT_BOOT": false, "SOC_EFUSE_SOFT_DIS_JTAG": false, "SOC_EFUSE_DIS_ICACHE": false, "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": false, "SOC_SECURE_BOOT_V2_RSA": false, "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": false, "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": false, "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": false, "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": false, "SOC_FLASH_ENCRYPTION_XTS_AES": false, "SOC_FLASH_ENCRYPTION_XTS_AES_128": false, "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": false, "SOC_MEMPROT_MEM_ALIGN_SIZE": false, "SOC_UART_NUM": false, "SOC_UART_HP_NUM": false, "SOC_UART_FIFO_LEN": false, "SOC_UART_BITRATE_MAX": false, "SOC_UART_SUPPORT_APB_CLK": false, "SOC_UART_SUPPORT_RTC_CLK": false, "SOC_UART_SUPPORT_XTAL_CLK": false, "SOC_UART_SUPPORT_WAKEUP_INT": false, "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": false, "SOC_COEX_HW_PTI": false, "SOC_EXTERNAL_COEX_ADVANCE": false, "SOC_EXTERNAL_COEX_LEADER_TX_LINE": false, "SOC_PHY_DIG_REGS_MEM_SIZE": false, "SOC_MAC_BB_PD_MEM_SIZE": false, "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": false, "SOC_PM_SUPPORT_WIFI_WAKEUP": false, "SOC_PM_SUPPORT_BT_WAKEUP": false, "SOC_PM_SUPPORT_CPU_PD": false, "SOC_PM_SUPPORT_WIFI_PD": false, "SOC_PM_SUPPORT_BT_PD": false, "SOC_PM_SUPPORT_RC_FAST_PD": false, "SOC_PM_SUPPORT_VDDSDIO_PD": false, "SOC_PM_SUPPORT_MAC_BB_PD": false, "SOC_PM_CPU_RETENTION_BY_RTCCNTL": false, "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": false, "SOC_PM_MODEM_PD_BY_SW": false, "SOC_CLK_RC_FAST_D256_SUPPORTED": false, "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": false, "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": false, "SOC_CLK_XTAL32K_SUPPORTED": false, "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": false, "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": false, "SOC_WIFI_HW_TSF": false, "SOC_WIFI_FTM_SUPPORT": false, "SOC_WIFI_GCMP_SUPPORT": false, "SOC_WIFI_WAPI_SUPPORT": false, "SOC_WIFI_CSI_SUPPORT": false, "SOC_WIFI_MESH_SUPPORT": false, "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": false, "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": false, "SOC_BLE_SUPPORTED": false, "SOC_BLE_MESH_SUPPORTED": false, "SOC_BLE_50_SUPPORTED": false, "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": false, "SOC_BLUFI_SUPPORTED": false, "SOC_PHY_COMBO_MODULE": false, "IDF_CMAKE": false, "IDF_ENV_FPGA": false, "IDF_ENV_BRINGUP": false, "IDF_CI_BUILD": false, "IDF_DOC_BUILD": false, "IDF_TOOLCHAIN": false, "IDF_TOOLCHAIN_CLANG": false, "IDF_TOOLCHAIN_GCC": false, "IDF_TARGET_ARCH_RISCV": false, "IDF_TARGET_ARCH_XTENSA": false, "IDF_TARGET_ARCH": false, "IDF_TARGET": false, "IDF_INIT_VERSION": false, "IDF_TARGET_ESP32": false, "IDF_TARGET_ESP32S2": false, "IDF_TARGET_ESP32S3": false, "IDF_TARGET_ESP32C3": false, "IDF_TARGET_ESP32C2": false, "IDF_TARGET_ESP32C6": false, "IDF_TARGET_ESP32C5": false, "IDF_TARGET_ESP32P4": false, "IDF_TARGET_ESP32H2": false, "IDF_TARGET_ESP32C61": false, "IDF_TARGET_LINUX": false, "IDF_FIRMWARE_CHIP_ID": false, "build-type-application-build-type": true, "APP_BUILD_TYPE_APP_2NDBOOT": true, "APP_BUILD_TYPE_RAM": true, "APP_BUILD_GENERATE_BINARIES": false, "APP_BUILD_BOOTLOADER": false, "APP_BUILD_TYPE_PURE_RAM_APP": false, "APP_BUILD_USE_FLASH_SECTIONS": false, "APP_REPRODUCIBLE_BUILD": true, "APP_NO_BLOBS": true, "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, "APP_INIT_CLK": false, "BOOTLOADER_COMPILE_TIME_DATE": true, "BOOTLOADER_PROJECT_VER": true, "BOOTLOADER_OFFSET_IN_FLASH": false, "bootloader-config-bootloader-optimization-level": true, "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": true, "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": true, "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": true, "bootloader-config-log-bootloader-log-verbosity": true, "BOOTLOADER_LOG_LEVEL_NONE": true, "BOOTLOADER_LOG_LEVEL_ERROR": true, "BOOTLOADER_LOG_LEVEL_WARN": true, "BOOTLOADER_LOG_LEVEL_INFO": true, "BOOTLOADER_LOG_LEVEL_DEBUG": true, "BOOTLOADER_LOG_LEVEL_VERBOSE": true, "BOOTLOADER_LOG_LEVEL": false, "BOOTLOADER_LOG_COLORS": true, "bootloader-config-log-format-timestamp": true, "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE": false, "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, "BOOTLOADER_SPI_CUSTOM_WP_PIN": false, "BOOTLOADER_SPI_WP_PIN": false, "BOOTLOADER_FLASH_DC_AWARE": true, "BOOTLOADER_FLASH_XMC_SUPPORT": true, "BOOTLOADER_FLASH_32BIT_ADDR": false, "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT": false, "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH": false, "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH": false, "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH": false, "bootloader-config-vddsdio-ldo-voltage": false, "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, "BOOTLOADER_VDDSDIO_BOOST_1_9V": false, "BOOTLOADER_FACTORY_RESET": true, "BOOTLOADER_NUM_PIN_FACTORY_RESET": false, "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level": false, "BOOTLOADER_FACTORY_RESET_PIN_LOW": false, "BOOTLOADER_FACTORY_RESET_PIN_HIGH": false, "BOOTLOADER_OTA_DATA_ERASE": false, "BOOTLOADER_DATA_FACTORY_RESET": false, "BOOTLOADER_APP_TEST": true, "BOOTLOADER_NUM_PIN_APP_TEST": false, "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level": false, "BOOTLOADER_APP_TEST_PIN_LOW": false, "BOOTLOADER_APP_TEST_PIN_HIGH": false, "BOOTLOADER_HOLD_TIME_GPIO": false, "BOOTLOADER_REGION_PROTECTION_ENABLE": true, "BOOTLOADER_WDT_ENABLE": true, "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": true, "BOOTLOADER_WDT_TIME_MS": true, "BOOTLOADER_APP_ROLLBACK_ENABLE": true, "BOOTLOADER_APP_ANTI_ROLLBACK": true, "BOOTLOADER_APP_SECURE_VERSION": false, "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD": false, "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE": false, "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": true, "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": true, "BOOTLOADER_SKIP_VALIDATE_ALWAYS": true, "BOOTLOADER_RESERVE_RTC_SIZE": false, "BOOTLOADER_CUSTOM_RESERVE_RTC": true, "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC": false, "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE": false, "BOOTLOADER_RESERVE_RTC_MEM": false, "SECURE_SIGNED_ON_BOOT": false, "SECURE_SIGNED_ON_UPDATE": false, "SECURE_SIGNED_APPS": false, "SECURE_BOOT_V2_RSA_SUPPORTED": false, "SECURE_BOOT_V2_ECC_SUPPORTED": false, "SECURE_BOOT_V1_SUPPORTED": false, "SECURE_BOOT_V2_PREFERRED": false, "SECURE_BOOT_V2_ECDSA_ENABLED": false, "SECURE_BOOT_V2_RSA_ENABLED": false, "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER": false, "SECURE_SIGNED_APPS_NO_SECURE_BOOT": true, "security-features-app-signing-scheme": false, "SECURE_SIGNED_APPS_ECDSA_SCHEME": false, "SECURE_SIGNED_APPS_RSA_SCHEME": false, "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME": false, "security-features-ecdsa-key-size": false, "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS": false, "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS": false, "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT": false, "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT": false, "SECURE_BOOT": true, "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version": false, "SECURE_BOOT_V1_ENABLED": false, "SECURE_BOOT_V2_ENABLED": false, "security-features-secure-bootloader-mode": false, "SECURE_BOOTLOADER_ONE_TIME_FLASH": false, "SECURE_BOOTLOADER_REFLASHABLE": false, "SECURE_BOOT_BUILD_SIGNED_BINARIES": false, "SECURE_BOOT_SIGNING_KEY": false, "SECURE_BOOT_VERIFICATION_KEY": false, "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE": false, "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS": false, "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT": false, "security-features-hardware-key-encoding": false, "SECURE_BOOTLOADER_KEY_ENCODING_256BIT": false, "SECURE_BOOTLOADER_KEY_ENCODING_192BIT": false, "SECURE_BOOT_INSECURE": false, "SECURE_FLASH_ENC_ENABLED": true, "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key": false, "SECURE_FLASH_ENCRYPTION_AES128_DERIVED": false, "SECURE_FLASH_ENCRYPTION_AES128": false, "SECURE_FLASH_ENCRYPTION_AES256": false, "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode": false, "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT": false, "SECURE_FLASH_ENCRYPTION_MODE_RELEASE": false, "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE": false, "SECURE_BOOT_ALLOW_ROM_BASIC": false, "SECURE_BOOT_ALLOW_JTAG": false, "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION": false, "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE": false, "SECURE_FLASH_REQUIRE_ALREADY_ENABLED": false, "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE": false, "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART": false, "SECURE_FLASH_CHECK_ENC_EN_IN_APP": false, "SECURE_FLASH_PSEUDO_ROUND_FUNC": false, "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function": false, "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW": false, "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM": false, "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH": false, "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH": false, "SECURE_ROM_DL_MODE_ENABLED": false, "security-features-uart-rom-download-mode": false, "SECURE_DISABLE_ROM_DL_MODE": false, "SECURE_ENABLE_SECURE_ROM_DL_MODE": false, "SECURE_INSECURE_ALLOW_DL_MODE": false, "APP_COMPILE_TIME_DATE": true, "APP_EXCLUDE_PROJECT_VER_VAR": true, "APP_EXCLUDE_PROJECT_NAME_VAR": true, "APP_PROJECT_VER_FROM_CONFIG": true, "APP_PROJECT_VER": false, "APP_RETRIEVE_LEN_ELF_SHA": true, "ESP_ROM_HAS_CRC_LE": false, "ESP_ROM_HAS_CRC_BE": false, "ESP_ROM_HAS_MZ_CRC32": false, "ESP_ROM_HAS_JPEG_DECODE": false, "ESP_ROM_UART_CLK_IS_XTAL": false, "ESP_ROM_USB_SERIAL_DEVICE_NUM": false, "ESP_ROM_HAS_RETARGETABLE_LOCKING": false, "ESP_ROM_HAS_ERASE_0_REGION_BUG": false, "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": false, "ESP_ROM_GET_CLK_FREQ": false, "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": false, "ESP_ROM_HAS_LAYOUT_TABLE": false, "ESP_ROM_HAS_SPI_FLASH": false, "ESP_ROM_HAS_ETS_PRINTF_BUG": false, "ESP_ROM_HAS_NEWLIB": false, "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": false, "ESP_ROM_HAS_NEWLIB_32BIT_TIME": false, "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": false, "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": false, "ESP_ROM_HAS_SW_FLOAT": false, "ESP_ROM_USB_OTG_NUM": false, "ESP_ROM_HAS_VERSION": false, "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": false, "boot-rom-behavior-permanently-change-boot-rom-output": true, "BOOT_ROM_LOG_ALWAYS_ON": true, "BOOT_ROM_LOG_ALWAYS_OFF": true, "BOOT_ROM_LOG_ON_GPIO_HIGH": true, "BOOT_ROM_LOG_ON_GPIO_LOW": true, "ESPTOOLPY_NO_STUB": true, "ESPTOOLPY_OCT_FLASH": false, "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": false, "serial-flasher-config-flash-spi-mode": true, "ESPTOOLPY_FLASHMODE_QIO": true, "ESPTOOLPY_FLASHMODE_QOUT": true, "ESPTOOLPY_FLASHMODE_DIO": true, "ESPTOOLPY_FLASHMODE_DOUT": true, "ESPTOOLPY_FLASHMODE_OPI": false, "serial-flasher-config-flash-sampling-mode": true, "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR": false, "ESPTOOLPY_FLASHMODE": false, "serial-flasher-config-flash-spi-speed": true, "ESPTOOLPY_FLASHFREQ_80M": true, "ESPTOOLPY_FLASHFREQ_40M": true, "ESPTOOLPY_FLASHFREQ_26M": true, "ESPTOOLPY_FLASHFREQ_20M": true, "ESPTOOLPY_FLASHFREQ": false, "serial-flasher-config-flash-size": true, "ESPTOOLPY_FLASHSIZE_1MB": true, "ESPTOOLPY_FLASHSIZE_2MB": true, "ESPTOOLPY_FLASHSIZE_4MB": true, "ESPTOOLPY_FLASHSIZE_8MB": true, "ESPTOOLPY_FLASHSIZE_16MB": true, "ESPTOOLPY_FLASHSIZE_32MB": true, "ESPTOOLPY_FLASHSIZE_64MB": true, "ESPTOOLPY_FLASHSIZE_128MB": true, "ESPTOOLPY_FLASHSIZE": false, "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": true, "serial-flasher-config-before-flashing": true, "ESPTOOLPY_BEFORE_RESET": true, "ESPTOOLPY_BEFORE_NORESET": true, "ESPTOOLPY_BEFORE": false, "serial-flasher-config-after-flashing": true, "ESPTOOLPY_AFTER_RESET": true, "ESPTOOLPY_AFTER_NORESET": true, "ESPTOOLPY_AFTER": false, "ESPTOOLPY_MONITOR_BAUD": false, "partition-table-partition-table": true, "PARTITION_TABLE_SINGLE_APP": true, "PARTITION_TABLE_SINGLE_APP_LARGE": true, "PARTITION_TABLE_TWO_OTA": true, "PARTITION_TABLE_TWO_OTA_LARGE": true, "PARTITION_TABLE_CUSTOM": true, "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS": false, "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS": false, "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS": false, "PARTITION_TABLE_CUSTOM_FILENAME": true, "PARTITION_TABLE_FILENAME": false, "PARTITION_TABLE_OFFSET": true, "PARTITION_TABLE_MD5": true, "EXAMPLE_BOARD_BUTTON_GPIO": true, "APP_NETWORK_PROV_SHOW_QR": true, "APP_NETWORK_PROV_MAX_POP_MISMATCH": true, "esp-rainmaker-app-wi-fi-provisioning-provisioning-transport-method": true, "APP_NETWORK_PROV_TRANSPORT_SOFTAP": true, "APP_NETWORK_PROV_TRANSPORT_BLE": true, "APP_NETWORK_PROV_TRANSPORT": false, "APP_NETWORK_RESET_PROV_ON_FAILURE": true, "APP_NETWORK_PROV_MAX_RETRY_CNT": true, "APP_NETWORK_SHOW_DEMO_INTRO_TEXT": true, "APP_NETWORK_PROV_TIMEOUT_PERIOD": true, "APP_NETWORK_PROV_NAME_PREFIX": true, "APP_WIFI_PROV_COMPAT": true, "esp-rainmaker-config-claiming-type": true, "ESP_RMAKER_NO_CLAIM": true, "ESP_RMAKER_SELF_CLAIM": true, "ESP_RMAKER_ASSISTED_CLAIM": true, "esp-rainmaker-config-choose-pki-credentials-access-method": true, "ESP_RMAKER_USE_ESP_SECURE_CERT_MGR": false, "ESP_RMAKER_USE_NVS": true, "ESP_RMAKER_CLAIM_TYPE": false, "ESP_RMAKER_CLAIM_SERVICE_BASE_URL": true, "ESP_RMAKER_READ_MQTT_HOST_FROM_CONFIG": true, "ESP_RMAKER_READ_NODE_ID_FROM_CERT_CN": true, "ESP_RMAKER_MQTT_HOST": true, "ESP_RMAKER_MQTT_USE_BASIC_INGEST_TOPICS": true, "ESP_RMAKER_MQTT_ENABLE_BUDGETING": true, "ESP_RMAKER_MQTT_DEFAULT_BUDGET": true, "ESP_RMAKER_MQTT_MAX_BUDGET": true, "ESP_RMAKER_MQTT_BUDGET_REVIVE_PERIOD": true, "ESP_RMAKER_MQTT_BUDGET_REVIVE_COUNT": true, "ESP_RMAKER_MAX_PARAM_DATA_SIZE": true, "ESP_RMAKER_DISABLE_USER_MAPPING_PROV": true, "ESP_RMAKER_USER_ID_CHECK": true, "RMAKER_NAME_PARAM_CB": true, "ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE": true, "ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE": true, "ESP_RMAKER_LOCAL_CTRL_HTTP_PORT": true, "ESP_RMAKER_LOCAL_CTRL_STACK_SIZE": true, "esp-rainmaker-config-local-control-security-type": true, "ESP_RMAKER_LOCAL_CTRL_SECURITY_0": true, "ESP_RMAKER_LOCAL_CTRL_SECURITY_1": true, "ESP_RMAKER_LOCAL_CTRL_SECURITY": false, "ESP_RMAKER_LOCAL_CTRL_LEASE_INTERVAL_SECONDS": false, "esp-rainmaker-config-uart-for-console-input": true, "ESP_RMAKER_CONSOLE_UART_NUM_0": true, "ESP_RMAKER_CONSOLE_UART_NUM_1": true, "ESP_RMAKER_CONSOLE_UART_NUM": false, "ESP_RMAKER_USE_CERT_BUNDLE": true, "ESP_RMAKER_OTA_AUTOFETCH": true, "ESP_RMAKER_OTA_AUTOFETCH_PERIOD": true, "ESP_RMAKER_SKIP_COMMON_NAME_CHECK": true, "ESP_RMAKER_SKIP_VERSION_CHECK": true, "ESP_RMAKER_SKIP_SECURE_VERSION_CHECK": true, "ESP_RMAKER_SKIP_PROJECT_NAME_CHECK": true, "ESP_RMAKER_OTA_HTTP_RX_BUFFER_SIZE": true, "ESP_RMAKER_OTA_ROLLBACK_WAIT_PERIOD": true, "ESP_RMAKER_OTA_DISABLE_AUTO_REBOOT": true, "ESP_RMAKER_OTA_TIME_SUPPORT": true, "ESP_RMAKER_OTA_PROGRESS_SUPPORT": true, "ESP_RMAKER_OTA_PROGRESS_INTERVAL": false, "ESP_RMAKER_OTA_MAX_RETRIES": true, "ESP_RMAKER_OTA_RETRY_DELAY_MINUTES": true, "ESP_RMAKER_SCHEDULING_MAX_SCHEDULES": true, "ESP_RMAKER_SCENES_MAX_SCENES": true, "ESP_RMAKER_SCENES_DEACTIVATE_SUPPORT": true, "ESP_RMAKER_CMD_RESP_ENABLE": true, "ESP_RMAKER_CMD_RESP_TEST_ENABLE": true, "ESP_RMAKER_USING_NETWORK_PROV": true, "compiler-options-optimization-level": true, "COMPILER_OPTIMIZATION_DEBUG": true, "COMPILER_OPTIMIZATION_SIZE": true, "COMPILER_OPTIMIZATION_PERF": true, "COMPILER_OPTIMIZATION_NONE": true, "compiler-options-assertion-level": true, "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": true, "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": true, "COMPILER_ASSERT_NDEBUG_EVALUATE": true, "compiler-options-compiler-float-lib-source": true, "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, "COMPILER_FLOAT_LIB_FROM_RVFPLIB": false, "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": false, "COMPILER_OPTIMIZATION_CHECKS_SILENT": true, "COMPILER_HIDE_PATHS_MACROS": true, "COMPILER_CXX_EXCEPTIONS": true, "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE": false, "COMPILER_CXX_RTTI": true, "compiler-options-stack-smashing-protection-mode": true, "COMPILER_STACK_CHECK_MODE_NONE": true, "COMPILER_STACK_CHECK_MODE_NORM": true, "COMPILER_STACK_CHECK_MODE_STRONG": true, "COMPILER_STACK_CHECK_MODE_ALL": true, "COMPILER_STACK_CHECK": false, "COMPILER_NO_MERGE_CONSTANTS": true, "COMPILER_WARN_WRITE_STRINGS": true, "COMPILER_SAVE_RESTORE_LIBCALLS": true, "COMPILER_DISABLE_DEFAULT_ERRORS": true, "COMPILER_DISABLE_GCC12_WARNINGS": true, "COMPILER_DISABLE_GCC13_WARNINGS": true, "COMPILER_DISABLE_GCC14_WARNINGS": true, "COMPILER_DUMP_RTL_FILES": true, "compiler-options-compiler-runtime-library": true, "COMPILER_RT_LIB_GCCLIB": true, "COMPILER_RT_LIB_CLANGRT": false, "COMPILER_RT_LIB_HOST": false, "COMPILER_RT_LIB_NAME": false, "compiler-options-orphan-sections-handling": true, "COMPILER_ORPHAN_SECTIONS_WARNING": true, "COMPILER_ORPHAN_SECTIONS_PLACE": true, "COMPILER_STATIC_ANALYZER": true, "component-config-application-level-tracing-data-destination-1": true, "APPTRACE_DEST_JTAG": true, "APPTRACE_DEST_NONE": true, "APPTRACE_DEST_UART": false, "APPTRACE_DEST_UART_NOUSB": false, "component-config-application-level-tracing-data-destination-2": true, "APPTRACE_DEST_UART0": false, "APPTRACE_DEST_UART1": true, "APPTRACE_DEST_UART2": false, "APPTRACE_DEST_USB_CDC": true, "APPTRACE_DEST_UART_NONE": true, "APPTRACE_UART_TX_GPIO": false, "APPTRACE_UART_RX_GPIO": false, "APPTRACE_UART_BAUDRATE": false, "APPTRACE_UART_RX_BUFF_SIZE": false, "APPTRACE_UART_TX_BUFF_SIZE": false, "APPTRACE_UART_TX_MSG_SIZE": false, "APPTRACE_UART_TASK_PRIO": false, "APPTRACE_DEST_TRAX": false, "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE": false, "APPTRACE_ENABLE": false, "APPTRACE_LOCK_ENABLE": false, "APPTRACE_ONPANIC_HOST_FLUSH_TMO": false, "APPTRACE_POSTMORTEM_FLUSH_THRESH": false, "APPTRACE_BUF_SIZE": false, "APPTRACE_PENDING_DATA_SIZE_MAX": false, "APPTRACE_SV_ENABLE": false, "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination": false, "APPTRACE_SV_DEST_JTAG": false, "APPTRACE_SV_DEST_UART": false, "component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace": false, "APPTRACE_SV_DEST_CPU_0": false, "APPTRACE_SV_DEST_CPU_1": false, "component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source": false, "APPTRACE_SV_TS_SOURCE_CCOUNT": false, "APPTRACE_SV_TS_SOURCE_GPTIMER": false, "APPTRACE_SV_TS_SOURCE_ESP_TIMER": false, "APPTRACE_SV_MAX_TASKS": false, "APPTRACE_SV_BUF_WAIT_TMO": false, "APPTRACE_SV_EVT_OVERFLOW_ENABLE": false, "APPTRACE_SV_EVT_ISR_ENTER_ENABLE": false, "APPTRACE_SV_EVT_ISR_EXIT_ENABLE": false, "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE": false, "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE": false, "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE": false, "APPTRACE_SV_EVT_TASK_START_READY_ENABLE": false, "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE": false, "APPTRACE_SV_EVT_TASK_CREATE_ENABLE": false, "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE": false, "APPTRACE_SV_EVT_IDLE_ENABLE": false, "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE": false, "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE": false, "APPTRACE_GCOV_ENABLE": false, "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE": false, "BT_ENABLED": true, "component-config-bluetooth-bluetooth-host": true, "BT_BLUEDROID_ENABLED": true, "BT_NIMBLE_ENABLED": true, "BT_CONTROLLER_ONLY": true, "component-config-bluetooth-bluetooth-controller": true, "BT_CONTROLLER_ENABLED": true, "BT_CONTROLLER_DISABLED": true, "BT_BTC_TASK_STACK_SIZE": false, "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run": false, "BT_BLUEDROID_PINNED_TO_CORE_0": false, "BT_BLUEDROID_PINNED_TO_CORE_1": false, "BT_BLUEDROID_PINNED_TO_CORE": false, "BT_BTU_TASK_STACK_SIZE": false, "BT_BLUEDROID_MEM_DEBUG": false, "BT_BLUEDROID_ESP_COEX_VSC": false, "BT_CLASSIC_ENABLED": false, "component-config-bluetooth-bluedroid-options-classic-bluetooth-configure-encryption-key-size": false, "BT_ENC_KEY_SIZE_CTRL_STD": false, "BT_ENC_KEY_SIZE_CTRL_VSC": false, "BT_ENC_KEY_SIZE_CTRL_NONE": false, "BT_CLASSIC_BQB_ENABLED": false, "BT_A2DP_ENABLE": false, "BT_AVRCP_ENABLED": false, "BT_AVRCP_CT_COVER_ART_ENABLED": false, "BT_SPP_ENABLED": false, "BT_L2CAP_ENABLED": false, "BT_SDP_COMMON_ENABLED": false, "BT_HFP_ENABLE": false, "BT_HFP_CLIENT_ENABLE": false, "BT_HFP_AG_ENABLE": false, "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path": false, "BT_HFP_AUDIO_DATA_PATH_PCM": false, "BT_HFP_AUDIO_DATA_PATH_HCI": false, "BT_HFP_WBS_ENABLE": false, "BT_HID_ENABLED": false, "BT_HID_HOST_ENABLED": false, "BT_HID_DEVICE_ENABLED": false, "BT_GOEPC_ENABLED": false, "BT_BLE_ENABLED": false, "BT_GATTS_ENABLE": false, "BT_GATTS_PPCP_CHAR_GAP": false, "BT_BLE_BLUFI_ENABLE": false, "BT_GATT_MAX_SR_PROFILES": false, "BT_GATT_MAX_SR_ATTRIBUTES": false, "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode": false, "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL": false, "BT_GATTS_SEND_SERVICE_CHANGE_AUTO": false, "BT_GATTS_SEND_SERVICE_CHANGE_MODE": false, "BT_GATTS_ROBUST_CACHING_ENABLED": false, "BT_GATTS_DEVICE_NAME_WRITABLE": false, "BT_GATTS_APPEARANCE_WRITABLE": false, "BT_GATTC_ENABLE": false, "BT_GATTC_MAX_CACHE_CHAR": false, "BT_GATTC_NOTIF_REG_MAX": false, "BT_GATTC_CACHE_NVS_FLASH": false, "BT_GATTC_CONNECT_RETRY_COUNT": false, "BT_BLE_SMP_ENABLE": false, "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE": false, "BT_BLE_SMP_ID_RESET_ENABLE": false, "BT_BLE_SMP_BOND_NVS_FLASH": false, "BT_STACK_NO_LOG": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer": false, "BT_LOG_HCI_TRACE_LEVEL_NONE": false, "BT_LOG_HCI_TRACE_LEVEL_ERROR": false, "BT_LOG_HCI_TRACE_LEVEL_WARNING": false, "BT_LOG_HCI_TRACE_LEVEL_API": false, "BT_LOG_HCI_TRACE_LEVEL_EVENT": false, "BT_LOG_HCI_TRACE_LEVEL_DEBUG": false, "BT_LOG_HCI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_HCI_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer": false, "BT_LOG_BTM_TRACE_LEVEL_NONE": false, "BT_LOG_BTM_TRACE_LEVEL_ERROR": false, "BT_LOG_BTM_TRACE_LEVEL_WARNING": false, "BT_LOG_BTM_TRACE_LEVEL_API": false, "BT_LOG_BTM_TRACE_LEVEL_EVENT": false, "BT_LOG_BTM_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTM_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTM_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer": false, "BT_LOG_L2CAP_TRACE_LEVEL_NONE": false, "BT_LOG_L2CAP_TRACE_LEVEL_ERROR": false, "BT_LOG_L2CAP_TRACE_LEVEL_WARNING": false, "BT_LOG_L2CAP_TRACE_LEVEL_API": false, "BT_LOG_L2CAP_TRACE_LEVEL_EVENT": false, "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG": false, "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_L2CAP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer": false, "BT_LOG_RFCOMM_TRACE_LEVEL_NONE": false, "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR": false, "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING": false, "BT_LOG_RFCOMM_TRACE_LEVEL_API": false, "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT": false, "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG": false, "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE": false, "BT_LOG_RFCOMM_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer": false, "BT_LOG_SDP_TRACE_LEVEL_NONE": false, "BT_LOG_SDP_TRACE_LEVEL_ERROR": false, "BT_LOG_SDP_TRACE_LEVEL_WARNING": false, "BT_LOG_SDP_TRACE_LEVEL_API": false, "BT_LOG_SDP_TRACE_LEVEL_EVENT": false, "BT_LOG_SDP_TRACE_LEVEL_DEBUG": false, "BT_LOG_SDP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_SDP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer": false, "BT_LOG_GAP_TRACE_LEVEL_NONE": false, "BT_LOG_GAP_TRACE_LEVEL_ERROR": false, "BT_LOG_GAP_TRACE_LEVEL_WARNING": false, "BT_LOG_GAP_TRACE_LEVEL_API": false, "BT_LOG_GAP_TRACE_LEVEL_EVENT": false, "BT_LOG_GAP_TRACE_LEVEL_DEBUG": false, "BT_LOG_GAP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_GAP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer": false, "BT_LOG_BNEP_TRACE_LEVEL_NONE": false, "BT_LOG_BNEP_TRACE_LEVEL_ERROR": false, "BT_LOG_BNEP_TRACE_LEVEL_WARNING": false, "BT_LOG_BNEP_TRACE_LEVEL_API": false, "BT_LOG_BNEP_TRACE_LEVEL_EVENT": false, "BT_LOG_BNEP_TRACE_LEVEL_DEBUG": false, "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BNEP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer": false, "BT_LOG_PAN_TRACE_LEVEL_NONE": false, "BT_LOG_PAN_TRACE_LEVEL_ERROR": false, "BT_LOG_PAN_TRACE_LEVEL_WARNING": false, "BT_LOG_PAN_TRACE_LEVEL_API": false, "BT_LOG_PAN_TRACE_LEVEL_EVENT": false, "BT_LOG_PAN_TRACE_LEVEL_DEBUG": false, "BT_LOG_PAN_TRACE_LEVEL_VERBOSE": false, "BT_LOG_PAN_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer": false, "BT_LOG_A2D_TRACE_LEVEL_NONE": false, "BT_LOG_A2D_TRACE_LEVEL_ERROR": false, "BT_LOG_A2D_TRACE_LEVEL_WARNING": false, "BT_LOG_A2D_TRACE_LEVEL_API": false, "BT_LOG_A2D_TRACE_LEVEL_EVENT": false, "BT_LOG_A2D_TRACE_LEVEL_DEBUG": false, "BT_LOG_A2D_TRACE_LEVEL_VERBOSE": false, "BT_LOG_A2D_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer": false, "BT_LOG_AVDT_TRACE_LEVEL_NONE": false, "BT_LOG_AVDT_TRACE_LEVEL_ERROR": false, "BT_LOG_AVDT_TRACE_LEVEL_WARNING": false, "BT_LOG_AVDT_TRACE_LEVEL_API": false, "BT_LOG_AVDT_TRACE_LEVEL_EVENT": false, "BT_LOG_AVDT_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVDT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer": false, "BT_LOG_AVCT_TRACE_LEVEL_NONE": false, "BT_LOG_AVCT_TRACE_LEVEL_ERROR": false, "BT_LOG_AVCT_TRACE_LEVEL_WARNING": false, "BT_LOG_AVCT_TRACE_LEVEL_API": false, "BT_LOG_AVCT_TRACE_LEVEL_EVENT": false, "BT_LOG_AVCT_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVCT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer": false, "BT_LOG_AVRC_TRACE_LEVEL_NONE": false, "BT_LOG_AVRC_TRACE_LEVEL_ERROR": false, "BT_LOG_AVRC_TRACE_LEVEL_WARNING": false, "BT_LOG_AVRC_TRACE_LEVEL_API": false, "BT_LOG_AVRC_TRACE_LEVEL_EVENT": false, "BT_LOG_AVRC_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVRC_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer": false, "BT_LOG_MCA_TRACE_LEVEL_NONE": false, "BT_LOG_MCA_TRACE_LEVEL_ERROR": false, "BT_LOG_MCA_TRACE_LEVEL_WARNING": false, "BT_LOG_MCA_TRACE_LEVEL_API": false, "BT_LOG_MCA_TRACE_LEVEL_EVENT": false, "BT_LOG_MCA_TRACE_LEVEL_DEBUG": false, "BT_LOG_MCA_TRACE_LEVEL_VERBOSE": false, "BT_LOG_MCA_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer": false, "BT_LOG_HID_TRACE_LEVEL_NONE": false, "BT_LOG_HID_TRACE_LEVEL_ERROR": false, "BT_LOG_HID_TRACE_LEVEL_WARNING": false, "BT_LOG_HID_TRACE_LEVEL_API": false, "BT_LOG_HID_TRACE_LEVEL_EVENT": false, "BT_LOG_HID_TRACE_LEVEL_DEBUG": false, "BT_LOG_HID_TRACE_LEVEL_VERBOSE": false, "BT_LOG_HID_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer": false, "BT_LOG_APPL_TRACE_LEVEL_NONE": false, "BT_LOG_APPL_TRACE_LEVEL_ERROR": false, "BT_LOG_APPL_TRACE_LEVEL_WARNING": false, "BT_LOG_APPL_TRACE_LEVEL_API": false, "BT_LOG_APPL_TRACE_LEVEL_EVENT": false, "BT_LOG_APPL_TRACE_LEVEL_DEBUG": false, "BT_LOG_APPL_TRACE_LEVEL_VERBOSE": false, "BT_LOG_APPL_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer": false, "BT_LOG_GATT_TRACE_LEVEL_NONE": false, "BT_LOG_GATT_TRACE_LEVEL_ERROR": false, "BT_LOG_GATT_TRACE_LEVEL_WARNING": false, "BT_LOG_GATT_TRACE_LEVEL_API": false, "BT_LOG_GATT_TRACE_LEVEL_EVENT": false, "BT_LOG_GATT_TRACE_LEVEL_DEBUG": false, "BT_LOG_GATT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_GATT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer": false, "BT_LOG_SMP_TRACE_LEVEL_NONE": false, "BT_LOG_SMP_TRACE_LEVEL_ERROR": false, "BT_LOG_SMP_TRACE_LEVEL_WARNING": false, "BT_LOG_SMP_TRACE_LEVEL_API": false, "BT_LOG_SMP_TRACE_LEVEL_EVENT": false, "BT_LOG_SMP_TRACE_LEVEL_DEBUG": false, "BT_LOG_SMP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_SMP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer": false, "BT_LOG_BTIF_TRACE_LEVEL_NONE": false, "BT_LOG_BTIF_TRACE_LEVEL_ERROR": false, "BT_LOG_BTIF_TRACE_LEVEL_WARNING": false, "BT_LOG_BTIF_TRACE_LEVEL_API": false, "BT_LOG_BTIF_TRACE_LEVEL_EVENT": false, "BT_LOG_BTIF_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTIF_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer": false, "BT_LOG_BTC_TRACE_LEVEL_NONE": false, "BT_LOG_BTC_TRACE_LEVEL_ERROR": false, "BT_LOG_BTC_TRACE_LEVEL_WARNING": false, "BT_LOG_BTC_TRACE_LEVEL_API": false, "BT_LOG_BTC_TRACE_LEVEL_EVENT": false, "BT_LOG_BTC_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTC_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTC_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer": false, "BT_LOG_OSI_TRACE_LEVEL_NONE": false, "BT_LOG_OSI_TRACE_LEVEL_ERROR": false, "BT_LOG_OSI_TRACE_LEVEL_WARNING": false, "BT_LOG_OSI_TRACE_LEVEL_API": false, "BT_LOG_OSI_TRACE_LEVEL_EVENT": false, "BT_LOG_OSI_TRACE_LEVEL_DEBUG": false, "BT_LOG_OSI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_OSI_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer": false, "BT_LOG_BLUFI_TRACE_LEVEL_NONE": false, "BT_LOG_BLUFI_TRACE_LEVEL_ERROR": false, "BT_LOG_BLUFI_TRACE_LEVEL_WARNING": false, "BT_LOG_BLUFI_TRACE_LEVEL_API": false, "BT_LOG_BLUFI_TRACE_LEVEL_EVENT": false, "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG": false, "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BLUFI_TRACE_LEVEL": false, "BT_ACL_CONNECTIONS": false, "BT_MULTI_CONNECTION_ENBALE": false, "BT_ALLOCATION_FROM_SPIRAM_FIRST": false, "BT_BLE_DYNAMIC_ENV_MEMORY": false, "BT_BLE_HOST_QUEUE_CONG_CHECK": false, "BT_SMP_ENABLE": false, "BT_SMP_MAX_BONDS": false, "BT_BLE_ACT_SCAN_REP_ADV_SCAN": false, "BT_BLE_ESTAB_LINK_CONN_TOUT": false, "BT_MAX_DEVICE_NAME_LEN": false, "BT_BLE_RPA_SUPPORTED": false, "BT_BLE_RPA_TIMEOUT": false, "BT_BLE_50_FEATURES_SUPPORTED": false, "BT_BLE_42_FEATURES_SUPPORTED": false, "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER": false, "BT_BLE_FEAT_PERIODIC_ADV_ENH": false, "BT_BLE_FEAT_CREATE_SYNC_ENH": false, "BT_BLE_HIGH_DUTY_ADV_INTERVAL": false, "BT_ABORT_WHEN_ALLOCATION_FAILS": false, "component-config-bluetooth-nimble-options-memory-allocation-strategy": true, "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL": true, "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL": false, "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT": true, "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT": false, "component-config-bluetooth-nimble-options-nimble-host-log-verbosity": true, "BT_NIMBLE_LOG_LEVEL_NONE": true, "BT_NIMBLE_LOG_LEVEL_ERROR": true, "BT_NIMBLE_LOG_LEVEL_WARNING": true, "BT_NIMBLE_LOG_LEVEL_INFO": true, "BT_NIMBLE_LOG_LEVEL_DEBUG": true, "BT_NIMBLE_LOG_LEVEL": false, "BT_NIMBLE_MAX_CONNECTIONS": true, "BT_NIMBLE_MAX_BONDS": true, "BT_NIMBLE_MAX_CCCDS": true, "BT_NIMBLE_L2CAP_COC_MAX_NUM": true, "BT_NIMBLE_L2CAP_ENHANCED_COC": false, "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run": false, "BT_NIMBLE_PINNED_TO_CORE_0": false, "BT_NIMBLE_PINNED_TO_CORE_1": false, "BT_NIMBLE_PINNED_TO_CORE": false, "BT_NIMBLE_HOST_TASK_STACK_SIZE": true, "BT_NIMBLE_ROLE_CENTRAL": true, "BT_NIMBLE_ROLE_PERIPHERAL": true, "BT_NIMBLE_ROLE_BROADCASTER": true, "BT_NIMBLE_ROLE_OBSERVER": true, "BT_NIMBLE_NVS_PERSIST": true, "BT_NIMBLE_SMP_ID_RESET": true, "BT_NIMBLE_SECURITY_ENABLE": true, "BT_NIMBLE_SM_LEGACY": true, "BT_NIMBLE_SM_SC": true, "BT_NIMBLE_SM_SC_DEBUG_KEYS": true, "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION": true, "BT_NIMBLE_SM_LVL": true, "BT_NIMBLE_SM_SC_ONLY": true, "BT_NIMBLE_DEBUG": true, "BT_NIMBLE_DYNAMIC_SERVICE": true, "BT_NIMBLE_SVC_GAP_DEVICE_NAME": true, "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN": true, "BT_NIMBLE_ATT_PREFERRED_MTU": true, "BT_NIMBLE_SVC_GAP_APPEARANCE": true, "BT_NIMBLE_MSYS_1_BLOCK_COUNT": true, "BT_NIMBLE_MSYS_1_BLOCK_SIZE": true, "BT_NIMBLE_MSYS_2_BLOCK_COUNT": true, "BT_NIMBLE_MSYS_2_BLOCK_SIZE": true, "BT_NIMBLE_MSYS_BUF_FROM_HEAP": false, "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT": true, "BT_NIMBLE_TRANSPORT_ACL_SIZE": true, "BT_NIMBLE_TRANSPORT_EVT_SIZE": true, "BT_NIMBLE_TRANSPORT_EVT_COUNT": true, "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT": true, "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT": true, "BT_NIMBLE_GATT_MAX_PROCS": true, "BT_NIMBLE_HS_FLOW_CTRL": true, "BT_NIMBLE_HS_FLOW_CTRL_ITVL": false, "BT_NIMBLE_HS_FLOW_CTRL_THRESH": false, "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT": false, "BT_NIMBLE_RPA_TIMEOUT": true, "BT_NIMBLE_MESH": true, "BT_NIMBLE_MESH_PROXY": false, "BT_NIMBLE_MESH_PROV": false, "BT_NIMBLE_MESH_PB_ADV": false, "BT_NIMBLE_MESH_PB_GATT": false, "BT_NIMBLE_MESH_GATT_PROXY": false, "BT_NIMBLE_MESH_RELAY": false, "BT_NIMBLE_MESH_LOW_POWER": false, "BT_NIMBLE_MESH_FRIEND": false, "BT_NIMBLE_MESH_DEVICE_NAME": false, "BT_NIMBLE_MESH_NODE_COUNT": false, "BT_NIMBLE_MESH_PROVISIONER": false, "BT_NIMBLE_CRYPTO_STACK_MBEDTLS": true, "BT_NIMBLE_HS_STOP_TIMEOUT_MS": true, "BT_NIMBLE_HOST_BASED_PRIVACY": false, "BT_NIMBLE_ENABLE_CONN_REATTEMPT": true, "BT_NIMBLE_MAX_CONN_REATTEMPT": true, "BT_NIMBLE_50_FEATURE_SUPPORT": true, "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY": true, "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY": true, "BT_NIMBLE_EXT_ADV": true, "BT_NIMBLE_MAX_EXT_ADV_INSTANCES": false, "BT_NIMBLE_EXT_ADV_MAX_SIZE": false, "BT_NIMBLE_ENABLE_PERIODIC_ADV": false, "BT_NIMBLE_PERIODIC_ADV_ENH": false, "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER": false, "BT_NIMBLE_PERIODIC_ADV_WITH_RESPONSES": false, "BT_NIMBLE_EXT_SCAN": true, "BT_NIMBLE_ENABLE_PERIODIC_SYNC": true, "BT_NIMBLE_MAX_PERIODIC_SYNCS": true, "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST": false, "BT_NIMBLE_BLE_POWER_CONTROL": false, "BT_NIMBLE_AOA_AOD": false, "BT_NIMBLE_GATT_CACHING": true, "BT_NIMBLE_GATT_CACHING_MAX_CONNS": false, "BT_NIMBLE_GATT_CACHING_MAX_SVCS": false, "BT_NIMBLE_GATT_CACHING_MAX_CHRS": false, "BT_NIMBLE_GATT_CACHING_MAX_DSCS": false, "BT_NIMBLE_GATT_CACHING_DISABLE_AUTO": false, "BT_NIMBLE_WHITELIST_SIZE": true, "BT_NIMBLE_TEST_THROUGHPUT_TEST": true, "BT_NIMBLE_BLUFI_ENABLE": true, "BT_NIMBLE_USE_ESP_TIMER": true, "BT_NIMBLE_LEGACY_VHCI_ENABLE": false, "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER": true, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE": true, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR": false, "component-config-bluetooth-nimble-options-gap-service-gap-characteristic-central-address-resolution": true, "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP": true, "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP": true, "BT_NIMBLE_SVC_GAP_CAR_SUPP": true, "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE": true, "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR": false, "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL": true, "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL": true, "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY": true, "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO": true, "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL": true, "BT_NIMBLE_HID_SERVICE": true, "BT_NIMBLE_SVC_HID_MAX_INSTANCES": false, "BT_NIMBLE_SVC_HID_MAX_RPTS": false, "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY": true, "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME": true, "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER": true, "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION": true, "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION": true, "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION": true, "BT_NIMBLE_SVC_DIS_SYSTEM_ID": true, "BT_NIMBLE_SVC_DIS_PNP_ID": true, "BT_NIMBLE_SVC_DIS_INCLUDED": true, "BT_NIMBLE_VS_SUPPORT": true, "BT_NIMBLE_OPTIMIZE_MULTI_CONN": false, "BT_NIMBLE_ENC_ADV_DATA": true, "BT_NIMBLE_MAX_EADS": false, "BT_NIMBLE_HIGH_DUTY_ADV_ITVL": true, "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN": true, "BT_NIMBLE_HOST_QUEUE_CONG_CHECK": true, "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT": true, "BT_NIMBLE_TRANSPORT_UART": false, "BT_NIMBLE_TRANSPORT_UART_PORT": false, "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-hci-baud-rate": false, "UART_BAUDRATE_115200": false, "UART_BAUDRATE_230400": false, "UART_BAUDRATE_460800": false, "UART_BAUDRATE_921600": false, "BT_NIMBLE_HCI_UART_BAUDRATE": false, "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-parity": false, "UART_PARITY_NONE": false, "UART_PARITY_ODD": false, "UART_PARITY_EVEN": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN": false, "BT_NIMBLE_UART_RX_PIN": false, "BT_NIMBLE_UART_TX_PIN": false, "component-config-bluetooth-nimble-options-host-controller-transport-uart-flow-control": true, "UART_HW_FLOWCTRL_DISABLE": true, "UART_HW_FLOWCTRL_CTS_RTS": true, "BT_NIMBLE_HCI_UART_FLOW_CTRL": false, "BT_NIMBLE_HCI_UART_RTS_PIN": true, "BT_NIMBLE_HCI_UART_CTS_PIN": true, "BT_NIMBLE_EATT_CHAN_NUM": true, "BT_NIMBLE_SUBRATE": true, "BT_CTRL_MODE_EFF": false, "BT_CTRL_BLE_MAX_ACT": true, "BT_CTRL_BLE_MAX_ACT_EFF": false, "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB": true, "component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run": false, "BT_CTRL_PINNED_TO_CORE_0": false, "BT_CTRL_PINNED_TO_CORE_1": false, "BT_CTRL_PINNED_TO_CORE": false, "component-config-bluetooth-controller-options-hci-mode": true, "BT_CTRL_HCI_MODE_VHCI": true, "BT_CTRL_HCI_MODE_UART_H4": true, "BT_CTRL_HCI_TL": false, "BT_CTRL_ADV_DUP_FILT_MAX": true, "component-config-bluetooth-controller-options-ble-cca-mode": true, "BT_BLE_CCA_MODE_NONE": true, "BT_BLE_CCA_MODE_HW": true, "BT_BLE_CCA_MODE_SW": true, "BT_BLE_CCA_MODE": false, "BT_CTRL_HW_CCA_VAL": true, "BT_CTRL_HW_CCA_EFF": false, "component-config-bluetooth-controller-options-connection-event-length-determination-method": true, "BT_CTRL_CE_LENGTH_TYPE_ORIG": true, "BT_CTRL_CE_LENGTH_TYPE_CE": true, "BT_CTRL_CE_LENGTH_TYPE_SD": true, "BT_CTRL_CE_LENGTH_TYPE_EFF": false, "component-config-bluetooth-controller-options-default-tx-anntena-used": true, "BT_CTRL_TX_ANTENNA_INDEX_0": true, "BT_CTRL_TX_ANTENNA_INDEX_1": true, "BT_CTRL_TX_ANTENNA_INDEX_EFF": false, "component-config-bluetooth-controller-options-default-rx-anntena-used": true, "BT_CTRL_RX_ANTENNA_INDEX_0": true, "BT_CTRL_RX_ANTENNA_INDEX_1": true, "BT_CTRL_RX_ANTENNA_INDEX_EFF": false, "component-config-bluetooth-controller-options-ble-default-tx-power-level": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N24": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N21": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N18": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N15": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N12": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N9": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N6": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N3": true, "BT_CTRL_DFT_TX_POWER_LEVEL_N0": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P3": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P6": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P9": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P12": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P15": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P18": true, "BT_CTRL_DFT_TX_POWER_LEVEL_P20": true, "BT_CTRL_DFT_TX_POWER_LEVEL_EFF": false, "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP": true, "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM": true, "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD": true, "BT_CTRL_BLE_SCAN_DUPL": true, "component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type": true, "BT_CTRL_SCAN_DUPL_TYPE_DEVICE": true, "BT_CTRL_SCAN_DUPL_TYPE_DATA": true, "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE": true, "BT_CTRL_SCAN_DUPL_TYPE": false, "BT_CTRL_SCAN_DUPL_CACHE_SIZE": true, "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD": true, "BT_CTRL_BLE_MESH_SCAN_DUPL_EN": true, "BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE": false, "component-config-bluetooth-controller-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection": true, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN": true, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS": true, "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF": false, "BT_CTRL_MODEM_SLEEP": true, "BT_CTRL_MODEM_SLEEP_MODE_1": false, "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode-1-bluetooth-low-power-clock": false, "BT_CTRL_LPCLK_SEL_MAIN_XTAL": false, "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL": false, "BT_CTRL_LPCLK_SEL_RTC_SLOW": false, "BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP": false, "BT_CTRL_SLEEP_MODE_EFF": false, "BT_CTRL_SLEEP_CLOCK_EFF": false, "BT_CTRL_HCI_TL_EFF": false, "BT_CTRL_AGC_RECORRECT_EN": true, "BT_CTRL_CODED_AGC_RECORRECT_EN": false, "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX": true, "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX": true, "BT_CTRL_CHAN_ASS_EN": true, "BT_CTRL_LE_PING_EN": true, "BT_CTRL_BLE_LLCP_CONN_UPDATE": true, "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE": true, "BT_CTRL_BLE_LLCP_PHY_UPDATE": true, "BT_CTRL_RUN_IN_FLASH_ONLY": true, "BT_CTRL_DTM_ENABLE": false, "BT_CTRL_BLE_MASTER": false, "BT_CTRL_BLE_TEST": false, "BT_CTRL_BLE_SCAN": false, "BT_CTRL_BLE_SECURITY_ENABLE": false, "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS": true, "BT_RELEASE_IRAM": false, "BT_ALARM_MAX_NUM": true, "BT_BLE_LOG_SPI_OUT_ENABLED": true, "BT_BLE_LOG_SPI_OUT_QUEUE_SIZE": false, "BT_BLE_LOG_SPI_OUT_TRANS_BUF_SIZE": false, "BT_BLE_LOG_SPI_OUT_MOSI_IO_NUM": false, "BT_BLE_LOG_SPI_OUT_SCLK_IO_NUM": false, "BT_BLE_LOG_SPI_OUT_CS_IO_NUM": false, "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED": false, "BT_BLE_LOG_SPI_OUT_SYNC_IO_NUM": false, "BT_HCI_LOG_DEBUG_EN": true, "BT_HCI_LOG_DATA_BUFFER_SIZE": false, "BT_HCI_LOG_ADV_BUFFER_SIZE": false, "BLE_MESH": true, "BLE_MESH_HCI_5_0": false, "BLE_MESH_V11_SUPPORT": false, "BLE_MESH_RANDOM_ADV_INTERVAL": false, "BLE_MESH_USE_DUPLICATE_SCAN": false, "BLE_MESH_ACTIVE_SCAN": false, "component-config-esp-ble-mesh-support-memory-allocation-strategy": false, "BLE_MESH_MEM_ALLOC_MODE_INTERNAL": false, "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL": false, "BLE_MESH_MEM_ALLOC_MODE_DEFAULT": false, "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT": false, "BLE_MESH_FREERTOS_STATIC_ALLOC": false, "component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects": false, "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL": false, "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT": false, "BLE_MESH_DEINIT": false, "BLE_MESH_SUPPORT_BLE_ADV": false, "BLE_MESH_BLE_ADV_BUF_COUNT": false, "BLE_MESH_SUPPORT_BLE_SCAN": false, "BLE_MESH_FAST_PROV": false, "BLE_MESH_NODE": false, "BLE_MESH_PROVISIONER": false, "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM": false, "BLE_MESH_MAX_PROV_NODES": false, "BLE_MESH_PBA_SAME_TIME": false, "BLE_MESH_PBG_SAME_TIME": false, "BLE_MESH_PROVISIONER_SUBNET_COUNT": false, "BLE_MESH_PROVISIONER_APP_KEY_COUNT": false, "BLE_MESH_PROVISIONER_RECV_HB": false, "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE": false, "BLE_MESH_PROV": false, "BLE_MESH_PROV_EPA": false, "BLE_MESH_CERT_BASED_PROV": false, "BLE_MESH_RECORD_FRAG_MAX_SIZE": false, "BLE_MESH_PB_ADV": false, "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL": false, "BLE_MESH_PB_GATT": false, "BLE_MESH_PROXY": false, "BLE_MESH_GATT_PROXY_SERVER": false, "BLE_MESH_NODE_ID_TIMEOUT": false, "BLE_MESH_PROXY_FILTER_SIZE": false, "BLE_MESH_PROXY_PRIVACY": false, "BLE_MESH_PROXY_SOLIC_PDU_RX": false, "BLE_MESH_PROXY_SOLIC_RX_CRPL": false, "BLE_MESH_GATT_PROXY_CLIENT": false, "BLE_MESH_PROXY_SOLIC_PDU_TX": false, "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT": false, "BLE_MESH_NET_BUF_POOL_USAGE": false, "BLE_MESH_SETTINGS": false, "BLE_MESH_STORE_TIMEOUT": false, "BLE_MESH_SEQ_STORE_RATE": false, "BLE_MESH_RPL_STORE_TIMEOUT": false, "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY": false, "BLE_MESH_SPECIFIC_PARTITION": false, "BLE_MESH_PARTITION_NAME": false, "BLE_MESH_USE_MULTIPLE_NAMESPACE": false, "BLE_MESH_MAX_NVS_NAMESPACE": false, "BLE_MESH_SUBNET_COUNT": false, "BLE_MESH_APP_KEY_COUNT": false, "BLE_MESH_MODEL_KEY_COUNT": false, "BLE_MESH_MODEL_GROUP_COUNT": false, "BLE_MESH_LABEL_COUNT": false, "BLE_MESH_CRPL": false, "BLE_MESH_NOT_RELAY_REPLAY_MSG": false, "BLE_MESH_MSG_CACHE_SIZE": false, "BLE_MESH_ADV_BUF_COUNT": false, "BLE_MESH_IVU_DIVIDER": false, "BLE_MESH_IVU_RECOVERY_IVI": false, "BLE_MESH_SAR_ENHANCEMENT": false, "BLE_MESH_TX_SEG_MSG_COUNT": false, "BLE_MESH_RX_SEG_MSG_COUNT": false, "BLE_MESH_RX_SDU_MAX": false, "BLE_MESH_TX_SEG_MAX": false, "BLE_MESH_RELAY": false, "BLE_MESH_RELAY_ADV_BUF": false, "BLE_MESH_RELAY_ADV_BUF_COUNT": false, "BLE_MESH_LOW_POWER": false, "BLE_MESH_LPN_ESTABLISHMENT": false, "BLE_MESH_LPN_AUTO": false, "BLE_MESH_LPN_AUTO_TIMEOUT": false, "BLE_MESH_LPN_RETRY_TIMEOUT": false, "BLE_MESH_LPN_RSSI_FACTOR": false, "BLE_MESH_LPN_RECV_WIN_FACTOR": false, "BLE_MESH_LPN_MIN_QUEUE_SIZE": false, "BLE_MESH_LPN_RECV_DELAY": false, "BLE_MESH_LPN_POLL_TIMEOUT": false, "BLE_MESH_LPN_INIT_POLL_TIMEOUT": false, "BLE_MESH_LPN_SCAN_LATENCY": false, "BLE_MESH_LPN_GROUPS": false, "BLE_MESH_LPN_SUB_ALL_NODES_ADDR": false, "BLE_MESH_FRIEND": false, "BLE_MESH_FRIEND_RECV_WIN": false, "BLE_MESH_FRIEND_QUEUE_SIZE": false, "BLE_MESH_FRIEND_SUB_LIST_SIZE": false, "BLE_MESH_FRIEND_LPN_COUNT": false, "BLE_MESH_FRIEND_SEG_RX": false, "BLE_MESH_NO_LOG": false, "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack": false, "BLE_MESH_TRACE_LEVEL_NONE": false, "BLE_MESH_TRACE_LEVEL_ERROR": false, "BLE_MESH_TRACE_LEVEL_WARNING": false, "BLE_MESH_TRACE_LEVEL_INFO": false, "BLE_MESH_TRACE_LEVEL_DEBUG": false, "BLE_MESH_TRACE_LEVEL_VERBOSE": false, "BLE_MESH_STACK_TRACE_LEVEL": false, "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE": false, "BLE_MESH_NET_BUF_TRACE_LEVEL": false, "BLE_MESH_CLIENT_MSG_TIMEOUT": false, "BLE_MESH_CFG_CLI": false, "BLE_MESH_HEALTH_CLI": false, "BLE_MESH_HEALTH_SRV": false, "BLE_MESH_BRC_CLI": false, "BLE_MESH_BRC_SRV": false, "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT": false, "BLE_MESH_BRIDGE_CRPL": false, "BLE_MESH_PRB_CLI": false, "BLE_MESH_PRB_SRV": false, "BLE_MESH_ODP_CLI": false, "BLE_MESH_ODP_SRV": false, "BLE_MESH_SRPL_CLI": false, "BLE_MESH_SRPL_SRV": false, "BLE_MESH_AGG_CLI": false, "BLE_MESH_AGG_SRV": false, "BLE_MESH_SAR_CLI": false, "BLE_MESH_SAR_SRV": false, "BLE_MESH_COMP_DATA_1": false, "BLE_MESH_COMP_DATA_128": false, "BLE_MESH_MODELS_METADATA_0": false, "BLE_MESH_MODELS_METADATA_128": false, "BLE_MESH_LCD_CLI": false, "BLE_MESH_LCD_SRV": false, "BLE_MESH_RPR_CLI": false, "BLE_MESH_RPR_CLI_PROV_SAME_TIME": false, "BLE_MESH_RPR_SRV": false, "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS": false, "BLE_MESH_RPR_SRV_ACTIVE_SCAN": false, "BLE_MESH_RPR_SRV_MAX_EXT_SCAN": false, "BLE_MESH_DF_CLI": false, "BLE_MESH_DF_SRV": false, "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT": false, "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT": false, "BLE_MESH_MAX_DEPS_NODES_PER_PATH": false, "BLE_MESH_PATH_MONITOR_TEST": false, "BLE_MESH_SUPPORT_DIRECTED_PROXY": false, "BLE_MESH_GENERIC_ONOFF_CLI": false, "BLE_MESH_GENERIC_LEVEL_CLI": false, "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI": false, "BLE_MESH_GENERIC_POWER_ONOFF_CLI": false, "BLE_MESH_GENERIC_POWER_LEVEL_CLI": false, "BLE_MESH_GENERIC_BATTERY_CLI": false, "BLE_MESH_GENERIC_LOCATION_CLI": false, "BLE_MESH_GENERIC_PROPERTY_CLI": false, "BLE_MESH_SENSOR_CLI": false, "BLE_MESH_TIME_CLI": false, "BLE_MESH_SCENE_CLI": false, "BLE_MESH_SCHEDULER_CLI": false, "BLE_MESH_LIGHT_LIGHTNESS_CLI": false, "BLE_MESH_LIGHT_CTL_CLI": false, "BLE_MESH_LIGHT_HSL_CLI": false, "BLE_MESH_LIGHT_XYL_CLI": false, "BLE_MESH_LIGHT_LC_CLI": false, "BLE_MESH_GENERIC_SERVER": false, "BLE_MESH_SENSOR_SERVER": false, "BLE_MESH_TIME_SCENE_SERVER": false, "BLE_MESH_LIGHTING_SERVER": false, "BLE_MESH_MBT_CLI": false, "BLE_MESH_MAX_BLOB_RECEIVERS": false, "BLE_MESH_MBT_SRV": false, "BLE_MESH_IV_UPDATE_TEST": false, "BLE_MESH_DISCARD_OLD_SEQ_AUTH": false, "BLE_MESH_SELF_TEST": false, "BLE_MESH_BQB_TEST": false, "BLE_MESH_BQB_TEST_LOG": false, "BLE_MESH_TEST_AUTO_ENTER_NETWORK": false, "BLE_MESH_TEST_USE_WHITE_LIST": false, "BLE_MESH_SHELL": false, "BLE_MESH_DEBUG": false, "BLE_MESH_DEBUG_NET": false, "BLE_MESH_DEBUG_TRANS": false, "BLE_MESH_DEBUG_BEACON": false, "BLE_MESH_DEBUG_CRYPTO": false, "BLE_MESH_DEBUG_PROV": false, "BLE_MESH_DEBUG_ACCESS": false, "BLE_MESH_DEBUG_MODEL": false, "BLE_MESH_DEBUG_ADV": false, "BLE_MESH_DEBUG_LOW_POWER": false, "BLE_MESH_DEBUG_FRIEND": false, "BLE_MESH_DEBUG_PROXY": false, "BLE_MESH_EXPERIMENTAL": false, "CONSOLE_SORTED_HELP": true, "TWAI_ISR_IN_IRAM": true, "TWAI_ERRATA_FIX_BUS_OFF_REC": false, "TWAI_ERRATA_FIX_TX_INTR_LOST": false, "TWAI_ERRATA_FIX_RX_FRAME_INVALID": false, "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT": false, "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, "ADC_DISABLE_DAC": false, "ADC_SUPPRESS_DEPRECATE_WARN": true, "ADC_SKIP_LEGACY_CONFLICT_CHECK": true, "ADC_CAL_EFUSE_TP_ENABLE": false, "ADC_CAL_EFUSE_VREF_ENABLE": false, "ADC_CAL_LUT_ENABLE": false, "ADC_CALI_SUPPRESS_DEPRECATE_WARN": true, "DAC_SUPPRESS_DEPRECATE_WARN": false, "DAC_SKIP_LEGACY_CONFLICT_CHECK": false, "MCPWM_SUPPRESS_DEPRECATE_WARN": false, "MCPWM_SKIP_LEGACY_CONFLICT_CHECK": false, "GPTIMER_SUPPRESS_DEPRECATE_WARN": true, "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": true, "RMT_SUPPRESS_DEPRECATE_WARN": true, "RMT_SKIP_LEGACY_CONFLICT_CHECK": true, "I2S_SUPPRESS_DEPRECATE_WARN": true, "I2S_SKIP_LEGACY_CONFLICT_CHECK": true, "PCNT_SUPPRESS_DEPRECATE_WARN": false, "PCNT_SKIP_LEGACY_CONFLICT_CHECK": false, "SDM_SUPPRESS_DEPRECATE_WARN": true, "SDM_SKIP_LEGACY_CONFLICT_CHECK": true, "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": true, "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": true, "EFUSE_CUSTOM_TABLE": true, "EFUSE_CUSTOM_TABLE_FILENAME": false, "EFUSE_VIRTUAL": true, "EFUSE_VIRTUAL_KEEP_IN_FLASH": false, "EFUSE_VIRTUAL_LOG_ALL_WRITES": false, "component-config-efuse-bit-manager-coding-scheme-compatibility": false, "EFUSE_CODE_SCHEME_COMPAT_NONE": false, "EFUSE_CODE_SCHEME_COMPAT_3_4": false, "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, "EFUSE_MAX_BLK_LEN": false, "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-": true, "ESP_TLS_USING_MBEDTLS": true, "ESP_TLS_USING_WOLFSSL": false, "ESP_TLS_USE_SECURE_ELEMENT": false, "ESP_TLS_USE_DS_PERIPHERAL": true, "ESP_TLS_CLIENT_SESSION_TICKETS": true, "ESP_TLS_SERVER_SESSION_TICKETS": true, "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT": false, "ESP_TLS_SERVER_CERT_SELECT_HOOK": true, "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": true, "ESP_TLS_PSK_VERIFICATION": true, "ESP_TLS_INSECURE": true, "ESP_TLS_SKIP_SERVER_CERT_VERIFY": false, "ESP_DEBUG_WOLFSSL": false, "ESP_TLS_OCSP_CHECKALL": false, "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": true, "ADC_CONTINUOUS_ISR_IRAM_SAFE": true, "ADC_CALI_EFUSE_TP_ENABLE": false, "ADC_CALI_EFUSE_VREF_ENABLE": false, "ADC_CALI_LUT_ENABLE": false, "ADC_DISABLE_DAC_OUTPUT": false, "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": true, "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3": true, "ADC_ENABLE_DEBUG_LOG": true, "ESP_COEX_ENABLED": false, "ESP_COEX_SW_COEXIST_ENABLE": true, "ESP_COEX_EXTERNAL_COEXIST_ENABLE": false, "ESP_COEX_POWER_MANAGEMENT": true, "ESP_COEX_GPIO_DEBUG": true, "component-config-wireless-coexistence-gpio-debugging-for-coexistence-debugging-diagram": false, "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL": false, "ESP_COEX_GPIO_DEBUG_DIAG_WIFI": false, "ESP_COEX_GPIO_DEBUG_IO_COUNT": false, "ESP_COEX_GPIO_DEBUG_IO_IDX0": false, "ESP_COEX_GPIO_DEBUG_IO_IDX1": false, "ESP_COEX_GPIO_DEBUG_IO_IDX2": false, "ESP_COEX_GPIO_DEBUG_IO_IDX3": false, "ESP_COEX_GPIO_DEBUG_IO_IDX4": false, "ESP_COEX_GPIO_DEBUG_IO_IDX5": false, "ESP_COEX_GPIO_DEBUG_IO_IDX6": false, "ESP_COEX_GPIO_DEBUG_IO_IDX7": false, "ESP_COEX_GPIO_DEBUG_IO_IDX8": false, "ESP_COEX_GPIO_DEBUG_IO_IDX9": false, "ESP_COEX_GPIO_DEBUG_IO_IDX10": false, "ESP_COEX_GPIO_DEBUG_IO_IDX11": false, "ESP_ERR_TO_NAME_LOOKUP": true, "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY": false, "ANA_CMPR_ISR_IRAM_SAFE": false, "ANA_CMPR_CTRL_FUNC_IN_IRAM": false, "ANA_CMPR_ENABLE_DEBUG_LOG": false, "CAM_CTLR_MIPI_CSI_ISR_IRAM_SAFE": false, "CAM_CTLR_ISP_DVP_ISR_IRAM_SAFE": false, "CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE": false, "DAC_CTRL_FUNC_IN_IRAM": false, "DAC_ISR_IRAM_SAFE": false, "DAC_ENABLE_DEBUG_LOG": false, "DAC_DMA_AUTO_16BIT_ALIGN": false, "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL": false, "GPIO_CTRL_FUNC_IN_IRAM": true, "GPTIMER_ISR_HANDLER_IN_IRAM": true, "GPTIMER_CTRL_FUNC_IN_IRAM": true, "GPTIMER_ISR_IRAM_SAFE": true, "GPTIMER_ENABLE_DEBUG_LOG": true, "I2C_ISR_IRAM_SAFE": true, "I2C_ENABLE_DEBUG_LOG": true, "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": true, "I2S_ISR_IRAM_SAFE": true, "I2S_ENABLE_DEBUG_LOG": true, "ISP_ISR_IRAM_SAFE": false, "ISP_CTRL_FUNC_IN_IRAM": false, "JPEG_ENABLE_DEBUG_LOG": false, "LEDC_CTRL_FUNC_IN_IRAM": true, "MCPWM_ISR_IRAM_SAFE": false, "MCPWM_CTRL_FUNC_IN_IRAM": false, "MCPWM_ENABLE_DEBUG_LOG": false, "PARLIO_ENABLE_DEBUG_LOG": false, "PARLIO_ISR_IRAM_SAFE": false, "PCNT_CTRL_FUNC_IN_IRAM": false, "PCNT_ISR_IRAM_SAFE": false, "PCNT_ENABLE_DEBUG_LOG": false, "RMT_ISR_IRAM_SAFE": true, "RMT_RECV_FUNC_IN_IRAM": true, "RMT_ENABLE_DEBUG_LOG": true, "SDM_CTRL_FUNC_IN_IRAM": true, "SDM_ENABLE_DEBUG_LOG": true, "SPI_MASTER_IN_IRAM": true, "SPI_MASTER_ISR_IN_IRAM": true, "SPI_SLAVE_IN_IRAM": true, "SPI_SLAVE_ISR_IN_IRAM": true, "TOUCH_CTRL_FUNC_IN_IRAM": false, "TOUCH_ISR_IRAM_SAFE": false, "TOUCH_ENABLE_DEBUG_LOG": false, "TEMP_SENSOR_ENABLE_DEBUG_LOG": true, "TEMP_SENSOR_ISR_IRAM_SAFE": false, "UART_ISR_IN_IRAM": true, "USJ_ENABLE_USB_SERIAL_JTAG": true, "USJ_NO_AUTO_LS_ON_CONNECTION": false, "ETH_ENABLED": false, "ETH_USE_ESP32_EMAC": false, "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface": false, "ETH_PHY_INTERFACE_RMII": false, "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode": false, "ETH_RMII_CLK_INPUT": false, "ETH_RMII_CLK_OUTPUT": false, "ETH_RMII_CLK_IN_GPIO": false, "ETH_RMII_CLK_OUTPUT_GPIO0": false, "ETH_RMII_CLK_OUT_GPIO": false, "ETH_DMA_BUFFER_SIZE": false, "ETH_DMA_RX_BUFFER_NUM": false, "ETH_DMA_TX_BUFFER_NUM": false, "ETH_SOFT_FLOW_CONTROL": false, "ETH_IRAM_OPTIMIZATION": false, "ETH_USE_SPI_ETHERNET": true, "ETH_SPI_ETHERNET_DM9051": true, "ETH_SPI_ETHERNET_W5500": true, "ETH_SPI_ETHERNET_KSZ8851SNL": true, "ETH_USE_OPENETH": true, "ETH_OPENETH_DMA_RX_BUFFER_NUM": false, "ETH_OPENETH_DMA_TX_BUFFER_NUM": false, "ETH_TRANSMIT_MUTEX": true, "ESP_EVENT_LOOP_PROFILING": true, "ESP_EVENT_POST_FROM_ISR": true, "ESP_EVENT_POST_FROM_IRAM_ISR": true, "ESP_GDBSTUB_ENABLED": false, "ESP_SYSTEM_GDBSTUB_RUNTIME": true, "ESP_GDBSTUB_SUPPORT_TASKS": true, "ESP_GDBSTUB_MAX_TASKS": true, "ESPHID_TASK_SIZE_BT": true, "ESPHID_TASK_SIZE_BLE": true, "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": true, "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": true, "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT": true, "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": true, "HTTPD_MAX_REQ_HDR_LEN": true, "HTTPD_MAX_URI_LEN": true, "HTTPD_ERR_RESP_NO_DELAY": true, "HTTPD_PURGE_BUF_LEN": true, "HTTPD_LOG_PURGE_DATA": true, "HTTPD_WS_SUPPORT": true, "HTTPD_QUEUE_WORK_BLOCKING": true, "HTTPD_SERVER_EVENT_POST_TIMEOUT": true, "ESP_HTTPS_OTA_DECRYPT_CB": true, "ESP_HTTPS_OTA_ALLOW_HTTP": true, "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT": true, "ESP_HTTPS_SERVER_ENABLE": true, "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT": true, "component-config-hardware-settings-chip-revision-minimum-supported-esp32-c3-revision": true, "ESP32C3_REV_MIN_0": true, "ESP32C3_REV_MIN_1": true, "ESP32C3_REV_MIN_2": true, "ESP32C3_REV_MIN_3": true, "ESP32C3_REV_MIN_4": true, "ESP32C3_REV_MIN_101": true, "ESP32C3_REV_MIN_FULL": false, "ESP_REV_MIN_FULL": false, "ESP32C3_REV_MAX_FULL": false, "ESP_REV_MAX_FULL": false, "ESP_EFUSE_BLOCK_REV_MIN_FULL": true, "ESP_EFUSE_BLOCK_REV_MAX_FULL": false, "ESP_REV_NEW_CHIP_TEST": false, "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": false, "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": false, "ESP_MAC_ADDR_UNIVERSE_BT": false, "ESP_MAC_ADDR_UNIVERSE_ETH": false, "ESP_MAC_ADDR_UNIVERSE_IEEE802154": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": false, "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address": true, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO": true, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32C3_UNIVERSAL_MAC_ADDRESSES": false, "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": true, "ESP_SLEEP_POWER_DOWN_FLASH": true, "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND": false, "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": false, "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": true, "ESP_SLEEP_CACHE_SAFE_ASSERTION": true, "ESP_SLEEP_DEBUG": true, "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, "ESP_SLEEP_EVENT_CALLBACKS": false, "component-config-hardware-settings-rtc-clock-config-rtc-clock-source": true, "RTC_CLK_SRC_INT_RC": true, "RTC_CLK_SRC_EXT_CRYS": true, "RTC_CLK_SRC_EXT_OSC": true, "RTC_CLK_SRC_INT_8MD256": true, "RTC_CLK_CAL_CYCLES": true, "PERIPH_CTRL_FUNC_IN_IRAM": true, "ETM_ENABLE_DEBUG_LOG": false, "GDMA_CTRL_FUNC_IN_IRAM": true, "GDMA_ISR_IRAM_SAFE": true, "GDMA_ENABLE_DEBUG_LOG": true, "DW_GDMA_CTRL_FUNC_IN_IRAM": false, "DW_GDMA_SETTER_FUNC_IN_IRAM": false, "DW_GDMA_GETTER_FUNC_IN_IRAM": false, "DW_GDMA_ISR_IRAM_SAFE": false, "DW_GDMA_OBJ_DRAM_SAFE": false, "DW_GDMA_ENABLE_DEBUG_LOG": false, "DMA2D_OPERATION_FUNC_IN_IRAM": false, "DMA2D_ISR_IRAM_SAFE": false, "component-config-hardware-settings-main-xtal-config-main-xtal-frequency": true, "XTAL_FREQ_40": true, "XTAL_FREQ": false, "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING": false, "ESP_BRINGUP_BYPASS_RANDOM_SETTING": false, "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": false, "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM": false, "ESP_CLK_RC32K_NOT_TO_USE": false, "LCD_ENABLE_DEBUG_LOG": true, "LCD_RGB_ISR_IRAM_SAFE": false, "LCD_RGB_RESTART_IN_VSYNC": false, "LCD_DSI_ISR_IRAM_SAFE": false, "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS": false, "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN": false, "ESP_NETIF_IP_LOST_TIMER_INTERVAL": true, "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": true, "component-config-esp-netif-adapter-tcp-ip-stack-library": true, "ESP_NETIF_TCPIP_LWIP": true, "ESP_NETIF_LOOPBACK": true, "ESP_NETIF_USES_TCPIP_WITH_BSD_API": false, "ESP_NETIF_REPORT_DATA_TRAFFIC": true, "ESP_NETIF_RECEIVE_REPORT_ERRORS": true, "ESP_NETIF_L2_TAP": true, "ESP_NETIF_L2_TAP_MAX_FDS": false, "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE": false, "ESP_NETIF_BRIDGE_EN": true, "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": true, "ESP_PARTITION_ENABLE_STATS": false, "ESP_PARTITION_ERASE_CHECK": false, "ESP_PHY_ENABLED": false, "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, "ESP_PHY_INIT_DATA_IN_PARTITION": true, "ESP_PHY_DEFAULT_INIT_IF_INVALID": false, "ESP_PHY_MULTIPLE_INIT_DATA_BIN": false, "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED": false, "ESP_PHY_INIT_DATA_ERROR": false, "ESP_PHY_MAX_WIFI_TX_POWER": true, "ESP_PHY_MAX_TX_POWER": false, "ESP_PHY_MAC_BB_PD": false, "ESP_PHY_REDUCE_TX_POWER": true, "ESP_PHY_ENABLE_USB": true, "ESP_PHY_ENABLE_CERT_TEST": true, "component-config-phy-calibration-mode": true, "ESP_PHY_RF_CAL_PARTIAL": true, "ESP_PHY_RF_CAL_NONE": true, "ESP_PHY_RF_CAL_FULL": true, "ESP_PHY_CALIBRATION_MODE": false, "ESP_PHY_IMPROVE_RX_11B": false, "ESP_PHY_PLL_TRACK_DEBUG": true, "ESP_PHY_RECORD_USED_TIME": true, "PM_ENABLE": true, "PM_DFS_INIT_AUTO": false, "PM_PROFILING": false, "PM_TRACE": false, "PM_SLP_IRAM_OPT": true, "PM_RTOS_IDLE_OPT": false, "PM_SLP_DISABLE_GPIO": false, "PM_SLP_DEFAULT_PARAMS_OPT": false, "PM_CHECK_SLEEP_RETENTION_FRAME": false, "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL": false, "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP": false, "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP": false, "PM_UPDATE_CCOMPARE_HLI_WORKAROUND": false, "PM_LIGHT_SLEEP_CALLBACKS": false, "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": true, "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH": false, "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": false, "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL": false, "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL": false, "component-config-esp-system-settings-cpu-frequency": true, "ESP_DEFAULT_CPU_FREQ_MHZ_40": false, "ESP_DEFAULT_CPU_FREQ_MHZ_80": true, "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, "ESP_DEFAULT_CPU_FREQ_MHZ": false, "component-config-esp-system-settings-panic-handler-behaviour": true, "ESP_SYSTEM_PANIC_PRINT_HALT": true, "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, "ESP_SYSTEM_PANIC_SILENT_REBOOT": true, "ESP_SYSTEM_PANIC_GDBSTUB": true, "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": true, "ESP_SYSTEM_SINGLE_CORE_MODE": false, "ESP_SYSTEM_RTC_EXT_XTAL": false, "ESP_SYSTEM_RTC_EXT_OSC": false, "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES": false, "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": false, "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, "ESP_SYSTEM_USE_EH_FRAME": true, "ESP_SYSTEM_PMP_IDRAM_SPLIT": false, "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE": false, "ESP_SYSTEM_MEMPROT_FEATURE": true, "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, "ESP_SYSTEM_EVENT_QUEUE_SIZE": true, "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": true, "ESP_MAIN_TASK_STACK_SIZE": true, "component-config-esp-system-settings-main-task-core-affinity": true, "ESP_MAIN_TASK_AFFINITY_CPU0": true, "ESP_MAIN_TASK_AFFINITY_CPU1": false, "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": true, "ESP_MAIN_TASK_AFFINITY": false, "ESP_MINIMAL_SHARED_STACK_SIZE": true, "component-config-esp-system-settings-channel-for-console-output": true, "ESP_CONSOLE_UART_DEFAULT": true, "ESP_CONSOLE_USB_CDC": false, "ESP_CONSOLE_USB_SERIAL_JTAG": true, "ESP_CONSOLE_UART_CUSTOM": true, "ESP_CONSOLE_NONE": true, "component-config-esp-system-settings-channel-for-console-secondary-output": true, "ESP_CONSOLE_SECONDARY_NONE": true, "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": false, "ESP_CONSOLE_UART": false, "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-": false, "ESP_CONSOLE_UART_CUSTOM_NUM_0": false, "ESP_CONSOLE_UART_CUSTOM_NUM_1": false, "ESP_CONSOLE_UART_NUM": false, "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": false, "ESP_CONSOLE_UART_TX_GPIO": false, "ESP_CONSOLE_UART_RX_GPIO": false, "ESP_CONSOLE_UART_BAUDRATE": false, "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE": false, "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF": false, "ESP_INT_WDT": true, "ESP_INT_WDT_TIMEOUT_MS": true, "ESP_INT_WDT_CHECK_CPU1": false, "ESP_TASK_WDT_EN": true, "ESP_TASK_WDT_USE_ESP_TIMER": false, "ESP_TASK_WDT_INIT": true, "ESP_TASK_WDT_PANIC": true, "ESP_TASK_WDT_TIMEOUT_S": true, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": false, "ESP_XT_WDT": false, "ESP_XT_WDT_TIMEOUT": false, "ESP_XT_WDT_BACKUP_CLK_ENABLE": false, "ESP_PANIC_HANDLER_IRAM": true, "ESP_DEBUG_STUBS_ENABLE": true, "ESP_DEBUG_INCLUDE_OCD_STUB_BINS": false, "ESP_DEBUG_OCDAWARE": true, "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks": true, "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, "ESP_BROWNOUT_DET": true, "component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level": true, "ESP_BROWNOUT_DET_LVL_SEL_7": true, "ESP_BROWNOUT_DET_LVL_SEL_6": true, "ESP_BROWNOUT_DET_LVL_SEL_5": true, "ESP_BROWNOUT_DET_LVL_SEL_4": true, "ESP_BROWNOUT_DET_LVL_SEL_3": true, "ESP_BROWNOUT_DET_LVL_SEL_2": true, "ESP_BROWNOUT_DET_LVL": false, "ESP_SYSTEM_BROWNOUT_INTR": false, "ESP_SYSTEM_HW_STACK_GUARD": true, "ESP_SYSTEM_BBPLL_RECALIB": false, "ESP_SYSTEM_HW_PC_RECORD": true, "ESP_IPC_TASK_STACK_SIZE": true, "ESP_IPC_USES_CALLERS_PRIORITY": false, "ESP_IPC_ISR_ENABLE": false, "ESP_TIMER_PROFILING": true, "ESP_TIME_FUNCS_USE_RTC_TIMER": false, "ESP_TIME_FUNCS_USE_ESP_TIMER": false, "ESP_TIME_FUNCS_USE_NONE": false, "ESP_TIMER_TASK_STACK_SIZE": true, "ESP_TIMER_INTERRUPT_LEVEL": true, "ESP_TIMER_SHOW_EXPERIMENTAL": true, "ESP_TIMER_TASK_AFFINITY": false, "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity": true, "ESP_TIMER_TASK_AFFINITY_CPU0": true, "ESP_TIMER_TASK_AFFINITY_CPU1": false, "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY": false, "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity": true, "ESP_TIMER_ISR_AFFINITY_CPU0": true, "ESP_TIMER_ISR_AFFINITY_CPU1": false, "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY": false, "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": true, "ESP_TIMER_IMPL_TG0_LAC": false, "ESP_TIMER_IMPL_SYSTIMER": false, "ESP_WIFI_ENABLED": false, "ESP_HOST_WIFI_ENABLED": false, "ESP_WIFI_CONTROLLER_TARGET": false, "ESP_WIFI_TARGET_ESP32": false, "ESP_WIFI_STATIC_RX_BUFFER_NUM": true, "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": true, "component-config-wi-fi-type-of-wifi-tx-buffers": true, "ESP_WIFI_STATIC_TX_BUFFER": true, "ESP_WIFI_DYNAMIC_TX_BUFFER": true, "ESP_WIFI_TX_BUFFER_TYPE": false, "ESP_WIFI_STATIC_TX_BUFFER_NUM": false, "ESP_WIFI_CACHE_TX_BUFFER_NUM": false, "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": true, "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers": true, "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": false, "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": true, "ESP_WIFI_CSI_ENABLED": true, "ESP_WIFI_AMPDU_TX_ENABLED": true, "ESP_WIFI_TX_BA_WIN": true, "ESP_WIFI_AMPDU_RX_ENABLED": true, "ESP_WIFI_RX_BA_WIN": true, "ESP_WIFI_AMSDU_TX_ENABLED": false, "ESP_WIFI_NVS_ENABLED": true, "component-config-wi-fi-wifi-task-core-id": false, "ESP_WIFI_TASK_PINNED_TO_CORE_0": false, "ESP_WIFI_TASK_PINNED_TO_CORE_1": false, "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": true, "ESP_WIFI_MGMT_SBUF_NUM": true, "ESP_WIFI_IRAM_OPT": true, "ESP_WIFI_EXTRA_IRAM_OPT": true, "ESP_WIFI_RX_IRAM_OPT": true, "ESP_WIFI_ENABLE_WPA3_SAE": true, "ESP_WIFI_ENABLE_SAE_PK": true, "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, "ESP_WIFI_SLP_IRAM_OPT": true, "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": true, "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": true, "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": true, "ESP_WIFI_FTM_ENABLE": true, "ESP_WIFI_FTM_INITIATOR_SUPPORT": false, "ESP_WIFI_FTM_RESPONDER_SUPPORT": false, "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, "ESP_WIFI_GCMP_SUPPORT": true, "ESP_WIFI_GMAC_SUPPORT": true, "ESP_WIFI_SOFTAP_SUPPORT": true, "ESP_WIFI_ENHANCED_LIGHT_SLEEP": false, "ESP_WIFI_SLP_BEACON_LOST_OPT": true, "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT": false, "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD": false, "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME": false, "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME": false, "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": true, "ESP_WIFI_NAN_ENABLE": false, "ESP_WIFI_MBEDTLS_CRYPTO": true, "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, "ESP_WIFI_EAP_TLS1_3": false, "ESP_WIFI_WAPI_PSK": true, "ESP_WIFI_SUITE_B_192": true, "ESP_WIFI_11KV_SUPPORT": true, "ESP_WIFI_RRM_SUPPORT": false, "ESP_WIFI_WNM_SUPPORT": false, "ESP_WIFI_SCAN_CACHE": false, "ESP_WIFI_MBO_SUPPORT": true, "ESP_WIFI_ENABLE_ROAMING_APP": false, "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING": false, "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD": false, "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET": false, "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR": false, "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD": false, "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL": false, "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF": false, "ESP_WIFI_ROAMING_LEGACY_ROAMING": false, "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM": false, "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT": false, "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME": false, "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME": false, "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME": false, "ESP_WIFI_ROAMING_SCAN_CHAN_LIST": false, "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW": false, "ESP_WIFI_ROAMING_MAX_CANDIDATES": false, "ESP_WIFI_ROAMING_BACKOFF_TIME": false, "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING": false, "ESP_WIFI_ROAMING_RRM_MONITOR_TIME": false, "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD": false, "ESP_WIFI_DPP_SUPPORT": true, "ESP_WIFI_11R_SUPPORT": true, "ESP_WIFI_WPS_SOFTAP_REGISTRAR": true, "ESP_WIFI_ENABLE_WIFI_TX_STATS": false, "ESP_WIFI_ENABLE_WIFI_RX_STATS": false, "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS": false, "ESP_WIFI_TX_HETB_QUEUE_NUM": false, "ESP_WIFI_ENABLE_DUMP_HESIGB": false, "ESP_WIFI_ENABLE_DUMP_MU_CFO": false, "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA": false, "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP": false, "ESP_WIFI_WPS_STRICT": true, "ESP_WIFI_WPS_PASSPHRASE": true, "ESP_WIFI_DEBUG_PRINT": true, "ESP_WIFI_TESTING_OPTIONS": true, "ESP_WIFI_ENTERPRISE_SUPPORT": true, "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": true, "component-config-core-dump-data-destination": true, "ESP_COREDUMP_ENABLE_TO_FLASH": true, "ESP_COREDUMP_ENABLE_TO_UART": true, "ESP_COREDUMP_ENABLE_TO_NONE": true, "component-config-core-dump-core-dump-data-format": false, "ESP_COREDUMP_DATA_FORMAT_BIN": false, "ESP_COREDUMP_DATA_FORMAT_ELF": false, "component-config-core-dump-core-dump-data-integrity-check": false, "ESP_COREDUMP_CHECKSUM_CRC32": false, "ESP_COREDUMP_CHECKSUM_SHA256": false, "ESP_COREDUMP_CAPTURE_DRAM": false, "ESP_COREDUMP_CHECK_BOOT": false, "ESP_COREDUMP_ENABLE": false, "ESP_COREDUMP_LOGS": false, "ESP_COREDUMP_MAX_TASKS_NUM": false, "ESP_COREDUMP_UART_DELAY": false, "ESP_COREDUMP_FLASH_NO_OVERWRITE": false, "ESP_COREDUMP_USE_STACK_SIZE": false, "ESP_COREDUMP_STACK_SIZE": false, "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE": false, "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor": false, "ESP_COREDUMP_DECODE_INFO": false, "ESP_COREDUMP_DECODE_DISABLE": false, "ESP_COREDUMP_DECODE": false, "FATFS_VOLUME_COUNT": true, "component-config-fat-filesystem-support-long-filename-support": true, "FATFS_LFN_NONE": true, "FATFS_LFN_HEAP": true, "FATFS_LFN_STACK": true, "component-config-fat-filesystem-support-sector-size": true, "FATFS_SECTOR_512": true, "FATFS_SECTOR_4096": true, "component-config-fat-filesystem-support-oem-code-page": true, "FATFS_CODEPAGE_DYNAMIC": true, "FATFS_CODEPAGE_437": true, "FATFS_CODEPAGE_720": true, "FATFS_CODEPAGE_737": true, "FATFS_CODEPAGE_771": true, "FATFS_CODEPAGE_775": true, "FATFS_CODEPAGE_850": true, "FATFS_CODEPAGE_852": true, "FATFS_CODEPAGE_855": true, "FATFS_CODEPAGE_857": true, "FATFS_CODEPAGE_860": true, "FATFS_CODEPAGE_861": true, "FATFS_CODEPAGE_862": true, "FATFS_CODEPAGE_863": true, "FATFS_CODEPAGE_864": true, "FATFS_CODEPAGE_865": true, "FATFS_CODEPAGE_866": true, "FATFS_CODEPAGE_869": true, "FATFS_CODEPAGE_932": true, "FATFS_CODEPAGE_936": true, "FATFS_CODEPAGE_949": true, "FATFS_CODEPAGE_950": true, "FATFS_CODEPAGE": false, "FATFS_MAX_LFN": false, "component-config-fat-filesystem-support-api-character-encoding": false, "FATFS_API_ENCODING_ANSI_OEM": false, "FATFS_API_ENCODING_UTF_8": false, "FATFS_FS_LOCK": true, "FATFS_TIMEOUT_MS": true, "FATFS_PER_FILE_CACHE": true, "FATFS_ALLOC_PREFER_EXTRAM": false, "FATFS_USE_FASTSEEK": true, "component-config-fat-filesystem-support-enable-string-functions-f_gets-f_putc-f_puts-and-f_printf-": true, "FATFS_USE_STRFUNC_NONE": true, "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV": true, "FATFS_USE_STRFUNC_WITH_CRLF_CONV": true, "FATFS_PRINT_LLI": false, "FATFS_PRINT_FLOAT": false, "component-config-fat-filesystem-support-fatfs-string-functions-convert-character-encoding": false, "FATFS_STRF_ENCODE_ANSI": false, "FATFS_STRF_ENCODE_UTF16LE": false, "FATFS_STRF_ENCODE_UTF16BE": false, "FATFS_STRF_ENCODE_UTF8": false, "FATFS_FAST_SEEK_BUFFER_SIZE": false, "FATFS_VFS_FSTAT_BLKSIZE": true, "FATFS_IMMEDIATE_FSYNC": true, "FATFS_USE_LABEL": true, "FATFS_LINK_LOCK": true, "FATFS_USE_DYN_BUFFERS": false, "FREERTOS_SMP": true, "FREERTOS_UNICORE": true, "FREERTOS_HZ": true, "FREERTOS_OPTIMIZED_SCHEDULER": true, "component-config-freertos-kernel-configcheck_for_stack_overflow": true, "FREERTOS_CHECK_STACKOVERFLOW_NONE": true, "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": true, "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": true, "FREERTOS_IDLE_TASK_STACKSIZE": true, "FREERTOS_USE_IDLE_HOOK": true, "FREERTOS_USE_PASSIVE_IDLE_HOOK": false, "FREERTOS_USE_TICK_HOOK": true, "FREERTOS_MAX_TASK_NAME_LEN": true, "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": true, "FREERTOS_USE_TIMERS": true, "FREERTOS_TIMER_SERVICE_TASK_NAME": true, "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity": true, "FREERTOS_TIMER_TASK_AFFINITY_CPU0": true, "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, "FREERTOS_TIMER_TASK_NO_AFFINITY": true, "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": false, "FREERTOS_TIMER_TASK_PRIORITY": true, "FREERTOS_TIMER_TASK_STACK_DEPTH": true, "FREERTOS_TIMER_QUEUE_LENGTH": true, "FREERTOS_QUEUE_REGISTRY_SIZE": true, "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": true, "FREERTOS_USE_TRACE_FACILITY": true, "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS": false, "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": true, "FREERTOS_VTASKLIST_INCLUDE_COREID": false, "FREERTOS_GENERATE_RUN_TIME_STATS": true, "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type": false, "FREERTOS_RUN_TIME_COUNTER_TYPE_U32": false, "FREERTOS_RUN_TIME_COUNTER_TYPE_U64": false, "FREERTOS_USE_TICKLESS_IDLE": false, "FREERTOS_IDLE_TIME_BEFORE_SLEEP": false, "FREERTOS_USE_APPLICATION_TASK_TAG": true, "FREERTOS_TASK_FUNCTION_WRAPPER": true, "FREERTOS_WATCHPOINT_END_OF_STACK": true, "FREERTOS_TLSP_DELETION_CALLBACKS": true, "FREERTOS_TASK_PRE_DELETION_HOOK": true, "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": true, "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, "FREERTOS_ISR_STACKSIZE": true, "FREERTOS_INTERRUPT_BACKTRACE": true, "FREERTOS_FPU_IN_ISR": false, "FREERTOS_TICK_SUPPORT_CORETIMER": false, "FREERTOS_TICK_SUPPORT_SYSTIMER": false, "component-config-freertos-port-tick-timer-source-xtensa-only-": true, "FREERTOS_CORETIMER_0": false, "FREERTOS_CORETIMER_1": false, "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, "FREERTOS_CORETIMER_SYSTIMER_LVL3": true, "FREERTOS_SYSTICK_USES_SYSTIMER": false, "FREERTOS_SYSTICK_USES_CCOUNT": false, "component-config-freertos-port-choose-the-clock-source-for-run-time-stats": false, "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER": false, "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK": false, "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": true, "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": true, "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM": false, "FREERTOS_PORT": false, "FREERTOS_NO_AFFINITY": false, "FREERTOS_SUPPORT_STATIC_ALLOCATION": false, "FREERTOS_DEBUG_OCDAWARE": false, "FREERTOS_ENABLE_TASK_SNAPSHOT": false, "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false, "FREERTOS_NUMBER_OF_CORES": false, "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level": true, "HAL_ASSERTION_EQUALS_SYSTEM": true, "HAL_ASSERTION_DISABLE": true, "HAL_ASSERTION_SILENT": true, "HAL_ASSERTION_ENABLE": true, "HAL_DEFAULT_ASSERTION_LEVEL": false, "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity": false, "HAL_LOG_LEVEL_NONE": false, "HAL_LOG_LEVEL_ERROR": false, "HAL_LOG_LEVEL_WARN": false, "HAL_LOG_LEVEL_INFO": false, "HAL_LOG_LEVEL_DEBUG": false, "HAL_LOG_LEVEL_VERBOSE": false, "HAL_LOG_LEVEL": false, "HAL_SYSTIMER_USE_ROM_IMPL": false, "HAL_WDT_USE_ROM_IMPL": false, "HAL_SPI_MASTER_FUNC_IN_IRAM": false, "HAL_SPI_SLAVE_FUNC_IN_IRAM": false, "HAL_ECDSA_GEN_SIG_CM": false, "component-config-heap-memory-debugging-heap-corruption-detection": true, "HEAP_POISONING_DISABLED": true, "HEAP_POISONING_LIGHT": true, "HEAP_POISONING_COMPREHENSIVE": true, "component-config-heap-memory-debugging-heap-tracing": true, "HEAP_TRACING_OFF": true, "HEAP_TRACING_STANDALONE": true, "HEAP_TRACING_TOHOST": true, "HEAP_TRACING": false, "HEAP_TRACING_STACK_DEPTH": false, "HEAP_USE_HOOKS": true, "HEAP_TASK_TRACKING": true, "HEAP_TRACE_HASH_MAP": false, "HEAP_TRACE_HASH_MAP_IN_EXT_RAM": false, "HEAP_TRACE_HASH_MAP_SIZE": false, "HEAP_ABORT_WHEN_ALLOCATION_FAILS": true, "HEAP_TLSF_USE_ROM_IMPL": false, "HEAP_PLACE_FUNCTION_INTO_FLASH": true, "IEEE802154_ENABLED": false, "IEEE802154_RX_BUFFER_SIZE": false, "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode": false, "IEEE802154_CCA_CARRIER": false, "IEEE802154_CCA_ED": false, "IEEE802154_CCA_CARRIER_OR_ED": false, "IEEE802154_CCA_CARRIER_AND_ED": false, "IEEE802154_CCA_MODE": false, "IEEE802154_CCA_THRESHOLD": false, "IEEE802154_PENDING_TABLE_SIZE": false, "IEEE802154_MULTI_PAN_ENABLE": false, "IEEE802154_TIMING_OPTIMIZATION": false, "IEEE802154_SLEEP_ENABLE": false, "IEEE802154_DEBUG": false, "IEEE802154_RX_BUFFER_STATISTIC": false, "IEEE802154_ASSERT": false, "IEEE802154_RECORD": false, "IEEE802154_RECORD_EVENT": false, "IEEE802154_RECORD_EVENT_SIZE": false, "IEEE802154_RECORD_STATE": false, "IEEE802154_RECORD_STATE_SIZE": false, "IEEE802154_RECORD_CMD": false, "IEEE802154_RECORD_CMD_SIZE": false, "IEEE802154_RECORD_ABORT": false, "IEEE802154_RECORD_ABORT_SIZE": false, "IEEE802154_TXRX_STATISTIC": false, "component-config-log-log-level-default-log-verbosity": true, "LOG_DEFAULT_LEVEL_NONE": true, "LOG_DEFAULT_LEVEL_ERROR": true, "LOG_DEFAULT_LEVEL_WARN": true, "LOG_DEFAULT_LEVEL_INFO": true, "LOG_DEFAULT_LEVEL_DEBUG": true, "LOG_DEFAULT_LEVEL_VERBOSE": true, "LOG_DEFAULT_LEVEL": false, "component-config-log-log-level-maximum-log-verbosity": true, "LOG_MAXIMUM_EQUALS_DEFAULT": true, "LOG_MAXIMUM_LEVEL_ERROR": false, "LOG_MAXIMUM_LEVEL_WARN": false, "LOG_MAXIMUM_LEVEL_INFO": false, "LOG_MAXIMUM_LEVEL_DEBUG": true, "LOG_MAXIMUM_LEVEL_VERBOSE": true, "LOG_MAXIMUM_LEVEL": false, "LOG_MASTER_LEVEL": true, "LOG_DYNAMIC_LEVEL_CONTROL": true, "component-config-log-log-level-level-settings-method-of-tag-level-checks": true, "LOG_TAG_LEVEL_IMPL_NONE": true, "LOG_TAG_LEVEL_IMPL_LINKED_LIST": true, "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, "component-config-log-log-level-level-settings-cache-implementation": true, "LOG_TAG_LEVEL_CACHE_ARRAY": true, "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": true, "LOG_COLORS": true, "component-config-log-format-timestamp": true, "LOG_TIMESTAMP_SOURCE_NONE": false, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": true, "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL": false, "LWIP_ENABLE": true, "LWIP_LOCAL_HOSTNAME": true, "LWIP_NETIF_API": true, "LWIP_TCPIP_TASK_PRIO": true, "LWIP_TCPIP_CORE_LOCKING": true, "LWIP_TCPIP_CORE_LOCKING_INPUT": false, "LWIP_CHECK_THREAD_SAFETY": true, "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, "LWIP_L2_TO_L3_COPY": true, "LWIP_IRAM_OPTIMIZATION": true, "LWIP_EXTRA_IRAM_OPTIMIZATION": true, "LWIP_TIMERS_ONDEMAND": true, "LWIP_ND6": true, "LWIP_FORCE_ROUTER_FORWARDING": true, "LWIP_MAX_SOCKETS": true, "LWIP_USE_ONLY_LWIP_SELECT": true, "LWIP_SO_LINGER": true, "LWIP_SO_REUSE": true, "LWIP_SO_REUSE_RXTOALL": true, "LWIP_SO_RCVBUF": true, "LWIP_NETBUF_RECVINFO": true, "LWIP_IP_DEFAULT_TTL": true, "LWIP_IP4_FRAG": true, "LWIP_IP6_FRAG": true, "LWIP_IP4_REASSEMBLY": true, "LWIP_IP6_REASSEMBLY": true, "LWIP_IP_REASS_MAX_PBUFS": true, "LWIP_IP_FORWARD": true, "LWIP_IPV4_NAPT": false, "LWIP_IPV4_NAPT_PORTMAP": false, "LWIP_STATS": true, "LWIP_ESP_GRATUITOUS_ARP": true, "LWIP_GARP_TMR_INTERVAL": true, "LWIP_ESP_MLDV6_REPORT": true, "LWIP_MLDV6_TMR_INTERVAL": true, "LWIP_TCPIP_RECVMBOX_SIZE": true, "component-config-lwip-choose-how-dhcp-validates-offered-ip": true, "LWIP_DHCP_DOES_ARP_CHECK": true, "LWIP_DHCP_DOES_ACD_CHECK": true, "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": true, "LWIP_DHCP_DISABLE_CLIENT_ID": true, "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, "LWIP_DHCP_RESTORE_LAST_IP": true, "LWIP_DHCP_OPTIONS_LEN": true, "LWIP_NUM_NETIF_CLIENT_DATA": true, "LWIP_DHCP_COARSE_TIMER_SECS": true, "LWIP_DHCPS": true, "LWIP_DHCPS_LEASE_UNIT": true, "LWIP_DHCPS_MAX_STATION_NUM": true, "LWIP_DHCPS_STATIC_ENTRIES": true, "LWIP_DHCPS_ADD_DNS": true, "LWIP_AUTOIP": true, "LWIP_AUTOIP_TRIES": false, "LWIP_AUTOIP_MAX_CONFLICTS": false, "LWIP_AUTOIP_RATE_LIMIT_INTERVAL": false, "LWIP_IPV4": true, "LWIP_IPV6": true, "LWIP_IPV6_AUTOCONFIG": true, "LWIP_IPV6_NUM_ADDRESSES": true, "LWIP_IPV6_FORWARD": true, "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS": false, "LWIP_IPV6_DHCP6": false, "LWIP_NETIF_STATUS_CALLBACK": true, "LWIP_NETIF_LOOPBACK": true, "LWIP_LOOPBACK_MAX_PBUFS": true, "LWIP_MAX_ACTIVE_TCP": true, "LWIP_MAX_LISTENING_TCP": true, "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, "LWIP_TCP_MAXRTX": true, "LWIP_TCP_SYNMAXRTX": true, "LWIP_TCP_MSS": true, "LWIP_TCP_TMR_INTERVAL": true, "LWIP_TCP_MSL": true, "LWIP_TCP_FIN_WAIT_TIMEOUT": true, "LWIP_TCP_SND_BUF_DEFAULT": true, "LWIP_TCP_WND_DEFAULT": true, "LWIP_TCP_RECVMBOX_SIZE": true, "LWIP_TCP_ACCEPTMBOX_SIZE": true, "LWIP_TCP_QUEUE_OOSEQ": true, "LWIP_TCP_OOSEQ_TIMEOUT": true, "LWIP_TCP_OOSEQ_MAX_PBUFS": true, "LWIP_TCP_SACK_OUT": true, "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size": true, "LWIP_TCP_OVERSIZE_MSS": true, "LWIP_TCP_OVERSIZE_QUARTER_MSS": true, "LWIP_TCP_OVERSIZE_DISABLE": true, "LWIP_WND_SCALE": false, "LWIP_TCP_RCV_SCALE": false, "LWIP_TCP_RTO_TIME": true, "LWIP_MAX_UDP_PCBS": true, "LWIP_UDP_RECVMBOX_SIZE": true, "LWIP_CHECKSUM_CHECK_IP": true, "LWIP_CHECKSUM_CHECK_UDP": true, "LWIP_CHECKSUM_CHECK_ICMP": true, "LWIP_TCPIP_TASK_STACK_SIZE": true, "component-config-lwip-tcp-ip-task-affinity": true, "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, "LWIP_TCPIP_TASK_AFFINITY_CPU0": true, "LWIP_TCPIP_TASK_AFFINITY_CPU1": false, "LWIP_TCPIP_TASK_AFFINITY": false, "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": true, "LWIP_IPV6_ND6_NUM_NEIGHBORS": true, "LWIP_IPV6_ND6_NUM_PREFIXES": true, "LWIP_IPV6_ND6_NUM_ROUTERS": true, "LWIP_IPV6_ND6_NUM_DESTINATIONS": true, "LWIP_PPP_SUPPORT": true, "LWIP_PPP_ENABLE_IPV4": false, "LWIP_PPP_ENABLE_IPV6": false, "LWIP_PPP_NOTIFY_PHASE_SUPPORT": false, "LWIP_PPP_PAP_SUPPORT": false, "LWIP_PPP_CHAP_SUPPORT": false, "LWIP_PPP_MSCHAP_SUPPORT": false, "LWIP_PPP_MPPE_SUPPORT": false, "LWIP_PPP_SERVER_SUPPORT": false, "LWIP_PPP_VJ_HEADER_COMPRESSION": false, "LWIP_ENABLE_LCP_ECHO": false, "LWIP_LCP_ECHOINTERVAL": false, "LWIP_LCP_MAXECHOFAILS": false, "LWIP_PPP_DEBUG_ON": false, "LWIP_USE_EXTERNAL_MBEDTLS": false, "LWIP_SLIP_SUPPORT": true, "LWIP_SLIP_DEBUG_ON": false, "LWIP_ICMP": true, "LWIP_MULTICAST_PING": true, "LWIP_BROADCAST_PING": true, "LWIP_MAX_RAW_PCBS": true, "LWIP_SNTP_MAX_SERVERS": true, "LWIP_DHCP_GET_NTP_SRV": true, "LWIP_DHCP_MAX_NTP_SERVERS": false, "LWIP_SNTP_UPDATE_DELAY": true, "LWIP_SNTP_STARTUP_DELAY": true, "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": true, "LWIP_DNS_MAX_HOST_IP": true, "LWIP_DNS_MAX_SERVERS": true, "LWIP_FALLBACK_DNS_SERVER_SUPPORT": true, "LWIP_FALLBACK_DNS_SERVER_ADDRESS": false, "LWIP_DNS_SETSERVER_WITH_NETIF": true, "LWIP_BRIDGEIF_MAX_PORTS": true, "LWIP_ESP_LWIP_ASSERT": true, "component-config-lwip-hooks-tcp-isn-hook": true, "LWIP_HOOK_TCP_ISN_NONE": true, "LWIP_HOOK_TCP_ISN_DEFAULT": true, "LWIP_HOOK_TCP_ISN_CUSTOM": true, "component-config-lwip-hooks-ipv6-route-hook": true, "LWIP_HOOK_IP6_ROUTE_NONE": true, "LWIP_HOOK_IP6_ROUTE_DEFAULT": true, "LWIP_HOOK_IP6_ROUTE_CUSTOM": true, "component-config-lwip-hooks-ipv6-get-gateway-hook": true, "LWIP_HOOK_ND6_GET_GW_NONE": true, "LWIP_HOOK_ND6_GET_GW_DEFAULT": true, "LWIP_HOOK_ND6_GET_GW_CUSTOM": true, "component-config-lwip-hooks-ipv6-source-address-selection-hook": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": true, "component-config-lwip-hooks-netconn-external-resolve-hook": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": true, "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM": false, "component-config-lwip-hooks-dns-external-resolve-hook": true, "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM": true, "component-config-lwip-hooks-ipv6-packet-input": true, "LWIP_HOOK_IP6_INPUT_NONE": true, "LWIP_HOOK_IP6_INPUT_DEFAULT": true, "LWIP_HOOK_IP6_INPUT_CUSTOM": true, "LWIP_DEBUG": true, "LWIP_DEBUG_ESP_LOG": false, "LWIP_NETIF_DEBUG": false, "LWIP_PBUF_DEBUG": false, "LWIP_ETHARP_DEBUG": false, "LWIP_API_LIB_DEBUG": false, "LWIP_SOCKETS_DEBUG": false, "LWIP_IP_DEBUG": false, "LWIP_ICMP_DEBUG": false, "LWIP_DHCP_STATE_DEBUG": false, "LWIP_DHCP_DEBUG": false, "LWIP_IP6_DEBUG": false, "LWIP_ICMP6_DEBUG": false, "LWIP_TCP_DEBUG": false, "LWIP_UDP_DEBUG": false, "LWIP_SNTP_DEBUG": false, "LWIP_DNS_DEBUG": false, "LWIP_NAPT_DEBUG": false, "LWIP_BRIDGEIF_DEBUG": false, "LWIP_BRIDGEIF_FDB_DEBUG": false, "LWIP_BRIDGEIF_FW_DEBUG": false, "component-config-mbedtls-memory-allocation-strategy": true, "MBEDTLS_INTERNAL_MEM_ALLOC": true, "MBEDTLS_EXTERNAL_MEM_ALLOC": false, "MBEDTLS_DEFAULT_MEM_ALLOC": true, "MBEDTLS_CUSTOM_MEM_ALLOC": true, "MBEDTLS_IRAM_8BIT_MEM_ALLOC": false, "MBEDTLS_SSL_MAX_CONTENT_LEN": false, "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, "MBEDTLS_SSL_IN_CONTENT_LEN": true, "MBEDTLS_SSL_OUT_CONTENT_LEN": true, "MBEDTLS_DYNAMIC_BUFFER": true, "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA": true, "MBEDTLS_DYNAMIC_FREE_CA_CERT": true, "MBEDTLS_DEBUG": true, "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level": false, "MBEDTLS_DEBUG_LEVEL_WARN": false, "MBEDTLS_DEBUG_LEVEL_INFO": false, "MBEDTLS_DEBUG_LEVEL_DEBUG": false, "MBEDTLS_DEBUG_LEVEL_VERBOSE": false, "MBEDTLS_DEBUG_LEVEL": false, "MBEDTLS_SSL_PROTO_TLS1_3": false, "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE": false, "MBEDTLS_SSL_TLS1_3_KEXM_PSK": false, "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL": false, "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL": false, "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": true, "MBEDTLS_ECDH_LEGACY_CONTEXT": false, "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": true, "MBEDTLS_SSL_CONTEXT_SERIALIZATION": true, "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, "MBEDTLS_PKCS7_C": true, "MBEDTLS_SSL_CID_PADDING_GRANULARITY": false, "MBEDTLS_SSL_DTLS_CONNECTION_ID": false, "MBEDTLS_SSL_CID_IN_LEN_MAX": false, "MBEDTLS_SSL_CID_OUT_LEN_MAX": false, "MBEDTLS_SSL_DTLS_SRTP": false, "MBEDTLS_CERTIFICATE_BUNDLE": true, "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": true, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": true, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": true, "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": true, "MBEDTLS_ECP_RESTARTABLE": true, "MBEDTLS_CMAC_C": true, "MBEDTLS_HARDWARE_AES": true, "MBEDTLS_AES_USE_INTERRUPT": true, "MBEDTLS_AES_INTERRUPT_LEVEL": true, "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC": false, "component-config-mbedtls-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function": false, "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW": false, "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM": false, "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH": false, "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH": false, "MBEDTLS_HARDWARE_GCM": false, "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, "MBEDTLS_HARDWARE_MPI": true, "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, "MBEDTLS_MPI_USE_INTERRUPT": true, "MBEDTLS_MPI_INTERRUPT_LEVEL": true, "MBEDTLS_HARDWARE_SHA": true, "MBEDTLS_HARDWARE_ECC": false, "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK": false, "MBEDTLS_ROM_MD5": true, "MBEDTLS_HARDWARE_ECDSA_SIGN": false, "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM": false, "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM": false, "MBEDTLS_HARDWARE_ECDSA_VERIFY": false, "MBEDTLS_ATCA_HW_ECDSA_SIGN": true, "MBEDTLS_ATCA_HW_ECDSA_VERIFY": true, "MBEDTLS_HAVE_TIME": true, "MBEDTLS_PLATFORM_TIME_ALT": true, "MBEDTLS_HAVE_TIME_DATE": true, "MBEDTLS_ECDSA_DETERMINISTIC": true, "MBEDTLS_SHA512_C": true, "MBEDTLS_SHA3_C": true, "component-config-mbedtls-tls-protocol-role": true, "MBEDTLS_TLS_SERVER_AND_CLIENT": true, "MBEDTLS_TLS_SERVER_ONLY": true, "MBEDTLS_TLS_CLIENT_ONLY": true, "MBEDTLS_TLS_DISABLED": true, "MBEDTLS_TLS_SERVER": false, "MBEDTLS_TLS_CLIENT": false, "MBEDTLS_TLS_ENABLED": false, "MBEDTLS_PSK_MODES": true, "MBEDTLS_KEY_EXCHANGE_PSK": false, "MBEDTLS_KEY_EXCHANGE_DHE_PSK": false, "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK": false, "MBEDTLS_KEY_EXCHANGE_RSA_PSK": false, "MBEDTLS_KEY_EXCHANGE_RSA": true, "MBEDTLS_KEY_EXCHANGE_DHE_RSA": false, "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECJPAKE": false, "MBEDTLS_SSL_RENEGOTIATION": true, "MBEDTLS_SSL_PROTO_TLS1_2": true, "MBEDTLS_SSL_PROTO_GMTSSL1_1": true, "MBEDTLS_SSL_PROTO_DTLS": true, "MBEDTLS_SSL_ALPN": true, "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, "MBEDTLS_AES_C": true, "MBEDTLS_CAMELLIA_C": true, "MBEDTLS_DES_C": true, "MBEDTLS_BLOWFISH_C": true, "MBEDTLS_XTEA_C": true, "MBEDTLS_CCM_C": true, "MBEDTLS_GCM_C": true, "MBEDTLS_NIST_KW_C": true, "MBEDTLS_RIPEMD160_C": true, "MBEDTLS_PEM_PARSE_C": true, "MBEDTLS_PEM_WRITE_C": true, "MBEDTLS_X509_CRL_PARSE_C": true, "MBEDTLS_X509_CSR_PARSE_C": true, "MBEDTLS_ECP_C": true, "MBEDTLS_PK_PARSE_EC_EXTENDED": true, "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, "MBEDTLS_DHM_C": true, "MBEDTLS_ECDH_C": true, "MBEDTLS_ECDSA_C": true, "MBEDTLS_ECJPAKE_C": true, "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, "MBEDTLS_ECP_NIST_OPTIM": true, "MBEDTLS_ECP_FIXED_POINT_OPTIM": true, "MBEDTLS_POLY1305_C": true, "MBEDTLS_CHACHA20_C": true, "MBEDTLS_CHACHAPOLY_C": false, "MBEDTLS_HKDF_C": true, "MBEDTLS_THREADING_C": true, "MBEDTLS_THREADING_ALT": false, "MBEDTLS_THREADING_PTHREAD": false, "MBEDTLS_ERROR_STRINGS": true, "MBEDTLS_USE_CRYPTO_ROM_IMPL": false, "MBEDTLS_FS_IO": true, "MQTT_PROTOCOL_311": true, "MQTT_PROTOCOL_5": true, "MQTT_TRANSPORT_SSL": true, "MQTT_TRANSPORT_WEBSOCKET": true, "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, "MQTT_MSG_ID_INCREMENTAL": true, "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": true, "MQTT_REPORT_DELETED_MESSAGES": true, "MQTT_USE_CUSTOM_CONFIG": true, "MQTT_TCP_DEFAULT_PORT": false, "MQTT_SSL_DEFAULT_PORT": false, "MQTT_WS_DEFAULT_PORT": false, "MQTT_WSS_DEFAULT_PORT": false, "MQTT_BUFFER_SIZE": false, "MQTT_TASK_STACK_SIZE": false, "MQTT_DISABLE_API_LOCKS": false, "MQTT_TASK_PRIORITY": false, "MQTT_POLL_READ_TIMEOUT_MS": false, "MQTT_EVENT_QUEUE_SIZE": false, "MQTT_TASK_CORE_SELECTION_ENABLED": true, "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-": false, "MQTT_USE_CORE_0": false, "MQTT_USE_CORE_1": false, "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY": false, "MQTT_CUSTOM_OUTBOX": true, "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS": false, "component-config-newlib-line-ending-for-uart-output": true, "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, "NEWLIB_STDOUT_LINE_ENDING_LF": true, "NEWLIB_STDOUT_LINE_ENDING_CR": true, "component-config-newlib-line-ending-for-uart-input": true, "NEWLIB_STDIN_LINE_ENDING_CRLF": true, "NEWLIB_STDIN_LINE_ENDING_LF": true, "NEWLIB_STDIN_LINE_ENDING_CR": true, "NEWLIB_NANO_FORMAT": true, "component-config-newlib-timers-used-for-gettimeofday-function": true, "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, "NEWLIB_TIME_SYSCALL_USE_RTC": true, "NEWLIB_TIME_SYSCALL_USE_HRT": true, "NEWLIB_TIME_SYSCALL_USE_NONE": true, "STDATOMIC_S32C1I_SPIRAM_WORKAROUND": false, "NVS_ENCRYPTION": true, "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG": false, "NVS_ASSERT_ERROR_CHECK": true, "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": true, "NVS_ALLOCATE_CACHE_IN_SPIRAM": false, "component-config-nvs-security-provider-nvs-encryption-key-protection-scheme": false, "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC": false, "NVS_SEC_KEY_PROTECT_USING_HMAC": false, "NVS_SEC_HMAC_EFUSE_KEY_ID": false, "OPENTHREAD_ENABLED": true, "OPENTHREAD_PACKAGE_NAME": false, "OPENTHREAD_PLATFORM_INFO": false, "component-config-openthread-openthread-thread-console-openthread-console-type": false, "OPENTHREAD_CONSOLE_TYPE_UART": false, "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG": false, "OPENTHREAD_CLI": false, "OPENTHREAD_NETWORK_NAME": false, "OPENTHREAD_MESH_LOCAL_PREFIX": false, "OPENTHREAD_NETWORK_CHANNEL": false, "OPENTHREAD_NETWORK_PANID": false, "OPENTHREAD_NETWORK_EXTPANID": false, "OPENTHREAD_NETWORK_MASTERKEY": false, "OPENTHREAD_NETWORK_PSKC": false, "component-config-openthread-openthread-thread-core-features-thread-device-type": false, "OPENTHREAD_FTD": false, "OPENTHREAD_MTD": false, "OPENTHREAD_RADIO": false, "OPENTHREAD_RADIO_TREL": false, "OPENTHREAD_TREL_PORT": false, "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-config-the-thread-radio-type-with-15-4-link": false, "OPENTHREAD_RADIO_NATIVE": false, "OPENTHREAD_RADIO_SPINEL_UART": false, "OPENTHREAD_RADIO_SPINEL_SPI": false, "OPENTHREAD_RADIO_154_NONE": false, "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-the-rcp-transport-type": false, "OPENTHREAD_RCP_UART": false, "OPENTHREAD_RCP_SPI": false, "OPENTHREAD_NCP_VENDOR_HOOK": false, "OPENTHREAD_BORDER_ROUTER": false, "OPENTHREAD_COMMISSIONER": false, "OPENTHREAD_COMM_MAX_JOINER_ENTRIES": false, "OPENTHREAD_JOINER": false, "OPENTHREAD_SRP_CLIENT": false, "OPENTHREAD_SRP_CLIENT_MAX_SERVICES": false, "OPENTHREAD_DNS_CLIENT": false, "OPENTHREAD_DNS64_CLIENT": false, "OPENTHREAD_DNS_SERVER_ADDR": false, "OPENTHREAD_LINK_METRICS": false, "OPENTHREAD_MACFILTER_ENABLE": false, "OPENTHREAD_CSL_ENABLE": false, "OPENTHREAD_CSL_ACCURACY": false, "OPENTHREAD_CSL_UNCERTAIN": false, "OPENTHREAD_CSL_DEBUG_ENABLE": false, "OPENTHREAD_TIME_SYNC": false, "OPENTHREAD_RADIO_STATS_ENABLE": false, "OPENTHREAD_RX_ON_WHEN_IDLE": false, "OPENTHREAD_DIAG": false, "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM": false, "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT": false, "OPENTHREAD_ADDRESS_QUERY_TIMEOUT": false, "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY": false, "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY": false, "OPENTHREAD_PREFERRED_CHANNEL_MASK": false, "OPENTHREAD_SUPPORTED_CHANNEL_MASK": false, "OPENTHREAD_NUM_MESSAGE_BUFFERS": false, "OPENTHREAD_XTAL_ACCURACY": false, "OPENTHREAD_MLE_MAX_CHILDREN": false, "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES": false, "OPENTHREAD_UART_BUFFER_SIZE": false, "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT": false, "OPENTHREAD_LOG_LEVEL_DYNAMIC": false, "component-config-openthread-openthread-thread-log-openthread-log-verbosity": false, "OPENTHREAD_LOG_LEVEL_NONE": false, "OPENTHREAD_LOG_LEVEL_CRIT": false, "OPENTHREAD_LOG_LEVEL_WARN": false, "OPENTHREAD_LOG_LEVEL_NOTE": false, "OPENTHREAD_LOG_LEVEL_INFO": false, "OPENTHREAD_LOG_LEVEL_DEBG": false, "OPENTHREAD_LOG_LEVEL": false, "OPENTHREAD_HEADER_CUSTOM": false, "OPENTHREAD_CUSTOM_HEADER_PATH": false, "OPENTHREAD_CUSTOM_HEADER_FILE_NAME": false, "OPENTHREAD_SPINEL_ONLY": true, "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE": false, "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT": false, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION": false, "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP": false, "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP": false, "PTHREAD_TASK_PRIO_DEFAULT": true, "PTHREAD_TASK_STACK_SIZE_DEFAULT": true, "PTHREAD_STACK_MIN": true, "component-config-pthreads-default-pthread-core-affinity": false, "PTHREAD_DEFAULT_CORE_NO_AFFINITY": false, "PTHREAD_DEFAULT_CORE_0": false, "PTHREAD_DEFAULT_CORE_1": false, "PTHREAD_TASK_CORE_DEFAULT": false, "PTHREAD_TASK_NAME_DEFAULT": true, "MMU_PAGE_SIZE_8KB": false, "MMU_PAGE_SIZE_16KB": false, "MMU_PAGE_SIZE_32KB": false, "MMU_PAGE_SIZE_64KB": false, "MMU_PAGE_MODE": false, "MMU_PAGE_SIZE": false, "SPI_FLASH_BROWNOUT_RESET_XMC": true, "SPI_FLASH_BROWNOUT_RESET": false, "SPI_FLASH_UNDER_HIGH_FREQ": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-": false, "SPI_FLASH_HPM_ENA": false, "SPI_FLASH_HPM_AUTO": false, "SPI_FLASH_HPM_DIS": false, "SPI_FLASH_HPM_ON": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-": false, "SPI_FLASH_HPM_DC_AUTO": false, "SPI_FLASH_HPM_DC_DISABLE": false, "SPI_FLASH_HPM_DC_ON": false, "SPI_FLASH_AUTO_SUSPEND": true, "SPI_FLASH_SUSPEND_TSUS_VAL_US": true, "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": true, "SPI_FLASH_SOFTWARE_RESUME": false, "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND": false, "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS": false, "SPI_FLASH_VERIFY_WRITE": true, "SPI_FLASH_LOG_FAILED_WRITE": false, "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE": false, "SPI_FLASH_ENABLE_COUNTERS": true, "SPI_FLASH_ROM_DRIVER_PATCH": true, "SPI_FLASH_ROM_IMPL": true, "component-config-spi-flash-driver-writing-to-dangerous-flash-regions": true, "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, "SPI_FLASH_DANGEROUS_WRITE_FAILS": true, "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": true, "SPI_FLASH_SHARE_SPI1_BUS": false, "SPI_FLASH_BYPASS_BLOCK_ERASE": true, "SPI_FLASH_YIELD_DURING_ERASE": true, "SPI_FLASH_ERASE_YIELD_DURATION_MS": true, "SPI_FLASH_ERASE_YIELD_TICKS": true, "SPI_FLASH_WRITE_CHUNK_SIZE": true, "SPI_FLASH_SIZE_OVERRIDE": true, "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": true, "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": true, "SPI_FLASH_VENDOR_XMC_SUPPORTED": false, "SPI_FLASH_VENDOR_GD_SUPPORTED": false, "SPI_FLASH_VENDOR_ISSI_SUPPORTED": false, "SPI_FLASH_VENDOR_MXIC_SUPPORTED": false, "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": false, "SPI_FLASH_VENDOR_BOYA_SUPPORTED": false, "SPI_FLASH_VENDOR_TH_SUPPORTED": false, "SPI_FLASH_SUPPORT_ISSI_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_CHIP": true, "SPI_FLASH_SUPPORT_GD_CHIP": true, "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, "SPI_FLASH_SUPPORT_BOYA_CHIP": true, "SPI_FLASH_SUPPORT_TH_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": false, "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, "SPIFFS_MAX_PARTITIONS": true, "SPIFFS_CACHE": true, "SPIFFS_CACHE_WR": true, "SPIFFS_CACHE_STATS": true, "SPIFFS_PAGE_CHECK": true, "SPIFFS_GC_MAX_RUNS": true, "SPIFFS_GC_STATS": true, "SPIFFS_PAGE_SIZE": true, "SPIFFS_OBJ_NAME_LEN": true, "SPIFFS_FOLLOW_SYMLINKS": true, "SPIFFS_USE_MAGIC": true, "SPIFFS_USE_MAGIC_LENGTH": true, "SPIFFS_META_LENGTH": true, "SPIFFS_USE_MTIME": true, "SPIFFS_MTIME_WIDE_64_BITS": false, "SPIFFS_DBG": true, "SPIFFS_API_DBG": true, "SPIFFS_GC_DBG": true, "SPIFFS_CACHE_DBG": true, "SPIFFS_CHECK_DBG": true, "SPIFFS_TEST_VISUALISATION": true, "WS_TRANSPORT": true, "WS_BUFFER_SIZE": true, "WS_DYNAMIC_BUFFER": true, "ULP_COPROC_ENABLED": false, "component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type": false, "ULP_COPROC_TYPE_FSM": false, "ULP_COPROC_TYPE_RISCV": false, "ULP_COPROC_TYPE_LP_CORE": false, "ULP_COPROC_RESERVE_MEM": false, "ULP_RISCV_INTERRUPT_ENABLE": false, "ULP_RISCV_UART_BAUDRATE": false, "ULP_RISCV_I2C_RW_TIMEOUT": false, "ULP_SHARED_MEM": false, "ULP_ROM_PRINT_ENABLE": false, "ULP_PANIC_OUTPUT_ENABLE": false, "ULP_HP_UART_CONSOLE_PRINT": false, "ULP_NORESET_UNDER_DEBUG": false, "UNITY_ENABLE_FLOAT": true, "UNITY_ENABLE_DOUBLE": true, "UNITY_ENABLE_64BIT": true, "UNITY_ENABLE_COLOR": true, "UNITY_ENABLE_IDF_TEST_RUNNER": true, "UNITY_ENABLE_FIXTURE": true, "UNITY_ENABLE_BACKTRACE_ON_FAIL": true, "USB_HOST_CONTROL_TRANSFER_MAX_SIZE": false, "component-config-usb-otg-hardware-fifo-size-biasing": false, "USB_HOST_HW_BUFFER_BIAS_BALANCED": false, "USB_HOST_HW_BUFFER_BIAS_IN": false, "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT": false, "USB_HOST_DEBOUNCE_DELAY_MS": false, "USB_HOST_RESET_HOLD_MS": false, "USB_HOST_RESET_RECOVERY_MS": false, "USB_HOST_SET_ADDR_RECOVERY_MS": false, "USB_HOST_HUBS_SUPPORTED": false, "USB_HOST_HUB_MULTI_LEVEL": false, "USB_HOST_EXT_PORT_SUPPORT_LS": false, "USB_HOST_EXT_PORT_RESET_ATTEMPTS": false, "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS": false, "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE": false, "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS": false, "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK": false, "USB_OTG_SUPPORTED": false, "VFS_SUPPORT_IO": true, "VFS_SUPPORT_DIR": true, "VFS_SUPPORT_SELECT": true, "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, "VFS_SELECT_IN_RAM": true, "VFS_SUPPORT_TERMIOS": true, "VFS_MAX_COUNT": true, "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": true, "VFS_INITIALIZE_DEV_NULL": true, "component-config-wear-levelling-wear-levelling-library-sector-size": true, "WL_SECTOR_SIZE_512": true, "WL_SECTOR_SIZE_4096": true, "WL_SECTOR_SIZE": false, "component-config-wear-levelling-sector-store-mode": false, "WL_SECTOR_MODE_PERF": false, "WL_SECTOR_MODE_SAFE": false, "WL_SECTOR_MODE": false, "WIFI_PROV_SCAN_MAX_ENTRIES": true, "WIFI_PROV_AUTOSTOP_TIMEOUT": true, "WIFI_PROV_BLE_BONDING": true, "WIFI_PROV_BLE_SEC_CONN": true, "WIFI_PROV_BLE_FORCE_ENCRYPTION": true, "WIFI_PROV_BLE_NOTIFY": true, "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV": true, "WIFI_PROV_DISCONNECT_AFTER_PROV": false, "component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method": true, "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, "WIFI_PROV_STA_FAST_SCAN": true, "APP_INSIGHTS_ENABLE_LOG_TYPE_ALL": false, "IO_GLITCH_FILTER_TIME_MS": true, "WS2812_LED_ENABLE": true, "WS2812_LED_GPIO": true, "SERIAL_FLASHER_MD5_ENABLED": true, "component-config-esp-serial-flasher-hardware-interface-to-use-for-firmware-download": true, "SERIAL_FLASHER_INTERFACE_UART": true, "SERIAL_FLASHER_INTERFACE_SPI": true, "SERIAL_FLASHER_INTERFACE_USB": true, "SERIAL_FLASHER_INTERFACE_SDIO": true, "SERIAL_FLASHER_RESET_HOLD_TIME_MS": true, "SERIAL_FLASHER_BOOT_HOLD_TIME_MS": true, "SERIAL_FLASHER_DEBUG_TRACE": true, "SERIAL_FLASHER_WRITE_BLOCK_RETRIES": true, "SERIAL_FLASHER_RESET_INVERT": true, "SERIAL_FLASHER_BOOT_INVERT": true, "component-config-diagnostics-data-store-diagnostics-data-store-destination": true, "DIAG_DATA_STORE_RTC": true, "DIAG_DATA_STORE_FLASH": true, "DIAG_DATA_STORE_DBG_PRINTS": true, "DIAG_DATA_STORE_REPORTING_WATERMARK_PERCENT": true, "RTC_STORE_DATA_SIZE": true, "RTC_STORE_CRITICAL_DATA_SIZE": true, "FLASH_STORE_PARTITION_LABEL": false, "component-config-diagnostics-diagnostics-log-argument-format": true, "DIAG_LOG_MSG_ARG_FORMAT_TLV": true, "DIAG_LOG_MSG_ARG_FORMAT_STRING": true, "DIAG_LOG_MSG_ARG_MAX_SIZE": true, "DIAG_LOG_DROP_WIFI_LOGS": true, "DIAG_ENABLE_WRAP_LOG_FUNCTIONS": true, "DIAG_ENABLE_METRICS": true, "DIAG_METRICS_MAX_COUNT": true, "DIAG_ENABLE_HEAP_METRICS": true, "DIAG_HEAP_POLLING_INTERVAL": true, "DIAG_ENABLE_WIFI_METRICS": true, "DIAG_WIFI_POLLING_INTERVAL": true, "DIAG_ENABLE_VARIABLES": true, "DIAG_VARIABLES_MAX_COUNT": true, "DIAG_ENABLE_NETWORK_VARIABLES": true, "DIAG_MORE_NETWORK_VARS": true, "DIAG_USE_EXTERNAL_LOG_WRAP": true, "ESP_INSIGHTS_ENABLED": true, "ESP_INSIGHTS_DEBUG_ENABLED": false, "ESP_INSIGHTS_DEBUG_PRINT_JSON": false, "ESP_INSIGHTS_COREDUMP_ENABLE": false, "component-config-esp-insights-insights-default-transport": true, "ESP_INSIGHTS_TRANSPORT_MQTT": true, "ESP_INSIGHTS_TRANSPORT_HTTPS": true, "ESP_INSIGHTS_CMD_RESP_ENABLED": false, "ESP_INSIGHTS_TRANSPORT_HTTPS_HOST": false, "ESP_INSIGHTS_CLOUD_POST_MIN_INTERVAL_SEC": true, "ESP_INSIGHTS_CLOUD_POST_MAX_INTERVAL_SEC": true, "ESP_INSIGHTS_META_VERSION_10": true, "AUTO_UPDATE_RCP": true, "CREATE_OTA_IMAGE_WITH_RCP_FW": true, "RCP_SRC_DIR": false, "RCP_PARTITION_NAME": false, "ESP_SECURE_CERT_DS_PERIPHERAL": true, "ESP_SECURE_CERT_SUPPORT_LEGACY_FORMATS": true, "JSMN_PARENT_LINKS": true, "JSMN_STRICT": true, "JSMN_STATIC": true, "MDNS_MAX_INTERFACES": true, "MDNS_MAX_SERVICES": true, "MDNS_TASK_PRIORITY": true, "MDNS_ACTION_QUEUE_LEN": true, "MDNS_TASK_STACK_SIZE": true, "component-config-mdns-mdns-task-affinity": true, "MDNS_TASK_AFFINITY_NO_AFFINITY": true, "MDNS_TASK_AFFINITY_CPU0": true, "MDNS_TASK_AFFINITY_CPU1": false, "MDNS_TASK_AFFINITY": false, "component-config-mdns-mdns-memory-configuration-select-mdns-task-create-on-which-type-of-memory": true, "MDNS_TASK_CREATE_FROM_SPIRAM": false, "MDNS_TASK_CREATE_FROM_INTERNAL": true, "component-config-mdns-mdns-memory-configuration-select-mdns-memory-allocation-type": true, "MDNS_MEMORY_ALLOC_SPIRAM": false, "MDNS_MEMORY_ALLOC_INTERNAL": true, "MDNS_MEMORY_CUSTOM_IMPL": true, "MDNS_SERVICE_ADD_TIMEOUT_MS": true, "MDNS_TIMER_PERIOD_MS": true, "MDNS_NETWORKING_SOCKET": true, "MDNS_SKIP_SUPPRESSING_OWN_QUERIES": true, "MDNS_ENABLE_DEBUG_PRINTS": true, "MDNS_ENABLE_CONSOLE_CLI": true, "MDNS_RESPOND_REVERSE_QUERIES": true, "MDNS_MULTIPLE_INSTANCE": true, "MDNS_PREDEF_NETIF_STA": true, "MDNS_PREDEF_NETIF_AP": true, "MDNS_PREDEF_NETIF_ETH": true, "component-config-network-provisioning-manager-network-type": true, "NETWORK_PROV_NETWORK_TYPE_WIFI": true, "NETWORK_PROV_NETWORK_TYPE_THREAD": false, "NETWORK_PROV_SCAN_MAX_ENTRIES": true, "NETWORK_PROV_AUTOSTOP_TIMEOUT": true, "NETWORK_PROV_BLE_BONDING": true, "NETWORK_PROV_BLE_SEC_CONN": true, "NETWORK_PROV_BLE_FORCE_ENCRYPTION": true, "NETWORK_PROV_KEEP_BLE_ON_AFTER_PROV": true, "NETWORK_PROV_DISCONNECT_AFTER_PROV": false, "component-config-network-provisioning-manager-wifi-provisioning-scan-method": true, "NETWORK_PROV_WIFI_STA_ALL_CHANNEL_SCAN": true, "NETWORK_PROV_WIFI_STA_FAST_SCAN": true, "component-config-esp-rainmaker-common-mqtt-library": true, "ESP_RMAKER_LIB_ESP_MQTT": true, "ESP_RMAKER_LIB_AWS_IOT": true, "ESP_RMAKER_MQTT_GLUE_LIB": false, "component-config-esp-rainmaker-common-mqtt-port": true, "ESP_RMAKER_MQTT_PORT_443": true, "ESP_RMAKER_MQTT_PORT_8883": true, "ESP_RMAKER_MQTT_PORT": false, "ESP_RMAKER_MQTT_PERSISTENT_SESSION": true, "ESP_RMAKER_MQTT_SEND_USERNAME": true, "ESP_RMAKER_MQTT_PRODUCT_NAME": true, "ESP_RMAKER_MQTT_PRODUCT_VERSION": true, "ESP_RMAKER_MQTT_PRODUCT_SKU": true, "ESP_RMAKER_MQTT_USE_CERT_BUNDLE": true, "ESP_RMAKER_MAX_MQTT_SUBSCRIPTIONS": true, "ESP_RMAKER_MQTT_KEEP_ALIVE_INTERVAL": true, "component-config-esp-rainmaker-common-esp-rainmaker-network-type": true, "ESP_RMAKER_NETWORK_OVER_WIFI": true, "ESP_RMAKER_NETWORK_OVER_THREAD": false, "ESP_RMAKER_WORK_QUEUE_TASK_STACK": true, "ESP_RMAKER_WORK_QUEUE_TASK_PRIORITY": true, "ESP_RMAKER_FACTORY_PARTITION_NAME": true, "ESP_RMAKER_FACTORY_NAMESPACE": true, "ESP_RMAKER_ENCRYPT_FACTORY_PARTITION": false, "ESP_RMAKER_FACTORY_NVS_KEYS_PARTITION_NAME": false, "ESP_RMAKER_DEF_TIMEZONE": true, "ESP_RMAKER_SNTP_SERVER_NAME": true, "ESP_RMAKER_MAX_COMMANDS": true, "IDF_EXPERIMENTAL_FEATURES": true, "component-config-esp-rainmaker-common": true, "component-config-network-provisioning-manager": true, "component-config-mdns-mdns-predefined-interfaces": true, "component-config-mdns-mdns-memory-configuration": true, "component-config-mdns": true, "component-config-jsmn": true, "component-config-esp-secure-cert-manager": true, "component-config-openthread-rcp-update": true, "component-config-esp-insights": true, "component-config-diagnostics": true, "component-config-diagnostics-data-store-flash-store": false, "component-config-diagnostics-data-store-rtc-store": true, "component-config-diagnostics-data-store": true, "component-config-esp-serial-flasher": true, "component-config-ws2812-rgb-led": true, "component-config-gpio-button": true, "component-config-app-insights": false, "component-config-wi-fi-provisioning-manager": true, "component-config-wear-levelling": true, "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-": true, "component-config-virtual-file-system": true, "component-config-usb-otg-hub-driver-configuration-support-hubs-downstream-port-configuration": false, "component-config-usb-otg-hub-driver-configuration-root-port-configuration": false, "component-config-usb-otg-hub-driver-configuration": false, "component-config-usb-otg": false, "component-config-unity-unit-testing-library": true, "component-config-ultra-low-power-ulp-co-processor-ulp-debugging-options": false, "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings": false, "component-config-ultra-low-power-ulp-co-processor": false, "component-config-tcp-transport-websocket": true, "component-config-tcp-transport": true, "component-config-spiffs-configuration-debug-configuration": true, "component-config-spiffs-configuration-spiffs-cache-configuration": true, "component-config-spiffs-configuration": true, "component-config-spi-flash-driver-auto-detect-flash-chips": true, "component-config-spi-flash-driver": true, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--features-here-require-specific-hardware-read-docs-first-": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-": true, "component-config-main-flash-configuration-spi-flash-behavior-when-brownout": true, "component-config-main-flash-configuration": true, "component-config-soc-settings-mmu-config": false, "component-config-soc-settings": false, "component-config-pthreads": true, "component-config-protocomm": true, "component-config-openthread-openthread-spinel": true, "component-config-openthread-openthread-thread-extensioned-features-use-a-header-file-defined-by-customer-openthread-custom-header-config": false, "component-config-openthread-openthread-thread-extensioned-features": false, "component-config-openthread-openthread-thread-log": false, "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-thread-address-query-config": false, "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters": false, "component-config-openthread-openthread-thread-core-features-thread-memory-allocation": false, "component-config-openthread-openthread-thread-core-features-enable-csl-feature-csl-configurations": false, "component-config-openthread-openthread-thread-core-features-enable-dns64-client-dns64-client-configurations": false, "component-config-openthread-openthread-thread-core-features-enable-srp-client-srp-client-configurations": false, "component-config-openthread-openthread-thread-core-features-enable-commissioner-commissioner-configurations": false, "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature": false, "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link": false, "component-config-openthread-openthread-thread-core-features-thread-trel-radio-link": false, "component-config-openthread-openthread-thread-core-features-thread-operational-dataset": false, "component-config-openthread-openthread-thread-core-features": false, "component-config-openthread-openthread-thread-console": false, "component-config-openthread-openthread-thread-version-message": false, "component-config-openthread": true, "component-config-nvs-security-provider": false, "component-config-nvs": true, "component-config-newlib": true, "component-config-esp-mqtt-configurations": true, "component-config-mbedtls-certificates": true, "component-config-mbedtls-symmetric-ciphers": true, "component-config-mbedtls-tls-key-exchange-methods": true, "component-config-mbedtls-enable-ecdsa-signing-using-on-chip-ecdsa-peripheral-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral": false, "component-config-mbedtls-certificate-bundle": true, "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations": false, "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations": false, "component-config-mbedtls-mbedtls-v3-x-related": true, "component-config-mbedtls": true, "component-config-lwip-hooks": true, "component-config-lwip-dns": true, "component-config-lwip-sntp": true, "component-config-lwip-lwip-raw-api": true, "component-config-lwip-icmp": true, "component-config-lwip-checksums": true, "component-config-lwip-udp": true, "component-config-lwip-tcp": true, "component-config-lwip-dhcp-server": true, "component-config-lwip": true, "component-config-log-format": true, "component-config-log-log-level-level-settings": true, "component-config-log-log-level": true, "component-config-log": true, "component-config-ieee-802-15-4": false, "component-config-heap-memory-debugging": true, "component-config-hardware-abstraction-layer-hal-and-low-level-ll-": true, "component-config-freertos-extra": false, "component-config-freertos-port": true, "component-config-freertos-kernel": true, "component-config-freertos": true, "component-config-fat-filesystem-support": true, "component-config-core-dump": true, "component-config-wi-fi-wps-configuration-options": true, "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-scan-configuration": false, "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-methods": false, "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-triggers": false, "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app": false, "component-config-wi-fi": true, "component-config-esp-timer-high-resolution-timer-": true, "component-config-ipc-inter-processor-call-": true, "component-config-esp-system-settings-brownout-detector": true, "component-config-esp-system-settings-memory-protection": true, "component-config-esp-system-settings": true, "component-config-esp-security-specific-crypto-dpa-protection": false, "component-config-esp-security-specific": false, "component-config-esp-ringbuf": true, "component-config-esp-psram": false, "component-config-power-management": true, "component-config-phy": true, "component-config-partition-api-configuration": false, "component-config-esp-netif-adapter": true, "component-config-esp-mm-memory-management-configurations": false, "component-config-esp-driver-lcd-controller-configurations": true, "component-config-hardware-settings-main-xtal-config": true, "component-config-hardware-settings-2d-dma-configurations": false, "component-config-hardware-settings-dw_gdma-configurations": false, "component-config-hardware-settings-gdma-configurations": true, "component-config-hardware-settings-etm-configuration": false, "component-config-hardware-settings-peripheral-control": true, "component-config-hardware-settings-rtc-clock-config": true, "component-config-hardware-settings-sleep-config": true, "component-config-hardware-settings-mac-config": true, "component-config-hardware-settings-chip-revision-maximum-supported-esp32-c3-efuse-block-revision-efuse-block-rev-v1-99-": false, "component-config-hardware-settings-chip-revision-maximum-supported-esp32-c3-revision-rev-v1-99-": false, "component-config-hardware-settings-chip-revision": true, "component-config-hardware-settings": true, "component-config-esp-https-server": true, "component-config-esp-https-ota": true, "component-config-http-server": true, "component-config-esp-http-client": true, "component-config-esp-hid": true, "component-config-gdb-stub": true, "component-config-event-loop-library": true, "component-config-ethernet": true, "component-config-esp-driver-usb-serial-jtag-configuration": true, "component-config-esp-driver-uart-configurations": true, "component-config-esp-driver-temperature-sensor-configurations": true, "component-config-esp-driver-touch-sensor-configurations": false, "component-config-esp-driver-spi-configurations": true, "component-config-esp-driver-sigma-delta-modulator-configurations": true, "component-config-esp-driver-rmt-configurations": true, "component-config-esp-driver-pcnt-configurations": false, "component-config-esp-driver-parallel-io-configurations": false, "component-config-esp-driver-mcpwm-configurations": false, "component-config-esp-driver-ledc-configurations": true, "component-config-esp-driver-jpeg-codec-configurations": false, "component-config-esp-driver-isp-configurations": false, "component-config-esp-driver-i2s-configurations": true, "component-config-esp-driver-i2c-configurations": true, "component-config-esp-driver-gptimer-configurations": true, "component-config-esp-driver-gpio-configurations": true, "component-config-esp-driver-dac-configurations": false, "component-config-esp-driver-camera-controller-configurations": false, "component-config-esp-driver-analog-comparator-configurations": false, "component-config-common-esp-related": true, "component-config-wireless-coexistence": true, "component-config-adc-and-adc-calibration-adc-calibration-configurations": false, "component-config-adc-and-adc-calibration": true, "component-config-esp-tls": true, "component-config-efuse-bit-manager": true, "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations": true, "component-config-driver-configurations-legacy-sdm-driver-configurations": true, "component-config-driver-configurations-legacy-pcnt-driver-configurations": false, "component-config-driver-configurations-legacy-i2s-driver-configurations": true, "component-config-driver-configurations-legacy-rmt-driver-configurations": true, "component-config-driver-configurations-legacy-timer-group-driver-configurations": true, "component-config-driver-configurations-legacy-mcpwm-driver-configurations": false, "component-config-driver-configurations-legacy-dac-driver-configurations": false, "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration": true, "component-config-driver-configurations-legacy-adc-driver-configuration": true, "component-config-driver-configurations-twai-configuration": true, "component-config-driver-configurations": true, "component-config-console-library": true, "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option": false, "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models": false, "component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models": false, "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level": false, "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level": false, "component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support": false, "component-config-bluetooth-common-options": true, "component-config-bluetooth-controller-options-ble-disconnects-when-instant-passed-0x28-occurs": true, "component-config-bluetooth-controller-options-modem-sleep-options": true, "component-config-bluetooth-controller-options": true, "component-config-bluetooth-nimble-options-host-controller-transport": true, "component-config-bluetooth-nimble-options-ble-services-device-information-service": true, "component-config-bluetooth-nimble-options-ble-services": true, "component-config-bluetooth-nimble-options-gap-service-gap-device-name-write-permissions": true, "component-config-bluetooth-nimble-options-gap-service-gap-appearance-write-permissions": true, "component-config-bluetooth-nimble-options-gap-service": true, "component-config-bluetooth-nimble-options-memory-settings": true, "component-config-bluetooth-nimble-options": true, "component-config-bluetooth-bluedroid-options-bt-debug-log-level": false, "component-config-bluetooth-bluedroid-options-classic-bluetooth-a2dp-avrcp-features": false, "component-config-bluetooth-bluedroid-options": false, "component-config-bluetooth": true, "component-config-application-level-tracing-freertos-systemview-tracing": false, "component-config-application-level-tracing": true, "component-config": true, "compiler-options": true, "esp-rainmaker-config-esp-rainmaker-command-response": true, "esp-rainmaker-config-esp-rainmaker-scenes": true, "esp-rainmaker-config-esp-rainmaker-scheduling": true, "esp-rainmaker-config-esp-rainmaker-ota-config": true, "esp-rainmaker-config": true, "esp-rainmaker-app-wi-fi-provisioning": true, "example-configuration": true, "partition-table": true, "serial-flasher-config": true, "boot-rom-behavior": true, "application-manager": true, "security-features-potentially-insecure-options": false, "security-features": true, "bootloader-config-serial-flash-configurations": true, "bootloader-config-log-format": true, "bootloader-config-log": true, "bootloader-config-bootloader-manager": true, "bootloader-config": true, "build-type": true}} - -{"version": 2, "values": {}, "ranges": {}, "visible": {}} - -{"version": 2, "values": {}, "ranges": {}, "visible": {}} - diff --git a/RainMaker_Table-Lights/build/mqtt_server.crt.S b/RainMaker_Table-Lights/build/mqtt_server.crt.S deleted file mode 100644 index f35a928c6..000000000 --- a/RainMaker_Table-Lights/build/mqtt_server.crt.S +++ /dev/null @@ -1,96 +0,0 @@ -/* * Data converted from /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/server_certs/mqtt_server.crt - * (null byte appended) - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global mqtt_server_crt -mqtt_server_crt: - -.global _binary_mqtt_server_crt_start -_binary_mqtt_server_crt_start: /* for objcopy compatibility */ -.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 -.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x44 -.byte 0x51, 0x54, 0x43, 0x43, 0x41, 0x69, 0x6d, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x54 -.byte 0x42, 0x6d, 0x79, 0x66, 0x7a, 0x35, 0x6d, 0x2f, 0x6a, 0x41, 0x6f, 0x35, 0x34, 0x76, 0x42, 0x34 -.byte 0x69, 0x6b, 0x50, 0x6d, 0x6c, 0x6a, 0x5a, 0x62, 0x79, 0x6a, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71 -.byte 0x68, 0x6b, 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x0a, 0x41, 0x44, 0x41 -.byte 0x35, 0x4d, 0x51, 0x73, 0x77, 0x43, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x47, 0x45, 0x77, 0x4a -.byte 0x56, 0x55, 0x7a, 0x45, 0x50, 0x4d, 0x41, 0x30, 0x47, 0x41, 0x31, 0x55, 0x45, 0x43, 0x68, 0x4d -.byte 0x47, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x4d, 0x52, 0x6b, 0x77, 0x46, 0x77, 0x59 -.byte 0x44, 0x56, 0x51, 0x51, 0x44, 0x45, 0x78, 0x42, 0x42, 0x62, 0x57, 0x46, 0x36, 0x0a, 0x62, 0x32 -.byte 0x34, 0x67, 0x55, 0x6d, 0x39, 0x76, 0x64, 0x43, 0x42, 0x44, 0x51, 0x53, 0x41, 0x78, 0x4d, 0x42 -.byte 0x34, 0x58, 0x44, 0x54, 0x45, 0x31, 0x4d, 0x44, 0x55, 0x79, 0x4e, 0x6a, 0x41, 0x77, 0x4d, 0x44 -.byte 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x58, 0x44, 0x54, 0x4d, 0x34, 0x4d, 0x44, 0x45, 0x78, 0x4e, 0x7a -.byte 0x41, 0x77, 0x4d, 0x44, 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x77, 0x4f, 0x54, 0x45, 0x4c, 0x0a, 0x4d -.byte 0x41, 0x6b, 0x47, 0x41, 0x31, 0x55, 0x45, 0x42, 0x68, 0x4d, 0x43, 0x56, 0x56, 0x4d, 0x78, 0x44 -.byte 0x7a, 0x41, 0x4e, 0x42, 0x67, 0x4e, 0x56, 0x42, 0x41, 0x6f, 0x54, 0x42, 0x6b, 0x46, 0x74, 0x59 -.byte 0x58, 0x70, 0x76, 0x62, 0x6a, 0x45, 0x5a, 0x4d, 0x42, 0x63, 0x47, 0x41, 0x31, 0x55, 0x45, 0x41 -.byte 0x78, 0x4d, 0x51, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x49, 0x46, 0x4a, 0x76, 0x0a -.byte 0x62, 0x33, 0x51, 0x67, 0x51, 0x30, 0x45, 0x67, 0x4d, 0x54, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77 -.byte 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42 -.byte 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43 -.byte 0x67, 0x67, 0x45, 0x42, 0x41, 0x4c, 0x4a, 0x34, 0x67, 0x48, 0x48, 0x4b, 0x65, 0x4e, 0x58, 0x6a -.byte 0x0a, 0x63, 0x61, 0x39, 0x48, 0x67, 0x46, 0x42, 0x30, 0x66, 0x57, 0x37, 0x59, 0x31, 0x34, 0x68 -.byte 0x32, 0x39, 0x4a, 0x6c, 0x6f, 0x39, 0x31, 0x67, 0x68, 0x59, 0x50, 0x6c, 0x30, 0x68, 0x41, 0x45 -.byte 0x76, 0x72, 0x41, 0x49, 0x74, 0x68, 0x74, 0x4f, 0x67, 0x51, 0x33, 0x70, 0x4f, 0x73, 0x71, 0x54 -.byte 0x51, 0x4e, 0x72, 0x6f, 0x42, 0x76, 0x6f, 0x33, 0x62, 0x53, 0x4d, 0x67, 0x48, 0x46, 0x7a, 0x5a -.byte 0x4d, 0x0a, 0x39, 0x4f, 0x36, 0x49, 0x49, 0x38, 0x63, 0x2b, 0x36, 0x7a, 0x66, 0x31, 0x74, 0x52 -.byte 0x6e, 0x34, 0x53, 0x57, 0x69, 0x77, 0x33, 0x74, 0x65, 0x35, 0x64, 0x6a, 0x67, 0x64, 0x59, 0x5a -.byte 0x36, 0x6b, 0x2f, 0x6f, 0x49, 0x32, 0x70, 0x65, 0x56, 0x4b, 0x56, 0x75, 0x52, 0x46, 0x34, 0x66 -.byte 0x6e, 0x39, 0x74, 0x42, 0x62, 0x36, 0x64, 0x4e, 0x71, 0x63, 0x6d, 0x7a, 0x55, 0x35, 0x4c, 0x2f -.byte 0x71, 0x77, 0x0a, 0x49, 0x46, 0x41, 0x47, 0x62, 0x48, 0x72, 0x51, 0x67, 0x4c, 0x4b, 0x6d, 0x2b -.byte 0x61, 0x2f, 0x73, 0x52, 0x78, 0x6d, 0x50, 0x55, 0x44, 0x67, 0x48, 0x33, 0x4b, 0x4b, 0x48, 0x4f -.byte 0x56, 0x6a, 0x34, 0x75, 0x74, 0x57, 0x70, 0x2b, 0x55, 0x68, 0x6e, 0x4d, 0x4a, 0x62, 0x75, 0x6c -.byte 0x48, 0x68, 0x65, 0x62, 0x34, 0x6d, 0x6a, 0x55, 0x63, 0x41, 0x77, 0x68, 0x6d, 0x61, 0x68, 0x52 -.byte 0x57, 0x61, 0x36, 0x0a, 0x56, 0x4f, 0x75, 0x6a, 0x77, 0x35, 0x48, 0x35, 0x53, 0x4e, 0x7a, 0x2f -.byte 0x30, 0x65, 0x67, 0x77, 0x4c, 0x58, 0x30, 0x74, 0x64, 0x48, 0x41, 0x31, 0x31, 0x34, 0x67, 0x6b -.byte 0x39, 0x35, 0x37, 0x45, 0x57, 0x57, 0x36, 0x37, 0x63, 0x34, 0x63, 0x58, 0x38, 0x6a, 0x4a, 0x47 -.byte 0x4b, 0x4c, 0x68, 0x44, 0x2b, 0x72, 0x63, 0x64, 0x71, 0x73, 0x71, 0x30, 0x38, 0x70, 0x38, 0x6b -.byte 0x44, 0x69, 0x31, 0x4c, 0x0a, 0x39, 0x33, 0x46, 0x63, 0x58, 0x6d, 0x6e, 0x2f, 0x36, 0x70, 0x55 -.byte 0x43, 0x79, 0x7a, 0x69, 0x4b, 0x72, 0x6c, 0x41, 0x34, 0x62, 0x39, 0x76, 0x37, 0x4c, 0x57, 0x49 -.byte 0x62, 0x78, 0x63, 0x63, 0x65, 0x56, 0x4f, 0x46, 0x33, 0x34, 0x47, 0x66, 0x49, 0x44, 0x35, 0x79 -.byte 0x48, 0x49, 0x39, 0x59, 0x2f, 0x51, 0x43, 0x42, 0x2f, 0x49, 0x49, 0x44, 0x45, 0x67, 0x45, 0x77 -.byte 0x2b, 0x4f, 0x79, 0x51, 0x6d, 0x0a, 0x6a, 0x67, 0x53, 0x75, 0x62, 0x4a, 0x72, 0x49, 0x71, 0x67 -.byte 0x30, 0x43, 0x41, 0x77, 0x45, 0x41, 0x41, 0x61, 0x4e, 0x43, 0x4d, 0x45, 0x41, 0x77, 0x44, 0x77 -.byte 0x59, 0x44, 0x56, 0x52, 0x30, 0x54, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x55, 0x77, 0x41, 0x77 -.byte 0x45, 0x42, 0x2f, 0x7a, 0x41, 0x4f, 0x42, 0x67, 0x4e, 0x56, 0x48, 0x51, 0x38, 0x42, 0x41, 0x66 -.byte 0x38, 0x45, 0x42, 0x41, 0x4d, 0x43, 0x0a, 0x41, 0x59, 0x59, 0x77, 0x48, 0x51, 0x59, 0x44, 0x56 -.byte 0x52, 0x30, 0x4f, 0x42, 0x42, 0x59, 0x45, 0x46, 0x49, 0x51, 0x59, 0x7a, 0x49, 0x55, 0x30, 0x37 -.byte 0x4c, 0x77, 0x4d, 0x6c, 0x4a, 0x51, 0x75, 0x43, 0x46, 0x6d, 0x63, 0x78, 0x37, 0x49, 0x51, 0x54 -.byte 0x67, 0x6f, 0x49, 0x4d, 0x41, 0x30, 0x47, 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44 -.byte 0x51, 0x45, 0x42, 0x43, 0x77, 0x55, 0x41, 0x0a, 0x41, 0x34, 0x49, 0x42, 0x41, 0x51, 0x43, 0x59 -.byte 0x38, 0x6a, 0x64, 0x61, 0x51, 0x5a, 0x43, 0x68, 0x47, 0x73, 0x56, 0x32, 0x55, 0x53, 0x67, 0x67 -.byte 0x4e, 0x69, 0x4d, 0x4f, 0x72, 0x75, 0x59, 0x6f, 0x75, 0x36, 0x72, 0x34, 0x6c, 0x4b, 0x35, 0x49 -.byte 0x70, 0x44, 0x42, 0x2f, 0x47, 0x2f, 0x77, 0x6b, 0x6a, 0x55, 0x75, 0x30, 0x79, 0x4b, 0x47, 0x58 -.byte 0x39, 0x72, 0x62, 0x78, 0x65, 0x6e, 0x44, 0x49, 0x0a, 0x55, 0x35, 0x50, 0x4d, 0x43, 0x43, 0x6a -.byte 0x6a, 0x6d, 0x43, 0x58, 0x50, 0x49, 0x36, 0x54, 0x35, 0x33, 0x69, 0x48, 0x54, 0x66, 0x49, 0x55 -.byte 0x4a, 0x72, 0x55, 0x36, 0x61, 0x64, 0x54, 0x72, 0x43, 0x43, 0x32, 0x71, 0x4a, 0x65, 0x48, 0x5a -.byte 0x45, 0x52, 0x78, 0x68, 0x6c, 0x62, 0x49, 0x31, 0x42, 0x6a, 0x6a, 0x74, 0x2f, 0x6d, 0x73, 0x76 -.byte 0x30, 0x74, 0x61, 0x64, 0x51, 0x31, 0x77, 0x55, 0x73, 0x0a, 0x4e, 0x2b, 0x67, 0x44, 0x53, 0x36 -.byte 0x33, 0x70, 0x59, 0x61, 0x41, 0x43, 0x62, 0x76, 0x58, 0x79, 0x38, 0x4d, 0x57, 0x79, 0x37, 0x56 -.byte 0x75, 0x33, 0x33, 0x50, 0x71, 0x55, 0x58, 0x48, 0x65, 0x65, 0x45, 0x36, 0x56, 0x2f, 0x55, 0x71 -.byte 0x32, 0x56, 0x38, 0x76, 0x69, 0x54, 0x4f, 0x39, 0x36, 0x4c, 0x58, 0x46, 0x76, 0x4b, 0x57, 0x6c -.byte 0x4a, 0x62, 0x59, 0x4b, 0x38, 0x55, 0x39, 0x30, 0x76, 0x76, 0x0a, 0x6f, 0x2f, 0x75, 0x66, 0x51 -.byte 0x4a, 0x56, 0x74, 0x4d, 0x56, 0x54, 0x38, 0x51, 0x74, 0x50, 0x48, 0x52, 0x68, 0x38, 0x6a, 0x72 -.byte 0x64, 0x6b, 0x50, 0x53, 0x48, 0x43, 0x61, 0x32, 0x58, 0x56, 0x34, 0x63, 0x64, 0x46, 0x79, 0x51 -.byte 0x7a, 0x52, 0x31, 0x62, 0x6c, 0x64, 0x5a, 0x77, 0x67, 0x4a, 0x63, 0x4a, 0x6d, 0x41, 0x70, 0x7a -.byte 0x79, 0x4d, 0x5a, 0x46, 0x6f, 0x36, 0x49, 0x51, 0x36, 0x58, 0x55, 0x0a, 0x35, 0x4d, 0x73, 0x49 -.byte 0x2b, 0x79, 0x4d, 0x52, 0x51, 0x2b, 0x68, 0x44, 0x4b, 0x58, 0x4a, 0x69, 0x6f, 0x61, 0x6c, 0x64 -.byte 0x58, 0x67, 0x6a, 0x55, 0x6b, 0x4b, 0x36, 0x34, 0x32, 0x4d, 0x34, 0x55, 0x77, 0x74, 0x42, 0x56 -.byte 0x38, 0x6f, 0x62, 0x32, 0x78, 0x4a, 0x4e, 0x44, 0x64, 0x32, 0x5a, 0x68, 0x77, 0x4c, 0x6e, 0x6f -.byte 0x51, 0x64, 0x65, 0x58, 0x65, 0x47, 0x41, 0x44, 0x62, 0x6b, 0x70, 0x79, 0x0a, 0x72, 0x71, 0x58 -.byte 0x52, 0x66, 0x62, 0x6f, 0x51, 0x6e, 0x6f, 0x5a, 0x73, 0x47, 0x34, 0x71, 0x35, 0x57, 0x54, 0x50 -.byte 0x34, 0x36, 0x38, 0x53, 0x51, 0x76, 0x76, 0x47, 0x35, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45 -.byte 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d -.byte 0x2d, 0x2d, 0x2d, 0x0a, 0x00 - -.global _binary_mqtt_server_crt_end -_binary_mqtt_server_crt_end: /* for objcopy compatibility */ - - -.global mqtt_server_crt_length -mqtt_server_crt_length: /* not including null byte */ -.long 1188 diff --git a/RainMaker_Table-Lights/build/ota_data_initial.bin b/RainMaker_Table-Lights/build/ota_data_initial.bin deleted file mode 100644 index b4033a708..000000000 --- a/RainMaker_Table-Lights/build/ota_data_initial.bin +++ /dev/null @@ -1 +0,0 @@ -ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/RainMaker_Table-Lights/build/otadata-flash_args b/RainMaker_Table-Lights/build/otadata-flash_args deleted file mode 100644 index d815ed92d..000000000 --- a/RainMaker_Table-Lights/build/otadata-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0x16000 ota_data_initial.bin diff --git a/RainMaker_Table-Lights/build/partition-table-flash_args b/RainMaker_Table-Lights/build/partition-table-flash_args deleted file mode 100644 index 7a7e33725..000000000 --- a/RainMaker_Table-Lights/build/partition-table-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 80m --flash_size 4MB -0xc000 partition_table/partition-table.bin diff --git a/RainMaker_Table-Lights/build/partition_table/partition-table.bin b/RainMaker_Table-Lights/build/partition_table/partition-table.bin deleted file mode 100644 index 2365143a5..000000000 Binary files a/RainMaker_Table-Lights/build/partition_table/partition-table.bin and /dev/null differ diff --git a/RainMaker_Table-Lights/build/project_description.json b/RainMaker_Table-Lights/build/project_description.json deleted file mode 100644 index 951ad9f8d..000000000 --- a/RainMaker_Table-Lights/build/project_description.json +++ /dev/null @@ -1,3438 +0,0 @@ -{ - "version": "1.2", - "project_name": "RainMaker_Table-Lights", - "project_version": "1.0", - "project_path": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights", - "idf_path": "/home/alex/esp/v5.4.1/esp-idf", - "build_dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build", - "config_file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig", - "config_defaults": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/sdkconfig.defaults", - "bootloader_elf": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/bootloader/bootloader.elf", - "app_elf": "RainMaker_Table-Lights.elf", - "app_bin": "RainMaker_Table-Lights.bin", - "build_type": "flash_app", - "git_revision": "v5.4.1", - "target": "esp32c3", - "rev": "", - "min_rev": "3", - "max_rev": "199", - "phy_data_partition": "", - "monitor_baud" : "115200", - "monitor_toolprefix": "riscv32-esp-elf-", - "c_compiler": "/home/alex/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc", - "config_environment" : { - "COMPONENT_KCONFIGS" : "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/bt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/console/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/driver/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/efuse/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_common/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_event/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_psram/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_security/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_system/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/fatfs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/freertos/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/hal/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/heap/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/ieee802154/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/log/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/lwip/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/newlib/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/openthread/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/protocomm/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/pthread/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/soc/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/spiffs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/ulp/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/unity/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/usb/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/vfs/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Kconfig;/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/app_insights/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/Kconfig;/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/Kconfig;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD" : "/home/alex/esp/v5.4.1/esp-idf/components/bootloader/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/esptool_py/Kconfig.projbuild;/home/alex/esp/v5.4.1/esp-idf/components/partition_table/Kconfig.projbuild;/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/Kconfig.projbuild;/home/alex/.espressif/esp-rainmaker/examples/common/app_network/Kconfig.projbuild;/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/Kconfig.projbuild" - }, - "common_component_reqs": [ "cxx", "newlib", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "riscv" ], - "build_components" : [ "app_insights", "app_network", "app_reset", "app_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_cam", "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "esp_driver_isp", "esp_driver_jpeg", "esp_driver_ledc", "esp_driver_mcpwm", "esp_driver_parlio", "esp_driver_pcnt", "esp_driver_ppa", "esp_driver_rmt", "esp_driver_sdio", "esp_driver_sdm", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_spi", "esp_driver_touch_sens", "esp_driver_tsens", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_eth", "esp_event", "esp_gdbstub", "esp_hid", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_hw_support", "esp_lcd", "esp_local_ctrl", "esp_mm", "esp_netif", "esp_netif_stack", "esp_partition", "esp_phy", "esp_pm", "esp_psram", "esp_rainmaker", "esp_ringbuf", "esp_rom", "esp_security", "esp_system", "esp_timer", "esp_vfs_console", "esp_wifi", "espcoredump", "espressif__cbor", "espressif__esp-serial-flasher", "espressif__esp_diag_data_store", "espressif__esp_diagnostics", "espressif__esp_insights", "espressif__esp_rcp_update", "espressif__esp_schedule", "espressif__esp_secure_cert_mgr", "espressif__jsmn", "espressif__json_generator", "espressif__json_parser", "espressif__mdns", "espressif__network_provisioning", "espressif__qrcode", "espressif__rmaker_common", "esptool_py", "fatfs", "freertos", "gpio_button", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "ledc_driver", "log", "lwip", "main", "mbedtls", "mqtt", "newlib", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "protobuf-c", "protocomm", "pthread", "riscv", "rt", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "ws2812_led", "" ], - "build_component_paths" : [ "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights", "/home/alex/.espressif/esp-rainmaker/examples/common/app_network", "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset", "/home/alex/esp/v5.4.1/esp-idf/components/app_trace", "/home/alex/esp/v5.4.1/esp-idf/components/app_update", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", "/home/alex/esp/v5.4.1/esp-idf/components/bt", "/home/alex/esp/v5.4.1/esp-idf/components/cmock", "/home/alex/esp/v5.4.1/esp-idf/components/console", "/home/alex/esp/v5.4.1/esp-idf/components/cxx", "/home/alex/esp/v5.4.1/esp-idf/components/driver", "/home/alex/esp/v5.4.1/esp-idf/components/efuse", "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc", "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex", "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag", "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth", "/home/alex/esp/v5.4.1/esp-idf/components/esp_event", "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server", "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota", "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd", "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl", "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack", "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy", "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm", "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker", "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer", "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common", "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs", "/home/alex/esp/v5.4.1/esp-idf/components/freertos", "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button", "/home/alex/esp/v5.4.1/esp-idf/components/hal", "/home/alex/esp/v5.4.1/esp-idf/components/heap", "/home/alex/esp/v5.4.1/esp-idf/components/http_parser", "/home/alex/esp/v5.4.1/esp-idf/components/idf_test", "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154", "/home/alex/esp/v5.4.1/esp-idf/components/json", "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver", "/home/alex/esp/v5.4.1/esp-idf/components/log", "/home/alex/esp/v5.4.1/esp-idf/components/lwip", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main", "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls", "/home/alex/esp/v5.4.1/esp-idf/components/mqtt", "/home/alex/esp/v5.4.1/esp-idf/components/newlib", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider", "/home/alex/esp/v5.4.1/esp-idf/components/openthread", "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm", "/home/alex/esp/v5.4.1/esp-idf/components/pthread", "/home/alex/esp/v5.4.1/esp-idf/components/riscv", "/home/alex/esp/v5.4.1/esp-idf/components/rt", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc", "/home/alex/esp/v5.4.1/esp-idf/components/soc", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs", "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport", "/home/alex/esp/v5.4.1/esp-idf/components/ulp", "/home/alex/esp/v5.4.1/esp-idf/components/unity", "/home/alex/esp/v5.4.1/esp-idf/components/usb", "/home/alex/esp/v5.4.1/esp-idf/components/vfs", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant", "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led", "" ], - "build_component_info" : { - "app_insights": { - "alias": "idf::app_insights", - "target": "___idf_app_insights", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights", - "type": "LIBRARY", - "lib": "__idf_app_insights", - "reqs": [], - "priv_reqs": [ "espressif__esp_insights", "espressif__esp_diagnostics", "esp_rainmaker" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp_insights", "esp_rainmaker" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_insights/libapp_insights.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights/app_insights.c" ], - "include_dirs": [ "." ] - }, - "app_network": { - "alias": "idf::app_network", - "target": "___idf_app_network", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_network", - "type": "LIBRARY", - "lib": "__idf_app_network", - "reqs": [], - "priv_reqs": [ "espressif__qrcode", "nvs_flash", "esp_event", "espressif__rmaker_common", "vfs", "wifi_provisioning", "espressif__network_provisioning", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__qrcode" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_network/libapp_network.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_wifi_internal.c", "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_network.c", "/home/alex/.espressif/esp-rainmaker/examples/common/app_network/app_thread_internal.c" ], - "include_dirs": [ "." ] - }, - "app_reset": { - "alias": "idf::app_reset", - "target": "___idf_app_reset", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset", - "type": "LIBRARY", - "lib": "__idf_app_reset", - "reqs": [ "gpio_button", "espressif__rmaker_common" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_reset/libapp_reset.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset/app_reset.c" ], - "include_dirs": [ "." ] - }, - "app_trace": { - "alias": "idf::app_trace", - "target": "___idf_app_trace", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace", - "type": "LIBRARY", - "lib": "__idf_app_trace", - "reqs": [ "esp_timer" ], - "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_trace/libapp_trace.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace.c", "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/app_trace_util.c", "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/host_file_io.c", "/home/alex/esp/v5.4.1/esp-idf/components/app_trace/port/port_uart.c" ], - "include_dirs": [ "include" ] - }, - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_update", - "type": "LIBRARY", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/app_update/libapp_update.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_ops.c", "/home/alex/esp/v5.4.1/esp-idf/components/app_update/esp_ota_app_desc.c" ], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", - "type": "CONFIG_ONLY", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", - "type": "LIBRARY", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bootloader_support/libbootloader_support.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/secure_boot.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32c3.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c3.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c", "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support/src/esp32c3/secure_boot_secure_features.c" ], - "include_dirs": [ "include", "bootloader_flash/include" ] - }, - "bt": { - "alias": "idf::bt", - "target": "___idf_bt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bt", - "type": "LIBRARY", - "lib": "__idf_bt", - "reqs": [ "esp_timer", "esp_wifi" ], - "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/bt/libbt.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/bt/controller/esp32c3/bt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_alarm.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/api/esp_blufi_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/hci_log/bt_hci_log.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_manage.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/core/btc_task.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_prf.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/blufi_protocol.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/alarm.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/allocator.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/buffer.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/config.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_queue.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/pkt_queue.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/fixed_pkt_queue.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/future.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_functions.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/hash_map.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/list.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/mutex.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/thread.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/osi.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/osi/semaphore.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/porting/mem/bt_osi_mem.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/ble_log/ble_log_spi_out.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/src/transport.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/util/src/addr.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/tps/src/ble_svc_tps.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ias/src/ble_svc_ias.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/ans/src/ble_svc_ans.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hr/src/ble_svc_hr.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/htp/src/ble_svc_htp.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/gap/src/ble_svc_gap.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/bas/src/ble_svc_bas.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/dis/src/ble_svc_dis.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/lls/src/ble_svc_lls.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/prox/src/ble_svc_prox.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cts/src/ble_svc_cts.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/hid/src/ble_svc_hid.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/sps/src/ble_svc_sps.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/services/cte/src/ble_svc_cte.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_conn.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store_util.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_shutdown.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_id.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_svr.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ibeacon.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_atomic.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_alg.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_stop.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_evt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mqueue.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_periodic_sync.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_ead.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_aes_ccm.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_store.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_lgcy.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_cfg.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_clt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_coc.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_mbuf.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_att_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_log.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eddystone.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_startup.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap_sig.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gap.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_uuid.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_pvcy.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_flow.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_l2cap.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_sm_sc.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_misc.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gatts.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_adv.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_hci_util.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_hs_resolv.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/ram/src/ble_store_ram.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_config.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/store/config/src/ble_store_nvs.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_gattc_cache_conn.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/host/src/ble_eatt.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/nimble_port.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/nimble_port_freertos.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/port/src/nvs_port.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/endian.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mempool.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/mem.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_mbuf.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/nimble/src/os_msys_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/porting/npl/freertos/src/npl_os_freertos.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/host/nimble/nimble/nimble/transport/esp_ipc_legacy/src/hci_esp_ipc_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/bt/common/btc/profile/esp/blufi/nimble_host/esp_blufi.c" ], - "include_dirs": [ "include/esp32c3/include", "common/osi/include", "common/api/include/api", "common/btc/profile/esp/blufi/include", "common/btc/profile/esp/include", "common/hci_log/include", "common/ble_log/include", "host/nimble/nimble/nimble/host/include", "host/nimble/nimble/nimble/include", "host/nimble/nimble/nimble/host/services/ans/include", "host/nimble/nimble/nimble/host/services/bas/include", "host/nimble/nimble/nimble/host/services/dis/include", "host/nimble/nimble/nimble/host/services/gap/include", "host/nimble/nimble/nimble/host/services/gatt/include", "host/nimble/nimble/nimble/host/services/hr/include", "host/nimble/nimble/nimble/host/services/htp/include", "host/nimble/nimble/nimble/host/services/ias/include", "host/nimble/nimble/nimble/host/services/ipss/include", "host/nimble/nimble/nimble/host/services/lls/include", "host/nimble/nimble/nimble/host/services/prox/include", "host/nimble/nimble/nimble/host/services/cts/include", "host/nimble/nimble/nimble/host/services/tps/include", "host/nimble/nimble/nimble/host/services/hid/include", "host/nimble/nimble/nimble/host/services/sps/include", "host/nimble/nimble/nimble/host/services/cte/include", "host/nimble/nimble/nimble/host/util/include", "host/nimble/nimble/nimble/host/store/ram/include", "host/nimble/nimble/nimble/host/store/config/include", "host/nimble/nimble/porting/nimble/include", "host/nimble/port/include", "host/nimble/nimble/nimble/transport/include", "host/nimble/nimble/nimble/include", "porting/include", "host/nimble/nimble/porting/npl/freertos/include", "host/nimble/esp-hci/include" ] - }, - "cmock": { - "alias": "idf::cmock", - "target": "___idf_cmock", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cmock", - "type": "LIBRARY", - "lib": "__idf_cmock", - "reqs": [ "unity" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cmock/libcmock.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/cmock/CMock/src/cmock.c" ], - "include_dirs": [ "CMock/src" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/console", - "type": "LIBRARY", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/console/libconsole.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/console/commands.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/split_argv.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/linenoise/linenoise.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/esp_console_repl_chip.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_date.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dbl.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_dstr.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_end.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_file.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_hashtable.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_int.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_lit.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rem.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_rex.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_str.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/arg_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/console/argtable3/argtable3.c" ], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/console" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cxx", - "type": "LIBRARY", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "pthread", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/cxx/libcxx.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_guards.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/cxx/cxx_init.cpp" ], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/driver", - "type": "LIBRARY", - "lib": "__idf_driver", - "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag" ], - "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/driver/libdriver.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/timer_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/i2c/i2c.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/i2s_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rmt_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/driver/twai/twai.c" ], - "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/efuse", - "type": "LIBRARY", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/efuse/libefuse.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_table.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_fields.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_rtc_calib.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/esp32c3/esp_efuse_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", "/home/alex/esp/v5.4.1/esp-idf/components/efuse/src/esp_efuse_startup.c" ], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp-tls": { - "alias": "idf::esp-tls", - "target": "___idf_esp-tls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", - "type": "LIBRARY", - "lib": "__idf_esp-tls", - "reqs": [ "mbedtls" ], - "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp-tls/libesp-tls.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_error_capture.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_platform_port.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c" ], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", "esp-tls-crypto" ] - }, - "esp_adc": { - "alias": "idf::esp_adc", - "target": "___idf_esp_adc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc", - "type": "LIBRARY", - "lib": "__idf_esp_adc", - "reqs": [], - "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_adc/libesp_adc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_oneshot.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_continuous.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_monitor.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/gdma/adc_dma.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/adc_filter.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/esp32c3/curve_fitting_coefficients.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc/deprecated/esp32c3/esp_adc_cal_legacy.c" ], - "include_dirs": [ "include", "interface", "esp32c3/include", "deprecated/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", - "type": "LIBRARY", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_app_format/libesp_app_format.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format/esp_app_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", - "type": "LIBRARY", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex", - "type": "LIBRARY", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "driver", "esp_event" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_coex/libesp_coex.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/lib_printf.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/esp32c3/esp_coex_adapter.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex/src/coexist_debug.c" ], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", - "type": "LIBRARY", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_common/libesp_common.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_cam": { - "alias": "idf::esp_driver_cam", - "target": "___idf_esp_driver_cam", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam", - "type": "LIBRARY", - "lib": "__idf_esp_driver_cam", - "reqs": [ "esp_driver_isp", "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_cam/libesp_driver_cam.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c" ], - "include_dirs": [ "include", "interface" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio", - "type": "LIBRARY", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer", - "type": "LIBRARY", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c", - "type": "LIBRARY", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_master.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c/i2c_slave.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s", - "type": "LIBRARY", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_std.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_isp": { - "alias": "idf::esp_driver_isp", - "target": "___idf_esp_driver_isp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_isp", - "reqs": [ "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_jpeg": { - "alias": "idf::esp_driver_jpeg", - "target": "___idf_esp_driver_jpeg", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_jpeg", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc", - "type": "LIBRARY", - "lib": "__idf_esp_driver_ledc", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc/src/ledc.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ppa": { - "alias": "idf::esp_driver_ppa", - "target": "___idf_esp_driver_ppa", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_ppa", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt", - "type": "LIBRARY", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm", - "type": "LIBRARY", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm/src/sdm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi", - "type": "LIBRARY", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi", - "type": "LIBRARY", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_touch_sens": { - "alias": "idf::esp_driver_touch_sens", - "target": "___idf_esp_driver_touch_sens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_touch_sens", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens", - "type": "LIBRARY", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart", - "type": "LIBRARY", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag", - "type": "LIBRARY", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c" ], - "include_dirs": [ "include" ] - }, - "esp_eth": { - "alias": "idf::esp_eth", - "target": "___idf_esp_eth", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth", - "type": "LIBRARY", - "lib": "__idf_esp_eth", - "reqs": [ "esp_event" ], - "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_eth/libesp_eth.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c" ], - "include_dirs": [ "include" ] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event", - "type": "LIBRARY", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_event/libesp_event.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/default_event_loop.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_event/esp_event_private.c" ], - "include_dirs": [ "include" ] - }, - "esp_gdbstub": { - "alias": "idf::esp_gdbstub", - "target": "___idf_esp_gdbstub", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub", - "type": "LIBRARY", - "lib": "__idf_esp_gdbstub", - "reqs": [ "freertos" ], - "priv_reqs": [ "soc", "esp_rom", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/packet.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub/src/port/riscv/rv_decode.c" ], - "include_dirs": [ "include" ] - }, - "esp_hid": { - "alias": "idf::esp_hid", - "target": "___idf_esp_hid", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid", - "type": "LIBRARY", - "lib": "__idf_esp_hid", - "reqs": [ "esp_event", "bt" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hid/libesp_hid.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidd.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hidh.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/esp_hid_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidd.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid/src/nimble_hidh.c" ], - "include_dirs": [ "include" ] - }, - "esp_http_client": { - "alias": "idf::esp_http_client", - "target": "___idf_esp_http_client", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client", - "type": "LIBRARY", - "lib": "__idf_esp_http_client", - "reqs": [ "lwip", "esp_event" ], - "priv_reqs": [ "tcp_transport", "http_parser" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_client/libesp_http_client.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/esp_http_client.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_auth.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_header.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client/lib/http_utils.c" ], - "include_dirs": [ "include" ] - }, - "esp_http_server": { - "alias": "idf::esp_http_server", - "target": "___idf_esp_http_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server", - "type": "LIBRARY", - "lib": "__idf_esp_http_server", - "reqs": [ "http_parser", "esp_event" ], - "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_http_server/libesp_http_server.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_main.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_parse.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_sess.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_txrx.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_uri.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/httpd_ws.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c" ], - "include_dirs": [ "include" ] - }, - "esp_https_ota": { - "alias": "idf::esp_https_ota", - "target": "___idf_esp_https_ota", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota", - "type": "LIBRARY", - "lib": "__idf_esp_https_ota", - "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], - "priv_reqs": [ "log", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_ota/libesp_https_ota.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota/src/esp_https_ota.c" ], - "include_dirs": [ "include" ] - }, - "esp_https_server": { - "alias": "idf::esp_https_server", - "target": "___idf_esp_https_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server", - "type": "LIBRARY", - "lib": "__idf_esp_https_server", - "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], - "priv_reqs": [ "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_https_server/libesp_https_server.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server/src/https_server.c" ], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", - "type": "LIBRARY", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_hw_support/libesp_hw_support.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/cpu.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_cpu_intr.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/cpu_region_protect.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clk.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/hw_random.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/intr_alloc.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mac_addr.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/periph_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/revision.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/rtc_module.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modem.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_modes.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_console.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_usb.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_gpio.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_event.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/io_mux.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_clk_tree.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/clk_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/gdma.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/systimer.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/mspi_timing_tuning.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/esp_clock_output.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_clk.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_sleep.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/rtc_time.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/chip_info.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/sar_periph_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/adc2_init_cal.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp32c3/esp_memprot.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support/lowpower/port/esp32c3/sleep_cpu.c" ], - "include_dirs": [ "include", "include/soc", "include/soc/esp32c3", "dma/include", "ldo/include", "debug_probe/include" ] - }, - "esp_lcd": { - "alias": "idf::esp_lcd", - "target": "___idf_esp_lcd", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd", - "type": "LIBRARY", - "lib": "__idf_esp_lcd", - "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], - "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_lcd/libesp_lcd.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c" ], - "include_dirs": [ "include", "interface" ] - }, - "esp_local_ctrl": { - "alias": "idf::esp_local_ctrl", - "target": "___idf_esp_local_ctrl", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl", - "type": "LIBRARY", - "lib": "__idf_esp_local_ctrl", - "reqs": [ "protocomm", "esp_https_server" ], - "priv_reqs": [ "protobuf-c" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_ble.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c" ], - "include_dirs": [ "include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm", - "type": "LIBRARY", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_mm/libesp_mm.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_mmu_map.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/port/esp32c3/ext_mem_layout.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/esp_cache.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm/heap_align_hw.c" ], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif", - "type": "LIBRARY", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_netif/libesp_netif.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_handlers.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_objects.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/esp_netif_defaults.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c" ], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition", - "type": "LIBRARY", - "lib": "__idf_esp_partition", - "reqs": [], - "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_partition/libesp_partition.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition/partition_target.c" ], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy", - "type": "LIBRARY", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_phy/libesp_phy.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_override.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/lib_printf.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/phy_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/esp32c3/phy_init_data.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy/src/btbb_init.c" ], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm", - "type": "LIBRARY", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_pm/libesp_pm.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_locks.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_trace.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm/pm_impl.c" ], - "include_dirs": [ "include" ] - }, - "esp_psram": { - "alias": "idf::esp_psram", - "target": "___idf_esp_psram", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_psram", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_rainmaker": { - "alias": "idf::esp_rainmaker", - "target": "___idf_esp_rainmaker", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker", - "type": "LIBRARY", - "lib": "__idf_esp_rainmaker", - "reqs": [ "espressif__rmaker_common" ], - "priv_reqs": [ "protobuf-c", "espressif__json_parser", "espressif__json_generator", "nvs_flash", "esp_http_client", "app_update", "esp-tls", "mbedtls", "esp_https_ota", "console", "esp_local_ctrl", "esp_https_server", "espressif__mdns", "espressif__esp_schedule", "efuse", "driver", "espressif__rmaker_common", "wifi_provisioning", "esp_app_format", "openthread", "espressif__network_provisioning", "espressif__esp_rcp_update", "espressif__esp_secure_cert_mgr" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp_rcp_update", "espressif__esp_schedule", "espressif__esp_secure_cert_mgr", "espressif__json_generator", "espressif__json_parser", "espressif__mdns", "espressif__network_provisioning", "espressif__rmaker_common" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rainmaker/libesp_rainmaker.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_core.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_device.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_param.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_config.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_client_data.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_time_service.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_system_service.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.pb-c.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_user_mapping.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_node_auth.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_schedule.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_scenes.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_cmd_resp_manager.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_secure_boot_digest.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_claim.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/core/esp_rmaker_local_ctrl.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/mqtt/esp_rmaker_mqtt_budget.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_params.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/ota/esp_rmaker_ota_using_topics.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_params.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_devices.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/standard_types/esp_rmaker_standard_services.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_console.c", "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/src/console/esp_rmaker_commands.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S" ], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf", - "type": "LIBRARY", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf/ringbuf.c" ], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", - "type": "LIBRARY", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_rom/libesp_rom.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c" ], - "include_dirs": [ "include", "esp32c3/include", "esp32c3/include/esp32c3", "esp32c3" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", - "type": "LIBRARY", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_security/libesp_security.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_hmac.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_ds.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_security/src/esp_crypto_lock.c" ], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", - "type": "LIBRARY", - "lib": "__idf_esp_system", - "reqs": [], - "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_system/libesp_system.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_err.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/crosscore_int.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_ipc.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/freertos_hooks.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/int_wdt.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/panic.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/esp_system.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/startup_funcs.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/system_time.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/stack_check.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/ubsan.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/xt_wdt.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/hw_stack_guard.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/cpu_start.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/panic_handler.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/esp_system_chip.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/image_process.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/brownout.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/clk.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/reset_reason.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/system_internal.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/cache_err_int.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_system/port/soc/esp32c3/apb_backup_dma.c" ], - "include_dirs": [ "include" ] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer", - "type": "LIBRARY", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_timer/libesp_timer.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/system_time.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c" ], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console", - "type": "LIBRARY", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_vfs_console/libesp_vfs_console.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console/vfs_console.c" ], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi", - "type": "LIBRARY", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/esp_wifi/libesp_wifi.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/lib_printf.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/mesh_event.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_netif.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/esp32c3/esp_adapter.c", "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi/src/smartconfig_ack.c" ], - "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] - }, - "espcoredump": { - "alias": "idf::espcoredump", - "target": "___idf_espcoredump", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump", - "type": "LIBRARY", - "lib": "__idf_espcoredump", - "reqs": [], - "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espcoredump/libespcoredump.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_flash.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_uart.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_elf.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_binary.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_sha.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/core_dump_crc.c", "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump/src/port/riscv/core_dump_port.c" ], - "include_dirs": [ "include", "include/port/riscv" ] - }, - "espressif__cbor": { - "alias": "idf::espressif__cbor", - "target": "___idf_espressif__cbor", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor", - "type": "LIBRARY", - "lib": "__idf_espressif__cbor", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__cbor/libespressif__cbor.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_close_container_checked.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborencoder_float.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborerrorstrings.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_dup_string.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborparser_float.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty_stdio.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborpretty.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cbortojson.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/cborvalidation.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/src/open_memstream.c" ], - "include_dirs": [ "port/include" ] - }, - "espressif__esp-serial-flasher": { - "alias": "idf::espressif__esp-serial-flasher", - "target": "___idf_espressif__esp-serial-flasher", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher", - "type": "LIBRARY", - "lib": "__idf_espressif__esp-serial-flasher", - "reqs": [], - "priv_reqs": [ "driver", "esp_timer", "sdmmc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp-serial-flasher/libespressif__esp-serial-flasher.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/md5_hash.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_loader.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_targets.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/esp_stubs.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_serial.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/protocol_uart.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/src/slip.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher/port/esp32_port.c" ], - "include_dirs": [ "include", "port" ] - }, - "espressif__esp_diag_data_store": { - "alias": "idf::espressif__esp_diag_data_store", - "target": "___idf_espressif__esp_diag_data_store", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_diag_data_store", - "reqs": [ "esp_event", "esp_hw_support" ], - "priv_reqs": [ "nvs_flash", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diag_data_store/libespressif__esp_diag_data_store.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/esp_diag_data_store.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store/src/rtc_store/rtc_store.c" ], - "include_dirs": [ "src/rtc_store", "include" ] - }, - "espressif__esp_diagnostics": { - "alias": "idf::espressif__esp_diagnostics", - "target": "___idf_espressif__esp_diagnostics", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_diagnostics", - "reqs": [], - "priv_reqs": [ "freertos", "app_update", "espressif__rmaker_common", "esp_hw_support", "esp_wifi", "esp_event" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__rmaker_common" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_diagnostics/libespressif__esp_diagnostics.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_log_hook.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_utils.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_metrics.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_heap_metrics.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_wifi_metrics.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_variables.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics/src/esp_diagnostics_network_variables.c" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_insights": { - "alias": "idf::espressif__esp_insights", - "target": "___idf_espressif__esp_insights", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_insights", - "reqs": [ "espressif__esp_diagnostics" ], - "priv_reqs": [ "espressif__cbor", "espressif__rmaker_common", "esptool_py", "espcoredump", "espressif__esp_diag_data_store", "nvs_flash", "esp_timer", "esp_hw_support", "esp_wifi", "espressif__esp_diagnostics" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__cbor", "espressif__esp_diag_data_store", "espressif__esp_diagnostics", "espressif__rmaker_common" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_insights/libespressif__esp_insights.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_transport.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_client_data.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_encoder.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cmd_resp.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_decoder.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/esp_insights_cbor_encoder.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/mqtt_server.crt.S", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights/src/transport/esp_insights_mqtt.c" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_rcp_update": { - "alias": "idf::espressif__esp_rcp_update", - "target": "___idf_espressif__esp_rcp_update", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_rcp_update", - "reqs": [ "driver", "espressif__esp-serial-flasher", "nvs_flash" ], - "priv_reqs": [ "espressif__esp-serial-flasher" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp-serial-flasher" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_rcp_update/libespressif__esp_rcp_update.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_ota.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update/src/esp_rcp_update.c" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_schedule": { - "alias": "idf::espressif__esp_schedule", - "target": "___idf_espressif__esp_schedule", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_schedule", - "reqs": [ "nvs_flash" ], - "priv_reqs": [ "espressif__rmaker_common" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__rmaker_common" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_schedule/libespressif__esp_schedule.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule/src/esp_schedule_nvs.c" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_secure_cert_mgr": { - "alias": "idf::espressif__esp_secure_cert_mgr", - "target": "___idf_espressif__esp_secure_cert_mgr", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr", - "type": "LIBRARY", - "lib": "__idf_espressif__esp_secure_cert_mgr", - "reqs": [ "spi_flash", "mbedtls", "nvs_flash", "efuse" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__esp_secure_cert_mgr/libespressif__esp_secure_cert_mgr.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_tlv_read.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr/srcs/esp_secure_cert_crypto.c" ], - "include_dirs": [ "include" ] - }, - "espressif__jsmn": { - "alias": "idf::espressif__jsmn", - "target": "___idf_espressif__jsmn", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn", - "type": "CONFIG_ONLY", - "lib": "__idf_espressif__jsmn", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "espressif__json_generator": { - "alias": "idf::espressif__json_generator", - "target": "___idf_espressif__json_generator", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator", - "type": "LIBRARY", - "lib": "__idf_espressif__json_generator", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_generator/libespressif__json_generator.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator/src/json_generator.c" ], - "include_dirs": [ "include" ] - }, - "espressif__json_parser": { - "alias": "idf::espressif__json_parser", - "target": "___idf_espressif__json_parser", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser", - "type": "LIBRARY", - "lib": "__idf_espressif__json_parser", - "reqs": [ "espressif__jsmn" ], - "priv_reqs": [ "espressif__jsmn" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__jsmn" ], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__json_parser/libespressif__json_parser.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser/src/json_parser.c" ], - "include_dirs": [ "include" ] - }, - "espressif__mdns": { - "alias": "idf::espressif__mdns", - "target": "___idf_espressif__mdns", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns", - "type": "LIBRARY", - "lib": "__idf_espressif__mdns", - "reqs": [ "lwip", "console", "esp_netif" ], - "priv_reqs": [ "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__mdns/libespressif__mdns.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_mem_caps.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_networking_lwip.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns/mdns_console.c" ], - "include_dirs": [ "include" ] - }, - "espressif__network_provisioning": { - "alias": "idf::espressif__network_provisioning", - "target": "___idf_espressif__network_provisioning", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning", - "type": "LIBRARY", - "lib": "__idf_espressif__network_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__network_provisioning/libespressif__network_provisioning.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_config.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_scan.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/network_ctrl.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/manager.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/handlers.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_console.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_config.pb-c.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_scan.pb-c.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_ctrl.pb-c.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/proto-c/network_constants.pb-c.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_softap.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning/src/scheme_ble.c" ], - "include_dirs": [ "include" ] - }, - "espressif__qrcode": { - "alias": "idf::espressif__qrcode", - "target": "___idf_espressif__qrcode", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode", - "type": "LIBRARY", - "lib": "__idf_espressif__qrcode", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__qrcode/libespressif__qrcode.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_main.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/esp_qrcode_wrapper.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode/qrcodegen.c" ], - "include_dirs": [ "include" ] - }, - "espressif__rmaker_common": { - "alias": "idf::espressif__rmaker_common", - "target": "___idf_espressif__rmaker_common", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common", - "type": "LIBRARY", - "lib": "__idf_espressif__rmaker_common", - "reqs": [ "esp_event" ], - "priv_reqs": [ "mqtt", "nvs_flash", "console", "esp_wifi", "driver", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/espressif__rmaker_common/libespressif__rmaker_common.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/work_queue.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/factory.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/time.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/timezone.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/utils.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/cmd_resp.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_common_cmds.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/console/rmaker_console.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/esp-mqtt/esp-mqtt-glue.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common/src/create_APN3_PPI_string.c" ], - "include_dirs": [ "include" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", - "type": "CONFIG_ONLY", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "fatfs": { - "alias": "idf::fatfs", - "target": "___idf_fatfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs", - "type": "LIBRARY", - "lib": "__idf_fatfs", - "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], - "priv_reqs": [ "vfs", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/fatfs/libfatfs.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_wl.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ff.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/src/ffunicode.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/port/freertos/ffsystem.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", "/home/alex/esp/v5.4.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c" ], - "include_dirs": [ "diskio", "src", "vfs" ] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/freertos", - "type": "LIBRARY", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/freertos/libfreertos.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/freertos/heap_idf.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/app_startup.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/port_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/port_systick.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "/home/alex/esp/v5.4.1/esp-idf/components/freertos/esp_additions/idf_additions.c" ], - "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] - }, - "gpio_button": { - "alias": "idf::gpio_button", - "target": "___idf_gpio_button", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button", - "type": "LIBRARY", - "lib": "__idf_gpio_button", - "reqs": [ "driver" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/gpio_button/libgpio_button.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button.c", "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button/button/button_obj.cpp" ], - "include_dirs": [ "button/include" ] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/hal", - "type": "LIBRARY", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/hal/libhal.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/hal/hal_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/efuse_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/efuse_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/wdt_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/mmu_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/cache_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/color_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/clk_tree_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/systimer_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/uart_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/gpio_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/timer_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/ledc_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2c_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/rmt_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/twai_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_top.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/i2s_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/sdm_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_oneshot_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/adc_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/mpi_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/sha_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/aes_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/brownout_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hal_iram.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_slave_hd_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/hmac_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/ds_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/usb_serial_jtag_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/xt_wdt_hal.c", "/home/alex/esp/v5.4.1/esp-idf/components/hal/esp32c3/rtc_cntl_hal.c" ], - "include_dirs": [ "platform_port/include", "esp32c3/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/heap", - "type": "LIBRARY", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/heap/libheap.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_base.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/heap_caps_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/multi_heap.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/tlsf/tlsf.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/port/memory_layout_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/heap/port/esp32c3/memory_layout.c" ], - "include_dirs": [ "include", "tlsf" ] - }, - "http_parser": { - "alias": "idf::http_parser", - "target": "___idf_http_parser", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/http_parser", - "type": "LIBRARY", - "lib": "__idf_http_parser", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/http_parser/libhttp_parser.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/http_parser/http_parser.c" ], - "include_dirs": [ "." ] - }, - "idf_test": { - "alias": "idf::idf_test", - "target": "___idf_idf_test", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/idf_test", - "type": "CONFIG_ONLY", - "lib": "__idf_idf_test", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include", "include/esp32c3" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154", - "type": "CONFIG_ONLY", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "driver", "esp_timer", "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "json": { - "alias": "idf::json", - "target": "___idf_json", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/json", - "type": "LIBRARY", - "lib": "__idf_json", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/json/libjson.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON.c", "/home/alex/esp/v5.4.1/esp-idf/components/json/cJSON/cJSON_Utils.c" ], - "include_dirs": [ "cJSON" ] - }, - "ledc_driver": { - "alias": "idf::ledc_driver", - "target": "___idf_ledc_driver", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver", - "type": "LIBRARY", - "lib": "__idf_ledc_driver", - "reqs": [], - "priv_reqs": [ "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ledc_driver/libledc_driver.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver/ledc_driver.c" ], - "include_dirs": [ "." ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/log", - "type": "LIBRARY", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "soc", "hal", "esp_hw_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/log/liblog.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_timestamp.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_timestamp_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_lock.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/os/log_write.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/buffer/log_buffers.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/util.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/log_level.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "/home/alex/esp/v5.4.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" ], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/lwip", - "type": "LIBRARY", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/lwip/liblwip.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/sntp/sntp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_lib.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/api_msg.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/err.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/if_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netbuf.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netdb.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/netifapi.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/sockets.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/api/tcpip.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/def.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/dns.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/init.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ip.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/mem.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/memp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/netif.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/pbuf.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/raw.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/stats.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/sys.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/timeouts.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/udp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/slipif.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/debug/lwip_debug.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/sockets_ext.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/freertos/sys_arch.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/acd_dhcp_check.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/esp_ping.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/ping/ping_sock.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", "/home/alex/esp/v5.4.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" ], - "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main", - "type": "LIBRARY", - "lib": "__idf_main", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/main/libmain.a", - "sources": [ "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_driver.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main/app_main.c" ], - "include_dirs": [ "." ] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls", - "type": "LIBRARY", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/libmbedtls.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/x509_crt_bundle.S" ], - "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] - }, - "mqtt": { - "alias": "idf::mqtt", - "target": "___idf_mqtt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt", - "type": "LIBRARY", - "lib": "__idf_mqtt", - "reqs": [ "esp_event", "tcp_transport" ], - "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mqtt/libmqtt.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" ], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/newlib", - "type": "LIBRARY", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [ "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/newlib/libnewlib.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/newlib/abort.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/assert.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/heap.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/flockfile.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/locks.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/poll.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/pthread.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/random.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/getentropy.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/reent_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/newlib_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/syscalls.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/termios.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/stdatomic.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/time.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/sysconf.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/realpath.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/scandir.c", "/home/alex/esp/v5.4.1/esp-idf/components/newlib/port/esp_time_impl.c" ], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash", - "type": "LIBRARY", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash", "newlib" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_flash/libnvs_flash.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp" ], - "include_dirs": [ "include" ] - }, - "nvs_sec_provider": { - "alias": "idf::nvs_sec_provider", - "target": "___idf_nvs_sec_provider", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider", - "type": "LIBRARY", - "lib": "__idf_nvs_sec_provider", - "reqs": [], - "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c" ], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/openthread", - "type": "CONFIG_ONLY", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", - "type": "CONFIG_ONLY", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "protobuf-c": { - "alias": "idf::protobuf-c", - "target": "___idf_protobuf-c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c", - "type": "LIBRARY", - "lib": "__idf_protobuf-c", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protobuf-c/libprotobuf-c.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" ], - "include_dirs": [ "protobuf-c" ] - }, - "protocomm": { - "alias": "idf::protocomm", - "target": "___idf_protocomm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm", - "type": "LIBRARY", - "lib": "__idf_protocomm", - "reqs": [ "bt" ], - "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/protocomm/libprotocomm.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/common/protocomm.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/proto-c/session.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_console.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security0.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security1.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/security/security2.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c", "/home/alex/esp/v5.4.1/esp-idf/components/protocomm/src/transports/protocomm_nimble.c" ], - "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/pthread", - "type": "LIBRARY", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/pthread/libpthread.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread.c", "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_cond_var.c", "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_local_storage.c", "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_rwlock.c", "/home/alex/esp/v5.4.1/esp-idf/components/pthread/pthread_semaphore.c" ], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/riscv", - "type": "LIBRARY", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/riscv/libriscv.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/riscv/instruction_decode.c", "/home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt.c", "/home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors.S", "/home/alex/esp/v5.4.1/esp-idf/components/riscv/interrupt_intc.c", "/home/alex/esp/v5.4.1/esp-idf/components/riscv/vectors_intc.S" ], - "include_dirs": [ "include" ] - }, - "rt": { - "alias": "idf::rt", - "target": "___idf_rt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/rt", - "type": "LIBRARY", - "lib": "__idf_rt", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/rt/librt.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", "/home/alex/esp/v5.4.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c" ], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc", - "type": "LIBRARY", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/sdmmc/libsdmmc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_cmd.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_io.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_mmc.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sdmmc_sd.c", "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/soc", - "type": "LIBRARY", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/soc/libsoc.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/soc/lldesc.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/dport_access_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/interrupts.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gpio_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/uart_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/adc_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/dedic_gpio_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/gdma_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/spi_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/ledc_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/rmt_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/sdm_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2s_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/i2c_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/temperature_sensor_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/timer_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/mpi_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/twai_periph.c", "/home/alex/esp/v5.4.1/esp-idf/components/soc/esp32c3/wdt_periph.c" ], - "include_dirs": [ "include", "esp32c3", "esp32c3/include", "esp32c3/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", - "type": "LIBRARY", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spi_flash/libspi_flash.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_brownout_hook.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/memspi_host_driver.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/cache_utils.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_mmap.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/flash_ops.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_wrap.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" ], - "include_dirs": [ "include" ] - }, - "spiffs": { - "alias": "idf::spiffs", - "target": "___idf_spiffs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs", - "type": "LIBRARY", - "lib": "__idf_spiffs", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/spiffs/libspiffs.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs_api.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", "/home/alex/esp/v5.4.1/esp-idf/components/spiffs/esp_spiffs.c" ], - "include_dirs": [ "include" ] - }, - "tcp_transport": { - "alias": "idf::tcp_transport", - "target": "___idf_tcp_transport", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport", - "type": "LIBRARY", - "lib": "__idf_tcp_transport", - "reqs": [ "esp-tls", "lwip", "esp_timer" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/tcp_transport/libtcp_transport.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport.c", "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ssl.c", "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_internal.c", "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_socks_proxy.c", "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport/transport_ws.c" ], - "include_dirs": [ "include" ] - }, - "ulp": { - "alias": "idf::ulp", - "target": "___idf_ulp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ulp", - "type": "CONFIG_ONLY", - "lib": "__idf_ulp", - "reqs": [ "driver", "esp_adc" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "unity": { - "alias": "idf::unity", - "target": "___idf_unity", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/unity", - "type": "LIBRARY", - "lib": "__idf_unity", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/unity/libunity.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity/src/unity.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_compat.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_runner.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_freertos.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_cache.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_utils_memory.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/unity_port_esp32.c", "/home/alex/esp/v5.4.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c" ], - "include_dirs": [ "include", "unity/src" ] - }, - "usb": { - "alias": "idf::usb", - "target": "___idf_usb", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/usb", - "type": "CONFIG_ONLY", - "lib": "__idf_usb", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/vfs", - "type": "LIBRARY", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/vfs/libvfs.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs.c", "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_eventfd.c", "/home/alex/esp/v5.4.1/esp-idf/components/vfs/vfs_semihost.c", "/home/alex/esp/v5.4.1/esp-idf/components/vfs/nullfs.c" ], - "include_dirs": [ "include" ] - }, - "wear_levelling": { - "alias": "idf::wear_levelling", - "target": "___idf_wear_levelling", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling", - "type": "LIBRARY", - "lib": "__idf_wear_levelling", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wear_levelling/libwear_levelling.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/Partition.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/SPI_Flash.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/WL_Flash.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/crc32.cpp", "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling/wear_levelling.cpp" ], - "include_dirs": [ "include" ] - }, - "wifi_provisioning": { - "alias": "idf::wifi_provisioning", - "target": "___idf_wifi_provisioning", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning", - "type": "LIBRARY", - "lib": "__idf_wifi_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wifi_provisioning/libwifi_provisioning.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_config.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/manager.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/handlers.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_console.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning/src/scheme_ble.c" ], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant", - "type": "LIBRARY", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", - "sources": [ "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/os_xtensa.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/port/eloop.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/base64.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/uuid.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/utils/json.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c" ], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "ws2812_led": { - "alias": "idf::ws2812_led", - "target": "___idf_ws2812_led", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led", - "type": "LIBRARY", - "lib": "__idf_ws2812_led", - "reqs": [], - "priv_reqs": [ "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/ws2812_led/libws2812_led.a", - "sources": [ "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/ws2812_led.c", "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led/led_strip_rmt_ws2812.c" ], - "include_dirs": [ "." ] - } - }, - "all_component_info" : { - "app_trace": { - "alias": "idf::app_trace", - "target": "___idf_app_trace", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_trace", - "lib": "__idf_app_trace", - "reqs": [ "esp_timer" ], - "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/app_update", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bootloader_support", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "bootloader_flash/include" ] - }, - "bt": { - "alias": "idf::bt", - "target": "___idf_bt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/bt", - "lib": "__idf_bt", - "reqs": [ "esp_timer", "esp_wifi" ], - "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include/esp32c3/include", "common/osi/include", "common/api/include/api", "common/btc/profile/esp/blufi/include", "common/btc/profile/esp/include", "common/hci_log/include", "common/ble_log/include", "host/nimble/nimble/nimble/host/include", "host/nimble/nimble/nimble/include", "host/nimble/nimble/nimble/host/services/ans/include", "host/nimble/nimble/nimble/host/services/bas/include", "host/nimble/nimble/nimble/host/services/dis/include", "host/nimble/nimble/nimble/host/services/gap/include", "host/nimble/nimble/nimble/host/services/gatt/include", "host/nimble/nimble/nimble/host/services/hr/include", "host/nimble/nimble/nimble/host/services/htp/include", "host/nimble/nimble/nimble/host/services/ias/include", "host/nimble/nimble/nimble/host/services/ipss/include", "host/nimble/nimble/nimble/host/services/lls/include", "host/nimble/nimble/nimble/host/services/prox/include", "host/nimble/nimble/nimble/host/services/cts/include", "host/nimble/nimble/nimble/host/services/tps/include", "host/nimble/nimble/nimble/host/services/hid/include", "host/nimble/nimble/nimble/host/services/sps/include", "host/nimble/nimble/nimble/host/services/cte/include", "host/nimble/nimble/nimble/host/util/include", "host/nimble/nimble/nimble/host/store/ram/include", "host/nimble/nimble/nimble/host/store/config/include", "host/nimble/nimble/porting/nimble/include", "host/nimble/port/include", "host/nimble/nimble/nimble/transport/include", "host/nimble/nimble/nimble/include", "porting/include", "host/nimble/nimble/porting/npl/freertos/include", "host/nimble/esp-hci/include" ] - }, - "cmock": { - "alias": "idf::cmock", - "target": "___idf_cmock", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cmock", - "lib": "__idf_cmock", - "reqs": [ "unity" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "CMock/src" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/console", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/console" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/cxx", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "pthread", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/driver", - "lib": "__idf_driver", - "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag" ], - "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/efuse", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp-tls": { - "alias": "idf::esp-tls", - "target": "___idf_esp-tls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", - "lib": "__idf_esp-tls", - "reqs": [ "mbedtls" ], - "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/esp-tls", "esp-tls-crypto" ] - }, - "esp_adc": { - "alias": "idf::esp_adc", - "target": "___idf_esp_adc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_adc", - "lib": "__idf_esp_adc", - "reqs": [], - "priv_reqs": [ "driver", "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface", "esp32c3/include", "deprecated/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_app_format", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_bootloader_format", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_coex", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "driver", "esp_event" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_common", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ana_cmpr", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_cam": { - "alias": "idf::esp_driver_cam", - "target": "___idf_esp_driver_cam", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_cam", - "lib": "__idf_esp_driver_cam", - "reqs": [ "esp_driver_isp", "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_dac", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gpio", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_gptimer", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2c", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_i2s", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_isp": { - "alias": "idf::esp_driver_isp", - "target": "___idf_esp_driver_isp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_isp", - "lib": "__idf_esp_driver_isp", - "reqs": [ "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_jpeg": { - "alias": "idf::esp_driver_jpeg", - "target": "___idf_esp_driver_jpeg", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_jpeg", - "lib": "__idf_esp_driver_jpeg", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ledc", - "lib": "__idf_esp_driver_ledc", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_mcpwm", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_parlio", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_pcnt", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ppa": { - "alias": "idf::esp_driver_ppa", - "target": "___idf_esp_driver_ppa", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_ppa", - "lib": "__idf_esp_driver_ppa", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_rmt", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdio", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdm", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdmmc", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_sdspi", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_spi", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_touch_sens": { - "alias": "idf::esp_driver_touch_sens", - "target": "___idf_esp_driver_touch_sens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_touch_sens", - "lib": "__idf_esp_driver_touch_sens", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_tsens", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_uart", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_driver_usb_serial_jtag", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_eth": { - "alias": "idf::esp_eth", - "target": "___idf_esp_eth", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_eth", - "lib": "__idf_esp_eth", - "reqs": [ "esp_event" ], - "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_event", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_gdbstub": { - "alias": "idf::esp_gdbstub", - "target": "___idf_esp_gdbstub", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_gdbstub", - "lib": "__idf_esp_gdbstub", - "reqs": [ "freertos" ], - "priv_reqs": [ "soc", "esp_rom", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hid": { - "alias": "idf::esp_hid", - "target": "___idf_esp_hid", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hid", - "lib": "__idf_esp_hid", - "reqs": [ "esp_event", "bt" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_client": { - "alias": "idf::esp_http_client", - "target": "___idf_esp_http_client", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_client", - "lib": "__idf_esp_http_client", - "reqs": [ "lwip", "esp_event" ], - "priv_reqs": [ "tcp_transport", "http_parser" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_server": { - "alias": "idf::esp_http_server", - "target": "___idf_esp_http_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_http_server", - "lib": "__idf_esp_http_server", - "reqs": [ "http_parser", "esp_event" ], - "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_ota": { - "alias": "idf::esp_https_ota", - "target": "___idf_esp_https_ota", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_ota", - "lib": "__idf_esp_https_ota", - "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], - "priv_reqs": [ "log", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_server": { - "alias": "idf::esp_https_server", - "target": "___idf_esp_https_server", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_https_server", - "lib": "__idf_esp_https_server", - "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], - "priv_reqs": [ "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_hw_support", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/soc", "include/soc/esp32c3", "dma/include", "ldo/include", "debug_probe/include" ] - }, - "esp_lcd": { - "alias": "idf::esp_lcd", - "target": "___idf_esp_lcd", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_lcd", - "lib": "__idf_esp_lcd", - "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], - "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_local_ctrl": { - "alias": "idf::esp_local_ctrl", - "target": "___idf_esp_local_ctrl", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_local_ctrl", - "lib": "__idf_esp_local_ctrl", - "reqs": [ "protocomm", "esp_https_server" ], - "priv_reqs": [ "protobuf-c" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_mm", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_netif_stack", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_partition", - "lib": "__idf_esp_partition", - "reqs": [], - "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_phy", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_pm", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_psram": { - "alias": "idf::esp_psram", - "target": "___idf_esp_psram", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_psram", - "lib": "__idf_esp_psram", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_ringbuf", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_rom", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3/include", "esp32c3/include/esp32c3", "esp32c3" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_security", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_system", - "lib": "__idf_esp_system", - "reqs": [], - "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_timer", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_vfs_console", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esp_wifi", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] - }, - "espcoredump": { - "alias": "idf::espcoredump", - "target": "___idf_espcoredump", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/espcoredump", - "lib": "__idf_espcoredump", - "reqs": [], - "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/port/riscv" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/esptool_py", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "fatfs": { - "alias": "idf::fatfs", - "target": "___idf_fatfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/fatfs", - "lib": "__idf_fatfs", - "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], - "priv_reqs": [ "vfs", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "diskio", "src", "vfs" ] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/freertos", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/hal", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_port/include", "esp32c3/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/heap", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "tlsf" ] - }, - "http_parser": { - "alias": "idf::http_parser", - "target": "___idf_http_parser", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/http_parser", - "lib": "__idf_http_parser", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "idf_test": { - "alias": "idf::idf_test", - "target": "___idf_idf_test", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/idf_test", - "lib": "__idf_idf_test", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/esp32c3" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ieee802154", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "driver", "esp_timer", "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "json": { - "alias": "idf::json", - "target": "___idf_json", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/json", - "lib": "__idf_json", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "linux": { - "alias": "idf::linux", - "target": "___idf_linux", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/linux", - "lib": "__idf_linux", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/log", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "soc", "hal", "esp_hw_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/lwip", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mbedtls", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] - }, - "mqtt": { - "alias": "idf::mqtt", - "target": "___idf_mqtt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/mqtt", - "lib": "__idf_mqtt", - "reqs": [ "esp_event", "tcp_transport" ], - "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "/home/alex/esp/v5.4.1/esp-idf/components/mqtt/esp-mqtt/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/newlib", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [ "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_flash", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash", "newlib" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "nvs_sec_provider": { - "alias": "idf::nvs_sec_provider", - "target": "___idf_nvs_sec_provider", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/nvs_sec_provider", - "lib": "__idf_nvs_sec_provider", - "reqs": [], - "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/openthread", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/partition_table", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "perfmon": { - "alias": "idf::perfmon", - "target": "___idf_perfmon", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/perfmon", - "lib": "__idf_perfmon", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "protobuf-c": { - "alias": "idf::protobuf-c", - "target": "___idf_protobuf-c", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protobuf-c", - "lib": "__idf_protobuf-c", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "protobuf-c" ] - }, - "protocomm": { - "alias": "idf::protocomm", - "target": "___idf_protocomm", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/protocomm", - "lib": "__idf_protocomm", - "reqs": [ "bt" ], - "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/pthread", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/riscv", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "rt": { - "alias": "idf::rt", - "target": "___idf_rt", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/rt", - "lib": "__idf_rt", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/sdmmc", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/soc", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32c3", "esp32c3/include", "esp32c3/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spi_flash", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "spiffs": { - "alias": "idf::spiffs", - "target": "___idf_spiffs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/spiffs", - "lib": "__idf_spiffs", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "tcp_transport": { - "alias": "idf::tcp_transport", - "target": "___idf_tcp_transport", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/tcp_transport", - "lib": "__idf_tcp_transport", - "reqs": [ "esp-tls", "lwip", "esp_timer" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "touch_element": { - "alias": "idf::touch_element", - "target": "___idf_touch_element", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/touch_element", - "lib": "__idf_touch_element", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "ulp": { - "alias": "idf::ulp", - "target": "___idf_ulp", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/ulp", - "lib": "__idf_ulp", - "reqs": [ "driver", "esp_adc" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "unity": { - "alias": "idf::unity", - "target": "___idf_unity", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/unity", - "lib": "__idf_unity", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "unity/src" ] - }, - "usb": { - "alias": "idf::usb", - "target": "___idf_usb", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/usb", - "lib": "__idf_usb", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/vfs", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wear_levelling": { - "alias": "idf::wear_levelling", - "target": "___idf_wear_levelling", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wear_levelling", - "lib": "__idf_wear_levelling", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wifi_provisioning": { - "alias": "idf::wifi_provisioning", - "target": "___idf_wifi_provisioning", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wifi_provisioning", - "lib": "__idf_wifi_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/wpa_supplicant", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "xtensa": { - "alias": "idf::xtensa", - "target": "___idf_xtensa", - "prefix": "idf", - "dir": "/home/alex/esp/v5.4.1/esp-idf/components/xtensa", - "lib": "__idf_xtensa", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/main", - "lib": "__idf_main", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "app_insights": { - "alias": "idf::app_insights", - "target": "___idf_app_insights", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_insights", - "lib": "__idf_app_insights", - "reqs": [], - "priv_reqs": [ "espressif__esp_insights", "espressif__esp_diagnostics", "esp_rainmaker" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp_insights", "esp_rainmaker" ], - "include_dirs": [ "." ] - }, - "app_network": { - "alias": "idf::app_network", - "target": "___idf_app_network", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_network", - "lib": "__idf_app_network", - "reqs": [], - "priv_reqs": [ "espressif__qrcode", "nvs_flash", "esp_event", "espressif__rmaker_common", "vfs", "wifi_provisioning", "espressif__network_provisioning", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__qrcode" ], - "include_dirs": [ "." ] - }, - "app_reset": { - "alias": "idf::app_reset", - "target": "___idf_app_reset", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/app_reset", - "lib": "__idf_app_reset", - "reqs": [ "gpio_button", "espressif__rmaker_common" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "gpio_button": { - "alias": "idf::gpio_button", - "target": "___idf_gpio_button", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/gpio_button", - "lib": "__idf_gpio_button", - "reqs": [ "driver" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "button/include" ] - }, - "ledc_driver": { - "alias": "idf::ledc_driver", - "target": "___idf_ledc_driver", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/ledc_driver", - "lib": "__idf_ledc_driver", - "reqs": [], - "priv_reqs": [ "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "ws2812_led": { - "alias": "idf::ws2812_led", - "target": "___idf_ws2812_led", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/examples/common/ws2812_led", - "lib": "__idf_ws2812_led", - "reqs": [], - "priv_reqs": [ "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "esp_rainmaker": { - "alias": "idf::esp_rainmaker", - "target": "___idf_esp_rainmaker", - "prefix": "idf", - "dir": "/home/alex/.espressif/esp-rainmaker/components/esp_rainmaker", - "lib": "__idf_esp_rainmaker", - "reqs": [ "espressif__rmaker_common" ], - "priv_reqs": [ "protobuf-c", "espressif__json_parser", "espressif__json_generator", "nvs_flash", "esp_http_client", "app_update", "esp-tls", "mbedtls", "esp_https_ota", "console", "esp_local_ctrl", "esp_https_server", "espressif__mdns", "espressif__esp_schedule", "efuse", "driver", "espressif__rmaker_common", "wifi_provisioning", "esp_app_format", "openthread", "espressif__network_provisioning", "espressif__esp_rcp_update", "espressif__esp_secure_cert_mgr" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp_rcp_update", "espressif__esp_schedule", "espressif__esp_secure_cert_mgr", "espressif__json_generator", "espressif__json_parser", "espressif__mdns", "espressif__network_provisioning", "espressif__rmaker_common" ], - "include_dirs": [ "include" ] - }, - "espressif__cbor": { - "alias": "idf::espressif__cbor", - "target": "___idf_espressif__cbor", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__cbor", - "lib": "__idf_espressif__cbor", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "port/include" ] - }, - "espressif__esp-serial-flasher": { - "alias": "idf::espressif__esp-serial-flasher", - "target": "___idf_espressif__esp-serial-flasher", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp-serial-flasher", - "lib": "__idf_espressif__esp-serial-flasher", - "reqs": [], - "priv_reqs": [ "driver", "esp_timer", "sdmmc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port" ] - }, - "espressif__esp_diag_data_store": { - "alias": "idf::espressif__esp_diag_data_store", - "target": "___idf_espressif__esp_diag_data_store", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diag_data_store", - "lib": "__idf_espressif__esp_diag_data_store", - "reqs": [ "esp_event", "esp_hw_support" ], - "priv_reqs": [ "nvs_flash", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "src/rtc_store", "include" ] - }, - "espressif__esp_diagnostics": { - "alias": "idf::espressif__esp_diagnostics", - "target": "___idf_espressif__esp_diagnostics", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_diagnostics", - "lib": "__idf_espressif__esp_diagnostics", - "reqs": [], - "priv_reqs": [ "freertos", "app_update", "espressif__rmaker_common", "esp_hw_support", "esp_wifi", "esp_event" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__rmaker_common" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_insights": { - "alias": "idf::espressif__esp_insights", - "target": "___idf_espressif__esp_insights", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_insights", - "lib": "__idf_espressif__esp_insights", - "reqs": [ "espressif__esp_diagnostics" ], - "priv_reqs": [ "espressif__cbor", "espressif__rmaker_common", "esptool_py", "espcoredump", "espressif__esp_diag_data_store", "nvs_flash", "esp_timer", "esp_hw_support", "esp_wifi", "espressif__esp_diagnostics" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__cbor", "espressif__esp_diag_data_store", "espressif__esp_diagnostics", "espressif__rmaker_common" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_rcp_update": { - "alias": "idf::espressif__esp_rcp_update", - "target": "___idf_espressif__esp_rcp_update", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_rcp_update", - "lib": "__idf_espressif__esp_rcp_update", - "reqs": [ "driver", "espressif__esp-serial-flasher", "nvs_flash" ], - "priv_reqs": [ "espressif__esp-serial-flasher" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__esp-serial-flasher" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_schedule": { - "alias": "idf::espressif__esp_schedule", - "target": "___idf_espressif__esp_schedule", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_schedule", - "lib": "__idf_espressif__esp_schedule", - "reqs": [ "nvs_flash" ], - "priv_reqs": [ "espressif__rmaker_common" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__rmaker_common" ], - "include_dirs": [ "include" ] - }, - "espressif__esp_secure_cert_mgr": { - "alias": "idf::espressif__esp_secure_cert_mgr", - "target": "___idf_espressif__esp_secure_cert_mgr", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__esp_secure_cert_mgr", - "lib": "__idf_espressif__esp_secure_cert_mgr", - "reqs": [ "spi_flash", "mbedtls", "nvs_flash", "efuse" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__jsmn": { - "alias": "idf::espressif__jsmn", - "target": "___idf_espressif__jsmn", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__jsmn", - "lib": "__idf_espressif__jsmn", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__json_generator": { - "alias": "idf::espressif__json_generator", - "target": "___idf_espressif__json_generator", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_generator", - "lib": "__idf_espressif__json_generator", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__json_parser": { - "alias": "idf::espressif__json_parser", - "target": "___idf_espressif__json_parser", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__json_parser", - "lib": "__idf_espressif__json_parser", - "reqs": [ "espressif__jsmn" ], - "priv_reqs": [ "espressif__jsmn" ], - "managed_reqs": [], - "managed_priv_reqs": [ "espressif__jsmn" ], - "include_dirs": [ "include" ] - }, - "espressif__mdns": { - "alias": "idf::espressif__mdns", - "target": "___idf_espressif__mdns", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__mdns", - "lib": "__idf_espressif__mdns", - "reqs": [ "lwip", "console", "esp_netif" ], - "priv_reqs": [ "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__network_provisioning": { - "alias": "idf::espressif__network_provisioning", - "target": "___idf_espressif__network_provisioning", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__network_provisioning", - "lib": "__idf_espressif__network_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__qrcode": { - "alias": "idf::espressif__qrcode", - "target": "___idf_espressif__qrcode", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__qrcode", - "lib": "__idf_espressif__qrcode", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "espressif__rmaker_common": { - "alias": "idf::espressif__rmaker_common", - "target": "___idf_espressif__rmaker_common", - "prefix": "idf", - "dir": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/managed_components/espressif__rmaker_common", - "lib": "__idf_espressif__rmaker_common", - "reqs": [ "esp_event" ], - "priv_reqs": [ "mqtt", "nvs_flash", "console", "esp_wifi", "driver", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - } - }, - "debug_prefix_map_gdbinit": "", - "gdbinit_files": { - "01_symbols": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/symbols", - "02_prefix_map": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/prefix_map", - "03_py_extensions": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/py_extensions", - "04_connect": "/home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/gdbinit/connect" - }, - "debug_arguments_openocd": "-f board/esp32c3-builtin.cfg" -} diff --git a/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c b/RainMaker_Table-Lights/build/project_elf_src_esp32c3.c deleted file mode 100644 index e69de29bb..000000000 diff --git a/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S b/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S deleted file mode 100644 index cf54cc8e4..000000000 --- a/RainMaker_Table-Lights/build/rmaker_claim_service_server.crt.S +++ /dev/null @@ -1,96 +0,0 @@ -/* * Data converted from /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_claim_service_server.crt - * (null byte appended) - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global rmaker_claim_service_server_crt -rmaker_claim_service_server_crt: - -.global _binary_rmaker_claim_service_server_crt_start -_binary_rmaker_claim_service_server_crt_start: /* for objcopy compatibility */ -.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 -.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x44 -.byte 0x51, 0x54, 0x43, 0x43, 0x41, 0x69, 0x6d, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x54 -.byte 0x42, 0x6d, 0x79, 0x66, 0x7a, 0x35, 0x6d, 0x2f, 0x6a, 0x41, 0x6f, 0x35, 0x34, 0x76, 0x42, 0x34 -.byte 0x69, 0x6b, 0x50, 0x6d, 0x6c, 0x6a, 0x5a, 0x62, 0x79, 0x6a, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71 -.byte 0x68, 0x6b, 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x0a, 0x41, 0x44, 0x41 -.byte 0x35, 0x4d, 0x51, 0x73, 0x77, 0x43, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x47, 0x45, 0x77, 0x4a -.byte 0x56, 0x55, 0x7a, 0x45, 0x50, 0x4d, 0x41, 0x30, 0x47, 0x41, 0x31, 0x55, 0x45, 0x43, 0x68, 0x4d -.byte 0x47, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x4d, 0x52, 0x6b, 0x77, 0x46, 0x77, 0x59 -.byte 0x44, 0x56, 0x51, 0x51, 0x44, 0x45, 0x78, 0x42, 0x42, 0x62, 0x57, 0x46, 0x36, 0x0a, 0x62, 0x32 -.byte 0x34, 0x67, 0x55, 0x6d, 0x39, 0x76, 0x64, 0x43, 0x42, 0x44, 0x51, 0x53, 0x41, 0x78, 0x4d, 0x42 -.byte 0x34, 0x58, 0x44, 0x54, 0x45, 0x31, 0x4d, 0x44, 0x55, 0x79, 0x4e, 0x6a, 0x41, 0x77, 0x4d, 0x44 -.byte 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x58, 0x44, 0x54, 0x4d, 0x34, 0x4d, 0x44, 0x45, 0x78, 0x4e, 0x7a -.byte 0x41, 0x77, 0x4d, 0x44, 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x77, 0x4f, 0x54, 0x45, 0x4c, 0x0a, 0x4d -.byte 0x41, 0x6b, 0x47, 0x41, 0x31, 0x55, 0x45, 0x42, 0x68, 0x4d, 0x43, 0x56, 0x56, 0x4d, 0x78, 0x44 -.byte 0x7a, 0x41, 0x4e, 0x42, 0x67, 0x4e, 0x56, 0x42, 0x41, 0x6f, 0x54, 0x42, 0x6b, 0x46, 0x74, 0x59 -.byte 0x58, 0x70, 0x76, 0x62, 0x6a, 0x45, 0x5a, 0x4d, 0x42, 0x63, 0x47, 0x41, 0x31, 0x55, 0x45, 0x41 -.byte 0x78, 0x4d, 0x51, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x49, 0x46, 0x4a, 0x76, 0x0a -.byte 0x62, 0x33, 0x51, 0x67, 0x51, 0x30, 0x45, 0x67, 0x4d, 0x54, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77 -.byte 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42 -.byte 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43 -.byte 0x67, 0x67, 0x45, 0x42, 0x41, 0x4c, 0x4a, 0x34, 0x67, 0x48, 0x48, 0x4b, 0x65, 0x4e, 0x58, 0x6a -.byte 0x0a, 0x63, 0x61, 0x39, 0x48, 0x67, 0x46, 0x42, 0x30, 0x66, 0x57, 0x37, 0x59, 0x31, 0x34, 0x68 -.byte 0x32, 0x39, 0x4a, 0x6c, 0x6f, 0x39, 0x31, 0x67, 0x68, 0x59, 0x50, 0x6c, 0x30, 0x68, 0x41, 0x45 -.byte 0x76, 0x72, 0x41, 0x49, 0x74, 0x68, 0x74, 0x4f, 0x67, 0x51, 0x33, 0x70, 0x4f, 0x73, 0x71, 0x54 -.byte 0x51, 0x4e, 0x72, 0x6f, 0x42, 0x76, 0x6f, 0x33, 0x62, 0x53, 0x4d, 0x67, 0x48, 0x46, 0x7a, 0x5a -.byte 0x4d, 0x0a, 0x39, 0x4f, 0x36, 0x49, 0x49, 0x38, 0x63, 0x2b, 0x36, 0x7a, 0x66, 0x31, 0x74, 0x52 -.byte 0x6e, 0x34, 0x53, 0x57, 0x69, 0x77, 0x33, 0x74, 0x65, 0x35, 0x64, 0x6a, 0x67, 0x64, 0x59, 0x5a -.byte 0x36, 0x6b, 0x2f, 0x6f, 0x49, 0x32, 0x70, 0x65, 0x56, 0x4b, 0x56, 0x75, 0x52, 0x46, 0x34, 0x66 -.byte 0x6e, 0x39, 0x74, 0x42, 0x62, 0x36, 0x64, 0x4e, 0x71, 0x63, 0x6d, 0x7a, 0x55, 0x35, 0x4c, 0x2f -.byte 0x71, 0x77, 0x0a, 0x49, 0x46, 0x41, 0x47, 0x62, 0x48, 0x72, 0x51, 0x67, 0x4c, 0x4b, 0x6d, 0x2b -.byte 0x61, 0x2f, 0x73, 0x52, 0x78, 0x6d, 0x50, 0x55, 0x44, 0x67, 0x48, 0x33, 0x4b, 0x4b, 0x48, 0x4f -.byte 0x56, 0x6a, 0x34, 0x75, 0x74, 0x57, 0x70, 0x2b, 0x55, 0x68, 0x6e, 0x4d, 0x4a, 0x62, 0x75, 0x6c -.byte 0x48, 0x68, 0x65, 0x62, 0x34, 0x6d, 0x6a, 0x55, 0x63, 0x41, 0x77, 0x68, 0x6d, 0x61, 0x68, 0x52 -.byte 0x57, 0x61, 0x36, 0x0a, 0x56, 0x4f, 0x75, 0x6a, 0x77, 0x35, 0x48, 0x35, 0x53, 0x4e, 0x7a, 0x2f -.byte 0x30, 0x65, 0x67, 0x77, 0x4c, 0x58, 0x30, 0x74, 0x64, 0x48, 0x41, 0x31, 0x31, 0x34, 0x67, 0x6b -.byte 0x39, 0x35, 0x37, 0x45, 0x57, 0x57, 0x36, 0x37, 0x63, 0x34, 0x63, 0x58, 0x38, 0x6a, 0x4a, 0x47 -.byte 0x4b, 0x4c, 0x68, 0x44, 0x2b, 0x72, 0x63, 0x64, 0x71, 0x73, 0x71, 0x30, 0x38, 0x70, 0x38, 0x6b -.byte 0x44, 0x69, 0x31, 0x4c, 0x0a, 0x39, 0x33, 0x46, 0x63, 0x58, 0x6d, 0x6e, 0x2f, 0x36, 0x70, 0x55 -.byte 0x43, 0x79, 0x7a, 0x69, 0x4b, 0x72, 0x6c, 0x41, 0x34, 0x62, 0x39, 0x76, 0x37, 0x4c, 0x57, 0x49 -.byte 0x62, 0x78, 0x63, 0x63, 0x65, 0x56, 0x4f, 0x46, 0x33, 0x34, 0x47, 0x66, 0x49, 0x44, 0x35, 0x79 -.byte 0x48, 0x49, 0x39, 0x59, 0x2f, 0x51, 0x43, 0x42, 0x2f, 0x49, 0x49, 0x44, 0x45, 0x67, 0x45, 0x77 -.byte 0x2b, 0x4f, 0x79, 0x51, 0x6d, 0x0a, 0x6a, 0x67, 0x53, 0x75, 0x62, 0x4a, 0x72, 0x49, 0x71, 0x67 -.byte 0x30, 0x43, 0x41, 0x77, 0x45, 0x41, 0x41, 0x61, 0x4e, 0x43, 0x4d, 0x45, 0x41, 0x77, 0x44, 0x77 -.byte 0x59, 0x44, 0x56, 0x52, 0x30, 0x54, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x55, 0x77, 0x41, 0x77 -.byte 0x45, 0x42, 0x2f, 0x7a, 0x41, 0x4f, 0x42, 0x67, 0x4e, 0x56, 0x48, 0x51, 0x38, 0x42, 0x41, 0x66 -.byte 0x38, 0x45, 0x42, 0x41, 0x4d, 0x43, 0x0a, 0x41, 0x59, 0x59, 0x77, 0x48, 0x51, 0x59, 0x44, 0x56 -.byte 0x52, 0x30, 0x4f, 0x42, 0x42, 0x59, 0x45, 0x46, 0x49, 0x51, 0x59, 0x7a, 0x49, 0x55, 0x30, 0x37 -.byte 0x4c, 0x77, 0x4d, 0x6c, 0x4a, 0x51, 0x75, 0x43, 0x46, 0x6d, 0x63, 0x78, 0x37, 0x49, 0x51, 0x54 -.byte 0x67, 0x6f, 0x49, 0x4d, 0x41, 0x30, 0x47, 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44 -.byte 0x51, 0x45, 0x42, 0x43, 0x77, 0x55, 0x41, 0x0a, 0x41, 0x34, 0x49, 0x42, 0x41, 0x51, 0x43, 0x59 -.byte 0x38, 0x6a, 0x64, 0x61, 0x51, 0x5a, 0x43, 0x68, 0x47, 0x73, 0x56, 0x32, 0x55, 0x53, 0x67, 0x67 -.byte 0x4e, 0x69, 0x4d, 0x4f, 0x72, 0x75, 0x59, 0x6f, 0x75, 0x36, 0x72, 0x34, 0x6c, 0x4b, 0x35, 0x49 -.byte 0x70, 0x44, 0x42, 0x2f, 0x47, 0x2f, 0x77, 0x6b, 0x6a, 0x55, 0x75, 0x30, 0x79, 0x4b, 0x47, 0x58 -.byte 0x39, 0x72, 0x62, 0x78, 0x65, 0x6e, 0x44, 0x49, 0x0a, 0x55, 0x35, 0x50, 0x4d, 0x43, 0x43, 0x6a -.byte 0x6a, 0x6d, 0x43, 0x58, 0x50, 0x49, 0x36, 0x54, 0x35, 0x33, 0x69, 0x48, 0x54, 0x66, 0x49, 0x55 -.byte 0x4a, 0x72, 0x55, 0x36, 0x61, 0x64, 0x54, 0x72, 0x43, 0x43, 0x32, 0x71, 0x4a, 0x65, 0x48, 0x5a -.byte 0x45, 0x52, 0x78, 0x68, 0x6c, 0x62, 0x49, 0x31, 0x42, 0x6a, 0x6a, 0x74, 0x2f, 0x6d, 0x73, 0x76 -.byte 0x30, 0x74, 0x61, 0x64, 0x51, 0x31, 0x77, 0x55, 0x73, 0x0a, 0x4e, 0x2b, 0x67, 0x44, 0x53, 0x36 -.byte 0x33, 0x70, 0x59, 0x61, 0x41, 0x43, 0x62, 0x76, 0x58, 0x79, 0x38, 0x4d, 0x57, 0x79, 0x37, 0x56 -.byte 0x75, 0x33, 0x33, 0x50, 0x71, 0x55, 0x58, 0x48, 0x65, 0x65, 0x45, 0x36, 0x56, 0x2f, 0x55, 0x71 -.byte 0x32, 0x56, 0x38, 0x76, 0x69, 0x54, 0x4f, 0x39, 0x36, 0x4c, 0x58, 0x46, 0x76, 0x4b, 0x57, 0x6c -.byte 0x4a, 0x62, 0x59, 0x4b, 0x38, 0x55, 0x39, 0x30, 0x76, 0x76, 0x0a, 0x6f, 0x2f, 0x75, 0x66, 0x51 -.byte 0x4a, 0x56, 0x74, 0x4d, 0x56, 0x54, 0x38, 0x51, 0x74, 0x50, 0x48, 0x52, 0x68, 0x38, 0x6a, 0x72 -.byte 0x64, 0x6b, 0x50, 0x53, 0x48, 0x43, 0x61, 0x32, 0x58, 0x56, 0x34, 0x63, 0x64, 0x46, 0x79, 0x51 -.byte 0x7a, 0x52, 0x31, 0x62, 0x6c, 0x64, 0x5a, 0x77, 0x67, 0x4a, 0x63, 0x4a, 0x6d, 0x41, 0x70, 0x7a -.byte 0x79, 0x4d, 0x5a, 0x46, 0x6f, 0x36, 0x49, 0x51, 0x36, 0x58, 0x55, 0x0a, 0x35, 0x4d, 0x73, 0x49 -.byte 0x2b, 0x79, 0x4d, 0x52, 0x51, 0x2b, 0x68, 0x44, 0x4b, 0x58, 0x4a, 0x69, 0x6f, 0x61, 0x6c, 0x64 -.byte 0x58, 0x67, 0x6a, 0x55, 0x6b, 0x4b, 0x36, 0x34, 0x32, 0x4d, 0x34, 0x55, 0x77, 0x74, 0x42, 0x56 -.byte 0x38, 0x6f, 0x62, 0x32, 0x78, 0x4a, 0x4e, 0x44, 0x64, 0x32, 0x5a, 0x68, 0x77, 0x4c, 0x6e, 0x6f -.byte 0x51, 0x64, 0x65, 0x58, 0x65, 0x47, 0x41, 0x44, 0x62, 0x6b, 0x70, 0x79, 0x0a, 0x72, 0x71, 0x58 -.byte 0x52, 0x66, 0x62, 0x6f, 0x51, 0x6e, 0x6f, 0x5a, 0x73, 0x47, 0x34, 0x71, 0x35, 0x57, 0x54, 0x50 -.byte 0x34, 0x36, 0x38, 0x53, 0x51, 0x76, 0x76, 0x47, 0x35, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45 -.byte 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d -.byte 0x2d, 0x2d, 0x2d, 0x0a, 0x00 - -.global _binary_rmaker_claim_service_server_crt_end -_binary_rmaker_claim_service_server_crt_end: /* for objcopy compatibility */ - - -.global rmaker_claim_service_server_crt_length -rmaker_claim_service_server_crt_length: /* not including null byte */ -.long 1188 diff --git a/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S b/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S deleted file mode 100644 index e392540fd..000000000 --- a/RainMaker_Table-Lights/build/rmaker_mqtt_server.crt.S +++ /dev/null @@ -1,96 +0,0 @@ -/* * Data converted from /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_mqtt_server.crt - * (null byte appended) - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global rmaker_mqtt_server_crt -rmaker_mqtt_server_crt: - -.global _binary_rmaker_mqtt_server_crt_start -_binary_rmaker_mqtt_server_crt_start: /* for objcopy compatibility */ -.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 -.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x44 -.byte 0x51, 0x54, 0x43, 0x43, 0x41, 0x69, 0x6d, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x54 -.byte 0x42, 0x6d, 0x79, 0x66, 0x7a, 0x35, 0x6d, 0x2f, 0x6a, 0x41, 0x6f, 0x35, 0x34, 0x76, 0x42, 0x34 -.byte 0x69, 0x6b, 0x50, 0x6d, 0x6c, 0x6a, 0x5a, 0x62, 0x79, 0x6a, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71 -.byte 0x68, 0x6b, 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x0a, 0x41, 0x44, 0x41 -.byte 0x35, 0x4d, 0x51, 0x73, 0x77, 0x43, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x47, 0x45, 0x77, 0x4a -.byte 0x56, 0x55, 0x7a, 0x45, 0x50, 0x4d, 0x41, 0x30, 0x47, 0x41, 0x31, 0x55, 0x45, 0x43, 0x68, 0x4d -.byte 0x47, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x4d, 0x52, 0x6b, 0x77, 0x46, 0x77, 0x59 -.byte 0x44, 0x56, 0x51, 0x51, 0x44, 0x45, 0x78, 0x42, 0x42, 0x62, 0x57, 0x46, 0x36, 0x0a, 0x62, 0x32 -.byte 0x34, 0x67, 0x55, 0x6d, 0x39, 0x76, 0x64, 0x43, 0x42, 0x44, 0x51, 0x53, 0x41, 0x78, 0x4d, 0x42 -.byte 0x34, 0x58, 0x44, 0x54, 0x45, 0x31, 0x4d, 0x44, 0x55, 0x79, 0x4e, 0x6a, 0x41, 0x77, 0x4d, 0x44 -.byte 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x58, 0x44, 0x54, 0x4d, 0x34, 0x4d, 0x44, 0x45, 0x78, 0x4e, 0x7a -.byte 0x41, 0x77, 0x4d, 0x44, 0x41, 0x77, 0x4d, 0x46, 0x6f, 0x77, 0x4f, 0x54, 0x45, 0x4c, 0x0a, 0x4d -.byte 0x41, 0x6b, 0x47, 0x41, 0x31, 0x55, 0x45, 0x42, 0x68, 0x4d, 0x43, 0x56, 0x56, 0x4d, 0x78, 0x44 -.byte 0x7a, 0x41, 0x4e, 0x42, 0x67, 0x4e, 0x56, 0x42, 0x41, 0x6f, 0x54, 0x42, 0x6b, 0x46, 0x74, 0x59 -.byte 0x58, 0x70, 0x76, 0x62, 0x6a, 0x45, 0x5a, 0x4d, 0x42, 0x63, 0x47, 0x41, 0x31, 0x55, 0x45, 0x41 -.byte 0x78, 0x4d, 0x51, 0x51, 0x57, 0x31, 0x68, 0x65, 0x6d, 0x39, 0x75, 0x49, 0x46, 0x4a, 0x76, 0x0a -.byte 0x62, 0x33, 0x51, 0x67, 0x51, 0x30, 0x45, 0x67, 0x4d, 0x54, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77 -.byte 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42 -.byte 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43 -.byte 0x67, 0x67, 0x45, 0x42, 0x41, 0x4c, 0x4a, 0x34, 0x67, 0x48, 0x48, 0x4b, 0x65, 0x4e, 0x58, 0x6a -.byte 0x0a, 0x63, 0x61, 0x39, 0x48, 0x67, 0x46, 0x42, 0x30, 0x66, 0x57, 0x37, 0x59, 0x31, 0x34, 0x68 -.byte 0x32, 0x39, 0x4a, 0x6c, 0x6f, 0x39, 0x31, 0x67, 0x68, 0x59, 0x50, 0x6c, 0x30, 0x68, 0x41, 0x45 -.byte 0x76, 0x72, 0x41, 0x49, 0x74, 0x68, 0x74, 0x4f, 0x67, 0x51, 0x33, 0x70, 0x4f, 0x73, 0x71, 0x54 -.byte 0x51, 0x4e, 0x72, 0x6f, 0x42, 0x76, 0x6f, 0x33, 0x62, 0x53, 0x4d, 0x67, 0x48, 0x46, 0x7a, 0x5a -.byte 0x4d, 0x0a, 0x39, 0x4f, 0x36, 0x49, 0x49, 0x38, 0x63, 0x2b, 0x36, 0x7a, 0x66, 0x31, 0x74, 0x52 -.byte 0x6e, 0x34, 0x53, 0x57, 0x69, 0x77, 0x33, 0x74, 0x65, 0x35, 0x64, 0x6a, 0x67, 0x64, 0x59, 0x5a -.byte 0x36, 0x6b, 0x2f, 0x6f, 0x49, 0x32, 0x70, 0x65, 0x56, 0x4b, 0x56, 0x75, 0x52, 0x46, 0x34, 0x66 -.byte 0x6e, 0x39, 0x74, 0x42, 0x62, 0x36, 0x64, 0x4e, 0x71, 0x63, 0x6d, 0x7a, 0x55, 0x35, 0x4c, 0x2f -.byte 0x71, 0x77, 0x0a, 0x49, 0x46, 0x41, 0x47, 0x62, 0x48, 0x72, 0x51, 0x67, 0x4c, 0x4b, 0x6d, 0x2b -.byte 0x61, 0x2f, 0x73, 0x52, 0x78, 0x6d, 0x50, 0x55, 0x44, 0x67, 0x48, 0x33, 0x4b, 0x4b, 0x48, 0x4f -.byte 0x56, 0x6a, 0x34, 0x75, 0x74, 0x57, 0x70, 0x2b, 0x55, 0x68, 0x6e, 0x4d, 0x4a, 0x62, 0x75, 0x6c -.byte 0x48, 0x68, 0x65, 0x62, 0x34, 0x6d, 0x6a, 0x55, 0x63, 0x41, 0x77, 0x68, 0x6d, 0x61, 0x68, 0x52 -.byte 0x57, 0x61, 0x36, 0x0a, 0x56, 0x4f, 0x75, 0x6a, 0x77, 0x35, 0x48, 0x35, 0x53, 0x4e, 0x7a, 0x2f -.byte 0x30, 0x65, 0x67, 0x77, 0x4c, 0x58, 0x30, 0x74, 0x64, 0x48, 0x41, 0x31, 0x31, 0x34, 0x67, 0x6b -.byte 0x39, 0x35, 0x37, 0x45, 0x57, 0x57, 0x36, 0x37, 0x63, 0x34, 0x63, 0x58, 0x38, 0x6a, 0x4a, 0x47 -.byte 0x4b, 0x4c, 0x68, 0x44, 0x2b, 0x72, 0x63, 0x64, 0x71, 0x73, 0x71, 0x30, 0x38, 0x70, 0x38, 0x6b -.byte 0x44, 0x69, 0x31, 0x4c, 0x0a, 0x39, 0x33, 0x46, 0x63, 0x58, 0x6d, 0x6e, 0x2f, 0x36, 0x70, 0x55 -.byte 0x43, 0x79, 0x7a, 0x69, 0x4b, 0x72, 0x6c, 0x41, 0x34, 0x62, 0x39, 0x76, 0x37, 0x4c, 0x57, 0x49 -.byte 0x62, 0x78, 0x63, 0x63, 0x65, 0x56, 0x4f, 0x46, 0x33, 0x34, 0x47, 0x66, 0x49, 0x44, 0x35, 0x79 -.byte 0x48, 0x49, 0x39, 0x59, 0x2f, 0x51, 0x43, 0x42, 0x2f, 0x49, 0x49, 0x44, 0x45, 0x67, 0x45, 0x77 -.byte 0x2b, 0x4f, 0x79, 0x51, 0x6d, 0x0a, 0x6a, 0x67, 0x53, 0x75, 0x62, 0x4a, 0x72, 0x49, 0x71, 0x67 -.byte 0x30, 0x43, 0x41, 0x77, 0x45, 0x41, 0x41, 0x61, 0x4e, 0x43, 0x4d, 0x45, 0x41, 0x77, 0x44, 0x77 -.byte 0x59, 0x44, 0x56, 0x52, 0x30, 0x54, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x55, 0x77, 0x41, 0x77 -.byte 0x45, 0x42, 0x2f, 0x7a, 0x41, 0x4f, 0x42, 0x67, 0x4e, 0x56, 0x48, 0x51, 0x38, 0x42, 0x41, 0x66 -.byte 0x38, 0x45, 0x42, 0x41, 0x4d, 0x43, 0x0a, 0x41, 0x59, 0x59, 0x77, 0x48, 0x51, 0x59, 0x44, 0x56 -.byte 0x52, 0x30, 0x4f, 0x42, 0x42, 0x59, 0x45, 0x46, 0x49, 0x51, 0x59, 0x7a, 0x49, 0x55, 0x30, 0x37 -.byte 0x4c, 0x77, 0x4d, 0x6c, 0x4a, 0x51, 0x75, 0x43, 0x46, 0x6d, 0x63, 0x78, 0x37, 0x49, 0x51, 0x54 -.byte 0x67, 0x6f, 0x49, 0x4d, 0x41, 0x30, 0x47, 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44 -.byte 0x51, 0x45, 0x42, 0x43, 0x77, 0x55, 0x41, 0x0a, 0x41, 0x34, 0x49, 0x42, 0x41, 0x51, 0x43, 0x59 -.byte 0x38, 0x6a, 0x64, 0x61, 0x51, 0x5a, 0x43, 0x68, 0x47, 0x73, 0x56, 0x32, 0x55, 0x53, 0x67, 0x67 -.byte 0x4e, 0x69, 0x4d, 0x4f, 0x72, 0x75, 0x59, 0x6f, 0x75, 0x36, 0x72, 0x34, 0x6c, 0x4b, 0x35, 0x49 -.byte 0x70, 0x44, 0x42, 0x2f, 0x47, 0x2f, 0x77, 0x6b, 0x6a, 0x55, 0x75, 0x30, 0x79, 0x4b, 0x47, 0x58 -.byte 0x39, 0x72, 0x62, 0x78, 0x65, 0x6e, 0x44, 0x49, 0x0a, 0x55, 0x35, 0x50, 0x4d, 0x43, 0x43, 0x6a -.byte 0x6a, 0x6d, 0x43, 0x58, 0x50, 0x49, 0x36, 0x54, 0x35, 0x33, 0x69, 0x48, 0x54, 0x66, 0x49, 0x55 -.byte 0x4a, 0x72, 0x55, 0x36, 0x61, 0x64, 0x54, 0x72, 0x43, 0x43, 0x32, 0x71, 0x4a, 0x65, 0x48, 0x5a -.byte 0x45, 0x52, 0x78, 0x68, 0x6c, 0x62, 0x49, 0x31, 0x42, 0x6a, 0x6a, 0x74, 0x2f, 0x6d, 0x73, 0x76 -.byte 0x30, 0x74, 0x61, 0x64, 0x51, 0x31, 0x77, 0x55, 0x73, 0x0a, 0x4e, 0x2b, 0x67, 0x44, 0x53, 0x36 -.byte 0x33, 0x70, 0x59, 0x61, 0x41, 0x43, 0x62, 0x76, 0x58, 0x79, 0x38, 0x4d, 0x57, 0x79, 0x37, 0x56 -.byte 0x75, 0x33, 0x33, 0x50, 0x71, 0x55, 0x58, 0x48, 0x65, 0x65, 0x45, 0x36, 0x56, 0x2f, 0x55, 0x71 -.byte 0x32, 0x56, 0x38, 0x76, 0x69, 0x54, 0x4f, 0x39, 0x36, 0x4c, 0x58, 0x46, 0x76, 0x4b, 0x57, 0x6c -.byte 0x4a, 0x62, 0x59, 0x4b, 0x38, 0x55, 0x39, 0x30, 0x76, 0x76, 0x0a, 0x6f, 0x2f, 0x75, 0x66, 0x51 -.byte 0x4a, 0x56, 0x74, 0x4d, 0x56, 0x54, 0x38, 0x51, 0x74, 0x50, 0x48, 0x52, 0x68, 0x38, 0x6a, 0x72 -.byte 0x64, 0x6b, 0x50, 0x53, 0x48, 0x43, 0x61, 0x32, 0x58, 0x56, 0x34, 0x63, 0x64, 0x46, 0x79, 0x51 -.byte 0x7a, 0x52, 0x31, 0x62, 0x6c, 0x64, 0x5a, 0x77, 0x67, 0x4a, 0x63, 0x4a, 0x6d, 0x41, 0x70, 0x7a -.byte 0x79, 0x4d, 0x5a, 0x46, 0x6f, 0x36, 0x49, 0x51, 0x36, 0x58, 0x55, 0x0a, 0x35, 0x4d, 0x73, 0x49 -.byte 0x2b, 0x79, 0x4d, 0x52, 0x51, 0x2b, 0x68, 0x44, 0x4b, 0x58, 0x4a, 0x69, 0x6f, 0x61, 0x6c, 0x64 -.byte 0x58, 0x67, 0x6a, 0x55, 0x6b, 0x4b, 0x36, 0x34, 0x32, 0x4d, 0x34, 0x55, 0x77, 0x74, 0x42, 0x56 -.byte 0x38, 0x6f, 0x62, 0x32, 0x78, 0x4a, 0x4e, 0x44, 0x64, 0x32, 0x5a, 0x68, 0x77, 0x4c, 0x6e, 0x6f -.byte 0x51, 0x64, 0x65, 0x58, 0x65, 0x47, 0x41, 0x44, 0x62, 0x6b, 0x70, 0x79, 0x0a, 0x72, 0x71, 0x58 -.byte 0x52, 0x66, 0x62, 0x6f, 0x51, 0x6e, 0x6f, 0x5a, 0x73, 0x47, 0x34, 0x71, 0x35, 0x57, 0x54, 0x50 -.byte 0x34, 0x36, 0x38, 0x53, 0x51, 0x76, 0x76, 0x47, 0x35, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45 -.byte 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d -.byte 0x2d, 0x2d, 0x2d, 0x0a, 0x00 - -.global _binary_rmaker_mqtt_server_crt_end -_binary_rmaker_mqtt_server_crt_end: /* for objcopy compatibility */ - - -.global rmaker_mqtt_server_crt_length -rmaker_mqtt_server_crt_length: /* not including null byte */ -.long 1188 diff --git a/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S b/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S deleted file mode 100644 index e250e6a8e..000000000 --- a/RainMaker_Table-Lights/build/rmaker_ota_server.crt.S +++ /dev/null @@ -1,227 +0,0 @@ -/* * Data converted from /home/alex/.espressif/esp-rainmaker/components/esp_rainmaker/server_certs/rmaker_ota_server.crt - * (null byte appended) - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global rmaker_ota_server_crt -rmaker_ota_server_crt: - -.global _binary_rmaker_ota_server_crt_start -_binary_rmaker_ota_server_crt_start: /* for objcopy compatibility */ -.byte 0x45, 0x53, 0x50, 0x20, 0x52, 0x61, 0x69, 0x6e, 0x4d, 0x61, 0x6b, 0x65, 0x72, 0x20, 0x4f, 0x54 -.byte 0x41, 0x20, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x0a, 0x52, 0x65 -.byte 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x66, 0x20, 0x79, 0x6f -.byte 0x75, 0x20, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x73, 0x65, 0x20 -.byte 0x61, 0x6e, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 -.byte 0x2e, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52 -.byte 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49 -.byte 0x49, 0x45, 0x59, 0x7a, 0x43, 0x43, 0x41, 0x30, 0x75, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67 -.byte 0x49, 0x51, 0x41, 0x59, 0x4c, 0x34, 0x43, 0x59, 0x36, 0x69, 0x35, 0x69, 0x61, 0x35, 0x47, 0x6a -.byte 0x73, 0x6e, 0x68, 0x42, 0x2b, 0x35, 0x72, 0x7a, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71, 0x68, 0x6b -.byte 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x41, 0x44, 0x42, 0x61, 0x0a, 0x4d -.byte 0x51, 0x73, 0x77, 0x43, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x47, 0x45, 0x77, 0x4a, 0x4a, 0x52 -.byte 0x54, 0x45, 0x53, 0x4d, 0x42, 0x41, 0x47, 0x41, 0x31, 0x55, 0x45, 0x43, 0x68, 0x4d, 0x4a, 0x51 -.byte 0x6d, 0x46, 0x73, 0x64, 0x47, 0x6c, 0x74, 0x62, 0x33, 0x4a, 0x6c, 0x4d, 0x52, 0x4d, 0x77, 0x45 -.byte 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x4c, 0x45, 0x77, 0x70, 0x44, 0x65, 0x57, 0x4a, 0x6c, 0x0a -.byte 0x63, 0x6c, 0x52, 0x79, 0x64, 0x58, 0x4e, 0x30, 0x4d, 0x53, 0x49, 0x77, 0x49, 0x41, 0x59, 0x44 -.byte 0x56, 0x51, 0x51, 0x44, 0x45, 0x78, 0x6c, 0x43, 0x59, 0x57, 0x78, 0x30, 0x61, 0x57, 0x31, 0x76 -.byte 0x63, 0x6d, 0x55, 0x67, 0x51, 0x33, 0x6c, 0x69, 0x5a, 0x58, 0x4a, 0x55, 0x63, 0x6e, 0x56, 0x7a -.byte 0x64, 0x43, 0x42, 0x53, 0x62, 0x32, 0x39, 0x30, 0x4d, 0x42, 0x34, 0x58, 0x44, 0x54, 0x45, 0x31 -.byte 0x0a, 0x4d, 0x54, 0x49, 0x77, 0x4f, 0x44, 0x45, 0x79, 0x4d, 0x44, 0x55, 0x77, 0x4e, 0x31, 0x6f -.byte 0x58, 0x44, 0x54, 0x49, 0x31, 0x4d, 0x44, 0x55, 0x78, 0x4d, 0x44, 0x45, 0x79, 0x4d, 0x44, 0x41 -.byte 0x77, 0x4d, 0x46, 0x6f, 0x77, 0x5a, 0x44, 0x45, 0x4c, 0x4d, 0x41, 0x6b, 0x47, 0x41, 0x31, 0x55 -.byte 0x45, 0x42, 0x68, 0x4d, 0x43, 0x56, 0x56, 0x4d, 0x78, 0x46, 0x54, 0x41, 0x54, 0x42, 0x67, 0x4e -.byte 0x56, 0x0a, 0x42, 0x41, 0x6f, 0x54, 0x44, 0x45, 0x52, 0x70, 0x5a, 0x32, 0x6c, 0x44, 0x5a, 0x58 -.byte 0x4a, 0x30, 0x49, 0x45, 0x6c, 0x75, 0x59, 0x7a, 0x45, 0x5a, 0x4d, 0x42, 0x63, 0x47, 0x41, 0x31 -.byte 0x55, 0x45, 0x43, 0x78, 0x4d, 0x51, 0x64, 0x33, 0x64, 0x33, 0x4c, 0x6d, 0x52, 0x70, 0x5a, 0x32 -.byte 0x6c, 0x6a, 0x5a, 0x58, 0x4a, 0x30, 0x4c, 0x6d, 0x4e, 0x76, 0x62, 0x54, 0x45, 0x6a, 0x4d, 0x43 -.byte 0x45, 0x47, 0x0a, 0x41, 0x31, 0x55, 0x45, 0x41, 0x78, 0x4d, 0x61, 0x52, 0x47, 0x6c, 0x6e, 0x61 -.byte 0x55, 0x4e, 0x6c, 0x63, 0x6e, 0x51, 0x67, 0x51, 0x6d, 0x46, 0x73, 0x64, 0x47, 0x6c, 0x74, 0x62 -.byte 0x33, 0x4a, 0x6c, 0x49, 0x45, 0x4e, 0x42, 0x4c, 0x54, 0x49, 0x67, 0x52, 0x7a, 0x49, 0x77, 0x67 -.byte 0x67, 0x45, 0x69, 0x4d, 0x41, 0x30, 0x47, 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44 -.byte 0x51, 0x45, 0x42, 0x0a, 0x41, 0x51, 0x55, 0x41, 0x41, 0x34, 0x49, 0x42, 0x44, 0x77, 0x41, 0x77 -.byte 0x67, 0x67, 0x45, 0x4b, 0x41, 0x6f, 0x49, 0x42, 0x41, 0x51, 0x43, 0x37, 0x35, 0x77, 0x44, 0x2b -.byte 0x41, 0x41, 0x46, 0x7a, 0x37, 0x35, 0x75, 0x49, 0x38, 0x46, 0x77, 0x49, 0x64, 0x66, 0x42, 0x63 -.byte 0x63, 0x48, 0x4d, 0x66, 0x2f, 0x37, 0x56, 0x36, 0x48, 0x34, 0x30, 0x49, 0x49, 0x2f, 0x33, 0x48 -.byte 0x77, 0x52, 0x4d, 0x2f, 0x0a, 0x73, 0x53, 0x45, 0x47, 0x76, 0x55, 0x33, 0x4d, 0x32, 0x79, 0x32 -.byte 0x34, 0x68, 0x78, 0x6b, 0x78, 0x33, 0x74, 0x70, 0x72, 0x44, 0x63, 0x46, 0x64, 0x30, 0x6c, 0x48 -.byte 0x56, 0x73, 0x46, 0x35, 0x79, 0x31, 0x50, 0x42, 0x6d, 0x31, 0x49, 0x54, 0x79, 0x6b, 0x52, 0x68 -.byte 0x42, 0x74, 0x51, 0x6b, 0x6d, 0x73, 0x67, 0x4f, 0x57, 0x42, 0x47, 0x6d, 0x56, 0x55, 0x2f, 0x6f -.byte 0x48, 0x54, 0x7a, 0x36, 0x2b, 0x0a, 0x68, 0x6a, 0x70, 0x44, 0x4b, 0x37, 0x4a, 0x5a, 0x74, 0x61 -.byte 0x76, 0x52, 0x75, 0x76, 0x52, 0x5a, 0x51, 0x48, 0x4a, 0x61, 0x5a, 0x37, 0x62, 0x4e, 0x35, 0x6c -.byte 0x58, 0x38, 0x43, 0x53, 0x75, 0x6b, 0x6d, 0x4c, 0x4b, 0x2f, 0x7a, 0x4b, 0x6b, 0x66, 0x31, 0x4c -.byte 0x2b, 0x48, 0x6a, 0x34, 0x49, 0x6c, 0x2f, 0x55, 0x57, 0x41, 0x71, 0x65, 0x79, 0x64, 0x6a, 0x50 -.byte 0x6c, 0x30, 0x6b, 0x4d, 0x38, 0x63, 0x0a, 0x2b, 0x47, 0x56, 0x51, 0x72, 0x38, 0x33, 0x34, 0x52 -.byte 0x61, 0x76, 0x49, 0x4c, 0x34, 0x32, 0x4f, 0x4e, 0x68, 0x33, 0x65, 0x36, 0x6f, 0x6e, 0x4e, 0x73 -.byte 0x6c, 0x4c, 0x5a, 0x35, 0x51, 0x6e, 0x4e, 0x4e, 0x6e, 0x45, 0x72, 0x32, 0x73, 0x62, 0x51, 0x6d -.byte 0x38, 0x62, 0x32, 0x70, 0x46, 0x74, 0x62, 0x4f, 0x62, 0x59, 0x66, 0x41, 0x42, 0x38, 0x5a, 0x70 -.byte 0x50, 0x76, 0x54, 0x76, 0x67, 0x7a, 0x6d, 0x0a, 0x2b, 0x34, 0x2f, 0x64, 0x44, 0x6f, 0x44, 0x6d -.byte 0x70, 0x4f, 0x64, 0x61, 0x78, 0x4d, 0x41, 0x76, 0x63, 0x75, 0x36, 0x52, 0x38, 0x34, 0x4e, 0x6e -.byte 0x79, 0x63, 0x33, 0x4b, 0x7a, 0x6b, 0x71, 0x77, 0x49, 0x49, 0x48, 0x39, 0x35, 0x48, 0x4b, 0x76 -.byte 0x43, 0x52, 0x6a, 0x6e, 0x54, 0x30, 0x4c, 0x73, 0x54, 0x53, 0x64, 0x43, 0x54, 0x51, 0x65, 0x67 -.byte 0x33, 0x64, 0x55, 0x4e, 0x64, 0x66, 0x63, 0x32, 0x0a, 0x59, 0x4d, 0x77, 0x6d, 0x56, 0x4a, 0x69 -.byte 0x68, 0x69, 0x44, 0x66, 0x77, 0x67, 0x2f, 0x65, 0x74, 0x4b, 0x56, 0x6b, 0x67, 0x7a, 0x37, 0x73 -.byte 0x6c, 0x34, 0x64, 0x57, 0x65, 0x35, 0x76, 0x4f, 0x75, 0x77, 0x51, 0x48, 0x72, 0x74, 0x51, 0x61 -.byte 0x4a, 0x34, 0x67, 0x71, 0x50, 0x41, 0x67, 0x4d, 0x42, 0x41, 0x41, 0x47, 0x6a, 0x67, 0x67, 0x45 -.byte 0x5a, 0x4d, 0x49, 0x49, 0x42, 0x46, 0x54, 0x41, 0x64, 0x0a, 0x42, 0x67, 0x4e, 0x56, 0x48, 0x51 -.byte 0x34, 0x45, 0x46, 0x67, 0x51, 0x55, 0x77, 0x42, 0x4b, 0x79, 0x4b, 0x48, 0x52, 0x6f, 0x52, 0x6d -.byte 0x66, 0x70, 0x63, 0x43, 0x56, 0x30, 0x47, 0x67, 0x42, 0x46, 0x57, 0x77, 0x5a, 0x39, 0x58, 0x45 -.byte 0x51, 0x77, 0x48, 0x77, 0x59, 0x44, 0x56, 0x52, 0x30, 0x6a, 0x42, 0x42, 0x67, 0x77, 0x46, 0x6f -.byte 0x41, 0x55, 0x35, 0x5a, 0x31, 0x5a, 0x4d, 0x49, 0x4a, 0x48, 0x0a, 0x57, 0x4d, 0x79, 0x73, 0x2b -.byte 0x67, 0x68, 0x55, 0x4e, 0x6f, 0x5a, 0x37, 0x4f, 0x72, 0x55, 0x45, 0x54, 0x66, 0x41, 0x77, 0x45 -.byte 0x67, 0x59, 0x44, 0x56, 0x52, 0x30, 0x54, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x67, 0x77, 0x42 -.byte 0x67, 0x45, 0x42, 0x2f, 0x77, 0x49, 0x42, 0x41, 0x44, 0x41, 0x4f, 0x42, 0x67, 0x4e, 0x56, 0x48 -.byte 0x51, 0x38, 0x42, 0x41, 0x66, 0x38, 0x45, 0x42, 0x41, 0x4d, 0x43, 0x0a, 0x41, 0x59, 0x59, 0x77 -.byte 0x4e, 0x41, 0x59, 0x49, 0x4b, 0x77, 0x59, 0x42, 0x42, 0x51, 0x55, 0x48, 0x41, 0x51, 0x45, 0x45 -.byte 0x4b, 0x44, 0x41, 0x6d, 0x4d, 0x43, 0x51, 0x47, 0x43, 0x43, 0x73, 0x47, 0x41, 0x51, 0x55, 0x46 -.byte 0x42, 0x7a, 0x41, 0x42, 0x68, 0x68, 0x68, 0x6f, 0x64, 0x48, 0x52, 0x77, 0x4f, 0x69, 0x38, 0x76 -.byte 0x62, 0x32, 0x4e, 0x7a, 0x63, 0x43, 0x35, 0x6b, 0x61, 0x57, 0x64, 0x70, 0x0a, 0x59, 0x32, 0x56 -.byte 0x79, 0x64, 0x43, 0x35, 0x6a, 0x62, 0x32, 0x30, 0x77, 0x4f, 0x67, 0x59, 0x44, 0x56, 0x52, 0x30 -.byte 0x66, 0x42, 0x44, 0x4d, 0x77, 0x4d, 0x54, 0x41, 0x76, 0x6f, 0x43, 0x32, 0x67, 0x4b, 0x34, 0x59 -.byte 0x70, 0x61, 0x48, 0x52, 0x30, 0x63, 0x44, 0x6f, 0x76, 0x4c, 0x32, 0x4e, 0x79, 0x62, 0x44, 0x4d -.byte 0x75, 0x5a, 0x47, 0x6c, 0x6e, 0x61, 0x57, 0x4e, 0x6c, 0x63, 0x6e, 0x51, 0x75, 0x0a, 0x59, 0x32 -.byte 0x39, 0x74, 0x4c, 0x30, 0x39, 0x74, 0x62, 0x6d, 0x6c, 0x79, 0x62, 0x32, 0x39, 0x30, 0x4d, 0x6a -.byte 0x41, 0x79, 0x4e, 0x53, 0x35, 0x6a, 0x63, 0x6d, 0x77, 0x77, 0x50, 0x51, 0x59, 0x44, 0x56, 0x52 -.byte 0x30, 0x67, 0x42, 0x44, 0x59, 0x77, 0x4e, 0x44, 0x41, 0x79, 0x42, 0x67, 0x52, 0x56, 0x48, 0x53 -.byte 0x41, 0x41, 0x4d, 0x43, 0x6f, 0x77, 0x4b, 0x41, 0x59, 0x49, 0x4b, 0x77, 0x59, 0x42, 0x0a, 0x42 -.byte 0x51, 0x55, 0x48, 0x41, 0x67, 0x45, 0x57, 0x48, 0x47, 0x68, 0x30, 0x64, 0x48, 0x42, 0x7a, 0x4f -.byte 0x69, 0x38, 0x76, 0x64, 0x33, 0x64, 0x33, 0x4c, 0x6d, 0x52, 0x70, 0x5a, 0x32, 0x6c, 0x6a, 0x5a -.byte 0x58, 0x4a, 0x30, 0x4c, 0x6d, 0x4e, 0x76, 0x62, 0x53, 0x39, 0x44, 0x55, 0x46, 0x4d, 0x77, 0x44 -.byte 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x0a -.byte 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41, 0x43, 0x2f, 0x69, 0x4e, 0x32, 0x62, 0x44 -.byte 0x47, 0x73, 0x2b, 0x52, 0x56, 0x65, 0x34, 0x70, 0x46, 0x50, 0x70, 0x51, 0x45, 0x4c, 0x36, 0x5a -.byte 0x6a, 0x65, 0x49, 0x6f, 0x38, 0x58, 0x51, 0x57, 0x42, 0x32, 0x6b, 0x37, 0x52, 0x44, 0x41, 0x39 -.byte 0x39, 0x62, 0x6c, 0x4a, 0x39, 0x57, 0x67, 0x32, 0x2f, 0x72, 0x63, 0x77, 0x6a, 0x61, 0x6e, 0x67 -.byte 0x0a, 0x42, 0x30, 0x6c, 0x43, 0x59, 0x30, 0x5a, 0x53, 0x74, 0x57, 0x6e, 0x47, 0x6d, 0x30, 0x6e -.byte 0x79, 0x47, 0x67, 0x39, 0x58, 0x78, 0x76, 0x61, 0x33, 0x76, 0x71, 0x74, 0x31, 0x6a, 0x51, 0x32 -.byte 0x69, 0x71, 0x7a, 0x50, 0x6b, 0x59, 0x6f, 0x56, 0x44, 0x56, 0x4b, 0x74, 0x6a, 0x6c, 0x41, 0x79 -.byte 0x6a, 0x55, 0x36, 0x44, 0x71, 0x48, 0x65, 0x53, 0x6d, 0x70, 0x71, 0x79, 0x56, 0x44, 0x6d, 0x56 -.byte 0x34, 0x0a, 0x37, 0x44, 0x4f, 0x4d, 0x76, 0x70, 0x51, 0x2b, 0x32, 0x48, 0x43, 0x72, 0x36, 0x73 -.byte 0x66, 0x68, 0x65, 0x4d, 0x34, 0x7a, 0x6c, 0x62, 0x76, 0x37, 0x4c, 0x46, 0x6a, 0x67, 0x69, 0x6b -.byte 0x43, 0x6d, 0x62, 0x55, 0x48, 0x59, 0x32, 0x4e, 0x6d, 0x7a, 0x2b, 0x53, 0x38, 0x43, 0x78, 0x52 -.byte 0x74, 0x77, 0x61, 0x2b, 0x49, 0x36, 0x68, 0x58, 0x73, 0x64, 0x47, 0x4c, 0x44, 0x52, 0x53, 0x35 -.byte 0x72, 0x42, 0x0a, 0x62, 0x78, 0x63, 0x51, 0x4b, 0x65, 0x67, 0x4f, 0x77, 0x2b, 0x46, 0x55, 0x6c -.byte 0x6c, 0x53, 0x6c, 0x6b, 0x5a, 0x55, 0x49, 0x49, 0x49, 0x31, 0x70, 0x4c, 0x4a, 0x34, 0x76, 0x50 -.byte 0x31, 0x43, 0x30, 0x4c, 0x75, 0x56, 0x58, 0x48, 0x36, 0x2b, 0x6b, 0x63, 0x39, 0x4b, 0x68, 0x4a -.byte 0x4c, 0x73, 0x4e, 0x6b, 0x50, 0x35, 0x46, 0x45, 0x78, 0x32, 0x6e, 0x6f, 0x53, 0x6e, 0x59, 0x5a -.byte 0x67, 0x76, 0x44, 0x0a, 0x30, 0x57, 0x79, 0x7a, 0x54, 0x37, 0x51, 0x72, 0x68, 0x45, 0x78, 0x48 -.byte 0x6b, 0x4f, 0x79, 0x4c, 0x34, 0x6b, 0x47, 0x4a, 0x45, 0x37, 0x59, 0x48, 0x52, 0x6e, 0x64, 0x43 -.byte 0x2f, 0x62, 0x73, 0x65, 0x46, 0x2f, 0x72, 0x2f, 0x4a, 0x55, 0x75, 0x4f, 0x55, 0x46, 0x66, 0x72 -.byte 0x6a, 0x73, 0x78, 0x4f, 0x46, 0x54, 0x2b, 0x78, 0x4a, 0x64, 0x31, 0x42, 0x44, 0x4b, 0x43, 0x63 -.byte 0x59, 0x6d, 0x31, 0x76, 0x0a, 0x75, 0x70, 0x63, 0x48, 0x69, 0x39, 0x6e, 0x7a, 0x42, 0x68, 0x44 -.byte 0x46, 0x4b, 0x64, 0x54, 0x33, 0x75, 0x68, 0x61, 0x51, 0x71, 0x4e, 0x42, 0x55, 0x34, 0x55, 0x74 -.byte 0x4a, 0x78, 0x35, 0x67, 0x3d, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43 -.byte 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a -.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 -.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x45 -.byte 0x64, 0x54, 0x43, 0x43, 0x41, 0x31, 0x32, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x4a -.byte 0x41, 0x4b, 0x63, 0x4f, 0x53, 0x6b, 0x77, 0x30, 0x67, 0x72, 0x64, 0x2f, 0x4d, 0x41, 0x30, 0x47 -.byte 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44, 0x51, 0x45, 0x42, 0x43, 0x77, 0x55, 0x41 -.byte 0x4d, 0x47, 0x67, 0x78, 0x43, 0x7a, 0x41, 0x4a, 0x42, 0x67, 0x4e, 0x56, 0x0a, 0x42, 0x41, 0x59 -.byte 0x54, 0x41, 0x6c, 0x56, 0x54, 0x4d, 0x53, 0x55, 0x77, 0x49, 0x77, 0x59, 0x44, 0x56, 0x51, 0x51 -.byte 0x4b, 0x45, 0x78, 0x78, 0x54, 0x64, 0x47, 0x46, 0x79, 0x5a, 0x6d, 0x6c, 0x6c, 0x62, 0x47, 0x51 -.byte 0x67, 0x56, 0x47, 0x56, 0x6a, 0x61, 0x47, 0x35, 0x76, 0x62, 0x47, 0x39, 0x6e, 0x61, 0x57, 0x56 -.byte 0x7a, 0x4c, 0x43, 0x42, 0x4a, 0x62, 0x6d, 0x4d, 0x75, 0x4d, 0x54, 0x49, 0x77, 0x0a, 0x4d, 0x41 -.byte 0x59, 0x44, 0x56, 0x51, 0x51, 0x4c, 0x45, 0x79, 0x6c, 0x54, 0x64, 0x47, 0x46, 0x79, 0x5a, 0x6d -.byte 0x6c, 0x6c, 0x62, 0x47, 0x51, 0x67, 0x51, 0x32, 0x78, 0x68, 0x63, 0x33, 0x4d, 0x67, 0x4d, 0x69 -.byte 0x42, 0x44, 0x5a, 0x58, 0x4a, 0x30, 0x61, 0x57, 0x5a, 0x70, 0x59, 0x32, 0x46, 0x30, 0x61, 0x57 -.byte 0x39, 0x75, 0x49, 0x45, 0x46, 0x31, 0x64, 0x47, 0x68, 0x76, 0x63, 0x6d, 0x6c, 0x30, 0x0a, 0x65 -.byte 0x54, 0x41, 0x65, 0x46, 0x77, 0x30, 0x77, 0x4f, 0x54, 0x41, 0x35, 0x4d, 0x44, 0x49, 0x77, 0x4d -.byte 0x44, 0x41, 0x77, 0x4d, 0x44, 0x42, 0x61, 0x46, 0x77, 0x30, 0x7a, 0x4e, 0x44, 0x41, 0x32, 0x4d -.byte 0x6a, 0x67, 0x78, 0x4e, 0x7a, 0x4d, 0x35, 0x4d, 0x54, 0x5a, 0x61, 0x4d, 0x49, 0x47, 0x59, 0x4d -.byte 0x51, 0x73, 0x77, 0x43, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x47, 0x45, 0x77, 0x4a, 0x56, 0x0a -.byte 0x55, 0x7a, 0x45, 0x51, 0x4d, 0x41, 0x34, 0x47, 0x41, 0x31, 0x55, 0x45, 0x43, 0x42, 0x4d, 0x48 -.byte 0x51, 0x58, 0x4a, 0x70, 0x65, 0x6d, 0x39, 0x75, 0x59, 0x54, 0x45, 0x54, 0x4d, 0x42, 0x45, 0x47 -.byte 0x41, 0x31, 0x55, 0x45, 0x42, 0x78, 0x4d, 0x4b, 0x55, 0x32, 0x4e, 0x76, 0x64, 0x48, 0x52, 0x7a -.byte 0x5a, 0x47, 0x46, 0x73, 0x5a, 0x54, 0x45, 0x6c, 0x4d, 0x43, 0x4d, 0x47, 0x41, 0x31, 0x55, 0x45 -.byte 0x0a, 0x43, 0x68, 0x4d, 0x63, 0x55, 0x33, 0x52, 0x68, 0x63, 0x6d, 0x5a, 0x70, 0x5a, 0x57, 0x78 -.byte 0x6b, 0x49, 0x46, 0x52, 0x6c, 0x59, 0x32, 0x68, 0x75, 0x62, 0x32, 0x78, 0x76, 0x5a, 0x32, 0x6c -.byte 0x6c, 0x63, 0x79, 0x77, 0x67, 0x53, 0x57, 0x35, 0x6a, 0x4c, 0x6a, 0x45, 0x37, 0x4d, 0x44, 0x6b -.byte 0x47, 0x41, 0x31, 0x55, 0x45, 0x41, 0x78, 0x4d, 0x79, 0x55, 0x33, 0x52, 0x68, 0x63, 0x6d, 0x5a -.byte 0x70, 0x0a, 0x5a, 0x57, 0x78, 0x6b, 0x49, 0x46, 0x4e, 0x6c, 0x63, 0x6e, 0x5a, 0x70, 0x59, 0x32 -.byte 0x56, 0x7a, 0x49, 0x46, 0x4a, 0x76, 0x62, 0x33, 0x51, 0x67, 0x51, 0x32, 0x56, 0x79, 0x64, 0x47 -.byte 0x6c, 0x6d, 0x61, 0x57, 0x4e, 0x68, 0x64, 0x47, 0x55, 0x67, 0x51, 0x58, 0x56, 0x30, 0x61, 0x47 -.byte 0x39, 0x79, 0x61, 0x58, 0x52, 0x35, 0x49, 0x43, 0x30, 0x67, 0x52, 0x7a, 0x49, 0x77, 0x67, 0x67 -.byte 0x45, 0x69, 0x0a, 0x4d, 0x41, 0x30, 0x47, 0x43, 0x53, 0x71, 0x47, 0x53, 0x49, 0x62, 0x33, 0x44 -.byte 0x51, 0x45, 0x42, 0x41, 0x51, 0x55, 0x41, 0x41, 0x34, 0x49, 0x42, 0x44, 0x77, 0x41, 0x77, 0x67 -.byte 0x67, 0x45, 0x4b, 0x41, 0x6f, 0x49, 0x42, 0x41, 0x51, 0x44, 0x56, 0x44, 0x44, 0x72, 0x45, 0x4b -.byte 0x76, 0x6c, 0x4f, 0x34, 0x76, 0x57, 0x2b, 0x47, 0x5a, 0x64, 0x66, 0x6a, 0x6f, 0x68, 0x54, 0x73 -.byte 0x52, 0x38, 0x2f, 0x0a, 0x79, 0x38, 0x2b, 0x66, 0x49, 0x42, 0x4e, 0x74, 0x4b, 0x54, 0x72, 0x49 -.byte 0x44, 0x33, 0x30, 0x38, 0x39, 0x32, 0x74, 0x32, 0x4f, 0x47, 0x50, 0x5a, 0x4e, 0x6d, 0x43, 0x6f -.byte 0x6d, 0x31, 0x35, 0x63, 0x41, 0x49, 0x43, 0x79, 0x4c, 0x31, 0x6c, 0x2f, 0x39, 0x6f, 0x66, 0x35 -.byte 0x4a, 0x55, 0x4f, 0x47, 0x35, 0x32, 0x6b, 0x62, 0x55, 0x70, 0x71, 0x51, 0x34, 0x58, 0x48, 0x6a -.byte 0x32, 0x43, 0x30, 0x4e, 0x0a, 0x54, 0x6d, 0x2f, 0x32, 0x79, 0x45, 0x6e, 0x5a, 0x74, 0x76, 0x4d -.byte 0x61, 0x56, 0x71, 0x34, 0x72, 0x74, 0x6e, 0x51, 0x55, 0x36, 0x38, 0x2f, 0x37, 0x4a, 0x75, 0x4d -.byte 0x61, 0x75, 0x68, 0x32, 0x57, 0x4c, 0x6d, 0x6f, 0x37, 0x57, 0x4a, 0x53, 0x4a, 0x52, 0x31, 0x62 -.byte 0x2f, 0x4a, 0x61, 0x43, 0x54, 0x63, 0x46, 0x4f, 0x44, 0x32, 0x6f, 0x52, 0x30, 0x46, 0x4d, 0x4e -.byte 0x6e, 0x6e, 0x67, 0x52, 0x6f, 0x0a, 0x4f, 0x74, 0x2b, 0x4f, 0x51, 0x46, 0x6f, 0x64, 0x53, 0x6b -.byte 0x37, 0x50, 0x51, 0x35, 0x45, 0x37, 0x35, 0x31, 0x62, 0x57, 0x41, 0x48, 0x44, 0x4c, 0x55, 0x75 -.byte 0x35, 0x37, 0x66, 0x61, 0x34, 0x36, 0x35, 0x37, 0x77, 0x78, 0x2b, 0x55, 0x58, 0x32, 0x77, 0x6d -.byte 0x44, 0x50, 0x45, 0x31, 0x6b, 0x43, 0x4b, 0x34, 0x44, 0x4d, 0x4e, 0x45, 0x66, 0x66, 0x75, 0x64 -.byte 0x36, 0x51, 0x5a, 0x57, 0x30, 0x43, 0x0a, 0x7a, 0x79, 0x79, 0x52, 0x70, 0x71, 0x62, 0x6e, 0x33 -.byte 0x6f, 0x55, 0x59, 0x53, 0x58, 0x78, 0x6d, 0x54, 0x71, 0x4d, 0x36, 0x62, 0x61, 0x6d, 0x31, 0x37 -.byte 0x6a, 0x51, 0x75, 0x75, 0x67, 0x30, 0x44, 0x75, 0x44, 0x50, 0x66, 0x52, 0x2b, 0x75, 0x78, 0x61 -.byte 0x34, 0x30, 0x6c, 0x32, 0x5a, 0x76, 0x4f, 0x67, 0x64, 0x46, 0x46, 0x52, 0x6a, 0x4b, 0x57, 0x63 -.byte 0x49, 0x66, 0x65, 0x41, 0x67, 0x35, 0x4a, 0x0a, 0x51, 0x34, 0x57, 0x32, 0x62, 0x48, 0x4f, 0x37 -.byte 0x5a, 0x4f, 0x70, 0x68, 0x51, 0x61, 0x7a, 0x4a, 0x31, 0x46, 0x54, 0x66, 0x68, 0x79, 0x2f, 0x48 -.byte 0x49, 0x72, 0x49, 0x6d, 0x7a, 0x4a, 0x39, 0x5a, 0x56, 0x47, 0x69, 0x66, 0x2f, 0x4c, 0x34, 0x71 -.byte 0x4c, 0x38, 0x52, 0x56, 0x48, 0x48, 0x56, 0x41, 0x59, 0x42, 0x65, 0x46, 0x41, 0x6c, 0x55, 0x35 -.byte 0x69, 0x33, 0x38, 0x46, 0x41, 0x67, 0x4d, 0x42, 0x0a, 0x41, 0x41, 0x47, 0x6a, 0x67, 0x66, 0x41 -.byte 0x77, 0x67, 0x65, 0x30, 0x77, 0x44, 0x77, 0x59, 0x44, 0x56, 0x52, 0x30, 0x54, 0x41, 0x51, 0x48 -.byte 0x2f, 0x42, 0x41, 0x55, 0x77, 0x41, 0x77, 0x45, 0x42, 0x2f, 0x7a, 0x41, 0x4f, 0x42, 0x67, 0x4e -.byte 0x56, 0x48, 0x51, 0x38, 0x42, 0x41, 0x66, 0x38, 0x45, 0x42, 0x41, 0x4d, 0x43, 0x41, 0x59, 0x59 -.byte 0x77, 0x48, 0x51, 0x59, 0x44, 0x56, 0x52, 0x30, 0x4f, 0x0a, 0x42, 0x42, 0x59, 0x45, 0x46, 0x4a -.byte 0x78, 0x66, 0x41, 0x4e, 0x2b, 0x71, 0x41, 0x64, 0x63, 0x77, 0x4b, 0x7a, 0x69, 0x49, 0x6f, 0x72 -.byte 0x68, 0x74, 0x53, 0x70, 0x7a, 0x79, 0x45, 0x5a, 0x47, 0x44, 0x4d, 0x42, 0x38, 0x47, 0x41, 0x31 -.byte 0x55, 0x64, 0x49, 0x77, 0x51, 0x59, 0x4d, 0x42, 0x61, 0x41, 0x46, 0x4c, 0x39, 0x66, 0x74, 0x39 -.byte 0x48, 0x4f, 0x33, 0x52, 0x2b, 0x47, 0x39, 0x46, 0x74, 0x56, 0x0a, 0x72, 0x4e, 0x7a, 0x58, 0x45 -.byte 0x4d, 0x49, 0x4f, 0x71, 0x59, 0x6a, 0x6e, 0x4d, 0x45, 0x38, 0x47, 0x43, 0x43, 0x73, 0x47, 0x41 -.byte 0x51, 0x55, 0x46, 0x42, 0x77, 0x45, 0x42, 0x42, 0x45, 0x4d, 0x77, 0x51, 0x54, 0x41, 0x63, 0x42 -.byte 0x67, 0x67, 0x72, 0x42, 0x67, 0x45, 0x46, 0x42, 0x51, 0x63, 0x77, 0x41, 0x59, 0x59, 0x51, 0x61 -.byte 0x48, 0x52, 0x30, 0x63, 0x44, 0x6f, 0x76, 0x4c, 0x32, 0x38, 0x75, 0x0a, 0x63, 0x33, 0x4d, 0x79 -.byte 0x4c, 0x6e, 0x56, 0x7a, 0x4c, 0x7a, 0x41, 0x68, 0x42, 0x67, 0x67, 0x72, 0x42, 0x67, 0x45, 0x46 -.byte 0x42, 0x51, 0x63, 0x77, 0x41, 0x6f, 0x59, 0x56, 0x61, 0x48, 0x52, 0x30, 0x63, 0x44, 0x6f, 0x76 -.byte 0x4c, 0x33, 0x67, 0x75, 0x63, 0x33, 0x4d, 0x79, 0x4c, 0x6e, 0x56, 0x7a, 0x4c, 0x33, 0x67, 0x75 -.byte 0x59, 0x32, 0x56, 0x79, 0x4d, 0x43, 0x59, 0x47, 0x41, 0x31, 0x55, 0x64, 0x0a, 0x48, 0x77, 0x51 -.byte 0x66, 0x4d, 0x42, 0x30, 0x77, 0x47, 0x36, 0x41, 0x5a, 0x6f, 0x42, 0x65, 0x47, 0x46, 0x57, 0x68 -.byte 0x30, 0x64, 0x48, 0x41, 0x36, 0x4c, 0x79, 0x39, 0x7a, 0x4c, 0x6e, 0x4e, 0x7a, 0x4d, 0x69, 0x35 -.byte 0x31, 0x63, 0x79, 0x39, 0x79, 0x4c, 0x6d, 0x4e, 0x79, 0x62, 0x44, 0x41, 0x52, 0x42, 0x67, 0x4e -.byte 0x56, 0x48, 0x53, 0x41, 0x45, 0x43, 0x6a, 0x41, 0x49, 0x4d, 0x41, 0x59, 0x47, 0x0a, 0x42, 0x46 -.byte 0x55, 0x64, 0x49, 0x41, 0x41, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76 -.byte 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41, 0x43 -.byte 0x4d, 0x64, 0x34, 0x34, 0x70, 0x58, 0x79, 0x6e, 0x33, 0x70, 0x46, 0x33, 0x6c, 0x4d, 0x38, 0x52 -.byte 0x35, 0x56, 0x2f, 0x63, 0x78, 0x54, 0x62, 0x6a, 0x35, 0x48, 0x44, 0x39, 0x2f, 0x47, 0x0a, 0x56 -.byte 0x66, 0x4b, 0x79, 0x42, 0x44, 0x62, 0x74, 0x67, 0x42, 0x39, 0x54, 0x78, 0x46, 0x30, 0x30, 0x4b -.byte 0x47, 0x75, 0x2b, 0x78, 0x31, 0x58, 0x38, 0x5a, 0x2b, 0x72, 0x4c, 0x50, 0x33, 0x2b, 0x51, 0x73 -.byte 0x6a, 0x50, 0x4e, 0x47, 0x31, 0x67, 0x51, 0x67, 0x67, 0x4c, 0x34, 0x2b, 0x43, 0x2f, 0x31, 0x45 -.byte 0x32, 0x44, 0x55, 0x42, 0x63, 0x37, 0x78, 0x67, 0x51, 0x6a, 0x42, 0x33, 0x61, 0x64, 0x31, 0x0a -.byte 0x6c, 0x30, 0x38, 0x59, 0x75, 0x57, 0x33, 0x65, 0x39, 0x35, 0x4f, 0x52, 0x43, 0x4c, 0x70, 0x2b -.byte 0x51, 0x43, 0x7a, 0x74, 0x77, 0x65, 0x71, 0x37, 0x64, 0x70, 0x34, 0x7a, 0x42, 0x6e, 0x63, 0x64 -.byte 0x44, 0x51, 0x68, 0x2f, 0x55, 0x39, 0x30, 0x62, 0x5a, 0x4b, 0x75, 0x43, 0x4a, 0x2f, 0x46, 0x70 -.byte 0x31, 0x55, 0x31, 0x65, 0x72, 0x76, 0x53, 0x68, 0x77, 0x33, 0x57, 0x6e, 0x57, 0x45, 0x51, 0x74 -.byte 0x0a, 0x38, 0x6a, 0x78, 0x77, 0x6d, 0x4b, 0x79, 0x36, 0x61, 0x62, 0x61, 0x56, 0x64, 0x33, 0x38 -.byte 0x50, 0x4d, 0x56, 0x34, 0x73, 0x2f, 0x4b, 0x43, 0x48, 0x4f, 0x6b, 0x64, 0x70, 0x38, 0x48, 0x6c -.byte 0x66, 0x39, 0x42, 0x52, 0x55, 0x70, 0x4a, 0x56, 0x65, 0x45, 0x58, 0x67, 0x53, 0x59, 0x43, 0x66 -.byte 0x4f, 0x6e, 0x38, 0x4a, 0x33, 0x2f, 0x79, 0x4e, 0x54, 0x64, 0x31, 0x32, 0x36, 0x2f, 0x2b, 0x70 -.byte 0x5a, 0x0a, 0x35, 0x39, 0x76, 0x50, 0x72, 0x35, 0x4b, 0x57, 0x37, 0x79, 0x53, 0x61, 0x4e, 0x52 -.byte 0x42, 0x36, 0x6e, 0x4a, 0x48, 0x47, 0x44, 0x6e, 0x32, 0x5a, 0x39, 0x6a, 0x38, 0x5a, 0x33, 0x2f -.byte 0x56, 0x79, 0x56, 0x4f, 0x45, 0x56, 0x71, 0x51, 0x64, 0x5a, 0x65, 0x34, 0x4f, 0x2f, 0x55, 0x69 -.byte 0x35, 0x47, 0x6a, 0x4c, 0x49, 0x41, 0x5a, 0x48, 0x59, 0x63, 0x53, 0x4e, 0x50, 0x59, 0x65, 0x65 -.byte 0x68, 0x75, 0x0a, 0x56, 0x73, 0x79, 0x75, 0x4c, 0x41, 0x4f, 0x51, 0x31, 0x78, 0x6b, 0x34, 0x6d -.byte 0x65, 0x54, 0x4b, 0x43, 0x52, 0x6c, 0x62, 0x2f, 0x77, 0x65, 0x57, 0x73, 0x4b, 0x68, 0x2f, 0x4e -.byte 0x45, 0x6e, 0x66, 0x56, 0x71, 0x6e, 0x33, 0x73, 0x46, 0x2f, 0x74, 0x4d, 0x2b, 0x32, 0x4d, 0x52 -.byte 0x37, 0x63, 0x77, 0x41, 0x31, 0x33, 0x30, 0x41, 0x34, 0x77, 0x3d, 0x0a, 0x2d, 0x2d, 0x2d, 0x2d -.byte 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45 -.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x00 - -.global _binary_rmaker_ota_server_crt_end -_binary_rmaker_ota_server_crt_end: /* for objcopy compatibility */ - - -.global rmaker_ota_server_crt_length -rmaker_ota_server_crt_length: /* not including null byte */ -.long 3286 diff --git a/RainMaker_Table-Lights/build/x509_crt_bundle.S b/RainMaker_Table-Lights/build/x509_crt_bundle.S deleted file mode 100644 index af640cf72..000000000 --- a/RainMaker_Table-Lights/build/x509_crt_bundle.S +++ /dev/null @@ -1,1109 +0,0 @@ -/* * Data converted from /home/alex/github/ESP-Nodes/RainMaker_Table-Lights/build/esp-idf/mbedtls/x509_crt_bundle - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global x509_crt_bundle -x509_crt_bundle: - -.global _binary_x509_crt_bundle_start -_binary_x509_crt_bundle_start: /* for objcopy compatibility */ -.byte 0xa8, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x0c, 0x05, 0x00, 0x00 -.byte 0xc3, 0x05, 0x00, 0x00, 0x2e, 0x07, 0x00, 0x00, 0xf2, 0x07, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00 -.byte 0xd7, 0x0c, 0x00, 0x00, 0x4a, 0x0f, 0x00, 0x00, 0x0f, 0x10, 0x00, 0x00, 0xd4, 0x10, 0x00, 0x00 -.byte 0x4a, 0x13, 0x00, 0x00, 0xc2, 0x14, 0x00, 0x00, 0x3a, 0x17, 0x00, 0x00, 0xb3, 0x19, 0x00, 0x00 -.byte 0x2c, 0x1c, 0x00, 0x00, 0xf8, 0x1c, 0x00, 0x00, 0x73, 0x1f, 0x00, 0x00, 0x40, 0x20, 0x00, 0x00 -.byte 0xf1, 0x20, 0x00, 0x00, 0xbf, 0x21, 0x00, 0x00, 0x42, 0x23, 0x00, 0x00, 0xc8, 0x24, 0x00, 0x00 -.byte 0x55, 0x26, 0x00, 0x00, 0xe2, 0x27, 0x00, 0x00, 0xc1, 0x28, 0x00, 0x00, 0x4f, 0x2b, 0x00, 0x00 -.byte 0xdc, 0x2c, 0x00, 0x00, 0x6d, 0x2e, 0x00, 0x00, 0xfe, 0x2f, 0x00, 0x00, 0xe1, 0x30, 0x00, 0x00 -.byte 0x73, 0x32, 0x00, 0x00, 0x0b, 0x34, 0x00, 0x00, 0xb2, 0x35, 0x00, 0x00, 0x60, 0x37, 0x00, 0x00 -.byte 0x10, 0x39, 0x00, 0x00, 0x14, 0x3a, 0x00, 0x00, 0xc6, 0x3c, 0x00, 0x00, 0xcd, 0x3d, 0x00, 0x00 -.byte 0x82, 0x40, 0x00, 0x00, 0x3e, 0x42, 0x00, 0x00, 0x3b, 0x00, 0x26, 0x01, 0x30, 0x39, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17 -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 -.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2, 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3 -.byte 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7 -.byte 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a -.byte 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c -.byte 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde -.byte 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4 -.byte 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0 -.byte 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50 -.byte 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96 -.byte 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba -.byte 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74 -.byte 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32 -.byte 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b -.byte 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f -.byte 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c -.byte 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26 -.byte 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26 -.byte 0x02, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 -.byte 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f -.byte 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a -.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f -.byte 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13 -.byte 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35 -.byte 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8 -.byte 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac -.byte 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac, 0x37, 0x44, 0x79, 0x85, 0x81, 0x82 -.byte 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04 -.byte 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae -.byte 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52 -.byte 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c -.byte 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64 -.byte 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27 -.byte 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec -.byte 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39 -.byte 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba -.byte 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46 -.byte 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4 -.byte 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e -.byte 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9 -.byte 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69 -.byte 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10 -.byte 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e -.byte 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f -.byte 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32 -.byte 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa -.byte 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7 -.byte 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95 -.byte 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e -.byte 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9 -.byte 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e -.byte 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1 -.byte 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29 -.byte 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x3b, 0x00, 0x5b, 0x00, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06 -.byte 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 -.byte 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 -.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7, 0xc6 -.byte 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2 -.byte 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b -.byte 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45, 0x57 -.byte 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb, 0x66, 0xde, 0x3b, 0x00, 0x78, 0x00 -.byte 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e -.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f -.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b -.byte 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00 -.byte 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa -.byte 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3 -.byte 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1 -.byte 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e -.byte 0xfa, 0x2e, 0x5c, 0x41, 0x00, 0x26, 0x01, 0x30, 0x3f, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20, 0x53, 0x69, 0x67, 0x6e -.byte 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x2e, 0x31 -.byte 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53, 0x54, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 -.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xdf, 0xaf, 0xe9, 0x97, 0x50, 0x08, 0x83 -.byte 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c, 0x6b, 0x30, 0xca, 0x5b -.byte 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8, 0x33, 0x76, 0x49, 0x2a -.byte 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb, 0x65, 0xee, 0xfc, 0xd3 -.byte 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77, 0xb0, 0x12, 0x7b, 0xb5 -.byte 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06, 0x32, 0x83, 0xa2, 0x7e -.byte 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a, 0x31, 0xfd, 0x50, 0xbd -.byte 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea, 0x4b, 0x61, 0x81, 0xec -.byte 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e, 0x0c, 0xda, 0x09, 0x8e -.byte 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab, 0x2e, 0xbd, 0x70, 0xad -.byte 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34, 0xd6, 0x30, 0x89, 0xff -.byte 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c, 0x92, 0x1e, 0x3d, 0x64 -.byte 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5, 0x26, 0xec, 0x38, 0x55 -.byte 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5, 0x9a, 0x9b, 0x8d, 0x1d -.byte 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab, 0xda, 0x6e, 0xf1, 0x3e -.byte 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b, 0x19, 0x2a, 0xb6, 0x29 -.byte 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x48, 0x00 -.byte 0x78, 0x00, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 -.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 -.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 -.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 -.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 -.byte 0x00, 0x04, 0x9c, 0x0e, 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5, 0x46 -.byte 0xa7, 0xad, 0x32, 0x19, 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a, 0x10 -.byte 0xc7, 0xda, 0x89, 0xb0, 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea, 0xbe -.byte 0xb2, 0x80, 0x2b, 0xcd, 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70, 0x08 -.byte 0x00, 0x75, 0xea, 0x93, 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec, 0x92 -.byte 0x2f, 0x53, 0x84, 0xdb, 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a, 0x81 -.byte 0x3c, 0x20, 0x48, 0x00, 0x26, 0x02, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10 -.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61 -.byte 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61 -.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xac -.byte 0xac, 0x74, 0x32, 0xe8, 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d, 0x45 -.byte 0xba, 0x29, 0x88, 0xb2, 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39, 0xa1 -.byte 0x55, 0xe9, 0x67, 0x34, 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b, 0x5e -.byte 0xe1, 0x1d, 0xa9, 0xb7, 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60, 0x40 -.byte 0x1f, 0xa6, 0xb0, 0xb6, 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc, 0x62 -.byte 0x05, 0x02, 0x16, 0xbf, 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2, 0xcb -.byte 0xd5, 0xa6, 0xbb, 0x0c, 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab, 0x74 -.byte 0x42, 0xef, 0xf0, 0x74, 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf, 0x5e -.byte 0x87, 0x0a, 0x40, 0xfb, 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1, 0x8f -.byte 0xd6, 0xae, 0xd5, 0x7f, 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b, 0x27 -.byte 0xd0, 0x86, 0xd0, 0x1c, 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2, 0xad -.byte 0xef, 0xf3, 0x84, 0x4b, 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b, 0xd6 -.byte 0x27, 0x71, 0x27, 0xed, 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a, 0xcc -.byte 0x3f, 0x0a, 0xfa, 0x46, 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb, 0x5d -.byte 0xf6, 0xb4, 0x6a, 0xb3, 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14, 0xf9 -.byte 0x81, 0xed, 0x65, 0x16, 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3, 0x2b -.byte 0xc0, 0x9d, 0xf9, 0x14, 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd, 0x78 -.byte 0x38, 0x9a, 0xeb, 0x42, 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6, 0x82 -.byte 0xb5, 0xf3, 0x96, 0xdd, 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b, 0x2c -.byte 0xd4, 0x72, 0x73, 0x43, 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9, 0xc0 -.byte 0x90, 0x60, 0x37, 0x45, 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74, 0x5d -.byte 0x42, 0xbe, 0x06, 0xf5, 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07, 0x4d -.byte 0x40, 0x7e, 0x24, 0xc5, 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23, 0xfa -.byte 0x27, 0x71, 0xc9, 0xdf, 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c, 0x5f -.byte 0x29, 0x63, 0x31, 0x59, 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d, 0x53 -.byte 0xa6, 0x7e, 0x15, 0xfc, 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7, 0x6b -.byte 0x19, 0xcb, 0xf3, 0x7b, 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d, 0x1c -.byte 0xa6, 0x6e, 0x0e, 0xe9, 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f, 0xb1 -.byte 0x54, 0x7b, 0xfe, 0x6a, 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07, 0x21 -.byte 0x6b, 0x81, 0x8f, 0xdb, 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b, 0x36 -.byte 0x93, 0xe8, 0x3d, 0xbd, 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf, 0x98 -.byte 0xa8, 0x06, 0xc2, 0xf8, 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53 -.byte 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52 -.byte 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 -.byte 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e -.byte 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6 -.byte 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6 -.byte 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc -.byte 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb -.byte 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10 -.byte 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d -.byte 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87 -.byte 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6 -.byte 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c -.byte 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad -.byte 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a -.byte 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56 -.byte 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b -.byte 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92 -.byte 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48 -.byte 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa -.byte 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87 -.byte 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb -.byte 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b -.byte 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce -.byte 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f -.byte 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3 -.byte 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d -.byte 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91 -.byte 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6 -.byte 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7 -.byte 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6 -.byte 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0 -.byte 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c -.byte 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed -.byte 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18 -.byte 0x05, 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73 -.byte 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14 -.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07 -.byte 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b -.byte 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52 -.byte 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01 -.byte 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04 -.byte 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1 -.byte 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff -.byte 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf -.byte 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a -.byte 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90 -.byte 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e -.byte 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52 -.byte 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8 -.byte 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6 -.byte 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c -.byte 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb -.byte 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b -.byte 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75 -.byte 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b -.byte 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32 -.byte 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2 -.byte 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07 -.byte 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b -.byte 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23 -.byte 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78 -.byte 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67 -.byte 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25 -.byte 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb -.byte 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde -.byte 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f -.byte 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5 -.byte 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03 -.byte 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30 -.byte 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54 -.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c -.byte 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 -.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1f -.byte 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea -.byte 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2 -.byte 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1 -.byte 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26 -.byte 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c -.byte 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x49 -.byte 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f -.byte 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63 -.byte 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5 -.byte 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5 -.byte 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85 -.byte 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73 -.byte 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f -.byte 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4 -.byte 0xab, 0xd1, 0x1d, 0x8a, 0x4c, 0x00, 0x26, 0x02, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 -.byte 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50, 0x19, 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1 -.byte 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f, 0x8f, 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c -.byte 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95, 0x43, 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1 -.byte 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81, 0x0d, 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac -.byte 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a, 0x1f, 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8 -.byte 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf, 0x71, 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92 -.byte 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88, 0x4b, 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02 -.byte 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24, 0x1f, 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49 -.byte 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc, 0x99, 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54 -.byte 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02, 0x58, 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a -.byte 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5, 0xfd, 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a -.byte 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc, 0x74, 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4 -.byte 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d, 0x9f, 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1 -.byte 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02, 0xf3, 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f -.byte 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8, 0xd1, 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4 -.byte 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98, 0x1e, 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd -.byte 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60, 0x9d, 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87 -.byte 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76, 0x3b, 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9 -.byte 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93, 0x39, 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07 -.byte 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc, 0xf2, 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9 -.byte 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b, 0xc1, 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37 -.byte 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62, 0x2e, 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25 -.byte 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c, 0x9c, 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c -.byte 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c, 0x5c, 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea -.byte 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28, 0xf3, 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff -.byte 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e, 0xf2, 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5 -.byte 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74, 0xbe, 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03 -.byte 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96, 0xa7, 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1 -.byte 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e, 0x9f, 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc -.byte 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78, 0x7a, 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55 -.byte 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70, 0x04, 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff -.byte 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a, 0xb1, 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65 -.byte 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x26, 0x01, 0x30, 0x4c -.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61 -.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20 -.byte 0x52, 0x33, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25, 0x76 -.byte 0x90, 0x79, 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05 -.byte 0x76, 0x11, 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f -.byte 0x24, 0xcb, 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c -.byte 0xdd, 0x64, 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6 -.byte 0x14, 0x86, 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62 -.byte 0x2f, 0x1f, 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9 -.byte 0xcb, 0x26, 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b -.byte 0x8b, 0xd2, 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91 -.byte 0xe5, 0x9d, 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f -.byte 0x2e, 0x9c, 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae -.byte 0x53, 0xa6, 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9 -.byte 0xb2, 0x4f, 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38 -.byte 0x26, 0x60, 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40 -.byte 0x15, 0x48, 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a -.byte 0x7a, 0xbf, 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9 -.byte 0x03, 0xda, 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04 -.byte 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31 -.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c -.byte 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b -.byte 0x3c, 0xf7, 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c -.byte 0xae, 0x83, 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88 -.byte 0x6b, 0xc5, 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd -.byte 0x1b, 0x5a, 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80 -.byte 0xca, 0x44, 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12 -.byte 0x50, 0x6d, 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7 -.byte 0x19, 0x81, 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c -.byte 0x8a, 0xc5, 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06 -.byte 0xa6, 0x1e, 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18 -.byte 0x89, 0xdf, 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc -.byte 0x93, 0xbb, 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61 -.byte 0x7e, 0xe0, 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd -.byte 0x8c, 0xb2, 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7 -.byte 0x5d, 0x3a, 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57 -.byte 0x92, 0xfa, 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2 -.byte 0x39, 0xe4, 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2 -.byte 0xf8, 0xe2, 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f -.byte 0x54, 0x8a, 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3 -.byte 0xc5, 0x38, 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc -.byte 0x71, 0x37, 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9 -.byte 0x91, 0x97, 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83 -.byte 0xf2, 0x5e, 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08 -.byte 0xb3, 0x61, 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9 -.byte 0xda, 0x28, 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86 -.byte 0x05, 0x00, 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39 -.byte 0x5b, 0xea, 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf -.byte 0x33, 0x48, 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5 -.byte 0x95, 0x64, 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45 -.byte 0x79, 0x6e, 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9 -.byte 0x0d, 0x6f, 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19 -.byte 0x70, 0x83, 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14 -.byte 0x63, 0x3c, 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 -.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73 -.byte 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49, 0x64, 0x65, 0x6e -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x63 -.byte 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x22 -.byte 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4, 0xf2, 0x3f, 0x8a -.byte 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b, 0xa8, 0x77, 0x76 -.byte 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a, 0xf8, 0xbc, 0x65 -.byte 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee, 0x08, 0x14, 0xd1 -.byte 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73, 0x41, 0xae, 0xbc -.byte 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d, 0xe4, 0xa1, 0x9b -.byte 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f, 0x9c, 0xb4, 0xc9 -.byte 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7, 0x2d, 0xa5, 0xc8 -.byte 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b, 0x9a, 0xab, 0x9e -.byte 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53, 0x77, 0xb9, 0x44 -.byte 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48, 0x48, 0x61, 0xca -.byte 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83, 0x72, 0xef, 0x75 -.byte 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac, 0x66, 0x31, 0xcd -.byte 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50, 0xb2, 0xcb, 0xca -.byte 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66, 0xe4, 0x98, 0x7a -.byte 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e, 0x06, 0x0f, 0x7b -.byte 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4, 0xd5, 0xb5, 0x91 -.byte 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50, 0x3d, 0xb1, 0x95 -.byte 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e, 0x7b, 0xa6, 0x5c -.byte 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc, 0x7d, 0x76, 0x03 -.byte 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9, 0xbc, 0xf6, 0xee -.byte 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c, 0x8b, 0x56, 0x2f -.byte 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92, 0x8e, 0x69, 0xb6 -.byte 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea, 0xdc, 0x9e, 0x3d -.byte 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54, 0xab, 0xb2, 0xb4 -.byte 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef, 0x88, 0x35, 0x2a -.byte 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69, 0x46, 0x0f, 0x43 -.byte 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c, 0x90, 0x46, 0xab -.byte 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2, 0xab, 0x72, 0x17 -.byte 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44, 0xe4, 0x62, 0x72 -.byte 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d, 0x5f, 0xf7, 0x48 -.byte 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01, 0xe7, 0x02, 0x03 -.byte 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 -.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 -.byte 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39, 0x36, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xd0, 0xf4, 0xc9, 0x79, 0x11, 0x9d, 0xfd, 0xfc -.byte 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e, 0x2e, 0xb7, 0xe7 -.byte 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd, 0x6c, 0x57, 0xda -.byte 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72, 0xe5, 0xbd, 0xeb -.byte 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89, 0x16, 0xfb, 0x94 -.byte 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0, 0x45, 0xe0, 0x83 -.byte 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42, 0xfe, 0xee, 0xf2 -.byte 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c, 0x38, 0xdc, 0x9f -.byte 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74, 0x9b, 0x17, 0x2d -.byte 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23, 0xd0, 0xea, 0xcf -.byte 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93, 0xe9, 0x3f, 0x3a -.byte 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8, 0x6d, 0xb8, 0xe2 -.byte 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80, 0xcf, 0x44, 0x5b -.byte 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f, 0x70, 0x70, 0x0d -.byte 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef, 0xcd, 0x41, 0x38 -.byte 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5, 0xe2, 0x7c, 0x10 -.byte 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd, 0xef, 0xaa, 0x57 -.byte 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe, 0x29, 0x8c, 0xd8 -.byte 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac, 0x0a, 0xb0, 0xf1 -.byte 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7, 0xce, 0xef, 0xce -.byte 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04, 0xc8, 0xbc, 0x7b -.byte 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79, 0x30, 0x25, 0x9b -.byte 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2, 0xcf, 0xa6, 0xfc -.byte 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83, 0xf2, 0x30, 0x2b -.byte 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c, 0x28, 0xf8, 0x52 -.byte 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f, 0xfd, 0x2a, 0x2f -.byte 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f, 0x4d, 0xa3, 0x3f -.byte 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79, 0x4b, 0x1b, 0xb4 -.byte 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f, 0xce, 0xd8, 0x70 -.byte 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8, 0xc2, 0x24, 0xc1 -.byte 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5, 0x0c, 0x09, 0x46 -.byte 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11, 0x39, 0xba, 0x8c -.byte 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x78, 0x00 -.byte 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 -.byte 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20 -.byte 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc1, 0x44, 0xa1, 0xcf, 0x11, 0x97, 0x50, 0x9a -.byte 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18, 0x9d, 0xd2, 0xf1, 0x7f, 0x77, 0x35, 0x4f -.byte 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8, 0xec, 0xfa, 0x7b, 0x6b, 0x58, 0x20, 0xec -.byte 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb, 0x09, 0xec, 0xc8, 0x13, 0xf5, 0x4e, 0xc6 -.byte 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a, 0x3c, 0x61, 0x10, 0x42, 0x29, 0x7c, 0xa5 -.byte 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce, 0x9b, 0x63, 0x9f, 0x84, 0xb5, 0x99, 0x4d -.byte 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53 -.byte 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68 -.byte 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31, 0x30, 0x82, 0x02 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0xe8 -.byte 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe, 0xdc, 0xb7 -.byte 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2, 0xfe, 0xf5 -.byte 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6, 0xb1, 0x63 -.byte 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33, 0x3c, 0xba -.byte 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1, 0x8a, 0x86 -.byte 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22, 0x06, 0xf3 -.byte 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f, 0xd3, 0x47 -.byte 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e, 0xd1, 0x49 -.byte 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21, 0x1b, 0x75 -.byte 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2, 0x8e, 0x11 -.byte 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0, 0x4c, 0x12 -.byte 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee, 0x19, 0xbf -.byte 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07, 0x94, 0xf4, 0x63 -.byte 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c, 0x76, 0xef -.byte 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1, 0x0e, 0xde -.byte 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98, 0x8f, 0x36 -.byte 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1, 0x1d, 0x9b -.byte 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9, 0xac, 0x01 -.byte 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17, 0x6c, 0xd2 -.byte 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e, 0x68, 0x9d -.byte 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5, 0x24, 0xc9 -.byte 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51, 0x6e, 0x86 -.byte 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15, 0x0b, 0x03 -.byte 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12, 0xfc, 0xc6 -.byte 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f, 0x01, 0x08 -.byte 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48, 0xb7, 0x82 -.byte 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83, 0x04, 0x1b -.byte 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c, 0x86, 0x3b -.byte 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d, 0x19, 0x8f -.byte 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2, 0x15, 0x42 -.byte 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e, 0xe6, 0xd9 -.byte 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f, 0x02, 0x03 -.byte 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 -.byte 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75 -.byte 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 -.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 -.byte 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a, 0x3e, 0x5c, 0xcf -.byte 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a, 0x8b, 0x14, 0xdb -.byte 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf, 0xf7, 0x2a, 0x16 -.byte 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38, 0x8b, 0xd7, 0x45 -.byte 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8, 0x0a, 0x6e, 0x9a -.byte 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07, 0x0c, 0x1f, 0xea -.byte 0x52, 0x00, 0x5b, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11 -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 -.byte 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62 -.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce -.byte 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00 -.byte 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4 -.byte 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1 -.byte 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73 -.byte 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c -.byte 0x1d, 0x52, 0x00, 0x78, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b -.byte 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30 -.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 -.byte 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 -.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47 -.byte 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5 -.byte 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a -.byte 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2 -.byte 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4 -.byte 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87 -.byte 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x59 -.byte 0x00, 0x26, 0x01, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30 -.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31 -.byte 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c -.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xda, 0x0e, 0xe6 -.byte 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48 -.byte 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf -.byte 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab -.byte 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15 -.byte 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc -.byte 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41 -.byte 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b -.byte 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89 -.byte 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7 -.byte 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2 -.byte 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b -.byte 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab -.byte 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16 -.byte 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64 -.byte 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3 -.byte 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x5c, 0x00, 0x26, 0x01, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x49, 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09 -.byte 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55 -.byte 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22 -.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f -.byte 0x72, 0x65, 0x20, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xa3, 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5 -.byte 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a -.byte 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62 -.byte 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b -.byte 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11 -.byte 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50 -.byte 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c -.byte 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca -.byte 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44 -.byte 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4 -.byte 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d -.byte 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff -.byte 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90 -.byte 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29 -.byte 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18 -.byte 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc -.byte 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49 -.byte 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77 -.byte 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30 -.byte 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 -.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 -.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 -.byte 0xe2, 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b -.byte 0x77, 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93 -.byte 0xa7, 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd -.byte 0x87, 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46 -.byte 0xe2, 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee -.byte 0xb7, 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f -.byte 0xbc, 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68 -.byte 0x6e, 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10 -.byte 0xbf, 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1 -.byte 0xa2, 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f -.byte 0xb4, 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e -.byte 0xa0, 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe -.byte 0xcd, 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b -.byte 0x42, 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58 -.byte 0x3f, 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2 -.byte 0x4c, 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31 -.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69 -.byte 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c -.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbb, 0x37, 0xcd -.byte 0x34, 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a -.byte 0x08, 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c -.byte 0x7a, 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62 -.byte 0x9a, 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63 -.byte 0x1a, 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94 -.byte 0x83, 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4 -.byte 0xa9, 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60 -.byte 0xff, 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9 -.byte 0xb4, 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95 -.byte 0x04, 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b -.byte 0xb4, 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6 -.byte 0xa9, 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d -.byte 0xcd, 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17 -.byte 0xa1, 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6 -.byte 0x73, 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45 -.byte 0x0c, 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c -.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17 -.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63 -.byte 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 -.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a -.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 -.byte 0x04, 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe -.byte 0x73, 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0 -.byte 0xcc, 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c -.byte 0x17, 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b -.byte 0xad, 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde -.byte 0xae, 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2 -.byte 0x3e, 0x64, 0x00, 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44 -.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06 -.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65 -.byte 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x18, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 -.byte 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f -.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde -.byte 0xbb, 0xe4, 0x5d, 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9 -.byte 0x21, 0x3d, 0xf2, 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd -.byte 0xae, 0x7b, 0x1b, 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6 -.byte 0x97, 0x6d, 0x1d, 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52 -.byte 0x0f, 0x52, 0x1f, 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72 -.byte 0xaf, 0x68, 0x93, 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44 -.byte 0x10, 0x2e, 0xdf, 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b -.byte 0xee, 0x20, 0xd5, 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8 -.byte 0x21, 0x61, 0x9b, 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd -.byte 0xac, 0x34, 0x40, 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f -.byte 0x54, 0x58, 0x8e, 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3 -.byte 0xad, 0xc9, 0x4f, 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80 -.byte 0xda, 0xb6, 0x91, 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18 -.byte 0x38, 0x03, 0x10, 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10 -.byte 0x91, 0x70, 0xab, 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c -.byte 0x21, 0x4c, 0xd4, 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a -.byte 0x33, 0x40, 0xbf, 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27 -.byte 0xbc, 0xa1, 0x4f, 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1 -.byte 0x69, 0x88, 0x76, 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48 -.byte 0xf0, 0xe0, 0xa2, 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae -.byte 0xe6, 0xd4, 0xef, 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a -.byte 0x44, 0x19, 0x2b, 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b -.byte 0x04, 0x00, 0xcc, 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f -.byte 0xf2, 0xd5, 0x8c, 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62 -.byte 0x7e, 0xf6, 0x80, 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6 -.byte 0x43, 0xa4, 0x18, 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29 -.byte 0x25, 0x89, 0x6c, 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde -.byte 0x7a, 0xac, 0x5f, 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb -.byte 0x31, 0xc5, 0xca, 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f -.byte 0xc4, 0x20, 0x51, 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20 -.byte 0xfc, 0xa1, 0x1e, 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f -.byte 0x98, 0x1d, 0x2d, 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65 -.byte 0x00, 0x24, 0x01, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65 -.byte 0x20, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c -.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28 -.byte 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32 -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 -.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00 -.byte 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49 -.byte 0xa1, 0x5b, 0xeb, 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4 -.byte 0x65, 0x68, 0xb3, 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d -.byte 0x56, 0x18, 0x63, 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10 -.byte 0xd8, 0xb2, 0x81, 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a -.byte 0x03, 0xb5, 0x20, 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1 -.byte 0xd8, 0x45, 0x27, 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17 -.byte 0xb7, 0x1f, 0x72, 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2 -.byte 0xfe, 0x88, 0xe0, 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12 -.byte 0xa2, 0x13, 0x2d, 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5 -.byte 0x65, 0x38, 0x04, 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b -.byte 0x62, 0xc5, 0x1f, 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a -.byte 0xfc, 0x78, 0x03, 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca -.byte 0x19, 0x16, 0xfe, 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98 -.byte 0xbc, 0xb1, 0x07, 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62 -.byte 0x28, 0x5f, 0xba, 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5 -.byte 0x69, 0x90, 0x8f, 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x67, 0x00, 0x26, 0x01 -.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 -.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f -.byte 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 -.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c -.byte 0xb1, 0x87, 0xf3, 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4 -.byte 0xce, 0xf5, 0x20, 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61 -.byte 0x3c, 0xb5, 0xb1, 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90 -.byte 0xac, 0x8a, 0xe7, 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc -.byte 0xde, 0xdd, 0x3c, 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7 -.byte 0x1f, 0xe2, 0xb1, 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc -.byte 0x47, 0xcd, 0xa1, 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33 -.byte 0xd9, 0xd8, 0x2f, 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61 -.byte 0x35, 0x96, 0x16, 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff -.byte 0x0b, 0x72, 0xda, 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf -.byte 0xe5, 0x6d, 0x0a, 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a -.byte 0xa2, 0xba, 0x13, 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4 -.byte 0xd9, 0xd5, 0x17, 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28 -.byte 0x79, 0xc8, 0xb1, 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56 -.byte 0xb3, 0xbd, 0xb2, 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff -.byte 0xa1, 0x96, 0xeb, 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26 -.byte 0x01, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 -.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43 -.byte 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b -.byte 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63 -.byte 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67 -.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 -.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36 -.byte 0x72, 0x49, 0x88, 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41 -.byte 0xb5, 0x47, 0xdf, 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5 -.byte 0x7d, 0x24, 0xfa, 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41 -.byte 0x06, 0x90, 0x00, 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31 -.byte 0x65, 0x97, 0xbd, 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84 -.byte 0x0c, 0x96, 0xcf, 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed -.byte 0x00, 0xb0, 0x52, 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00 -.byte 0xb0, 0x1c, 0x2b, 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70 -.byte 0xe6, 0x09, 0x74, 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2 -.byte 0x9d, 0x70, 0x29, 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe -.byte 0x93, 0xbb, 0xd3, 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3 -.byte 0xd1, 0x0a, 0xfe, 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2 -.byte 0x92, 0xa1, 0xb1, 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16 -.byte 0x02, 0x77, 0x44, 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc -.byte 0x5c, 0xa0, 0x87, 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0 -.byte 0x3a, 0x7c, 0xaa, 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00 -.byte 0x78, 0x00, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 -.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e -.byte 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69 -.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49 -.byte 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a -.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 -.byte 0x04, 0x19, 0xe7, 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57 -.byte 0xa9, 0x44, 0x2d, 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f -.byte 0x66, 0x7e, 0x1f, 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d -.byte 0x02, 0xd9, 0xa9, 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49 -.byte 0xc6, 0xbc, 0xc6, 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0 -.byte 0x45, 0x20, 0x0f, 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29 -.byte 0x39, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53 -.byte 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c -.byte 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06 -.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20 -.byte 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 -.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30 -.byte 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00 -.byte 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf, 0xce, 0x4d -.byte 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3, 0xa1, 0xda -.byte 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8, 0x5f, 0xec -.byte 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf, 0x53, 0x2f -.byte 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a, 0xb6, 0x73 -.byte 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54, 0xeb, 0x26 -.byte 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad, 0xeb, 0x29 -.byte 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb, 0x43, 0x91 -.byte 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10, 0xc8, 0x3b -.byte 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30, 0x2e, 0x5f -.byte 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85, 0x26, 0x92 -.byte 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d, 0xea, 0x9c -.byte 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17, 0x80, 0x33 -.byte 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e, 0x13, 0x35 -.byte 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb, 0x78, 0x0d -.byte 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0, 0x01, 0xab -.byte 0x02, 0x01, 0x03, 0x6e, 0x00, 0x26, 0x01, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30 -.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69 -.byte 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68 -.byte 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 -.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d -.byte 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5 -.byte 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f -.byte 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4 -.byte 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71 -.byte 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8 -.byte 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb -.byte 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38 -.byte 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14 -.byte 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87 -.byte 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c -.byte 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c -.byte 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5 -.byte 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7 -.byte 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95 -.byte 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e -.byte 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7d, 0x00, 0x26, 0x01, 0x30 -.byte 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b -.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72 -.byte 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06 -.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30 -.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43 -.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 -.byte 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbe, 0x40, 0x9d -.byte 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06 -.byte 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16 -.byte 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e -.byte 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae -.byte 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22 -.byte 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98 -.byte 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65 -.byte 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66 -.byte 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99 -.byte 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf -.byte 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17 -.byte 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98 -.byte 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74 -.byte 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe -.byte 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20 -.byte 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x84, 0x00, 0x26, 0x01, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 -.byte 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73 -.byte 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61 -.byte 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11 -.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 -.byte 0x64, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f -.byte 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e -.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 -.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b, 0x8b, 0x72 -.byte 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a -.byte 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29 -.byte 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d -.byte 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4 -.byte 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52 -.byte 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16 -.byte 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26 -.byte 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb -.byte 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89 -.byte 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02 -.byte 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8 -.byte 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1 -.byte 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac -.byte 0x38, 0xef, 0x55, 0x50, 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4 -.byte 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd -.byte 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x86, 0x00, 0x26, 0x01, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41 -.byte 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13 -.byte 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f -.byte 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68 -.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 -.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x71, 0x62, 0x08, 0xf1 -.byte 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13 -.byte 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84 -.byte 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee -.byte 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc -.byte 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82 -.byte 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b -.byte 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d -.byte 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c -.byte 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d -.byte 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a -.byte 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5 -.byte 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb -.byte 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4 -.byte 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53 -.byte 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03 -.byte 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x88, 0x00, 0x78, 0x00, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47 -.byte 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65 -.byte 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66 -.byte 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f -.byte 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 -.byte 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f -.byte 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4 -.byte 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97 -.byte 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75 -.byte 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad -.byte 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f -.byte 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef -.byte 0xb2, 0xd3, 0x06, 0xe9, 0x88, 0x00, 0x26, 0x02, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 -.byte 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68 -.byte 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07 -.byte 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69 -.byte 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f -.byte 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44 -.byte 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa -.byte 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b -.byte 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e -.byte 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85 -.byte 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf -.byte 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc -.byte 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c -.byte 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62 -.byte 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c -.byte 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32 -.byte 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0 -.byte 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb -.byte 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a -.byte 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d -.byte 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6 -.byte 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45 -.byte 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58 -.byte 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9 -.byte 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8 -.byte 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9 -.byte 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56 -.byte 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8 -.byte 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69 -.byte 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70 -.byte 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82 -.byte 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9 -.byte 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33 -.byte 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a -.byte 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a -.byte 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5 -.byte 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84 -.byte 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03 -.byte 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31 -.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79 -.byte 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15 -.byte 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65 -.byte 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25 -.byte 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65 -.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 -.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d -.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a, 0xac, 0x54 -.byte 0x5a, 0xa9, 0xf9, 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab -.byte 0xc6, 0xd5, 0xb6, 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0 -.byte 0x89, 0x03, 0xb8, 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7 -.byte 0xd4, 0x8a, 0x79, 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25 -.byte 0x91, 0x63, 0xab, 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e -.byte 0x5c, 0x53, 0xb1, 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00, 0x26 -.byte 0x02, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20 -.byte 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13 -.byte 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54 -.byte 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74 -.byte 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80, 0x12, 0x65 -.byte 0x17, 0x36, 0x0e, 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3 -.byte 0x4c, 0xad, 0x50, 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89 -.byte 0x9f, 0xcc, 0x3d, 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28 -.byte 0x11, 0x2b, 0x47, 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3 -.byte 0x63, 0x42, 0xb6, 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20 -.byte 0x90, 0x09, 0x3e, 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3 -.byte 0x06, 0xf1, 0x88, 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6 -.byte 0xe4, 0x1f, 0x8e, 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54 -.byte 0x3f, 0xbc, 0x33, 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6 -.byte 0xa7, 0x66, 0xc8, 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a -.byte 0xe8, 0xcc, 0xf0, 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7 -.byte 0xff, 0xce, 0xf9, 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae -.byte 0x4c, 0x8a, 0xb7, 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b -.byte 0x68, 0x66, 0x01, 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53 -.byte 0x37, 0x90, 0x73, 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7 -.byte 0x6b, 0x8c, 0x60, 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51 -.byte 0x78, 0x95, 0x67, 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25 -.byte 0x26, 0x6b, 0x33, 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1 -.byte 0x29, 0x7c, 0x32, 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac -.byte 0xd3, 0x7d, 0x37, 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9 -.byte 0x49, 0x0b, 0xdf, 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd -.byte 0x84, 0xb8, 0xb1, 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3 -.byte 0x6b, 0x05, 0xa9, 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82 -.byte 0xd3, 0x4c, 0xb3, 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35 -.byte 0x55, 0x74, 0x09, 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3 -.byte 0x26, 0x7d, 0x1c, 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9 -.byte 0x44, 0x44, 0xf4, 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74 -.byte 0x63, 0x2f, 0xb1, 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25 -.byte 0x47, 0x59, 0xfa, 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78 -.byte 0xb7, 0xfc, 0x67, 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6 -.byte 0x5f, 0x55, 0x2e, 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2 -.byte 0x4c, 0x97, 0x1c, 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x92, 0x00, 0x26, 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 -.byte 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 -.byte 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30 -.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c -.byte 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20 -.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53 -.byte 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 -.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 -.byte 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 -.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f -.byte 0xfc, 0x02, 0xb1, 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56 -.byte 0x18, 0xc3, 0x47, 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde -.byte 0x8a, 0x1a, 0xfd, 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c -.byte 0xdd, 0x22, 0xfa, 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9 -.byte 0x89, 0x2c, 0xdc, 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89 -.byte 0x46, 0x55, 0xf4, 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57 -.byte 0x02, 0x19, 0xf8, 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c -.byte 0xb4, 0xf4, 0xa4, 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d -.byte 0x53, 0x4c, 0x62, 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98 -.byte 0x61, 0x74, 0xcf, 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4 -.byte 0x0e, 0x75, 0xcc, 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65 -.byte 0x30, 0xf8, 0xa7, 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99 -.byte 0x8a, 0xb3, 0xf0, 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11 -.byte 0xf8, 0x6b, 0xaa, 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5 -.byte 0x56, 0x62, 0xe1, 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e -.byte 0x0e, 0xe6, 0xde, 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x9b, 0x00 -.byte 0x26, 0x01, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69 -.byte 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53 -.byte 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65 -.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e -.byte 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66 -.byte 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41 -.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd5, 0x0c -.byte 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f -.byte 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76 -.byte 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6 -.byte 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d -.byte 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14 -.byte 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47 -.byte 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04 -.byte 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6 -.byte 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2 -.byte 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d -.byte 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a -.byte 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b -.byte 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e -.byte 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf -.byte 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f -.byte 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03 -.byte 0x01, 0x00, 0x01 - -.global _binary_x509_crt_bundle_end -_binary_x509_crt_bundle_end: /* for objcopy compatibility */ - - -.global x509_crt_bundle_length -x509_crt_bundle_length: -.long 17411 diff --git a/RainMaker_Table-Lights/main/CMakeLists.txt b/RainMaker_Table-Lights/main/CMakeLists.txt deleted file mode 100644 index 81b0f302c..000000000 --- a/RainMaker_Table-Lights/main/CMakeLists.txt +++ /dev/null @@ -1,2 +0,0 @@ -idf_component_register(SRCS ./app_driver.c ./app_main.c - INCLUDE_DIRS ".") diff --git a/RainMaker_Table-Lights/main/Kconfig.projbuild b/RainMaker_Table-Lights/main/Kconfig.projbuild deleted file mode 100644 index 5604b82db..000000000 --- a/RainMaker_Table-Lights/main/Kconfig.projbuild +++ /dev/null @@ -1,27 +0,0 @@ -menu "Example Configuration" - - config EXAMPLE_BOARD_BUTTON_GPIO - int "Boot Button GPIO" - default 28 if IDF_TARGET_ESP32C5 - default 9 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32H2 - default 0 - help - GPIO number on which the "Boot" button is connected. This is generally used - by the application for custom operations like toggling states, resetting to defaults, etc. - - config EXAMPLE_ENABLE_TEST_NOTIFICATIONS - bool "Test Notifications" - default n - help - Enable this option to test mobile push notifications. When enabled, turning on the switch using - push button will trigger a parameter notification {"Switch":{"Power":true}} and turning off will - trigger an alert "Switch was turned off". - - config EXAMPLE_OUTPUT_GPIO - int "Output GPIO" - default 19 - help - This is an output GPIO that will be connected to a relay or other driver circuit in most cases. - If the power changes, this GPIO output level will also change. - -endmenu diff --git a/RainMaker_Table-Lights/main/app_driver.c b/RainMaker_Table-Lights/main/app_driver.c deleted file mode 100644 index e62e99afb..000000000 --- a/RainMaker_Table-Lights/main/app_driver.c +++ /dev/null @@ -1,116 +0,0 @@ -/* Switch demo implementation using button and RGB LED - - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#include - -#include -#include -#include - -#include -#include -#include "app_priv.h" - -/* This is the button that is used for toggling the power */ -#define BUTTON_GPIO CONFIG_EXAMPLE_BOARD_BUTTON_GPIO -#define BUTTON_ACTIVE_LEVEL 0 - -/* This is the GPIO on which the power will be set */ -#define OUTPUT_GPIO CONFIG_EXAMPLE_OUTPUT_GPIO -static bool g_power_state = DEFAULT_POWER; - -/* These values correspoind to H,S,V = 120,100,10 */ -#define DEFAULT_RED 0 -#define DEFAULT_GREEN 25 -#define DEFAULT_BLUE 0 - -#define WIFI_RESET_BUTTON_TIMEOUT 3 -#define FACTORY_RESET_BUTTON_TIMEOUT 10 - -static void app_indicator_set(bool state) -{ - if (state) { - ws2812_led_set_rgb(DEFAULT_RED, DEFAULT_GREEN, DEFAULT_BLUE); - } else { - ws2812_led_clear(); - } -} - -static void app_indicator_init(void) -{ - ws2812_led_init(); - app_indicator_set(g_power_state); -} -static void push_btn_cb(void *arg) -{ - bool new_state = !g_power_state; - app_driver_set_state(new_state); -#ifdef CONFIG_EXAMPLE_ENABLE_TEST_NOTIFICATIONS - /* This snippet has been added just to demonstrate how the APIs esp_rmaker_param_update_and_notify() - * and esp_rmaker_raise_alert() can be used to trigger push notifications on the phone apps. - * Normally, there should not be a need to use these APIs for such simple operations. Please check - * API documentation for details. - */ - if (new_state) { - esp_rmaker_param_update_and_notify( - esp_rmaker_device_get_param_by_name(switch_device, ESP_RMAKER_DEF_POWER_NAME), - esp_rmaker_bool(new_state)); - } else { - esp_rmaker_param_update_and_report( - esp_rmaker_device_get_param_by_name(switch_device, ESP_RMAKER_DEF_POWER_NAME), - esp_rmaker_bool(new_state)); - esp_rmaker_raise_alert("Switch was turned off"); - } -#else - esp_rmaker_param_update_and_report( - esp_rmaker_device_get_param_by_name(switch_device, ESP_RMAKER_DEF_POWER_NAME), - esp_rmaker_bool(new_state)); -#endif -} - -static void set_power_state(bool target) -{ - gpio_set_level(OUTPUT_GPIO, target); - app_indicator_set(target); -} - -void app_driver_init() -{ - button_handle_t btn_handle = iot_button_create(BUTTON_GPIO, BUTTON_ACTIVE_LEVEL); - if (btn_handle) { - /* Register a callback for a button tap (short press) event */ - iot_button_set_evt_cb(btn_handle, BUTTON_CB_TAP, push_btn_cb, NULL); - /* Register Wi-Fi reset and factory reset functionality on same button */ - app_reset_button_register(btn_handle, WIFI_RESET_BUTTON_TIMEOUT, FACTORY_RESET_BUTTON_TIMEOUT); - } - - /* Configure power */ - gpio_config_t io_conf = { - .mode = GPIO_MODE_OUTPUT, - .pull_up_en = 1, - }; - io_conf.pin_bit_mask = ((uint64_t)1 << OUTPUT_GPIO); - /* Configure the GPIO */ - gpio_config(&io_conf); - app_indicator_init(); -} - -int IRAM_ATTR app_driver_set_state(bool state) -{ - if(g_power_state != state) { - g_power_state = state; - set_power_state(g_power_state); - } - return ESP_OK; -} - -bool app_driver_get_state(void) -{ - return g_power_state; -} diff --git a/RainMaker_Table-Lights/main/app_main.c b/RainMaker_Table-Lights/main/app_main.c deleted file mode 100644 index f3949e649..000000000 --- a/RainMaker_Table-Lights/main/app_main.c +++ /dev/null @@ -1,255 +0,0 @@ -/* Switch Example - - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include -#include - -#include "app_priv.h" - -static const char *TAG = "app_main"; -esp_rmaker_device_t *switch_device; - -/* Callback to handle commands received from the RainMaker cloud */ -static esp_err_t write_cb(const esp_rmaker_device_t *device, const esp_rmaker_param_t *param, - const esp_rmaker_param_val_t val, void *priv_data, esp_rmaker_write_ctx_t *ctx) -{ - if (ctx) { - ESP_LOGI(TAG, "Received write request via : %s", esp_rmaker_device_cb_src_to_str(ctx->src)); - } - if (strcmp(esp_rmaker_param_get_name(param), ESP_RMAKER_DEF_POWER_NAME) == 0) { - ESP_LOGI(TAG, "Received value = %s for %s - %s", - val.val.b? "true" : "false", esp_rmaker_device_get_name(device), - esp_rmaker_param_get_name(param)); - app_driver_set_state(val.val.b); - esp_rmaker_param_update(param, val); - } - return ESP_OK; -} -/* Event handler for catching RainMaker events */ -static void event_handler(void* arg, esp_event_base_t event_base, - int32_t event_id, void* event_data) -{ - if (event_base == RMAKER_EVENT) { - switch (event_id) { - case RMAKER_EVENT_INIT_DONE: - ESP_LOGI(TAG, "RainMaker Initialised."); - break; - case RMAKER_EVENT_CLAIM_STARTED: - ESP_LOGI(TAG, "RainMaker Claim Started."); - break; - case RMAKER_EVENT_CLAIM_SUCCESSFUL: - ESP_LOGI(TAG, "RainMaker Claim Successful."); - break; - case RMAKER_EVENT_CLAIM_FAILED: - ESP_LOGI(TAG, "RainMaker Claim Failed."); - break; - case RMAKER_EVENT_LOCAL_CTRL_STARTED: - ESP_LOGI(TAG, "Local Control Started."); - break; - case RMAKER_EVENT_LOCAL_CTRL_STOPPED: - ESP_LOGI(TAG, "Local Control Stopped."); - break; - default: - ESP_LOGW(TAG, "Unhandled RainMaker Event: %"PRIi32, event_id); - } - } else if (event_base == RMAKER_COMMON_EVENT) { - switch (event_id) { - case RMAKER_EVENT_REBOOT: - ESP_LOGI(TAG, "Rebooting in %d seconds.", *((uint8_t *)event_data)); - break; - case RMAKER_EVENT_WIFI_RESET: - ESP_LOGI(TAG, "Wi-Fi credentials reset."); - break; - case RMAKER_EVENT_FACTORY_RESET: - ESP_LOGI(TAG, "Node reset to factory defaults."); - break; - case RMAKER_MQTT_EVENT_CONNECTED: - ESP_LOGI(TAG, "MQTT Connected."); - break; - case RMAKER_MQTT_EVENT_DISCONNECTED: - ESP_LOGI(TAG, "MQTT Disconnected."); - break; - case RMAKER_MQTT_EVENT_PUBLISHED: - ESP_LOGI(TAG, "MQTT Published. Msg id: %d.", *((int *)event_data)); - break; - default: - ESP_LOGW(TAG, "Unhandled RainMaker Common Event: %"PRIi32, event_id); - } - } else if (event_base == APP_NETWORK_EVENT) { - switch (event_id) { - case APP_NETWORK_EVENT_QR_DISPLAY: - ESP_LOGI(TAG, "Provisioning QR : %s", (char *)event_data); - break; - case APP_NETWORK_EVENT_PROV_TIMEOUT: - ESP_LOGI(TAG, "Provisioning Timed Out. Please reboot."); - break; - case APP_NETWORK_EVENT_PROV_RESTART: - ESP_LOGI(TAG, "Provisioning has restarted due to failures."); - break; - default: - ESP_LOGW(TAG, "Unhandled App Wi-Fi Event: %"PRIi32, event_id); - break; - } - } else if (event_base == RMAKER_OTA_EVENT) { - switch(event_id) { - case RMAKER_OTA_EVENT_STARTING: - ESP_LOGI(TAG, "Starting OTA."); - break; - case RMAKER_OTA_EVENT_IN_PROGRESS: - ESP_LOGI(TAG, "OTA is in progress."); - break; - case RMAKER_OTA_EVENT_SUCCESSFUL: - ESP_LOGI(TAG, "OTA successful."); - break; - case RMAKER_OTA_EVENT_FAILED: - ESP_LOGI(TAG, "OTA Failed."); - break; - case RMAKER_OTA_EVENT_REJECTED: - ESP_LOGI(TAG, "OTA Rejected."); - break; - case RMAKER_OTA_EVENT_DELAYED: - ESP_LOGI(TAG, "OTA Delayed."); - break; - case RMAKER_OTA_EVENT_REQ_FOR_REBOOT: - ESP_LOGI(TAG, "Firmware image downloaded. Please reboot your device to apply the upgrade."); - break; - default: - ESP_LOGW(TAG, "Unhandled OTA Event: %"PRIi32, event_id); - break; - } - } else { - ESP_LOGW(TAG, "Invalid event received!"); - } -} - -void app_main() -{ - /* Initialize Application specific hardware drivers and - * set initial state. - */ - esp_rmaker_console_init(); - app_driver_init(); - app_driver_set_state(DEFAULT_POWER); - - /* Initialize NVS. */ - esp_err_t err = nvs_flash_init(); - if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { - ESP_ERROR_CHECK(nvs_flash_erase()); - err = nvs_flash_init(); - } - ESP_ERROR_CHECK( err ); - - /* Initialize Wi-Fi. Note that, this should be called before esp_rmaker_node_init() - */ - app_network_init(); - - /* Register an event handler to catch RainMaker events */ - ESP_ERROR_CHECK(esp_event_handler_register(RMAKER_EVENT, ESP_EVENT_ANY_ID, &event_handler, NULL)); - ESP_ERROR_CHECK(esp_event_handler_register(RMAKER_COMMON_EVENT, ESP_EVENT_ANY_ID, &event_handler, NULL)); - ESP_ERROR_CHECK(esp_event_handler_register(APP_NETWORK_EVENT, ESP_EVENT_ANY_ID, &event_handler, NULL)); - ESP_ERROR_CHECK(esp_event_handler_register(RMAKER_OTA_EVENT, ESP_EVENT_ANY_ID, &event_handler, NULL)); - - /* Initialize the ESP RainMaker Agent. - * Note that this should be called after app_network_init() but before app_nenetworkk_start() - * */ - esp_rmaker_config_t rainmaker_cfg = { - .enable_time_sync = false, - }; - esp_rmaker_node_t *node = esp_rmaker_node_init(&rainmaker_cfg, "ESP RainMaker Device", "Switch"); - if (!node) { - ESP_LOGE(TAG, "Could not initialise node. Aborting!!!"); - vTaskDelay(5000/portTICK_PERIOD_MS); - abort(); - } - - /* Create a Switch device. - * You can optionally use the helper API esp_rmaker_switch_device_create() to - * avoid writing code for adding the name and power parameters. - */ - switch_device = esp_rmaker_device_create("Switch", ESP_RMAKER_DEVICE_SWITCH, NULL); - - /* Add the write callback for the device. We aren't registering any read callback yet as - * it is for future use. - */ - esp_rmaker_device_add_cb(switch_device, write_cb, NULL); - - /* Add the standard name parameter (type: esp.param.name), which allows setting a persistent, - * user friendly custom name from the phone apps. All devices are recommended to have this - * parameter. - */ - esp_rmaker_device_add_param(switch_device, esp_rmaker_name_param_create(ESP_RMAKER_DEF_NAME_PARAM, "Switch")); - - /* Add the standard power parameter (type: esp.param.power), which adds a boolean param - * with a toggle switch ui-type. - */ - esp_rmaker_param_t *power_param = esp_rmaker_power_param_create(ESP_RMAKER_DEF_POWER_NAME, DEFAULT_POWER); - esp_rmaker_device_add_param(switch_device, power_param); - - /* Assign the power parameter as the primary, so that it can be controlled from the - * home screen of the phone apps. - */ - esp_rmaker_device_assign_primary_param(switch_device, power_param); - - /* Add this switch device to the node */ - esp_rmaker_node_add_device(node, switch_device); - - /* Enable OTA */ - esp_rmaker_ota_enable_default(); - - /* Enable timezone service which will be require for setting appropriate timezone - * from the phone apps for scheduling to work correctly. - * For more information on the various ways of setting timezone, please check - * https://rainmaker.espressif.com/docs/time-service.html. - */ - esp_rmaker_timezone_service_enable(); - - /* Enable scheduling. */ - esp_rmaker_schedule_enable(); - - /* Enable Scenes */ - esp_rmaker_scenes_enable(); - - /* Enable Insights. Requires CONFIG_ESP_INSIGHTS_ENABLED=y */ - app_insights_enable(); - - /* Start the ESP RainMaker Agent */ - esp_rmaker_start(); - - err = app_network_set_custom_mfg_data(MGF_DATA_DEVICE_TYPE_SWITCH, MFG_DATA_DEVICE_SUBTYPE_SWITCH); - /* Start the Wi-Fi. - * If the node is provisioned, it will start connection attempts, - * else, it will start Wi-Fi provisioning. The function will return - * after a connection has been successfully established - */ - err = app_network_start(POP_TYPE_RANDOM); - if (err != ESP_OK) { - ESP_LOGE(TAG, "Could not start Wifi. Aborting!!!"); - vTaskDelay(5000/portTICK_PERIOD_MS); - abort(); - } -} diff --git a/RainMaker_Table-Lights/main/app_priv.h b/RainMaker_Table-Lights/main/app_priv.h deleted file mode 100644 index 8c8b5ab4c..000000000 --- a/RainMaker_Table-Lights/main/app_priv.h +++ /dev/null @@ -1,16 +0,0 @@ -/* - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ -#pragma once -#include -#include - -#define DEFAULT_POWER true -extern esp_rmaker_device_t *switch_device; -void app_driver_init(void); -int app_driver_set_state(bool state); -bool app_driver_get_state(void); diff --git a/RainMaker_Table-Lights/main/component.mk b/RainMaker_Table-Lights/main/component.mk deleted file mode 100644 index a98f634ea..000000000 --- a/RainMaker_Table-Lights/main/component.mk +++ /dev/null @@ -1,4 +0,0 @@ -# -# "main" pseudo-component makefile. -# -# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) diff --git a/RainMaker_Table-Lights/main/idf_component.yml b/RainMaker_Table-Lights/main/idf_component.yml deleted file mode 100644 index 745e5de2f..000000000 --- a/RainMaker_Table-Lights/main/idf_component.yml +++ /dev/null @@ -1,8 +0,0 @@ -## IDF Component Manager Manifest File -dependencies: - ## Required IDF version - idf: - version: ">=5.0.0" - espressif/esp_rainmaker: - version: ">=1.0" - override_path: '../../../components/esp_rainmaker/' diff --git a/RainMaker_Table-Lights/main/idf_component.yml.bak b/RainMaker_Table-Lights/main/idf_component.yml.bak deleted file mode 100644 index 745e5de2f..000000000 --- a/RainMaker_Table-Lights/main/idf_component.yml.bak +++ /dev/null @@ -1,8 +0,0 @@ -## IDF Component Manager Manifest File -dependencies: - ## Required IDF version - idf: - version: ">=5.0.0" - espressif/esp_rainmaker: - version: ">=1.0" - override_path: '../../../components/esp_rainmaker/' diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/.component_hash b/RainMaker_Table-Lights/managed_components/espressif__cbor/.component_hash deleted file mode 100644 index 123957519..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/.component_hash +++ /dev/null @@ -1 +0,0 @@ -742f5005032227c6edbaab15f3dd6d2010bf2f5997ea93bb313e4e629789b2e0 \ No newline at end of file diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/CHECKSUMS.json b/RainMaker_Table-Lights/managed_components/espressif__cbor/CHECKSUMS.json deleted file mode 100644 index 970c45d5d..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/CHECKSUMS.json +++ /dev/null @@ -1 +0,0 @@ -{"version": "1.0", "algorithm": "sha256", "created_at": "2025-05-21T16:32:28.205730+00:00", "files": [{"path": "CMakeLists.txt", "size": 970, "hash": "0a6b84fed92375729ded3d0fdb25eefa5716190dd933abaabbb88fa81140561f"}, {"path": "LICENSE", "size": 1074, "hash": "3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e"}, {"path": "idf_component.yml", "size": 333, "hash": "1a8a727ac5c1b0d45eceb060da2c29da1ffc75572501e1d1f8a77b87dc4c2f97"}, {"path": "README.md", "size": 307, "hash": "260649e7dfd228e4a2d14c8913a2d408b21b6e7a3d6dda4dbd361f269413ab1b"}, {"path": "tinycbor/tinycbor.pc.in", "size": 250, "hash": "db0caacf6367f5cdd1d3dc7ed4a4b6e6de456618905e7d8074cf3bb843cc5078"}, {"path": "tinycbor/LICENSE", "size": 1074, "hash": "3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e"}, {"path": "tinycbor/Makefile", "size": 7344, "hash": "6f605e49bd9c72cb5e1f378a335f4b872a16093701377a1ced9f9088c6a30834"}, {"path": "tinycbor/Makefile.configure", "size": 1345, "hash": "26308e23712856da6c60d722ee06e8db4c61321de6dcd25705acd2be7cd026f6"}, {"path": "tinycbor/Makefile.nmake", "size": 1231, "hash": "84e83a23962ce5a5f35da6c8fea4d3818a793d1b825cef37d10fcc051ffd42aa"}, {"path": "tinycbor/.appveyor.yml", "size": 870, "hash": "24e0bc21058bc8fe81fde6b431e4fc429579e53efd05d59329bff4f3ac239440"}, {"path": "tinycbor/README", "size": 307, "hash": "260649e7dfd228e4a2d14c8913a2d408b21b6e7a3d6dda4dbd361f269413ab1b"}, {"path": "tinycbor/TODO", "size": 843, "hash": "c09398e34a6ba3b3af0db2d4361537d84a868bd6273f78267b2dd8504737c842"}, {"path": "tinycbor/.gitignore", "size": 758, "hash": "4eef1f6e5775ae2605ef91fd0d36284a751303f2db78acb150978b7e01ea3abc"}, {"path": "tinycbor/VERSION", "size": 6, "hash": "97a5d6e540a6120d09c39ddb667e0e8e2bac7fcc2ffef813b82e08fd60365bce"}, {"path": "tinycbor/.gitattributes", "size": 142, "hash": "92ae9520a1a29354bfa2c4b104800023dc0abd83fc7fac70fd328c58e5171dc0"}, {"path": "tinycbor/.tag", "size": 12, "hash": "2070743a71dbdccd323f1848e8f9f1fd893081c4e779f9f5a3cebcee6b2e467d"}, {"path": "tinycbor/.git", "size": 41, "hash": "d33d9b1354d72a0242026d89f1f1f0259f74f628aca918b600c6501d6cd85439"}, {"path": "tinycbor/Doxyfile", "size": 1505, "hash": "9963a8bc52129b4c676606131756fbcf5b6b1779c6e6fca427bbda4ec8fc6fdf"}, {"path": "tinycbor/.travis.yml", "size": 2596, "hash": "61ed439ab6be5f89f734736a9d77a28c35101bfcb9950e0c2f495cf116eb7f78"}, {"path": "port/include/cbor.h", "size": 78, "hash": "505b30b15291d037a6f81d8f9566cf4341eb95506d04edf950fd4118ad34705d"}, {"path": "examples/cbor/CMakeLists.txt", "size": 250, "hash": "5fe71081a53e291e1bf0f9bb5034f7bd71e9ad2f57d22f4ba161593161acad25"}, {"path": "examples/cbor/pytest_cbor.py", "size": 1806, "hash": "7ae00b8ee16a94a2c1aa55c00d0a311c233df93b1c2cb0a0800a7b9f3f377e81"}, {"path": "examples/cbor/README.md", "size": 1691, "hash": "5edb08e9e5326498d3265d1e0985756f10a4baa94712a8a9b39c44523d2ee2be"}, {"path": "examples/cbor/sdkconfig.defaults", "size": 251, "hash": "358f4ddcfa374e485c22ac7e6bfddc5f275fa729c424dc6b15bfaeb3106c9e75"}, {"path": "examples/cbor/main/CMakeLists.txt", "size": 90, "hash": "191450d4d53b594d16cb57fb27808295f8c92362b8411a4d16bf1df57db8fc68"}, {"path": "examples/cbor/main/idf_component.yml", "size": 164, "hash": "ca3a3515f1451c505cd87e1faa69e2500b32df9101bde247f3232a5ca6319acb"}, {"path": "examples/cbor/main/cbor_example_main.c", "size": 8008, "hash": "8a4a2659ae241aab7b89cf2716fbaec44d4180a30aa86b632da908b256b7485f"}, {"path": "tinycbor/tools/Makefile", "size": 251, "hash": "8308de8704d53ab3e00b001ebee3f5006421b918b2ffad9d09d26d1bfe1c6b26"}, {"path": "tinycbor/tests/tests.pro", "size": 83, "hash": "d27d2a3360a872199bc7c0917b634c27eb5cc6d7ac2ebcd0289c4305ef8488c0"}, {"path": "tinycbor/tests/.gitignore", "size": 193, "hash": "c2190613b36706388b6100e2639fd13ae7bfe71ac14e62250dffc57176157a6c"}, {"path": "tinycbor/examples/examples.pro", "size": 46, "hash": "71e9105ac04ae716cf9f12e4d5ed1e1062d0eae037da37d74af3eb04f90bd629"}, {"path": "tinycbor/examples/simplereader.pro", "size": 62, "hash": "a1b149fcde322d33802abda5b02f10f3ac707de651a7df7181c2ea631b9e0be1"}, {"path": "tinycbor/examples/simplereader.c", "size": 4623, "hash": "1935261384c862fc096862fc1f3cda9992322901fd1814c03e2facae64f6cf3d"}, {"path": "tinycbor/scripts/update-docs.sh", "size": 1430, "hash": "364e46b7c8946ec868964582ab8307a854fe31023ca6f54607f0f29447f8f2f5"}, {"path": "tinycbor/scripts/maketag.pl", "size": 2462, "hash": "31129bb760daf5c176203d0ccd5adaf65fea2e88bcbd9fa7dd52cbcd0c971a39"}, {"path": "tinycbor/src/src.pri", "size": 684, "hash": "70c094d3c56c6ed6e69f552c3e7ceaaf3508d91cce37c593acdec6366ae5b007"}, {"path": "tinycbor/src/cbor.dox", "size": 5979, "hash": "16a11c69f4d5f666431ca1d69e7f0163dcf981e9826e957e8ecc9b87109331d5"}, {"path": "tinycbor/src/cbortojson.c", "size": 25449, "hash": "f287df1737119d218d6f7fe3d4157885e9afc5bcba6a950a950e7d8748650274"}, {"path": "tinycbor/src/tinycbor-version.h", "size": 114, "hash": "e9d9632c9daecd6cb1275db162be78babc15fe987e56e45df72867772f3d6770"}, {"path": "tinycbor/src/compilersupport_p.h", "size": 7285, "hash": "43a91171b32ed70e1897de1007e1d36970f103db1ab03f593235c36f06d07a3b"}, {"path": "tinycbor/src/open_memstream.c", "size": 3223, "hash": "45943a2ab0550475fb27ec845f62472894aeb8c71a195e4a78213ab8663917ee"}, {"path": "tinycbor/src/cbor.h", "size": 27768, "hash": "70e99280844c104d391c2cd2d25888b8999a9f3f1b97c5fedc404dc58ae463a4"}, {"path": "tinycbor/src/tinycbor.pro", "size": 224, "hash": "6d444fc1a7c34ac09033f3b17167761994807a570bec661b90aa17da5c7a00f9"}, {"path": "tinycbor/src/cborvalidation.c", "size": 21915, "hash": "916bfe07e78c33bdf8e13ce01c24a5818956b9959ca810f62de817134e4352d0"}, {"path": "tinycbor/src/cborparser_dup_string.c", "size": 4752, "hash": "95cbbfe5d49ad5afc8684df17cee7c0b016118da659be49a0230c2a7938cae5a"}, {"path": "tinycbor/src/cborencoder_float.c", "size": 1673, "hash": "a2f34c29819f61acae89a015963e3ddf6e89d6686abe40f3c0786ef1a343373c"}, {"path": "tinycbor/src/cborpretty_stdio.c", "size": 3491, "hash": "d5a3178cee64625fa418f36970a666e8eee83e92c395acbd2b89220db93de6fd"}, {"path": "tinycbor/src/cborencoder_close_container_checked.c", "size": 2184, "hash": "fee715bd5a28e19d7451ef973bd20d08fff8d82a5e59efe6aa89cc738368bf32"}, {"path": "tinycbor/src/cborpretty.c", "size": 21541, "hash": "965ecae4ded1853c176f867266c6ac9074d36dc3bc3b610e6a546049b86d9b61"}, {"path": "tinycbor/src/cborjson.h", "size": 2044, "hash": "ca64f0ec5c89512e3142990fa1369d813a0b0f5e108f2061be109d3326cbbf77"}, {"path": "tinycbor/src/cborerrorstrings.c", "size": 7898, "hash": "c5b8931317863f936011dfe0c1e437a434e9d4501cd91bedc06596fabc9e1a52"}, {"path": "tinycbor/src/cborparser.c", "size": 57108, "hash": "61827c67aa6af9c9b4688809db776780f9325e407dab0425bece83342c047183"}, {"path": "tinycbor/src/cborparser_float.c", "size": 2253, "hash": "865ba03998147a4d641928b69d6cb3a3d508df5c1b18c18698a2a02987a7b822"}, {"path": "tinycbor/src/utf8_p.h", "size": 2996, "hash": "110af1a73417d83b8096a356d271f5f21b773a1179b063c568d74d99e215bbde"}, {"path": "tinycbor/src/parsetags.pl", "size": 3927, "hash": "515bd82e75b2734721655e271ee5053293e871e5ad9a8515b1ee922fbef84287"}, {"path": "tinycbor/src/cborencoder.c", "size": 25412, "hash": "36bb236b15dd3a848dc04c0785b20ba04ccbefe82e324ad4f779cb22bccf5d5e"}, {"path": "tinycbor/src/tags.txt", "size": 1178, "hash": "5142e88ceb074f4ec42e4a2a6af94297ca44631bf4b8bde01e4cc3b9c9909e1b"}, {"path": "tinycbor/src/cborinternal_p.h", "size": 10002, "hash": "a6ef480c1859fe8cf0fc5d5cf83e920235939dbdfea10e84eba6c08a0ee265f0"}, {"path": "tinycbor/tests/tojson/tojson.pro", "size": 231, "hash": "7bcd27b342562d82011df91b32648b9a04fd8d06163e4c414e21eb2dc23a4fbb"}, {"path": "tinycbor/tests/tojson/tst_tojson.cpp", "size": 31600, "hash": "33c004a0508470d64ca499c3c93c21099dc986e23f196e12e191364e1ceefc1e"}, {"path": "tinycbor/tests/c90/c90.pro", "size": 220, "hash": "2806755461f6d1a470fc72071cd7ffb564a1e837788f55987f22ff2fe94c5b55"}, {"path": "tinycbor/tests/c90/tst_c90.c", "size": 1326, "hash": "1838ac9a8e54f9f62339a9d306d8b19e82b7db99db9b3f14b7bc5dea012d5d56"}, {"path": "tinycbor/tests/encoder/tst_encoder.cpp", "size": 19684, "hash": "9d75c3e48d66c92fa8ed8b8a786aca5822c6d72bdd4f9e4eb6198bec94d3876f"}, {"path": "tinycbor/tests/encoder/encoder.pro", "size": 233, "hash": "2191d53b80b7ad1f563843638a35298c654252c1402dcd396f05ba05ee14e7a8"}, {"path": "tinycbor/tests/encoder/data.cpp", "size": 17386, "hash": "0f997ea440ab175c5c617d9ac2ef0fff7d71bd9b19b39f570824c4eb35074fcb"}, {"path": "tinycbor/tests/parser/tst_parser.cpp", "size": 97834, "hash": "47b47fc8c1520a2eb374b0419181b72281471cdcd3dc3b6b888adc375febd288"}, {"path": "tinycbor/tests/parser/parser.pro", "size": 296, "hash": "687cf0fa12eb9a909a40bc99aaae9bea2da0e1fe83188b3e73a5dd50bb7849cf"}, {"path": "tinycbor/tests/parser/data.cpp", "size": 44584, "hash": "14a5cc7024ff3673ecfea0c1e24cd696d241359c529bae0d6cd681cc753a712e"}, {"path": "tinycbor/tests/cpp/cpp.pro", "size": 105, "hash": "8e8fb0162296542f5651b8e6ea38e973f192cd659f0861e30b6b1cd27112d41d"}, {"path": "tinycbor/tests/cpp/tst_cpp.cpp", "size": 1792, "hash": "e2442e6b98d70b7921fabd53f61b91fd2bd3aa1c06172c10b6be9e0561c6b733"}, {"path": "tinycbor/tools/json2cbor/json2cbor.pro", "size": 443, "hash": "6252c4b3d2c026a3746ee6fe660868f6ac14f367975e95cec39874cd110757f5"}, {"path": "tinycbor/tools/json2cbor/json2cbor.c", "size": 16385, "hash": "8f469735abb4203c2f2a1846892a960c20aba44751d8bddc8e7b74280f11ca47"}, {"path": "tinycbor/tools/cbordump/cbordump.pro", "size": 193, "hash": "b352c8e63d0ae0a5443fc26d9c1b40d69c5e4be6bfbb66795ddff050af2509d2"}, {"path": "tinycbor/tools/cbordump/cbordump.c", "size": 5665, "hash": "8c915471a11eb8b406a02227ebb53fc096beef0c63bb4474b6d1dbed0f3ecefc"}]} \ No newline at end of file diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/CMakeLists.txt b/RainMaker_Table-Lights/managed_components/espressif__cbor/CMakeLists.txt deleted file mode 100644 index 0e7cce51a..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -idf_component_register(SRCS "tinycbor/src/cborencoder_close_container_checked.c" - "tinycbor/src/cborencoder.c" - "tinycbor/src/cborencoder_float.c" - "tinycbor/src/cborerrorstrings.c" - "tinycbor/src/cborparser_dup_string.c" - "tinycbor/src/cborparser.c" - "tinycbor/src/cborparser_float.c" - "tinycbor/src/cborpretty_stdio.c" - "tinycbor/src/cborpretty.c" - "tinycbor/src/cbortojson.c" - "tinycbor/src/cborvalidation.c" - "tinycbor/src/open_memstream.c" - INCLUDE_DIRS "port/include" - PRIV_INCLUDE_DIRS "tinycbor/src") - -# for open_memstream.c -set_source_files_properties(tinycbor/src/open_memstream.c PROPERTIES COMPILE_DEFINITIONS "__linux__") diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/LICENSE b/RainMaker_Table-Lights/managed_components/espressif__cbor/LICENSE deleted file mode 100644 index 4aad977ce..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 Intel Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/README.md b/RainMaker_Table-Lights/managed_components/espressif__cbor/README.md deleted file mode 100644 index 167efa06e..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/README.md +++ /dev/null @@ -1,13 +0,0 @@ -Concise Binary Object Representation (CBOR) Library ---------------------------------------------------- - -To build TinyCBOR: - - make - -If you want to change the compiler or pass extra compiler flags: - - make CC=clang CFLAGS="-m32 -Oz" LDFLAGS="-m32" - -Documentation: https://intel.github.io/tinycbor/current/ - diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/CMakeLists.txt b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/CMakeLists.txt deleted file mode 100644 index 7ffbcc3ad..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# The following lines of boilerplate have to be in your project's -# CMakeLists in this exact order for cmake to work correctly -cmake_minimum_required(VERSION 3.16) - -include($ENV{IDF_PATH}/tools/cmake/project.cmake) -set(COMPONENTS main) -project(cbor) diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/README.md b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/README.md deleted file mode 100644 index 547d360b6..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# CBOR Example - -## Overview - -The [CBOR](https://en.wikipedia.org/wiki/CBOR)(Concise Binary Object Representation) is a binary data serialization format which is similar to JSON but with smaller footprint. This example will illustrate how to encode and decode CBOR data using the APIs provided by [tinycbor](https://github.com/intel/tinycbor). - -For detailed information about how CBOR encoding and decoding works, please refer to [REF7049](https://tools.ietf.org/html/rfc7049) or [cbor.io](http://cbor.io/); - -## How to use example - -### Hardware Required - -This example should be able to run on any commonly available ESP32 development board. - -### Build and Flash - -Run `idf.py -p PORT flash monitor` to build and flash the project. - -(To exit the serial monitor, type ``Ctrl-]``.) - -See the [Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects. - -## Example Output - -```bash -I (320) example: encoded buffer size 67 -I (320) example: convert CBOR to JSON -[{"chip":"esp32","unicore":false,"ip":[192,168,1,100]},3.1400001049041748,"simple(99)","2019-07-10 09:00:00+0000","undefined"] -I (340) example: decode CBOR manually -Array[ - Map{ - chip - esp32 - unicore - false - ip - Array[ - 192 - 168 - 1 - 100 - ] - } - 3.14 - simple(99) - 2019-07-10 09:00:00+0000 - undefined -] -``` - -## Troubleshooting - -For more API usage, please refer to [tinycbor API](https://intel.github.io/tinycbor/current/). - -(For any technical queries, please open an [issue](https://github.com/espressif/idf-extra-components/issues) on GitHub. We will get back to you as soon as possible.) diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/CMakeLists.txt b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/CMakeLists.txt deleted file mode 100644 index 31dfa610c..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/CMakeLists.txt +++ /dev/null @@ -1,2 +0,0 @@ -idf_component_register(SRCS "cbor_example_main.c" - INCLUDE_DIRS "") diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/cbor_example_main.c b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/cbor_example_main.c deleted file mode 100644 index 5b5eeec9c..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/cbor_example_main.c +++ /dev/null @@ -1,231 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Unlicense OR CC0-1.0 - */ -/* CBOR Example - - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ -#include -#include "esp_log.h" -#include "cbor.h" - -static const char *TAG = "example"; - -#define CBOR_CHECK(a, str, goto_tag, ret_value, ...) \ - do \ - { \ - if ((a) != CborNoError) \ - { \ - ESP_LOGE(TAG, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__); \ - ret = ret_value; \ - goto goto_tag; \ - } \ - } while (0) - -static void indent(int nestingLevel) -{ - while (nestingLevel--) { - printf(" "); - } -} - -static void dumpbytes(const uint8_t *buf, size_t len) -{ - while (len--) { - printf("%02X ", *buf++); - } -} - -/** - * Decode CBOR data manuallly - */ -static CborError example_dump_cbor_buffer(CborValue *it, int nestingLevel) -{ - CborError ret = CborNoError; - while (!cbor_value_at_end(it)) { - CborType type = cbor_value_get_type(it); - - indent(nestingLevel); - switch (type) { - case CborArrayType: { - CborValue recursed; - assert(cbor_value_is_container(it)); - puts("Array["); - ret = cbor_value_enter_container(it, &recursed); - CBOR_CHECK(ret, "enter container failed", err, ret); - ret = example_dump_cbor_buffer(&recursed, nestingLevel + 1); - CBOR_CHECK(ret, "recursive dump failed", err, ret); - ret = cbor_value_leave_container(it, &recursed); - CBOR_CHECK(ret, "leave container failed", err, ret); - indent(nestingLevel); - puts("]"); - continue; - } - case CborMapType: { - CborValue recursed; - assert(cbor_value_is_container(it)); - puts("Map{"); - ret = cbor_value_enter_container(it, &recursed); - CBOR_CHECK(ret, "enter container failed", err, ret); - ret = example_dump_cbor_buffer(&recursed, nestingLevel + 1); - CBOR_CHECK(ret, "recursive dump failed", err, ret); - ret = cbor_value_leave_container(it, &recursed); - CBOR_CHECK(ret, "leave container failed", err, ret); - indent(nestingLevel); - puts("}"); - continue; - } - case CborIntegerType: { - int64_t val; - ret = cbor_value_get_int64(it, &val); - CBOR_CHECK(ret, "parse int64 failed", err, ret); - printf("%lld\n", (long long)val); - break; - } - case CborByteStringType: { - uint8_t *buf; - size_t n; - ret = cbor_value_dup_byte_string(it, &buf, &n, it); - CBOR_CHECK(ret, "parse byte string failed", err, ret); - dumpbytes(buf, n); - puts(""); - free(buf); - continue; - } - case CborTextStringType: { - char *buf; - size_t n; - ret = cbor_value_dup_text_string(it, &buf, &n, it); - CBOR_CHECK(ret, "parse text string failed", err, ret); - puts(buf); - free(buf); - continue; - } - case CborTagType: { - CborTag tag; - ret = cbor_value_get_tag(it, &tag); - CBOR_CHECK(ret, "parse tag failed", err, ret); - printf("Tag(%lld)\n", (long long)tag); - break; - } - case CborSimpleType: { - uint8_t type; - ret = cbor_value_get_simple_type(it, &type); - CBOR_CHECK(ret, "parse simple type failed", err, ret); - printf("simple(%u)\n", type); - break; - } - case CborNullType: - puts("null"); - break; - case CborUndefinedType: - puts("undefined"); - break; - case CborBooleanType: { - bool val; - ret = cbor_value_get_boolean(it, &val); - CBOR_CHECK(ret, "parse boolean type failed", err, ret); - puts(val ? "true" : "false"); - break; - } - case CborHalfFloatType: { - uint16_t val; - ret = cbor_value_get_half_float(it, &val); - CBOR_CHECK(ret, "parse half float type failed", err, ret); - printf("__f16(%04x)\n", val); - break; - } - case CborFloatType: { - float val; - ret = cbor_value_get_float(it, &val); - CBOR_CHECK(ret, "parse float type failed", err, ret); - printf("%g\n", val); - break; - } - case CborDoubleType: { - double val; - ret = cbor_value_get_double(it, &val); - CBOR_CHECK(ret, "parse double float type failed", err, ret); - printf("%g\n", val); - break; - } - case CborInvalidType: { - ret = CborErrorUnknownType; - CBOR_CHECK(ret, "unknown cbor type", err, ret); - break; - } - } - - ret = cbor_value_advance_fixed(it); - CBOR_CHECK(ret, "fix value failed", err, ret); - } - return CborNoError; -err: - return ret; -} - - -void app_main(void) -{ - CborEncoder root_encoder; - CborParser root_parser; - CborValue it; - uint8_t buf[100]; - - // Initialize the outermost cbor encoder - cbor_encoder_init(&root_encoder, buf, sizeof(buf), 0); - - // Create an array containing several items - CborEncoder array_encoder; - CborEncoder map_encoder; - cbor_encoder_create_array(&root_encoder, &array_encoder, 5); // [ - // 1. Create a map containing several pairs - cbor_encoder_create_map(&array_encoder, &map_encoder, 3); // { - // chip:esp32 - cbor_encode_text_stringz(&map_encoder, "chip"); - cbor_encode_text_stringz(&map_encoder, "esp32"); - // unicore:false - cbor_encode_text_stringz(&map_encoder, "unicore"); - cbor_encode_boolean(&map_encoder, false); - // ip:[192,168,1,100] - cbor_encode_text_stringz(&map_encoder, "ip"); - CborEncoder array2; - cbor_encoder_create_array(&map_encoder, &array2, 4); // [ - // Encode several numbers - cbor_encode_uint(&array2, 192); - cbor_encode_uint(&array2, 168); - cbor_encode_uint(&array2, 1); - cbor_encode_uint(&array2, 100); - cbor_encoder_close_container(&map_encoder, &array2); // ] - cbor_encoder_close_container(&array_encoder, &map_encoder); // } - // 2. Encode float number - cbor_encode_float(&array_encoder, 3.14); - // 3. Encode simple value - cbor_encode_simple_value(&array_encoder, 99); - // 4. Encode a string - cbor_encode_text_stringz(&array_encoder, "2019-07-10 09:00:00+0000"); - // 5. Encode a undefined value - cbor_encode_undefined(&array_encoder); - cbor_encoder_close_container(&root_encoder, &array_encoder); // ] - - // If error happend when encoding, then this value should be meaningless - ESP_LOGI(TAG, "encoded buffer size %d", cbor_encoder_get_buffer_size(&root_encoder, buf)); - - // Initialize the cbor parser and the value iterator - cbor_parser_init(buf, sizeof(buf), 0, &root_parser, &it); - - ESP_LOGI(TAG, "convert CBOR to JSON"); - // Dump the values in JSON format - cbor_value_to_json(stdout, &it, 0); - puts(""); - - ESP_LOGI(TAG, "decode CBOR manually"); - // Decode CBOR data manully - example_dump_cbor_buffer(&it, 0); -} diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/idf_component.yml b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/idf_component.yml deleted file mode 100644 index c26df3e37..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/main/idf_component.yml +++ /dev/null @@ -1,7 +0,0 @@ -## IDF Component Manager Manifest File -version: "1.0.0" -description: CBOR Example -dependencies: - espressif/cbor: - version: '0.*' - override_path: '../../../' diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/pytest_cbor.py b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/pytest_cbor.py deleted file mode 100644 index 73fe9a67a..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/pytest_cbor.py +++ /dev/null @@ -1,41 +0,0 @@ -# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD -# SPDX-License-Identifier: Unlicense OR CC0-1.0 -from __future__ import unicode_literals - -import textwrap - -import pytest -from pytest_embedded import Dut - - -@pytest.mark.generic -def test_examples_cbor(dut: Dut) -> None: - - dut.expect(r'example: encoded buffer size \d+') - dut.expect('example: convert CBOR to JSON') - parsed_info = dut.expect(r'\[\{"chip":"(\w+)","unicore":(\w+),"ip":\[(\d+),(\d+),(\d+),(\d+)\]\},' - r'3.1400001049041748' - r',"simple\(99\)","2019-07-10 09:00:00\+0000","undefined"\]') - dut.expect('example: decode CBOR manually') - - dut.expect(textwrap.dedent(r''' - Array\[\s* - Map{{\s* - chip\s* - {}\s* - unicore\s* - {}\s* - ip\s* - Array\[\s* - {}\s* - {}\s* - {}\s* - {}\s* - \]\s* - }}\s* - 3.14\s* - simple\(99\)\s* - 2019-07-10 09:00:00\+0000\s* - undefined\s* - \]'''.format(parsed_info[1].decode(), parsed_info[2].decode(), parsed_info[3].decode(), - parsed_info[4].decode(), parsed_info[5].decode(),parsed_info[6].decode())).replace('{', r'\{').replace('}', r'\}')) diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/sdkconfig.defaults b/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/sdkconfig.defaults deleted file mode 100644 index 845bb33ec..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/examples/cbor/sdkconfig.defaults +++ /dev/null @@ -1,4 +0,0 @@ -# This example is not supported with newlib nano: -# - First 64-bit integers are not supported in newlib nano -# - There is also issue with `PRIu8` format specifier with newlib nano (observed on ESP32-C2, see IDFCI-1375) -CONFIG_NEWLIB_NANO_FORMAT=n diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/idf_component.yml b/RainMaker_Table-Lights/managed_components/espressif__cbor/idf_component.yml deleted file mode 100644 index 5391fd67a..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/idf_component.yml +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: - idf: '>=4.3' -description: 'CBOR: Concise Binary Object Representation Library' -repository: git://github.com/espressif/idf-extra-components.git -repository_info: - commit_sha: 14e5c1548c55fcd764417a91b96ed6a30538eb5f - path: cbor -url: https://github.com/espressif/idf-extra-components/tree/master/cbor -version: 0.6.0~2 diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include/cbor.h b/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include/cbor.h deleted file mode 100644 index c8e6ccf48..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/port/include/cbor.h +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../tinycbor/src/cbor.h" -#include "../../tinycbor/src/cborjson.h" diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.appveyor.yml b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.appveyor.yml deleted file mode 100644 index ef47797e0..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.appveyor.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: 0.6-build-{build} -pull_requests: - do_not_increment_build_number: true -image: -- Visual Studio 2017 -- Visual Studio 2019 -install: -- cmd: >- - if /i "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86) & (set QTDIR=C:\Qt\5.13\msvc2017) - - if /i "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64) & (set QTDIR=C:\Qt\6.1\msvc2019_64) - - set path=%PATH%;%QTDIR%\bin -build_script: -- cmd: >- - nmake -f Makefile.nmake -nologo CFLAGS="-W3 -Os -MDd" - - cd tests - - qmake CONFIG-=release CONFIG+=debug - - nmake -nologo -s -test_script: -- cmd: >- - nmake -s -nologo TESTARGS=-silent check -artifacts: -- path: lib\tinycbor.lib -deploy: off diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitattributes b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitattributes deleted file mode 100644 index 76ed25676..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitattributes +++ /dev/null @@ -1,4 +0,0 @@ -.tag export-subst -.gitignore export-ignore -.gitattributes export-ignore -.appveyor.yml text diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitignore b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitignore deleted file mode 100644 index 3272de332..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.gitignore +++ /dev/null @@ -1,81 +0,0 @@ -# Frequent generated files -callgrind.out.* -pcviewer.cfg -*~ -*.a -*.la -*.core -*.d -*.dylib -*.moc -*.o -*.obj -*.orig -*.swp -*.rej -*.so -*.so.* -*.pbxuser -*.mode1 -*.mode1v3 -*_pch.h.cpp -*_resource.rc -.#* -*.*# -core -.qmake.cache -.qmake.stash -.qmake.vars -.device.vars -tags -.DS_Store -*.debug -Makefile* -*.prl -*.app -*.pro.user* -*.qmlproject.user* -*.gcov -*.gcda -*.gcno -*.flc -.*.swp -tinycbor.pc - -# Visual Studio generated files -*.ib_pdb_index -*.idb -*.ilk -*.pdb -*.sln -*.suo -*.vcproj -*vcproj.*.*.user -*.ncb -*.vcxproj -*.vcxproj.filters -*.vcxproj.user -*.exe.embed.manifest -*.exe_manifest.rc -*.exe_manifest.res - -# MinGW generated files -*.Debug -*.Release - -# INTEGRITY generated files -*.gpj -*.int -*.ael -*.dla -*.dnm -*.dep -*.map - -bin -doc -lib -src/cjson -src/doxygen.log -!/Makefile -.config diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.tag b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.tag deleted file mode 100644 index 6828f88dc..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.tag +++ /dev/null @@ -1 +0,0 @@ -$Format:%H$ diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.travis.yml b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.travis.yml deleted file mode 100644 index 4df21cb70..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/.travis.yml +++ /dev/null @@ -1,92 +0,0 @@ -env: - - BUILD_DOCS=false -jobs: - include: - - # only build docs on main - if: branch = main - env: BUILD_DOCS=true - -language: cpp -matrix: - include: - - os: linux - dist: xenial - addons: - apt: - sources: - - sourceline: 'ppa:beineri/opt-qt-5.12.1-xenial' - packages: - - qt512base valgrind - - doxygen - env: - - QMAKESPEC=linux-g++ - - EVAL="CC=gcc && CXX=g++" - - CFLAGS="-Os" - - LDFLAGS="-Wl,--no-undefined -lm" - - QMAKEFLAGS="-config release" - - QT_NO_CPU_FEATURE=rdrnd - - os: linux - dist: xenial - addons: - apt: - sources: - - sourceline: 'ppa:beineri/opt-qt-5.12.1-xenial' - packages: - - qt512base - env: - - QMAKESPEC=linux-clang - - EVAL="CC=clang && CXX=clang++" - - CFLAGS="-Oz" - - LDFLAGS="-Wl,--no-undefined -lm" - - QMAKEFLAGS="-config release" - - MAKEFLAGS=-s - - TESTARGS=-silent - - os: linux - dist: xenial - env: - - QMAKESPEC=linux-gcc-freestanding - - EVAL="CXX=false" - - CFLAGS="-ffreestanding -Os" - - LDFLAGS="-Wl,--no-undefined -lm" - - os: linux - dist: xenial - env: - - QMAKESPEC=linux-gcc-no-math - - EVAL="CXX=false && touch src/math.h src/float.h" - - CFLAGS="-ffreestanding -DCBOR_NO_FLOATING_POINT -Os" - - LDFLAGS="-Wl,--no-undefined" - - LDLIBS="" - - os: osx - env: - - QMAKESPEC=macx-clang - - CFLAGS="-Oz" - - QMAKEFLAGS="-config debug" - - MAKEFLAGS=-s - - TESTARGS=-silent - - PATH=/usr/local/opt/qt5/bin:$PATH -install: - - if [ "${TRAVIS_OS_NAME}" != "linux" ]; then - brew update; - brew install qt5; - fi -script: - - PATH=`echo /opt/qt*/bin`:$PATH - - eval "$EVAL" - - make -s -f Makefile.configure configure | tee .config - - make -k - CFLAGS="$CFLAGS -march=native -g1 -Wall -Wextra -Werror" - CPPFLAGS="-DNDEBUG -DCBOR_ENCODER_WRITER_CONTROL=-1 -DCBOR_PARSER_READER_CONTROL=-1" - lib/libtinycbor.a - - size lib/libtinycbor.a | tee sizes - - make -s clean - - make -k - CFLAGS="$CFLAGS -O0 -g" - LDFLAGS="$LDFLAGS" ${LDLIBS+LDLIBS="$LDLIBS"} - - grep -q freestanding-pass .config || make - QMAKEFLAGS="$QMAKEFLAGS QMAKE_CXX=$CXX" - tests/Makefile - - grep -q freestanding-pass .config || - (cd tests && make TESTARGS=-silent check -k - TESTRUNNER=`which valgrind 2>/dev/null`) - - make -s clean - - ! [ $BUILD_DOCS ] || ./scripts/update-docs.sh diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Doxyfile b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Doxyfile deleted file mode 100644 index a7263c2f2..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Doxyfile +++ /dev/null @@ -1,49 +0,0 @@ -PROJECT_NAME = "TinyCBOR $(VERSION) API" -OUTPUT_DIRECTORY = ../doc -ABBREVIATE_BRIEF = -SHORT_NAMES = YES -JAVADOC_AUTOBRIEF = YES -QT_AUTOBRIEF = YES -TAB_SIZE = 8 -ALIASES = "value=\arg \c" -OPTIMIZE_OUTPUT_FOR_C = YES -EXTRACT_STATIC = YES -EXTRACT_LOCAL_CLASSES = NO -HIDE_UNDOC_MEMBERS = YES -HIDE_UNDOC_CLASSES = YES -GENERATE_TODOLIST = NO -GENERATE_TESTLIST = NO -GENERATE_BUGLIST = NO -GENERATE_DEPRECATEDLIST= NO -SHOW_USED_FILES = NO -WARN_IF_UNDOCUMENTED = NO -WARN_LOGFILE = doxygen.log -INPUT = . -FILE_PATTERNS = *.h \ - *.c \ - *.dox -EXCLUDE_PATTERNS = *_p.h -STRIP_CODE_COMMENTS = NO -REFERENCED_BY_RELATION = YES -IGNORE_PREFIX = cbor_ \ - Cbor -HTML_TIMESTAMP = NO -GENERATE_HTMLHELP = YES -GENERATE_CHI = YES -BINARY_TOC = YES -TOC_EXPAND = YES -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest -SEARCHENGINE = NO -GENERATE_LATEX = NO -COMPACT_LATEX = YES -MACRO_EXPANSION = YES -PREDEFINED = DOXYGEN \ - CBOR_INLINE_API= -CLASS_DIAGRAMS = NO -CLASS_GRAPH = NO -COLLABORATION_GRAPH = NO -GROUP_GRAPHS = NO -INCLUDE_GRAPH = NO -INCLUDED_BY_GRAPH = NO -GRAPHICAL_HIERARCHY = NO -DIRECTORY_GRAPH = NO diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/LICENSE b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/LICENSE deleted file mode 100644 index 4aad977ce..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 Intel Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Makefile b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Makefile deleted file mode 100644 index 948e3faf1..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/Makefile +++ /dev/null @@ -1,250 +0,0 @@ -# Variables: -prefix = /usr/local -exec_prefix = $(prefix) -bindir = $(exec_prefix)/bin -libdir = $(exec_prefix)/lib -includedir = $(prefix)/include -pkgconfigdir = $(libdir)/pkgconfig - -CFLAGS = -Wall -Wextra -LDFLAGS_GCSECTIONS = -Wl,--gc-sections -LDFLAGS += $(if $(gc_sections-pass),$(LDFLAGS_GCSECTIONS)) -LDLIBS = -lm - -GIT_ARCHIVE = git archive --prefix="$(PACKAGE)/" -9 -INSTALL = install -INSTALL_DATA = $(INSTALL) -m 644 -INSTALL_PROGRAM = $(INSTALL) -m 755 -QMAKE = qmake -MKDIR = mkdir -p -RMDIR = rmdir -SED = sed - -# Our sources -TINYCBOR_HEADERS = src/cbor.h src/cborjson.h src/tinycbor-version.h -TINYCBOR_FREESTANDING_SOURCES = \ - src/cborerrorstrings.c \ - src/cborencoder.c \ - src/cborencoder_close_container_checked.c \ - src/cborencoder_float.c \ - src/cborparser.c \ - src/cborparser_float.c \ - src/cborpretty.c \ -# -CBORDUMP_SOURCES = tools/cbordump/cbordump.c - -BUILD_SHARED = $(shell file -L /bin/sh 2>/dev/null | grep -q ELF && echo 1) -BUILD_STATIC = 1 - -ifneq ($(BUILD_STATIC),1) -ifneq ($(BUILD_SHARED),1) - $(error error: BUILD_STATIC and BUILD_SHARED can not be both disabled) -endif -endif - -INSTALL_TARGETS += $(bindir)/cbordump -ifeq ($(BUILD_SHARED),1) -BINLIBRARY=lib/libtinycbor.so -INSTALL_TARGETS += $(libdir)/libtinycbor.so.$(VERSION) -endif -ifeq ($(BUILD_STATIC),1) -BINLIBRARY=lib/libtinycbor.a -INSTALL_TARGETS += $(libdir)/libtinycbor.a -endif -INSTALL_TARGETS += $(pkgconfigdir)/tinycbor.pc -INSTALL_TARGETS += $(TINYCBOR_HEADERS:src/%=$(includedir)/tinycbor/%) - -# setup VPATH -MAKEFILE := $(lastword $(MAKEFILE_LIST)) -SRCDIR := $(dir $(MAKEFILE)) -VPATH = $(SRCDIR):$(SRCDIR)/src - -# Our version -GIT_DIR := $(strip $(shell git -C $(SRCDIR). rev-parse --git-dir 2> /dev/null)) -VERSION = $(shell cat $(SRCDIR)VERSION) -SOVERSION = $(shell cut -f1-2 -d. $(SRCDIR)VERSION) -PACKAGE = tinycbor-$(VERSION) - -# Check that QMAKE is Qt 5 -ifeq ($(origin QMAKE),file) - check_qmake = $(strip $(shell $(1) -query QT_VERSION 2>/dev/null | cut -b1)) - ifneq ($(call check_qmake,$(QMAKE)),5) - QMAKE := qmake -qt5 - ifneq ($(call check_qmake,$(QMAKE)),5) - QMAKE := qmake-qt5 - ifneq ($(call check_qmake,$(QMAKE)),5) - QMAKE := @echo >&2 $(MAKEFILE): Cannot find a Qt 5 qmake; false - endif - endif - endif -endif - --include .config - -ifeq ($(wildcard .config),) - $(info .config file not yet created) -endif - -ifeq ($(freestanding-pass),1) -TINYCBOR_SOURCES = $(TINYCBOR_FREESTANDING_SOURCES) -else -TINYCBOR_SOURCES = \ - $(TINYCBOR_FREESTANDING_SOURCES) \ - src/cborparser_dup_string.c \ - src/cborpretty_stdio.c \ - src/cbortojson.c \ - src/cborvalidation.c \ -# -# if open_memstream is unavailable on the system, try to implement our own -# version using funopen or fopencookie -ifeq ($(open_memstream-pass),) - ifeq ($(funopen-pass)$(fopencookie-pass),) - CFLAGS += -DWITHOUT_OPEN_MEMSTREAM - ifeq ($(wildcard .config),.config) - $(warning warning: funopen and fopencookie unavailable, open_memstream can not be implemented and conversion to JSON will not work properly!) - endif - else - TINYCBOR_SOURCES += src/open_memstream.c - endif -endif -endif - -# json2cbor depends on an external library (cjson) -ifneq ($(cjson-pass)$(system-cjson-pass),) - JSON2CBOR_SOURCES = tools/json2cbor/json2cbor.c - INSTALL_TARGETS += $(bindir)/json2cbor - ifeq ($(system-cjson-pass),1) - LDFLAGS_CJSON = -lcjson - else - JSON2CBOR_SOURCES += src/cjson/cJSON.c - json2cbor_CCFLAGS = -I$(SRCDIR)src/cjson - endif -endif - -# Rules -all: .config \ - $(if $(subst 0,,$(BUILD_STATIC)),lib/libtinycbor.a) \ - $(if $(subst 0,,$(BUILD_SHARED)),lib/libtinycbor.so) \ - $(if $(freestanding-pass),,bin/cbordump) \ - tinycbor.pc -all: $(if $(JSON2CBOR_SOURCES),bin/json2cbor) -check: tests/Makefile | $(BINLIBRARY) - $(MAKE) -C tests check -silentcheck: | $(BINLIBRARY) - TESTARGS=-silent $(MAKE) -f $(MAKEFILE) -s check -configure: .config -.config: Makefile.configure - $(MAKE) -f $(SRCDIR)Makefile.configure OUT='>&9' configure 9> $@ - -lib/libtinycbor-freestanding.a: $(TINYCBOR_FREESTANDING_SOURCES:.c=.o) - @$(MKDIR) -p lib - $(AR) cqs $@ $^ - -lib/libtinycbor.a: $(TINYCBOR_SOURCES:.c=.o) - @$(MKDIR) -p lib - $(AR) cqs $@ $^ - -lib/libtinycbor.so: $(TINYCBOR_SOURCES:.c=.pic.o) - @$(MKDIR) -p lib - $(CC) -shared -Wl,-soname,libtinycbor.so.$(SOVERSION) -o lib/libtinycbor.so.$(VERSION) $(LDFLAGS) $^ $(LDLIBS) - cd lib ; ln -sf libtinycbor.so.$(VERSION) libtinycbor.so ; ln -sf libtinycbor.so.$(VERSION) libtinycbor.so.$(SOVERSION) - -bin/cbordump: $(CBORDUMP_SOURCES:.c=.o) $(BINLIBRARY) - @$(MKDIR) -p bin - $(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS) - -bin/json2cbor: $(JSON2CBOR_SOURCES:.c=.o) $(BINLIBRARY) - @$(MKDIR) -p bin - $(CC) -o $@ $(LDFLAGS) $^ $(LDFLAGS_CJSON) $(LDLIBS) - -tinycbor.pc: tinycbor.pc.in - $(SED) > $@ < $< \ - -e 's,@prefix@,$(prefix),' \ - -e 's,@exec_prefix@,$(exec_prefix),' \ - -e 's,@libdir@,$(libdir),' \ - -e 's,@includedir@,$(includedir),' \ - -e 's,@version@,$(VERSION),' - -tests/Makefile: tests/tests.pro - $(QMAKE) $(QMAKEFLAGS) -o $@ $< - -$(PACKAGE).tar.gz: | .git - GIT_DIR=$(SRCDIR).git $(GIT_ARCHIVE) --format=tar.gz -o "$(PACKAGE).tar.gz" HEAD -$(PACKAGE).zip: | .git - GIT_DIR=$(SRCDIR).git $(GIT_ARCHIVE) --format=zip -o "$(PACKAGE).zip" HEAD - -$(DESTDIR)$(libdir)/%: lib/% - $(INSTALL) -d $(@D) - $(INSTALL_DATA) $< $@ -$(DESTDIR)$(bindir)/%: bin/% - $(INSTALL) -d $(@D) - $(INSTALL_PROGRAM) $< $@ -$(DESTDIR)$(pkgconfigdir)/%: % - $(INSTALL) -d $(@D) - $(INSTALL_DATA) $< $@ -$(DESTDIR)$(includedir)/tinycbor/%: src/% - $(INSTALL) -d $(@D) - $(INSTALL_DATA) $< $@ - -install-strip: - $(MAKE) -f $(MAKEFILE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install - -install: $(INSTALL_TARGETS:%=$(DESTDIR)%) -ifeq ($(BUILD_SHARED),1) - ln -sf libtinycbor.so.$(VERSION) $(DESTDIR)$(libdir)/libtinycbor.so - ln -sf libtinycbor.so.$(VERSION) $(DESTDIR)$(libdir)/libtinycbor.so.$(SOVERSION) -endif - -uninstall: - $(RM) $(INSTALL_TARGETS:%=$(DESTDIR)%) - $(RM) $(DESTDIR)$(libdir)/libtinycbor.so - $(RM) $(DESTDIR)$(libdir)/libtinycbor.so.$(SOVERSION) - -mostlyclean: - $(RM) $(TINYCBOR_SOURCES:.c=.o) - $(RM) $(TINYCBOR_SOURCES:.c=.pic.o) - $(RM) $(CBORDUMP_SOURCES:.c=.o) - -clean: mostlyclean - $(RM) bin/cbordump - $(RM) bin/json2cbor - $(RM) lib/libtinycbor.a - $(RM) lib/libtinycbor-freestanding.a - $(RM) tinycbor.pc - $(RM) lib/libtinycbor.so* - test -e tests/Makefile && $(MAKE) -C tests clean || : - -distclean: clean - test -e tests/Makefile && $(MAKE) -C tests distclean || : - -docs: - cd $(SRCDIR)src && VERSION=$(VERSION) doxygen $(SRCDIR)/../Doxyfile - -dist: $(PACKAGE).tar.gz $(PACKAGE).zip -distcheck: .git - -$(RM) -r $${TMPDIR-/tmp}/tinycbor-distcheck - GIT_DIR=$(SRCDIR).git git archive --prefix=tinycbor-distcheck/ --format=tar HEAD | tar -xf - -C $${TMPDIR-/tmp} - cd $${TMPDIR-/tmp}/tinycbor-distcheck && $(MAKE) silentcheck - $(RM) -r $${TMPDIR-/tmp}/tinycbor-distcheck - -tag: distcheck - @cd $(SRCDIR). && perl scripts/maketag.pl - -.PHONY: all check silentcheck configure install uninstall -.PHONY: mostlyclean clean distclean -.PHONY: docs dist distcheck release -.SECONDARY: - -cflags := $(CPPFLAGS) -I$(SRCDIR)src -cflags += -std=gnu99 $(CFLAGS) \ - -Werror=incompatible-pointer-types \ - -Werror=implicit-function-declaration \ - -Werror=int-conversion -%.o: %.c - @test -d $(@D) || $(MKDIR) $(@D) - $(CC) $(cflags) $($(basename $(notdir $@))_CCFLAGS) -c -o $@ $< -%.pic.o: %.c - @test -d $(@D) || $(MKDIR) $(@D) - $(CC) $(cflags) -fPIC $($(basename $(notdir $@))_CCFLAGS) -c -o $@ $< - --include src/*.d diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/README b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/README deleted file mode 100644 index 167efa06e..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/README +++ /dev/null @@ -1,13 +0,0 @@ -Concise Binary Object Representation (CBOR) Library ---------------------------------------------------- - -To build TinyCBOR: - - make - -If you want to change the compiler or pass extra compiler flags: - - make CC=clang CFLAGS="-m32 -Oz" LDFLAGS="-m32" - -Documentation: https://intel.github.io/tinycbor/current/ - diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/TODO b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/TODO deleted file mode 100644 index e9103ee68..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/TODO +++ /dev/null @@ -1,25 +0,0 @@ -==== To Do list for libcbor ==== -=== General === -* API review -* Benchmark -* Write examples -** Simple decoder -** Decoder to JSON -** Windowed encoding/decoding (limited memory) - -=== Encoder === -* Write API docs -* Add API for creating indeterminate-length arrays and maps -* Add API for creating indeterminate-length strings -* Add API for relaxing doubles to floats and to integers -* Add length-checking of the sub-containers (#ifndef CBOR_ENCODER_NO_USER_CHECK) -* Decide how to indicate number of bytes needed -** Suggestion: return negative number from the functions - -=== Decoder === -* Write functions not yet implemented -* Add API for stream-decoding strings -* Add API for checking known tags and simple types -* (unlikely) Add API for checking the pairing of a tag and the tagged type -* Write tests for error conditions -* Fuzzy-test the decoder diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/VERSION b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/VERSION deleted file mode 100644 index a918a2aa1..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/VERSION +++ /dev/null @@ -1 +0,0 @@ -0.6.0 diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/examples.pro b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/examples.pro deleted file mode 100644 index 22071ac30..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/examples.pro +++ /dev/null @@ -1,2 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS = simplereader.pro diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.c b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.c deleted file mode 100644 index 0612ba44a..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.c +++ /dev/null @@ -1,185 +0,0 @@ -#include "../src/cbor.h" - -#include -#include -#include -#include -#include - -static uint8_t *readfile(const char *fname, size_t *size) -{ - struct stat st; - FILE *f = fopen(fname, "rb"); - if (!f) - return NULL; - if (fstat(fileno(f), &st) == -1) - return NULL; - uint8_t *buf = malloc(st.st_size); - if (buf == NULL) - return NULL; - *size = fread(buf, st.st_size, 1, f) == 1 ? st.st_size : 0; - fclose(f); - return buf; -} - -static void indent(int nestingLevel) -{ - while (nestingLevel--) - printf(" "); -} - -static void dumpbytes(const uint8_t *buf, size_t len) -{ - printf("\""); - while (len--) - printf("\\x%02X", *buf++); - printf("\""); -} - -static CborError dumprecursive(CborValue *it, int nestingLevel) -{ - while (!cbor_value_at_end(it)) { - CborError err; - CborType type = cbor_value_get_type(it); - - indent(nestingLevel); - switch (type) { - case CborArrayType: - case CborMapType: { - // recursive type - CborValue recursed; - assert(cbor_value_is_container(it)); - puts(type == CborArrayType ? "Array[" : "Map["); - err = cbor_value_enter_container(it, &recursed); - if (err) - return err; // parse error - err = dumprecursive(&recursed, nestingLevel + 1); - if (err) - return err; // parse error - err = cbor_value_leave_container(it, &recursed); - if (err) - return err; // parse error - indent(nestingLevel); - puts("]"); - continue; - } - - case CborIntegerType: { - int64_t val; - cbor_value_get_int64(it, &val); // can't fail - printf("%lld\n", (long long)val); - break; - } - - case CborByteStringType: { - uint8_t *buf; - size_t n; - err = cbor_value_dup_byte_string(it, &buf, &n, it); - if (err) - return err; // parse error - dumpbytes(buf, n); - puts(""); - free(buf); - continue; - } - - case CborTextStringType: { - char *buf; - size_t n; - err = cbor_value_dup_text_string(it, &buf, &n, it); - if (err) - return err; // parse error - printf("\"%s\"\n", buf); - free(buf); - continue; - } - - case CborTagType: { - CborTag tag; - cbor_value_get_tag(it, &tag); // can't fail - printf("Tag(%lld)\n", (long long)tag); - break; - } - - case CborSimpleType: { - uint8_t type; - cbor_value_get_simple_type(it, &type); // can't fail - printf("simple(%u)\n", type); - break; - } - - case CborNullType: - puts("null"); - break; - - case CborUndefinedType: - puts("undefined"); - break; - - case CborBooleanType: { - bool val; - cbor_value_get_boolean(it, &val); // can't fail - puts(val ? "true" : "false"); - break; - } - - case CborDoubleType: { - double val; - if (false) { - float f; - case CborFloatType: - cbor_value_get_float(it, &f); - val = f; - } else { - cbor_value_get_double(it, &val); - } - printf("%g\n", val); - break; - } - case CborHalfFloatType: { - uint16_t val; - cbor_value_get_half_float(it, &val); - printf("__f16(%04x)\n", val); - break; - } - - case CborInvalidType: - assert(false); // can't happen - break; - } - - err = cbor_value_advance_fixed(it); - if (err) - return err; - } - return CborNoError; -} - -int main(int argc, char **argv) -{ - if (argc != 2) { - puts("simplereader "); - return 1; - } - - size_t length; - uint8_t *buf = readfile(argv[1], &length); - if (!buf) { - perror("readfile"); - return 1; - } - - CborParser parser; - CborValue it; - CborError err = cbor_parser_init(buf, length, 0, &parser, &it); - if (!err) - err = dumprecursive(&it, 0); - free(buf); - - if (err) { - fprintf(stderr, "CBOR parsing failure at offset %ld: %s\n", - it.ptr - buf, cbor_error_string(err)); - return 1; - } - return 0; -} diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.pro b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.pro deleted file mode 100644 index 07fdc6ac4..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/examples/simplereader.pro +++ /dev/null @@ -1,3 +0,0 @@ -CONFIG -= qt -SOURCES = simplereader.c -include(../src/src.pri) diff --git a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/scripts/maketag.pl b/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/scripts/maketag.pl deleted file mode 100644 index 5b1a8b791..000000000 --- a/RainMaker_Table-Lights/managed_components/espressif__cbor/tinycbor/scripts/maketag.pl +++ /dev/null @@ -1,91 +0,0 @@ -#!perl -use strict; -sub run(@) { - open PROC, "-|", @_ or die("Cannot run $_[0]: $!"); - my @out; - while () { - chomp; - push @out, $_; - } - close PROC; - return @out; -} - -my @tags = run("git", "tag"); -my @v = run("git", "show", "HEAD:VERSION"); -my $v = $v[0]; - -my $tagfile = ".git/TAG_EDITMSG"; -open TAGFILE, ">", $tagfile - or die("Cannot create file for editing tag message: $!"); -select TAGFILE; -print "TinyCBOR release $v\n"; -print "\n"; -print "# Write something nice about this release here\n"; - -# Do we have a commit template? -my @result = run("git", "config", "--get", "commit.template"); -if (scalar @result) { - open TEMPLATE, "<", $result[0]; - map { print $_; }